From: "Hans de Graaff" <graaff@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/tar/
Date: Sun, 18 Feb 2024 07:24:08 +0000 (UTC) [thread overview]
Message-ID: <1708241041.fb7dbcdc8eac8d51da7ef162f249ac7f8d7e11c1.graaff@gentoo> (raw)
commit: fb7dbcdc8eac8d51da7ef162f249ac7f8d7e11c1
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 18 07:23:26 2024 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sun Feb 18 07:24:01 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb7dbcdc
app-arch/tar: drop 1.34-r2
Bug: https://bugs.gentoo.org/898176
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
app-arch/tar/tar-1.34-r2.ebuild | 102 ----------------------------------------
1 file changed, 102 deletions(-)
diff --git a/app-arch/tar/tar-1.34-r2.ebuild b/app-arch/tar/tar-1.34-r2.ebuild
deleted file mode 100644
index a9246ca810af..000000000000
--- a/app-arch/tar/tar-1.34-r2.ebuild
+++ /dev/null
@@ -1,102 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/tar.asc
-inherit verify-sig
-
-DESCRIPTION="Use this to make tarballs :)"
-HOMEPAGE="https://www.gnu.org/software/tar/"
-SRC_URI="mirror://gnu/tar/${P}.tar.xz
- https://alpha.gnu.org/gnu/tar/${P}.tar.xz"
-SRC_URI+=" verify-sig? (
- mirror://gnu/tar/${P}.tar.xz.sig
- https://alpha.gnu.org/gnu/tar/${P}.tar.xz.sig
- )"
-
-LICENSE="GPL-3+"
-SLOT="0"
-if [[ -z "$(ver_cut 3)" ]] || [[ "$(ver_cut 3)" -lt 90 ]] ; then
- KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris"
-fi
-IUSE="acl minimal nls selinux xattr"
-
-RDEPEND="
- acl? ( virtual/acl )
- selinux? ( sys-libs/libselinux )
-"
-DEPEND="${RDEPEND}
- xattr? ( elibc_glibc? ( sys-apps/attr ) )
-"
-BDEPEND="
- nls? ( sys-devel/gettext )
- verify-sig? ( sec-keys/openpgp-keys-tar )
-"
-PDEPEND="
- app-alternatives/tar
-"
-
-src_configure() {
- # -fanalyzer doesn't make sense for us in ebuilds, as it's for static analysis
- export gl_cv_warn_c__fanalyzer=no
-
- local myeconfargs=(
- --bindir="${EPREFIX}"/bin
- # Avoid -Werror
- --disable-gcc-warnings
- --enable-backup-scripts
- --libexecdir="${EPREFIX}"/usr/sbin
- $(use_with acl posix-acls)
- $(use_enable nls)
- $(use_with selinux)
- $(use_with xattr xattrs)
-
- # autoconf looks for gtar before tar (in configure scripts), hence
- # in Prefix it is important that it is there, otherwise, a gtar from
- # the host system (FreeBSD, Solaris, Darwin) will be found instead
- # of the Prefix provided (GNU) tar
- --program-prefix=g
- )
-
- FORCE_UNSAFE_CONFIGURE=1 econf "${myeconfargs[@]}"
-}
-
-src_install() {
- default
-
- # a nasty yet required piece of baggage
- exeinto /etc
- doexe "${FILESDIR}"/rmt
-
- mv "${ED}"/usr/sbin/{gbackup,backup-tar} || die
- mv "${ED}"/usr/sbin/{grestore,restore-tar} || die
- mv "${ED}"/usr/sbin/{g,}backup.sh || die
- mv "${ED}"/usr/sbin/{g,}dump-remind || die
-
- if use minimal ; then
- find "${ED}"/etc "${ED}"/*bin/ "${ED}"/usr/*bin/ \
- -type f -a '!' -name gtar \
- -delete || die
- fi
-
- if ! use minimal; then
- dosym grmt /usr/sbin/rmt
- fi
- dosym grmt.8 /usr/share/man/man8/rmt.8
-}
-
-pkg_postinst() {
- # ensure to preserve the symlink before app-alternatives/tar
- # is installed
- if [[ ! -h ${EROOT}/bin/tar ]]; then
- if [[ -e ${EROOT}/usr/bin/tar ]] ; then
- # bug #904887
- ewarn "${EROOT}/usr/bin/tar exists but is not a symlink."
- ewarn "This is expected during Prefix bootstrap and unsual otherwise."
- ewarn "Moving away unexpected ${EROOT}/usr/bin/tar to .bak."
- mv "${EROOT}/usr/bin/tar" "${EROOT}/usr/bin/tar.bak" || die
- fi
- ln -s gtar "${EROOT}/bin/tar" || die
- fi
-}
next reply other threads:[~2024-02-18 7:24 UTC|newest]
Thread overview: 108+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-02-18 7:24 Hans de Graaff [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-01-18 3:22 [gentoo-commits] repo/gentoo:master commit in: app-arch/tar/ Sam James
2023-09-24 14:22 Sam James
2023-08-20 8:11 Sam James
2023-08-19 11:38 Sam James
2023-08-19 7:23 Sam James
2023-08-19 6:35 Sam James
2023-07-18 21:08 Sam James
2023-07-18 21:07 Sam James
2023-05-15 18:49 Ulrich Müller
2023-05-02 19:10 Arthur Zamarin
2023-05-01 6:27 Sam James
2023-05-01 2:28 Sam James
2023-05-01 2:26 Sam James
2023-05-01 0:34 Sam James
2023-05-01 0:19 Sam James
2023-05-01 0:12 Sam James
2023-05-01 0:12 Sam James
2023-04-23 19:16 Sam James
2023-03-25 3:32 Sam James
2023-02-24 18:36 Sam James
2022-12-28 0:33 Sam James
2022-12-27 19:53 Sam James
2022-12-27 19:45 Sam James
2022-12-27 13:40 Sam James
2022-12-27 11:31 Sam James
2022-11-28 14:31 Michał Górny
2022-10-30 15:51 Sam James
2022-10-30 9:55 Sam James
2022-04-06 23:58 Sam James
2021-03-28 13:23 Sam James
2021-03-26 18:45 Sam James
2021-03-26 11:34 Sam James
2021-03-26 11:34 Sam James
2021-03-26 7:45 Agostino Sarubbo
2021-03-25 17:52 Sergei Trofimovich
2021-03-25 16:27 Agostino Sarubbo
2021-02-13 14:18 Lars Wendler
2021-01-07 17:37 Lars Wendler
2021-01-06 12:52 Fabian Groffen
2021-01-04 22:40 Mike Gilbert
2020-12-27 13:34 Fabian Groffen
2020-09-07 20:44 Mike Gilbert
2019-12-02 9:59 Lars Wendler
2019-05-03 23:17 Andreas K. Hüttel
2019-04-08 6:55 Mikle Kolyada
2019-04-08 6:55 Mikle Kolyada
2019-04-08 6:55 Mikle Kolyada
2019-04-08 4:32 Aaron Bauman
2019-04-07 21:00 Sergei Trofimovich
2019-04-02 9:51 Mikle Kolyada
2019-03-30 19:05 Mikle Kolyada
2019-03-29 4:41 Matt Turner
2019-03-29 4:41 Matt Turner
2019-03-27 23:44 Thomas Deutschmann
2019-03-26 21:09 Sergei Trofimovich
2019-03-25 21:33 Sergei Trofimovich
2019-03-25 21:13 Mikle Kolyada
2019-03-10 16:13 Mikle Kolyada
2019-02-23 19:15 Lars Wendler
2019-02-12 9:16 Mikle Kolyada
2019-02-12 9:16 Mikle Kolyada
2019-02-12 9:16 Mikle Kolyada
2019-01-30 18:51 Markus Meier
2019-01-22 7:16 Matt Turner
2019-01-06 22:18 Mart Raudsepp
2019-01-05 22:40 Sergei Trofimovich
2019-01-05 22:39 Sergei Trofimovich
2019-01-05 22:36 Sergei Trofimovich
2019-01-04 16:50 Thomas Deutschmann
2019-01-04 10:37 Mikle Kolyada
2019-01-04 0:02 Thomas Deutschmann
2019-01-03 0:20 Lars Wendler
2018-07-15 21:54 Mikle Kolyada
2018-07-09 19:06 Mikle Kolyada
2018-06-27 7:25 Tobias Klausmann
2018-06-25 6:21 Sergei Trofimovich
2018-06-24 20:25 Sergei Trofimovich
2018-06-23 14:59 Mart Raudsepp
2018-06-21 19:30 Sergei Trofimovich
2018-06-19 12:55 Thomas Deutschmann
2018-06-18 21:17 Mikle Kolyada
2018-06-18 18:31 Sergei Trofimovich
2018-05-06 13:20 Mart Raudsepp
2018-03-11 6:08 Matt Turner
2018-01-29 15:51 Tobias Klausmann
2018-01-10 6:19 Markus Meier
2017-12-21 10:33 Sergei Trofimovich
2017-12-21 8:48 Sergei Trofimovich
2017-12-19 22:20 Sergei Trofimovich
2017-12-19 15:46 Thomas Deutschmann
2017-12-19 4:41 Jason Zaman
2017-12-17 17:42 Lars Wendler
2017-12-17 17:42 Lars Wendler
2016-11-10 20:26 Mike Frysinger
2016-11-10 17:50 Markus Meier
2016-11-04 13:27 Jeroen Roovers
2016-11-04 8:24 Agostino Sarubbo
2016-11-04 8:21 Agostino Sarubbo
2016-11-01 11:05 Jeroen Roovers
2016-07-01 4:41 Jeroen Roovers
2016-06-04 4:58 Markus Meier
2016-06-01 13:32 Tobias Klausmann
2016-06-01 6:48 Jeroen Roovers
2016-05-27 12:46 Lars Wendler
2016-05-26 20:05 Lars Wendler
2016-05-16 21:08 Lars Wendler
2016-01-22 16:49 Fabian Groffen
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1708241041.fb7dbcdc8eac8d51da7ef162f249ac7f8d7e11c1.graaff@gentoo \
--to=graaff@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox