From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6C25C15800A for ; Tue, 18 Jul 2023 02:51:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 792FBE08AA; Tue, 18 Jul 2023 02:51:00 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 63C54E08AA for ; Tue, 18 Jul 2023 02:51:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 01083340D83 for ; Tue, 18 Jul 2023 02:50:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 356F2B8A for ; Tue, 18 Jul 2023 02:50:57 +0000 (UTC) From: "WANG Xuerui" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "WANG Xuerui" Message-ID: <1689647899.802db075c95e14d7e55f11eef34b11d301130bf0.xen0n@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/erofs-utils/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/erofs-utils/erofs-utils-1.6.ebuild X-VCS-Directories: sys-fs/erofs-utils/ X-VCS-Committer: xen0n X-VCS-Committer-Name: WANG Xuerui X-VCS-Revision: 802db075c95e14d7e55f11eef34b11d301130bf0 X-VCS-Branch: master Date: Tue, 18 Jul 2023 02:50:57 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 8105eb38-f37c-4bb8-b493-feae3afc2459 X-Archives-Hash: c524983bc6ddcedd4c5269ce344faef0 commit: 802db075c95e14d7e55f11eef34b11d301130bf0 Author: WANG Xuerui gentoo org> AuthorDate: Tue Jul 18 02:38:19 2023 +0000 Commit: WANG Xuerui gentoo org> CommitDate: Tue Jul 18 02:38:19 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=802db075 sys-fs/erofs-utils: drop 1.6 Signed-off-by: WANG Xuerui gentoo.org> sys-fs/erofs-utils/erofs-utils-1.6.ebuild | 47 ------------------------------- 1 file changed, 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[@]}" -}