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/attr/
Date: Thu, 02 Jan 2020 11:54:34
Message-Id: 1577966059.00375bb3c8f6148a4ebda6cf18f22e9919e9c644.polynomial-c@gentoo
1 commit: 00375bb3c8f6148a4ebda6cf18f22e9919e9c644
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 2 11:54:19 2020 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 2 11:54:19 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00375bb3
7
8 sys-apps/attr: 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/attr/Manifest | 1 -
14 sys-apps/attr/attr-2.4.47-r2.ebuild | 67 -------------------------------------
15 2 files changed, 68 deletions(-)
16
17 diff --git a/sys-apps/attr/Manifest b/sys-apps/attr/Manifest
18 index c9dc8c8d3ea..b4c74752aa0 100644
19 --- a/sys-apps/attr/Manifest
20 +++ b/sys-apps/attr/Manifest
21 @@ -1,2 +1 @@
22 -DIST attr-2.4.47.src.tar.gz 343692 BLAKE2B af4d509f156cb2e693f0faebf1a6cfb4a27cbdd3fd7f8b436cc01419c905ff9ac36214ada2ca8269e49c2e276917b1178dcda97050cf25cecd65382f22bdf9bb SHA512 2a333f63655758298650cf8f89c175efdc0112dcc4013e8d023e2a9a69f177e4bcb1f1d10b6666d6f2027dca4dec0833d54749952ab153d28367e1a72e6e2831
23 DIST attr-2.4.48.tar.gz 467840 BLAKE2B 8fa6a5013b927850868b6913d026f23f116b75da3925d5da5eea007e14f5d9e309f98290b7ffaa6c62f620ff8f3ec7bfb3a1fcb04f3c0c072fca5feacaf804c0 SHA512 75f870a0e6e19b8975f3fdceee786fbaff3eadaa9ab9af01996ffa8e50fe5b2bba6e4c22c44a6722d11b55feb9e89895d0151d6811c1d2b475ef4ed145f0c923
24
25 diff --git a/sys-apps/attr/attr-2.4.47-r2.ebuild b/sys-apps/attr/attr-2.4.47-r2.ebuild
26 deleted file mode 100644
27 index 62babe4016f..00000000000
28 --- a/sys-apps/attr/attr-2.4.47-r2.ebuild
29 +++ /dev/null
30 @@ -1,67 +0,0 @@
31 -# Copyright 1999-2015 Gentoo Foundation
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="Extended attributes tools"
39 -HOMEPAGE="https://savannah.nongnu.org/projects/attr"
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 s390 sh sparc x86 ~amd64-linux ~x86-linux"
45 -IUSE="nls static-libs"
46 -
47 -DEPEND="nls? ( sys-devel/gettext )
48 - sys-devel/autoconf"
49 -RDEPEND=""
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 -u po
58 - elibtoolize #580792
59 -
60 - multilib_copy_sources # https://savannah.nongnu.org/bugs/index.php?39736
61 -}
62 -
63 -multilib_src_configure() {
64 - unset PLATFORM #184564
65 - export OPTIMIZER=${CFLAGS}
66 - export DEBUG=-DNDEBUG
67 -
68 - econf \
69 - $(use_enable nls gettext) \
70 - --enable-shared $(use_enable static-libs static) \
71 - --libexecdir="${EPREFIX}"/usr/$(get_libdir) \
72 - --bindir="${EPREFIX}"/bin
73 -}
74 -
75 -multilib_src_compile() {
76 - emake $(multilib_is_native_abi || echo TOOL_SUBDIRS=)
77 -}
78 -
79 -multilib_src_install() {
80 - emake \
81 - $(multilib_is_native_abi || echo TOOL_SUBDIRS=) \
82 - DIST_ROOT="${D}" \
83 - install install-lib install-dev
84 -
85 - if multilib_is_native_abi; then
86 - # we install attr into /bin, so we need the shared lib with it
87 - gen_usr_ldscript -a attr
88 - # the man-pages packages provides the man2 files
89 - # note: man-pages are installed by TOOL_SUBDIRS
90 - rm -r "${ED}"/usr/share/man/man2 "${ED}"/usr/share/man/man5/attr.5 || die
91 - fi
92 -}
93 -
94 -multilib_src_install_all() {
95 - use static-libs || prune_libtool_files --all
96 - einstalldocs
97 -}