summaryrefslogtreecommitdiff
path: root/sys-fs
diff options
context:
space:
mode:
authorAndreas K. Hüttel <dilfridge@gentoo.org>2024-11-04 02:14:48 +0100
committerAndreas K. Hüttel <dilfridge@gentoo.org>2024-11-04 02:29:31 +0100
commit9390e21faff34800b9da46e8ba04e3b2e9000d27 (patch)
tree31549bde50deef2b2f034c6a0d9ceb7e6c994a58 /sys-fs
parentapp-misc/mc: drop 4.8.30-r1, 4.8.31, 4.8.32 (diff)
downloadgentoo-9390e21faff34800b9da46e8ba04e3b2e9000d27.tar.gz
gentoo-9390e21faff34800b9da46e8ba04e3b2e9000d27.tar.bz2
gentoo-9390e21faff34800b9da46e8ba04e3b2e9000d27.zip
sys-fs/squashfuse: drop 0.1.105
Bug: https://bugs.gentoo.org/934146 Signed-off-by: Andreas K. Hüttel <dilfridge@gentoo.org>
Diffstat (limited to 'sys-fs')
-rw-r--r--sys-fs/squashfuse/Manifest1
-rw-r--r--sys-fs/squashfuse/squashfuse-0.1.105.ebuild51
2 files changed, 0 insertions, 52 deletions
diff --git a/sys-fs/squashfuse/Manifest b/sys-fs/squashfuse/Manifest
index 7d4e49e41992..1cfe976f0a6b 100644
--- a/sys-fs/squashfuse/Manifest
+++ b/sys-fs/squashfuse/Manifest
@@ -1,2 +1 @@
-DIST squashfuse-0.1.105.tar.gz 65644 BLAKE2B 209808164a2803d1f4dedad048f29a809d92e5260193ff2db6a4eed4d887273f6b0b2a673123b9c460e587b9f9884c4115e2323f8de7f26535abcfe4de99ea20 SHA512 6bf18575fd4732f3b0e4530902f2556859c2efbbd781a31bdbf97fe6601412dc750a80354a8ab08a3132d4f8680ea5ff0dd04440f29243906f1017aa6c70bede
DIST squashfuse-0.5.2.tar.gz 75404 BLAKE2B bb0005395ad993932d27eccbf0aa57d587af19054e16cb2cb4cce13f9d97be011b70c3cffa5b21c4fbef294686b64dfa45e941e8a0fa10a6bea1e9264abf6b8b SHA512 4380d73afa47105e2188a4eebc6b54c5961a2ba38e5986865b7fd762ed0aea7d24b0d9f5b674abd9c29f73a336bd69142db7869a548560723f60559859cdd7f3
diff --git a/sys-fs/squashfuse/squashfuse-0.1.105.ebuild b/sys-fs/squashfuse/squashfuse-0.1.105.ebuild
deleted file mode 100644
index da1bd6c31fb1..000000000000
--- a/sys-fs/squashfuse/squashfuse-0.1.105.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 2016-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit autotools flag-o-matic
-
-DESCRIPTION="FUSE filesystem to mount squashfs archives"
-HOMEPAGE="https://github.com/vasi/squashfuse"
-SRC_URI="https://github.com/vasi/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="amd64 ~riscv ~x86 ~amd64-linux ~x86-linux"
-IUSE="lz4 lzma lzo static-libs +zlib zstd"
-REQUIRED_USE="|| ( lz4 lzma lzo zlib zstd )"
-
-COMMON_DEPEND="
- >=sys-fs/fuse-2.8.6:0=
- lzma? ( >=app-arch/xz-utils-5.0.4:= )
- zlib? ( >=sys-libs/zlib-1.2.5-r2:= )
- lzo? ( >=dev-libs/lzo-2.06:= )
- lz4? ( >=app-arch/lz4-0_p106:= )
- zstd? ( app-arch/zstd:= )
-"
-DEPEND="${COMMON_DEPEND}
- virtual/pkgconfig"
-RDEPEND="${COMMON_DEPEND}"
-# Tests require access to /dev/fuse.
-RESTRICT+=" test"
-
-src_configure() {
- filter-lto
- filter-flags -fwhole-program -fno-common
- eautoreconf
-
- local econfargs=(
- $(use_enable static-libs static)
- $(use lz4 || echo --without-lz4)
- $(use lzma || echo --without-xz)
- $(use lzo || echo --without-lzo)
- $(use zlib || echo --without-zlib)
- $(use zstd || echo --without-zstd)
- )
-
- econf "${econfargs[@]}"
-}
-
-src_install() {
- default
- find "${ED}" -name "*.la" -delete || die
-}