Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/shflags/
Date: Sat, 22 Sep 2018 21:05:23
Message-Id: 1537650308.bd31a6ae538a52b899d9324fc8d6767ae0c42673.monsieurp@gentoo
1 commit: bd31a6ae538a52b899d9324fc8d6767ae0c42673
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 21 20:08:41 2018 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 22 21:05:08 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd31a6ae
7
8 dev-util/shflags: version bump.
9
10 Closes: https://bugs.gentoo.org/665454
11 Package-Manager: Portage-2.3.40, Repoman-2.3.9
12
13 dev-util/shflags/Manifest | 1 +
14 dev-util/shflags/shflags-1.2.3.ebuild | 24 ++++++++++++++++++++++++
15 2 files changed, 25 insertions(+)
16
17 diff --git a/dev-util/shflags/Manifest b/dev-util/shflags/Manifest
18 index 042d58a280f..7e70d24fb2c 100644
19 --- a/dev-util/shflags/Manifest
20 +++ b/dev-util/shflags/Manifest
21 @@ -1 +1,2 @@
22 DIST shflags-1.0.3.tgz 43549 BLAKE2B 2f5376dc9589eb63133857dd48fde5bd9aae48b31d1f94a97c1d9d3f505d48ee1586a2e6a6f7b44ae85be26b4e7643beee2cdc47a5f3c3ff1a69379f174d98eb SHA512 993f5b274855d5dea5d01d3a799cfd5ff6c5ff2bf153461983052a78d8a96f9b0ee44124b4c51977baa4905c86a3293778c5d7e154305ee051fcac03f6fe70cc
23 +DIST shflags-1.2.3.tgz 42253 BLAKE2B 4837d31762129790659b67d4025cf8627ca5db32225ac61b437a5ba6bf9f894c87976d06dd5e5039a5ad4b7a0b7b173cc7f96fc3a11dc3c2ac797de2c749a8ed SHA512 5bddebce14e516fe37b2b1631d5aec54651ee728e538dfb0fcc68d32b79d335c7b48f5ef5aab99dd730de3b8fd556a6640db9b9ae2a7753feb6aa1e0831b64af
24
25 diff --git a/dev-util/shflags/shflags-1.2.3.ebuild b/dev-util/shflags/shflags-1.2.3.ebuild
26 new file mode 100644
27 index 00000000000..0466a6600bd
28 --- /dev/null
29 +++ b/dev-util/shflags/shflags-1.2.3.ebuild
30 @@ -0,0 +1,24 @@
31 +# Copyright 1999-2018 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +DESCRIPTION="Command-line flags module for Unix shell scripts"
37 +HOMEPAGE="https://github.com/kward/shflags"
38 +SRC_URI="https://github.com/kward/shflags/archive/v${PV}.tar.gz -> ${P}.tgz"
39 +
40 +LICENSE="LGPL-2.1"
41 +SLOT="0"
42 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
43 +IUSE="examples"
44 +
45 +src_test() {
46 + sh test_runner || die
47 +}
48 +
49 +src_install() {
50 + dodoc README* doc/*.txt
51 + insinto /usr/share/misc
52 + doins "${PN}"
53 + use examples && dodoc examples/*
54 +}