From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1471828-garchives=archives.gentoo.org@lists.gentoo.org> 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 B7D9E158003 for <garchives@archives.gentoo.org>; Tue, 27 Dec 2022 11:59:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B7CCCE08F1; Tue, 27 Dec 2022 11:59:28 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9E0D8E08F1 for <gentoo-commits@lists.gentoo.org>; Tue, 27 Dec 2022 11:59:28 +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 898F53410EF for <gentoo-commits@lists.gentoo.org>; Tue, 27 Dec 2022 11:59:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B037B21 for <gentoo-commits@lists.gentoo.org>; Tue, 27 Dec 2022 11:59:25 +0000 (UTC) From: "Sam James" <sam@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" <sam@gentoo.org> Message-ID: <1672142189.30f64050da3809c7bea17cce2fc5d01f0f125cdd.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/pigz/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-arch/pigz/pigz-2.7.ebuild X-VCS-Directories: app-arch/pigz/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 30f64050da3809c7bea17cce2fc5d01f0f125cdd X-VCS-Branch: master Date: Tue, 27 Dec 2022 11:59:25 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 36b3df4a-7f04-485a-96df-294fda6f0ef7 X-Archives-Hash: 2859cb2e1ccfe108952a79c6d598d0a9 commit: 30f64050da3809c7bea17cce2fc5d01f0f125cdd Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Tue Dec 27 11:56:29 2022 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Tue Dec 27 11:56:29 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30f64050 app-arch/pigz: drop masked USE=symlink Use app-alternative/gzip instead (see news item). Bug: https://bugs.gentoo.org/868312 Bug: https://bugs.gentoo.org/868648 Signed-off-by: Sam James <sam <AT> gentoo.org> app-arch/pigz/pigz-2.7.ebuild | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/app-arch/pigz/pigz-2.7.ebuild b/app-arch/pigz/pigz-2.7.ebuild index 7f3581f77e76..7fed310a0345 100644 --- a/app-arch/pigz/pigz-2.7.ebuild +++ b/app-arch/pigz/pigz-2.7.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://www.zlib.net/pigz/${P}.tar.gz" LICENSE="ZLIB" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~ppc-macos ~sparc64-solaris" -IUSE="static symlink test" +IUSE="static test" RESTRICT="!test? ( test )" LIB_DEPEND="sys-libs/zlib[static-libs(+)]" @@ -31,9 +31,4 @@ src_install() { dosym ${PN} /usr/bin/un${PN} dodoc README doman ${PN}.1 - - if use symlink; then - dosym ${PN} /usr/bin/gzip - dosym un${PN} /usr/bin/gunzip - fi }