1
0
Fork 0

app-misc/mkusers: new ebuild

Package-Manager: Portage-2.3.8, Repoman-2.3.3
This commit is contained in:
Horea Christian 2017-09-14 18:45:18 +02:00
parent 71d3dc1e98
commit 99c75446c7
No known key found for this signature in database
GPG Key ID: EAA9223EE3BB378A
3 changed files with 44 additions and 0 deletions

View File

@ -0,0 +1,5 @@
*mkusers-9999 (14 Sep 2017)
14 Sep 2017; Horea Christian <h.chr@mail.ru> +metadata.xml,
+mkusers-9999.ebuild:
app-misc/mkusers: new ebuild

View File

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>horea.christ@yandex.com</email>
<name>Horea Christian</name>
</maintainer>
<longdescription lang="en">
A simple bash script which allows you to create batches of
users in one go, and populate their home directories with
specific files.
</longdescription>
<upstream>
<remote-id type="github">TheChymera/mkusers</remote-id>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,23 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="6"
inherit git-r3
DESCRIPTION="Automatically Create a Large Amount of Users on a Linux System."
HOMEPAGE="https://github.com/TheChymera/mkusers"
EGIT_REPO_URI="https://github.com/TheChymera/${PN}.git"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
DEPEND=""
RDEPEND=""
src_install() {
exeinto /usr/bin/
newexe "${S}"/mkusers.sh mkusers
}