From: "Petr Vaněk" <arkamar@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-backup/tarsnap/
Date: Sat, 31 Aug 2024 15:44:41 +0000 (UTC) [thread overview]
Message-ID: <1725117616.d1ef5ea8fc076a249c863f9e11b1fa17859b6cc9.arkamar@gentoo> (raw)
commit: d1ef5ea8fc076a249c863f9e11b1fa17859b6cc9
Author: Petr Vaněk <arkamar <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 31 15:20:16 2024 +0000
Commit: Petr Vaněk <arkamar <AT> gentoo <DOT> org>
CommitDate: Sat Aug 31 15:20:16 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1ef5ea8
app-backup/tarsnap: drop 1.0.39-r1, 1.0.40
Signed-off-by: Petr Vaněk <arkamar <AT> gentoo.org>
app-backup/tarsnap/Manifest | 1 -
app-backup/tarsnap/tarsnap-1.0.39-r1.ebuild | 48 -------------------------
app-backup/tarsnap/tarsnap-1.0.40.ebuild | 56 -----------------------------
3 files changed, 105 deletions(-)
diff --git a/app-backup/tarsnap/Manifest b/app-backup/tarsnap/Manifest
index ea0b05c8f381..cf89de912705 100644
--- a/app-backup/tarsnap/Manifest
+++ b/app-backup/tarsnap/Manifest
@@ -1,2 +1 @@
-DIST tarsnap-autoconf-1.0.39.tgz 641089 BLAKE2B 4da7fa75c2a6df3186fac4f39a511532ae866c287a2bdc8dcc22049b53fcc903305f84fae9258793bc0c7a47b208d0bf2995143ee7b4296a35b4ca41d65d9a09 SHA512 dec8a72144a3a7fd42b006933c904b812894ca9fe2c57ecc4fbba817b9b49c8f15517530a00b0c3a9897e3182b4d9aee525334537806a9c4f7308086678fa2b4
DIST tarsnap-autoconf-1.0.40.tgz 723380 BLAKE2B a794bb9bae3637c36841ad4bb0fa1c0e1c39a78ac2dc92f18cbe7dfe1036aa861f5421751dd8a85948dcb101ecb81f2177e844609b289238abd9a8448ba1655a SHA512 a4910c5cbea4a71218638703ba3140e5536a2c9bb7f35007115a7ae4a87fcd07b1be91d88e49240ee8db39be326bac049c0893c1406f215123d55a13b7b57941
diff --git a/app-backup/tarsnap/tarsnap-1.0.39-r1.ebuild b/app-backup/tarsnap/tarsnap-1.0.39-r1.ebuild
deleted file mode 100644
index 1945b8ea081f..000000000000
--- a/app-backup/tarsnap/tarsnap-1.0.39-r1.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-inherit bash-completion-r1 toolchain-funcs
-
-DESCRIPTION="Online backups for the truly paranoid"
-HOMEPAGE="https://www.tarsnap.com/"
-SRC_URI="https://www.tarsnap.com/download/${PN}-autoconf-${PV}.tgz"
-
-LICENSE="tarsnap"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="acl bzip2 lzma xattr"
-
-RDEPEND="
- dev-libs/openssl:0=
- sys-fs/e2fsprogs
- sys-libs/zlib
- acl? ( sys-apps/acl )
- bzip2? ( app-arch/bzip2 )
- lzma? ( app-arch/xz-utils )
- xattr? ( sys-apps/attr )"
-DEPEND="${RDEPEND}
- virtual/os-headers" # Required for "magic.h"
-
-PATCHES=( "${FILESDIR}"/${PN}-1.0.39-respect-AR.patch )
-
-S=${WORKDIR}/${PN}-autoconf-${PV}
-
-src_configure() {
- econf \
- $(use_enable xattr) \
- $(use_enable acl) \
- $(use_with bzip2 bz2lib) \
- --without-lzmadec \
- $(use_with lzma)
-}
-
-src_compile() {
- emake AR="$(tc-getAR)"
-}
-
-src_install() {
- default
- dobashcomp misc/bash_completion.d/*
-}
diff --git a/app-backup/tarsnap/tarsnap-1.0.40.ebuild b/app-backup/tarsnap/tarsnap-1.0.40.ebuild
deleted file mode 100644
index ebf35c72ced2..000000000000
--- a/app-backup/tarsnap/tarsnap-1.0.40.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit bash-completion-r1 toolchain-funcs
-
-DESCRIPTION="Online backups for the truly paranoid"
-HOMEPAGE="https://www.tarsnap.com/"
-SRC_URI="https://www.tarsnap.com/download/${PN}-autoconf-${PV}.tgz"
-S="${WORKDIR}"/${PN}-autoconf-${PV}
-
-LICENSE="tarsnap"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="acl bzip2 lzma xattr"
-
-RDEPEND="
- dev-libs/openssl:=
- sys-fs/e2fsprogs
- sys-libs/zlib
- acl? ( sys-apps/acl )
- bzip2? ( app-arch/bzip2 )
- lzma? ( app-arch/xz-utils )
- xattr? ( sys-apps/attr )
-"
-# Required for "magic.h"
-DEPEND="
- ${RDEPEND}
- virtual/os-headers
-"
-
-PATCHES=(
- "${FILESDIR}"/${PN}-1.0.39-respect-AR.patch
-)
-
-src_configure() {
- local myeconfargs=(
- $(use_enable xattr)
- $(use_enable acl)
- $(use_with bzip2 bz2lib)
- --without-lzmadec
- $(use_with lzma)
- )
-
- econf "${myeconfargs[@]}"
-}
-
-src_compile() {
- emake AR="$(tc-getAR)"
-}
-
-src_install() {
- default
- dobashcomp misc/bash_completion.d/*
-}
next reply other threads:[~2024-08-31 15:44 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-08-31 15:44 Petr Vaněk [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-02-05 7:01 [gentoo-commits] repo/gentoo:master commit in: app-backup/tarsnap/ Ulrich Müller
2024-10-21 2:55 Eli Schwartz
2023-06-10 4:20 Sam James
2023-06-10 4:20 Sam James
2023-05-05 10:22 Sam James
2023-05-05 5:03 Sam James
2023-05-04 0:05 Sam James
2021-09-13 20:30 David Seifert
2021-05-08 18:44 Sam James
2021-05-08 18:41 Sam James
2021-05-07 19:44 Thomas Deutschmann
2021-04-30 17:32 Mikle Kolyada
2020-12-21 15:37 Thomas Deutschmann
2020-09-26 14:33 Aaron Bauman
2018-12-29 20:34 Thomas Deutschmann
2016-12-12 4:48 Tim Harder
2016-08-19 10:07 Pacho Ramos
2016-03-21 23:20 Anthony G. Basile
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=1725117616.d1ef5ea8fc076a249c863f9e11b1fa17859b6cc9.arkamar@gentoo \
--to=arkamar@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