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: app-arch/tar/
Date: Thu, 03 Jan 2019 00:20:25
Message-Id: 1546474777.e9a0e0182f3473e9097ce86410e3ddab611edf8a.polynomial-c@gentoo
1 commit: e9a0e0182f3473e9097ce86410e3ddab611edf8a
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 3 00:19:37 2019 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 3 00:19:37 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9a0e018
7
8 app-arch/tar: Bump to version 1.31
9
10 Package-Manager: Portage-2.3.53, Repoman-2.3.12
11 Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
12
13 app-arch/tar/Manifest | 1 +
14 app-arch/tar/tar-1.31.ebuild | 76 ++++++++++++++++++++++++++++++++++++++++++++
15 2 files changed, 77 insertions(+)
16
17 diff --git a/app-arch/tar/Manifest b/app-arch/tar/Manifest
18 index 4d3b42f1260..686dbf3e93b 100644
19 --- a/app-arch/tar/Manifest
20 +++ b/app-arch/tar/Manifest
21 @@ -1 +1,2 @@
22 DIST tar-1.30.tar.bz2 2858639 BLAKE2B 82a8b1fbf1eb5c0347b2f8cf35854498e2955eb85eaf041ec44a38bbd9bc82cc7184d5cb858f9905f503c9178ec6d0ed50be2dc27be9933b29e0a18b8e6c0b8f SHA512 07a1157430898fee1a2c6fd3853d59d4ae13998db685669c8c702f73d2466eeb9892f84a5f0495bfe088c8190a643a99ac9f2cb16b85c9fe3ae0d83cc0f338e8
23 +DIST tar-1.31.tar.bz2 2946047 BLAKE2B c85c17740e4cd3e8c93d10d93b070cd80629b7f052d020c0513cdddd377f3f90e229a6fa10dfbb43e1006f8202c674f2df854b864c0947f49339a52964d65c1c SHA512 0f4d00e08d56a8f8c32aac0afa2845397efb8ad72eaa6af47334cef9612adb1a4b91406bdc2c3a2cf1b9cc8b92c12735a331e0d137b24f66703f6af6219464f6
24
25 diff --git a/app-arch/tar/tar-1.31.ebuild b/app-arch/tar/tar-1.31.ebuild
26 new file mode 100644
27 index 00000000000..9008c8d1b60
28 --- /dev/null
29 +++ b/app-arch/tar/tar-1.31.ebuild
30 @@ -0,0 +1,76 @@
31 +# Copyright 1999-2019 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +
36 +inherit flag-o-matic
37 +
38 +DESCRIPTION="Use this to make tarballs :)"
39 +HOMEPAGE="https://www.gnu.org/software/tar/"
40 +SRC_URI="mirror://gnu/tar/${P}.tar.bz2
41 + mirror://gnu-alpha/tar/${P}.tar.bz2"
42 +
43 +LICENSE="GPL-3+"
44 +SLOT="0"
45 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
46 +IUSE="acl elibc_glibc minimal nls selinux static userland_GNU xattr"
47 +
48 +RDEPEND="acl? ( virtual/acl )
49 + selinux? ( sys-libs/libselinux )"
50 +DEPEND="${RDEPEND}
51 + nls? ( >=sys-devel/gettext-0.10.35 )
52 + xattr? ( elibc_glibc? ( sys-apps/attr ) )"
53 +
54 +src_prepare() {
55 + default
56 +
57 + if ! use userland_GNU ; then
58 + sed -i \
59 + -e 's:/backup\.sh:/gbackup.sh:' \
60 + scripts/{backup,dump-remind,restore}.in \
61 + || die "sed non-GNU"
62 + fi
63 +}
64 +
65 +src_configure() {
66 + use static && append-ldflags -static
67 + local myeconfargs=(
68 + --bindir="${EPREFIX}"/bin
69 + --enable-backup-scripts
70 + --libexecdir="${EPREFIX}"/usr/sbin
71 + $(usex userland_GNU "" "--program-prefix=g")
72 + $(use_with acl posix-acls)
73 + $(use_enable nls)
74 + $(use_with selinux)
75 + $(use_with xattr xattrs)
76 + )
77 + FORCE_UNSAFE_CONFIGURE=1 econf "${myeconfargs[@]}"
78 +}
79 +
80 +src_install() {
81 + default
82 +
83 + local p=$(usex userland_GNU "" "g")
84 + if [[ -z ${p} ]] ; then
85 + # a nasty yet required piece of baggage
86 + exeinto /etc
87 + doexe "${FILESDIR}"/rmt
88 + fi
89 +
90 + # autoconf looks for gtar before tar (in configure scripts), hence
91 + # in Prefix it is important that it is there, otherwise, a gtar from
92 + # the host system (FreeBSD, Solaris, Darwin) will be found instead
93 + # of the Prefix provided (GNU) tar
94 + if use prefix ; then
95 + dosym tar /bin/gtar
96 + fi
97 +
98 + mv "${ED%/}"/usr/sbin/${p}backup{,-tar} || die
99 + mv "${ED%/}"/usr/sbin/${p}restore{,-tar} || die
100 +
101 + if use minimal ; then
102 + find "${ED}"/etc "${ED}"/*bin/ "${ED}"/usr/*bin/ \
103 + -type f -a '!' '(' -name tar -o -name ${p}tar ')' \
104 + -delete || die
105 + fi
106 +}