diff options
author | WANG Xuerui <xen0n@gentoo.org> | 2023-07-18 10:38:19 +0800 |
---|---|---|
committer | WANG Xuerui <xen0n@gentoo.org> | 2023-07-18 10:38:19 +0800 |
commit | 802db075c95e14d7e55f11eef34b11d301130bf0 (patch) | |
tree | 3c04fe47ab7cd8b72ff85cd7d0c22ac7bdd30fd0 /sys-fs/erofs-utils | |
parent | profiles/arch/loong: update sys-libs/compiler-rt-sanitizers unmasks (diff) | |
download | gentoo-802db075c95e14d7e55f11eef34b11d301130bf0.tar.gz gentoo-802db075c95e14d7e55f11eef34b11d301130bf0.tar.bz2 gentoo-802db075c95e14d7e55f11eef34b11d301130bf0.zip |
sys-fs/erofs-utils: drop 1.6
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.6.ebuild | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/sys-fs/erofs-utils/erofs-utils-1.6.ebuild b/sys-fs/erofs-utils/erofs-utils-1.6.ebuild deleted file mode 100644 index bae100e2e3a3..000000000000 --- a/sys-fs/erofs-utils/erofs-utils-1.6.ebuild +++ /dev/null @@ -1,47 +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 +lzma selinux +uuid" - -RDEPEND=" - fuse? ( sys-fs/fuse:0 ) - lz4? ( app-arch/lz4:0= ) - lzma? ( >=app-arch/xz-utils-5.4.0:0= ) - selinux? ( sys-libs/libselinux:0= ) - uuid? ( sys-apps/util-linux ) -" -DEPEND="${RDEPEND}" -BDEPEND="virtual/pkgconfig" - -PATCHES=( -) - -src_prepare() { - default - eautoreconf -} - -src_configure() { - local myeconfargs=( - --disable-werror - $(use_enable fuse) - $(use_enable lz4) - $(use_enable lzma) - $(use_with selinux) - $(use_with uuid) - ) - - econf "${myeconfargs[@]}" -} |