summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrice Clement <monsieurp@gentoo.org>2018-09-21 22:08:41 +0200
committerPatrice Clement <monsieurp@gentoo.org>2018-09-22 23:05:08 +0200
commitbd31a6ae538a52b899d9324fc8d6767ae0c42673 (patch)
tree9cf17544db7efb60b0a496a0fa38ffa9e8f21bba /dev-util
parentapp-misc/evtest: Version bump (v1.33) (diff)
downloadgentoo-bd31a6ae538a52b899d9324fc8d6767ae0c42673.tar.gz
gentoo-bd31a6ae538a52b899d9324fc8d6767ae0c42673.tar.bz2
gentoo-bd31a6ae538a52b899d9324fc8d6767ae0c42673.zip
dev-util/shflags: version bump.
Closes: https://bugs.gentoo.org/665454 Package-Manager: Portage-2.3.40, Repoman-2.3.9
Diffstat (limited to 'dev-util')
-rw-r--r--dev-util/shflags/Manifest1
-rw-r--r--dev-util/shflags/shflags-1.2.3.ebuild24
2 files changed, 25 insertions, 0 deletions
diff --git a/dev-util/shflags/Manifest b/dev-util/shflags/Manifest
index 042d58a280fd..7e70d24fb2c8 100644
--- a/dev-util/shflags/Manifest
+++ b/dev-util/shflags/Manifest
@@ -1 +1,2 @@
DIST shflags-1.0.3.tgz 43549 BLAKE2B 2f5376dc9589eb63133857dd48fde5bd9aae48b31d1f94a97c1d9d3f505d48ee1586a2e6a6f7b44ae85be26b4e7643beee2cdc47a5f3c3ff1a69379f174d98eb SHA512 993f5b274855d5dea5d01d3a799cfd5ff6c5ff2bf153461983052a78d8a96f9b0ee44124b4c51977baa4905c86a3293778c5d7e154305ee051fcac03f6fe70cc
+DIST shflags-1.2.3.tgz 42253 BLAKE2B 4837d31762129790659b67d4025cf8627ca5db32225ac61b437a5ba6bf9f894c87976d06dd5e5039a5ad4b7a0b7b173cc7f96fc3a11dc3c2ac797de2c749a8ed SHA512 5bddebce14e516fe37b2b1631d5aec54651ee728e538dfb0fcc68d32b79d335c7b48f5ef5aab99dd730de3b8fd556a6640db9b9ae2a7753feb6aa1e0831b64af
diff --git a/dev-util/shflags/shflags-1.2.3.ebuild b/dev-util/shflags/shflags-1.2.3.ebuild
new file mode 100644
index 000000000000..0466a6600bd6
--- /dev/null
+++ b/dev-util/shflags/shflags-1.2.3.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Command-line flags module for Unix shell scripts"
+HOMEPAGE="https://github.com/kward/shflags"
+SRC_URI="https://github.com/kward/shflags/archive/v${PV}.tar.gz -> ${P}.tgz"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
+IUSE="examples"
+
+src_test() {
+ sh test_runner || die
+}
+
+src_install() {
+ dodoc README* doc/*.txt
+ insinto /usr/share/misc
+ doins "${PN}"
+ use examples && dodoc examples/*
+}