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-apps/acl/
Date: Thu, 02 Jan 2020 11:51:43
Message-Id: 1577965889.513e1e554073d92e9913a0dd5f2af8554e5fa0d9.polynomial-c@gentoo
1 commit: 513e1e554073d92e9913a0dd5f2af8554e5fa0d9
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 2 11:51:29 2020 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 2 11:51:29 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=513e1e55
7
8 sys-apps/acl: Removed old
9
10 Package-Manager: Portage-2.3.84, Repoman-2.3.20
11 Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
12
13 sys-apps/acl/Manifest | 1 -
14 sys-apps/acl/acl-2.2.52-r1.ebuild | 55 ---------------------------------------
15 2 files changed, 56 deletions(-)
16
17 diff --git a/sys-apps/acl/Manifest b/sys-apps/acl/Manifest
18 index 83b57f7e451..256b7131d57 100644
19 --- a/sys-apps/acl/Manifest
20 +++ b/sys-apps/acl/Manifest
21 @@ -1,2 +1 @@
22 -DIST acl-2.2.52.src.tar.gz 386604 BLAKE2B e8b7b555cec93f84579aac846ce64235e356d73770844e88898564d1742fcf3d7c314511f0321aefbad33bdd85800406102178e8ab6414bc9c883891442d3188 SHA512 59973199d371cd0b2368e95bc829a1b47f04e808a174fefba4c6854e766158bd19a71d9dbcc8d6fdc1573a1f971cdda39c453f7fa243bce02c1ab97c6e7c72e7
23 DIST acl-2.2.53.tar.gz 524300 BLAKE2B a4c602b18ab1a7932dce38c8dacf3a3026a3100a8a7e61f0740886ec7154a7738ca641953dc1253b5574580815d7f547a99bdd0cc0ee87238a1995abe97eb9d8 SHA512 176b7957fe0e7618e0b7bf2ac5071f7fa29417df718cce977661a576fa184e4af9d303b591c9d556b6ba8923e799457343afa401f5a9f7ecd9022185a4e06716
24
25 diff --git a/sys-apps/acl/acl-2.2.52-r1.ebuild b/sys-apps/acl/acl-2.2.52-r1.ebuild
26 deleted file mode 100644
27 index 11c8d630a18..00000000000
28 --- a/sys-apps/acl/acl-2.2.52-r1.ebuild
29 +++ /dev/null
30 @@ -1,55 +0,0 @@
31 -# Copyright 1999-2019 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI="4"
35 -
36 -inherit eutils libtool toolchain-funcs multilib-minimal usr-ldscript
37 -
38 -DESCRIPTION="access control list utilities, libraries and headers"
39 -HOMEPAGE="https://savannah.nongnu.org/projects/acl"
40 -SRC_URI="mirror://nongnu/${PN}/${P}.src.tar.gz"
41 -
42 -LICENSE="LGPL-2.1"
43 -SLOT="0"
44 -KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 ~riscv s390 sh sparc x86 ~amd64-linux ~x86-linux"
45 -IUSE="nls static-libs"
46 -
47 -RDEPEND=">=sys-apps/attr-2.4.47-r1[${MULTILIB_USEDEP}]"
48 -DEPEND="${RDEPEND}
49 - nls? ( sys-devel/gettext )"
50 -
51 -src_prepare() {
52 - sed -i \
53 - -e "/^PKG_DOC_DIR/s:@pkg_name@:${PF}:" \
54 - -e '/HAVE_ZIPPED_MANPAGES/s:=.*:=false:' \
55 - include/builddefs.in \
56 - || die
57 - strip-linguas po
58 - elibtoolize #580792
59 -
60 - # same as https://savannah.nongnu.org/bugs/index.php?39736
61 - multilib_copy_sources
62 -}
63 -
64 -multilib_src_configure() {
65 - unset PLATFORM #184564
66 - export OPTIMIZER=${CFLAGS}
67 - export DEBUG=-DNDEBUG
68 -
69 - econf \
70 - $(use_enable nls gettext) \
71 - --enable-shared $(use_enable static-libs static) \
72 - --libexecdir="${EPREFIX}"/usr/$(get_libdir) \
73 - --bindir="${EPREFIX}"/bin
74 -}
75 -
76 -multilib_src_install() {
77 - emake DIST_ROOT="${D}" install install-dev install-lib
78 -
79 - # move shared libs to /
80 - gen_usr_ldscript -a acl
81 -}
82 -
83 -multilib_src_install_all() {
84 - use static-libs || prune_libtool_files --all
85 -}