summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWANG Xuerui <xen0n@gentoo.org>2023-06-28 22:27:35 +0800
committerWANG Xuerui <xen0n@gentoo.org>2023-06-29 01:31:48 +0800
commitcc1aa2fb61faab00895d8a76ea7502764a90f482 (patch)
treec4f1475fcf4b288c78cd9eed74ec71113a4a11e7 /sys-fs/erofs-utils
parentsys-fs/erofs-utils: add 1.6 (diff)
downloadgentoo-cc1aa2fb61faab00895d8a76ea7502764a90f482.tar.gz
gentoo-cc1aa2fb61faab00895d8a76ea7502764a90f482.tar.bz2
gentoo-cc1aa2fb61faab00895d8a76ea7502764a90f482.zip
sys-fs/erofs-utils: drop 1.5
Signed-off-by: WANG Xuerui <xen0n@gentoo.org>
Diffstat (limited to 'sys-fs/erofs-utils')
-rw-r--r--sys-fs/erofs-utils/erofs-utils-1.5.ebuild46
1 files changed, 0 insertions, 46 deletions
diff --git a/sys-fs/erofs-utils/erofs-utils-1.5.ebuild b/sys-fs/erofs-utils/erofs-utils-1.5.ebuild
deleted file mode 100644
index 95792c4fbb4b..000000000000
--- a/sys-fs/erofs-utils/erofs-utils-1.5.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 2021-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools
-
-DESCRIPTION="Userspace tools for EROFS"
-HOMEPAGE="https://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git"
-LICENSE="GPL-2+"
-
-SRC_URI="https://git.kernel.org/pub/scm/linux/kernel/git/xiang/${PN}.git/snapshot/${P}.tar.gz"
-KEYWORDS="amd64 ~loong"
-
-SLOT="0"
-IUSE="fuse +lz4 selinux +uuid"
-
-RDEPEND="
- fuse? ( sys-fs/fuse:0 )
- lz4? ( app-arch/lz4:0= )
- selinux? ( sys-libs/libselinux:0= )
- uuid? ( sys-apps/util-linux )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-PATCHES=(
-)
-
-src_prepare() {
- default
- eautoreconf
-}
-
-src_configure() {
- # This package asks for MicroLZMA support, which is not included in any
- # released version of xz-utils at the moment, so disable lzma until a new
- # xz-utils is packaged.
- econf \
- --disable-werror \
- $(use_enable fuse) \
- $(use_enable lz4) \
- --disable-lzma \
- $(use_with selinux) \
- $(use_with uuid)
-}