net-fs/s3backer: drop old

Signed-off-by: Alexey Korepanov <kaikaikai@yandex.ru>
Part-of: https://github.com/gentoo/gentoo/pull/44547
Closes: https://github.com/gentoo/gentoo/pull/44547
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Alexey Korepanov 2025-11-09 13:06:31 +08:00 committed by Sam James
parent 9b0d109ded
commit 068b242e6f
No known key found for this signature in database
GPG Key ID: 738409F520DF9190
2 changed files with 0 additions and 55 deletions

View File

@ -1,3 +1,2 @@
DIST s3backer-2.1.2.tar.gz 156281 BLAKE2B 5891dbcecbd08b73d69218894d29ec56323d53ff9b594a853d42d6a621787392061895ae3168d6671b65db1b62cdca26959a122250e8878d740c2d806c9d305f SHA512 58e8bd5909b5f714ead7add9dcfe798d626628519e75f4f4347175c92fdf652e08f6ae00c2d9bf34fa859d46c111b846047ee4e613b94e81b7a7cdfc8e26fd9a
DIST s3backer-2.1.3.tar.gz 156859 BLAKE2B 0a28f739f29e2d63a6626247a16d437696a0b3ce2a2b83ae5875f40005ca7f61a3117cf4ecd4646006372cf3eb0afd7a423dca8dfe3db7041c53fc9fffce6b2b SHA512 14e892e3b327ba1c1c164aec30689c0a63e9ede162d4e4a99f9b4fcc0a4a3ef9c81fbacf775cb78f3830ab504e1759bc162af30d1b09a761e97de7191c3e60c8
DIST s3backer-2.1.6.tar.gz 160282 BLAKE2B aabf38d482eb15e7c97ffcae49be938b5777cdf2bb165cef962212fdd981249d4c030c13995702edd88d1bde80527922cfc1e461f766f2ebc351c594066198a6 SHA512 7d8ac90ae4b22eccf3fd838f0abc196cdc9b59283e068f1d4755d9a00ff70ff6cfab841d7169dd35256773ebd269bd46c34139d327645632cb014d109d1c54c4

View File

@ -1,54 +0,0 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools
DESCRIPTION="A filesystem that contains a single file backed by Amazon S3"
HOMEPAGE="https://github.com/archiecobbs/s3backer"
SRC_URI="https://github.com/archiecobbs/s3backer/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="nbd"
RDEPEND="
dev-libs/expat
dev-libs/openssl:0=
net-misc/curl
sys-fs/fuse:0
virtual/zlib:=
nbd? ( sys-block/nbd sys-block/nbdkit )
"
DEPEND="${RDEPEND}
elibc_musl? ( sys-libs/queue-standalone )
"
BDEPEND="
virtual/pkgconfig
"
src_prepare() {
default
# s3backer builds support for nbdkit if it finds nbdkit during build, no config is needed.
# yet it will still build support for nbd if USE="-nbd" but nbdkit is installed
sed -e "/docdir=/s:packages/\$(PACKAGE):${PF}:" \
-e "/doc_DATA=/d" \
-i Makefile.am || die
eautoreconf
}
src_compile() {
emake CFLAGS="${CFLAGS}"
}
src_install() {
default
# skip /run/s3backer-nbd if present
rm -rf "${ED}/run"
}