Gentoo Archives: gentoo-commits

From: Lars Wendler <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-process/procps/
Date: Thu, 05 Apr 2018 08:13:37
Message-Id: 1522916008.c069fb2933f225dcdaf0965cabd189d09ecc08ed.polynomial-c@gentoo
1 commit: c069fb2933f225dcdaf0965cabd189d09ecc08ed
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 5 08:10:49 2018 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 5 08:13:28 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c069fb29
7
8 sys-process/procps: Bump to version 3.3.13
9
10 Package-Manager: Portage-2.3.28, Repoman-2.3.9
11
12 sys-process/procps/Manifest | 1 +
13 sys-process/procps/procps-3.3.13.ebuild | 81 +++++++++++++++++++++++++++++++++
14 2 files changed, 82 insertions(+)
15
16 diff --git a/sys-process/procps/Manifest b/sys-process/procps/Manifest
17 index fbbaa4846c8..856107d8953 100644
18 --- a/sys-process/procps/Manifest
19 +++ b/sys-process/procps/Manifest
20 @@ -1 +1,2 @@
21 DIST procps-ng-3.3.12.tar.xz 845484 BLAKE2B d317935e28de45ca5afa59ce33f85e286820a630c7fe036bddcf7a4418fa347cbc9cab39ef380f482ce13f47555598fd2419c67c3f861d7e4e2e89a9b2f4ae4a SHA512 ea816740ff72cc53d99b5d2e78a511b627ea5b295e0efff67605c56d1ab075abc6b0e2da3df4facbfe903fc9d679e892d351b6884a966d37c6f4bfd9141a924b
22 +DIST procps-ng-3.3.13.tar.xz 901156 BLAKE2B ee172016800d3570855873e38fc6ce1b05bb4f43e960097adf6ae806ca8140636d14b0fa8185b19b5580476f5943370d2f128f56ef7274bc66b30c80e0fe9c8b SHA512 9419a54b9875d4e33dd63face5c85cdbef1b8376416d469609128c9370c337a32b9b951c865e53c2ae6cfc8ce8eb7657f724a997cd3206d7af97ddf8a978e008
23
24 diff --git a/sys-process/procps/procps-3.3.13.ebuild b/sys-process/procps/procps-3.3.13.ebuild
25 new file mode 100644
26 index 00000000000..5e9a2b13394
27 --- /dev/null
28 +++ b/sys-process/procps/procps-3.3.13.ebuild
29 @@ -0,0 +1,81 @@
30 +# Copyright 1999-2018 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +
35 +inherit toolchain-funcs flag-o-matic
36 +
37 +DESCRIPTION="standard informational utilities and process-handling tools"
38 +HOMEPAGE="http://procps-ng.sourceforge.net/ https://gitlab.com/procps-ng/procps"
39 +SRC_URI="mirror://sourceforge/${PN}-ng/${PN}-ng-${PV}.tar.xz"
40 +
41 +LICENSE="GPL-2"
42 +SLOT="0/5" # libprocps.so
43 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
44 +IUSE="elogind +kill modern-top +ncurses nls selinux static-libs systemd test unicode"
45 +
46 +COMMON_DEPEND="
47 + elogind? ( sys-auth/elogind )
48 + ncurses? ( >=sys-libs/ncurses-5.7-r7:=[unicode?] )
49 + selinux? ( sys-libs/libselinux )
50 + systemd? ( sys-apps/systemd )
51 +"
52 +DEPEND="${COMMON_DEPEND}
53 + elogind? ( virtual/pkgconfig )
54 + ncurses? ( virtual/pkgconfig )
55 + systemd? ( virtual/pkgconfig )
56 + test? ( dev-util/dejagnu )"
57 +RDEPEND="
58 + ${COMMON_DEPEND}
59 + kill? (
60 + !sys-apps/coreutils[kill]
61 + !sys-apps/util-linux[kill]
62 + )
63 + !<sys-apps/sysvinit-2.88-r6
64 +"
65 +
66 +S="${WORKDIR}/${PN}-ng-${PV}"
67 +
68 +PATCHES=(
69 + "${FILESDIR}"/${PN}-3.3.8-kill-neg-pid.patch # http://crbug.com/255209
70 + "${FILESDIR}"/${PN}-3.3.11-sysctl-manpage.patch # 565304
71 + "${FILESDIR}"/${PN}-3.3.12-proc-tests.patch # 583036
72 +
73 + # Upstream fixes
74 +)
75 +
76 +src_configure() {
77 + # http://www.freelists.org/post/procps/PATCH-enable-transparent-large-file-support
78 + append-lfs-flags #471102
79 + local myeconfargs=(
80 + --docdir='$(datarootdir)'/doc/${PF}
81 + $(use_with elogind)
82 + $(use_enable kill)
83 + $(use_enable modern-top)
84 + $(use_with ncurses)
85 + $(use_enable nls)
86 + $(use_enable selinux libselinux)
87 + $(use_enable static-libs static)
88 + $(use_with systemd)
89 + $(use_enable unicode watch8bit)
90 + )
91 + econf "${myeconfargs[@]}"
92 +}
93 +
94 +src_test() {
95 + emake check </dev/null #461302
96 +}
97 +
98 +src_install() {
99 + default
100 + #dodoc sysctl.conf
101 +
102 + dodir /bin
103 + mv "${ED%/}"/usr/bin/ps "${ED%/}"/bin/ || die
104 + if use kill; then
105 + mv "${ED%/}"/usr/bin/kill "${ED}"/bin/ || die
106 + fi
107 +
108 + gen_usr_ldscript -a procps
109 + find "${D}" -name '*.la' -delete || die
110 +}