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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B788113933E for ; Tue, 20 Jul 2021 16:42:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DEAC0E09EE; Tue, 20 Jul 2021 16:42:55 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C10CCE09EC for ; Tue, 20 Jul 2021 16:42:55 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C0A68342BB4 for ; Tue, 20 Jul 2021 16:42:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 379C07DB for ; Tue, 20 Jul 2021 16:42:53 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1626799334.f21f1d5b81b47ceb5b371497d25cb99fc4a7f045.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/archdiff/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/archdiff/archdiff-1.1.6.ebuild X-VCS-Directories: dev-util/archdiff/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: f21f1d5b81b47ceb5b371497d25cb99fc4a7f045 X-VCS-Branch: master Date: Tue, 20 Jul 2021 16:42:53 +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: a3867305-9a7d-48dd-a0e3-64a4dbcf7b4a X-Archives-Hash: e0898b8f8f70c2f15eb46bfe9daa2b63 commit: f21f1d5b81b47ceb5b371497d25cb99fc4a7f045 Author: Matt Turner gentoo org> AuthorDate: Thu Jul 8 05:04:21 2021 +0000 Commit: Matt Turner gentoo org> CommitDate: Tue Jul 20 16:42:14 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f21f1d5b dev-util/archdiff: Rename IUSE=gzip->zlib Signed-off-by: Matt Turner gentoo.org> dev-util/archdiff/archdiff-1.1.6.ebuild | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dev-util/archdiff/archdiff-1.1.6.ebuild b/dev-util/archdiff/archdiff-1.1.6.ebuild index 9ae08696e94..4b48705b0c7 100644 --- a/dev-util/archdiff/archdiff-1.1.6.ebuild +++ b/dev-util/archdiff/archdiff-1.1.6.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -10,10 +10,10 @@ SRC_URI="https://frigidcode.com/code/${PN}/${P}.tar.gz" LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="+bzip2 +lzma +gzip" +IUSE="+bzip2 +lzma +zlib" DEPEND="app-arch/libarchive[bzip2?,lzma?] - gzip? ( app-arch/libarchive[zlib] ) + zlib? ( app-arch/libarchive[zlib] ) dev-libs/rremove" RDEPEND="${DEPEND} app-misc/colordiff" @@ -21,6 +21,6 @@ RDEPEND="${DEPEND} src_configure() { econf \ $(use_enable bzip2) \ - $(use_enable gzip) \ + $(use_enable zlib gzip) \ $(use_enable lzma) }