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: Fri, 06 Mar 2020 12:36:26
Message-Id: 1583498174.9c9e243f046e0d33ee9906029fb3cb5c74e98cab.polynomial-c@gentoo
1 commit: 9c9e243f046e0d33ee9906029fb3cb5c74e98cab
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Fri Mar 6 12:32:29 2020 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Fri Mar 6 12:36:14 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c9e243f
7
8 sys-process/procps: Removed old
9
10 Package-Manager: Portage-2.3.92, Repoman-2.3.20
11 Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
12
13 sys-process/procps/procps-3.3.16.ebuild | 82 ---------------------------------
14 1 file changed, 82 deletions(-)
15
16 diff --git a/sys-process/procps/procps-3.3.16.ebuild b/sys-process/procps/procps-3.3.16.ebuild
17 deleted file mode 100644
18 index 520b8f0d950..00000000000
19 --- a/sys-process/procps/procps-3.3.16.ebuild
20 +++ /dev/null
21 @@ -1,82 +0,0 @@
22 -# Copyright 1999-2020 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=7
26 -
27 -inherit toolchain-funcs flag-o-matic usr-ldscript
28 -
29 -DESCRIPTION="standard informational utilities and process-handling tools"
30 -HOMEPAGE="http://procps-ng.sourceforge.net/ https://gitlab.com/procps-ng/procps"
31 -SRC_URI="mirror://sourceforge/${PN}-ng/${PN}-ng-${PV}.tar.xz"
32 -
33 -LICENSE="GPL-2"
34 -SLOT="0/8" # libprocps.so
35 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
36 -IUSE="elogind +kill modern-top +ncurses nls selinux static-libs systemd test unicode"
37 -RESTRICT="!test? ( test )"
38 -
39 -COMMON_DEPEND="
40 - elogind? ( sys-auth/elogind )
41 - ncurses? ( >=sys-libs/ncurses-5.7-r7:=[unicode?] )
42 - selinux? ( sys-libs/libselinux )
43 - systemd? ( sys-apps/systemd )
44 -"
45 -DEPEND="${COMMON_DEPEND}
46 - elogind? ( virtual/pkgconfig )
47 - ncurses? ( virtual/pkgconfig )
48 - systemd? ( virtual/pkgconfig )
49 - test? ( dev-util/dejagnu )"
50 -RDEPEND="
51 - ${COMMON_DEPEND}
52 - kill? (
53 - !sys-apps/coreutils[kill]
54 - !sys-apps/util-linux[kill]
55 - )
56 - !<app-i18n/man-pages-de-2.12-r1
57 - !<app-i18n/man-pages-pl-0.7-r1
58 - !<sys-apps/sysvinit-2.88-r6
59 -"
60 -
61 -S="${WORKDIR}/${PN}-ng-${PV}"
62 -
63 -PATCHES=(
64 - "${FILESDIR}"/${PN}-3.3.11-sysctl-manpage.patch # 565304
65 - "${FILESDIR}"/${PN}-3.3.12-proc-tests.patch # 583036
66 -
67 - # Upstream fixes
68 -)
69 -
70 -src_configure() {
71 - # http://www.freelists.org/post/procps/PATCH-enable-transparent-large-file-support
72 - append-lfs-flags #471102
73 - local myeconfargs=(
74 - $(use_with elogind)
75 - $(use_enable kill)
76 - $(use_enable modern-top)
77 - $(use_with ncurses)
78 - $(use_enable nls)
79 - $(use_enable selinux libselinux)
80 - $(use_enable static-libs static)
81 - $(use_with systemd)
82 - $(use_enable unicode watch8bit)
83 - )
84 - econf "${myeconfargs[@]}"
85 -}
86 -
87 -src_test() {
88 - emake check </dev/null #461302
89 -}
90 -
91 -src_install() {
92 - default
93 - #dodoc sysctl.conf
94 -
95 - dodir /bin
96 - mv "${ED}"/usr/bin/ps "${ED}"/bin/ || die
97 - if use kill; then
98 - mv "${ED}"/usr/bin/kill "${ED}"/bin/ || die
99 - fi
100 -
101 - gen_usr_ldscript -a procps
102 - find "${ED}" -type f -name '*.la' -delete || die
103 -}