Gentoo Archives: gentoo-commits

From: Tim Harder <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-process/procenv/
Date: Thu, 19 Oct 2017 08:20:13
Message-Id: 1508401177.9658da0dbc189e9b0b96a3543e530c5ecfeb8228.radhermit@gentoo
1 commit: 9658da0dbc189e9b0b96a3543e530c5ecfeb8228
2 Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
3 AuthorDate: Thu Oct 19 07:29:28 2017 +0000
4 Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
5 CommitDate: Thu Oct 19 08:19:37 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9658da0d
7
8 sys-process/procenv: version bump to 0.50
9
10 sys-process/procenv/Manifest | 1 +
11 sys-process/procenv/procenv-0.50.ebuild | 29 +++++++++++++++++++++++++++++
12 2 files changed, 30 insertions(+)
13
14 diff --git a/sys-process/procenv/Manifest b/sys-process/procenv/Manifest
15 index 3d7f4ddebc9..ff525140801 100644
16 --- a/sys-process/procenv/Manifest
17 +++ b/sys-process/procenv/Manifest
18 @@ -1 +1,2 @@
19 DIST procenv-0.49.tar.gz 243974 SHA256 0d3416f75e06cd0ca39d72c43eb98ffc53c482a0ec80c06b3467c18282713f2f SHA512 2845e34abcc3c7cc56947c1b4407e7d8366bbd40ba0144e16cecd41acb24773072f58f34b54eefbf334b30a1b97a23fe611368166da8d80162657613c287af99 WHIRLPOOL 562195f0c363712dba155f4ce72b68a26d62f7425b515678bd3dfe055f822fd482a15f8e467f653a4bc2c608a422c0b3107ff8cfc38049e415084262924b7168
20 +DIST procenv-0.50.tar.gz 244590 SHA256 e17e43a4b9306b7b77c357e4848c09a9cdc471c5cc5605bc2a72c4439c677a37 SHA512 6f2281523ff0890f3cf51caa10e637b5f12bbb6904cde1daf6177acd414b00b1cbcbd14429437f4c023fadd1b05a47bf3ace3527c6b6b1209b2d6b7ba4272e13 WHIRLPOOL 5f8d161ad786b6919061190cba019362ae1b04551fa902dc9e8b1892e4e5a242612ac957c0c1ec30450234b437d3114c2a204b20a31b20740637e33fa2f59be6
21
22 diff --git a/sys-process/procenv/procenv-0.50.ebuild b/sys-process/procenv/procenv-0.50.ebuild
23 new file mode 100644
24 index 00000000000..3c8ae5b1be5
25 --- /dev/null
26 +++ b/sys-process/procenv/procenv-0.50.ebuild
27 @@ -0,0 +1,29 @@
28 +# Copyright 1999-2017 Gentoo Foundation
29 +# Distributed under the terms of the GNU General Public License v2
30 +
31 +EAPI=6
32 +
33 +inherit autotools
34 +
35 +DESCRIPTION="command-line utility to show process environment"
36 +HOMEPAGE="https://github.com/jamesodhunt/procenv"
37 +SRC_URI="https://github.com/jamesodhunt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
38 +
39 +LICENSE="GPL-3"
40 +SLOT="0"
41 +KEYWORDS="~amd64 ~hppa ~ppc64 ~x86"
42 +IUSE="test"
43 +
44 +DEPEND="
45 + virtual/pkgconfig
46 + test? ( dev-libs/check )
47 +"
48 +
49 +src_prepare() {
50 + local PATCHES=(
51 + "${FILESDIR}"/${PN}-0.45-flags.patch
52 + )
53 +
54 + default
55 + eautoreconf
56 +}