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 B6AA41382C5 for ; Mon, 21 May 2018 05:08:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BF451E0986; Mon, 21 May 2018 05:08:31 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 8450DE0986 for ; Mon, 21 May 2018 05:08:31 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 09B23335D07 for ; Mon, 21 May 2018 05:08:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1B18E285 for ; Mon, 21 May 2018 05:08:27 +0000 (UTC) From: "Robin H. Johnson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Robin H. Johnson" Message-ID: <1526879301.d2f244bff1b9d0a3dc32f8e4f1b175f664b92592.robbat2@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/git/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-vcs/git/git-2.16.1.ebuild dev-vcs/git/git-2.16.3.ebuild dev-vcs/git/git-2.17.0.ebuild dev-vcs/git/git-9999-r1.ebuild dev-vcs/git/git-9999-r2.ebuild dev-vcs/git/git-9999-r3.ebuild dev-vcs/git/git-9999.ebuild X-VCS-Directories: dev-vcs/git/ X-VCS-Committer: robbat2 X-VCS-Committer-Name: Robin H. Johnson X-VCS-Revision: d2f244bff1b9d0a3dc32f8e4f1b175f664b92592 X-VCS-Branch: master Date: Mon, 21 May 2018 05:08:27 +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-Archives-Salt: 716755e4-6e02-48c8-9472-e3e7f72c929e X-Archives-Hash: 068cee8ebaade54b02e3fceb1bbb8e9d commit: d2f244bff1b9d0a3dc32f8e4f1b175f664b92592 Author: Robin H. Johnson gentoo org> AuthorDate: Mon May 21 05:08:08 2018 +0000 Commit: Robin H. Johnson gentoo org> CommitDate: Mon May 21 05:08:21 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2f244bf dev-vcs/git: improve perl packlist cleanup Signed-off-by: Robin H. Johnson gentoo.org> Package-Manager: Portage-2.3.33, Repoman-2.3.9 dev-vcs/git/git-2.16.1.ebuild | 5 +++-- dev-vcs/git/git-2.16.3.ebuild | 5 +++-- dev-vcs/git/git-2.17.0.ebuild | 6 +++--- dev-vcs/git/git-9999-r1.ebuild | 6 +++--- dev-vcs/git/git-9999-r2.ebuild | 6 +++--- dev-vcs/git/git-9999-r3.ebuild | 6 +++--- dev-vcs/git/git-9999.ebuild | 6 +++--- 7 files changed, 21 insertions(+), 19 deletions(-) diff --git a/dev-vcs/git/git-2.16.1.ebuild b/dev-vcs/git/git-2.16.1.ebuild index ef8239e6b0d..e675a47660d 100644 --- a/dev-vcs/git/git-2.16.1.ebuild +++ b/dev-vcs/git/git-2.16.1.ebuild @@ -535,9 +535,10 @@ src_install() { newdoc "${S}"/gitweb/README README.gitweb for d in "${ED}"/usr/lib{64,}/perl5/ ; do - test -d "$d" && find "$d" \ + if test -d "$d" ; then find "$d" \ -name .packlist \ - -delete + -delete || die + fi done else rm -rf "${ED}"/usr/share/gitweb diff --git a/dev-vcs/git/git-2.16.3.ebuild b/dev-vcs/git/git-2.16.3.ebuild index b1eec131970..d0faf8d3a1f 100644 --- a/dev-vcs/git/git-2.16.3.ebuild +++ b/dev-vcs/git/git-2.16.3.ebuild @@ -535,9 +535,10 @@ src_install() { newdoc "${S}"/gitweb/README README.gitweb for d in "${ED}"/usr/lib{64,}/perl5/ ; do - test -d "$d" && find "$d" \ + if test -d "$d" ; then find "$d" \ -name .packlist \ - -delete + -delete || die + fi done else rm -rf "${ED}"/usr/share/gitweb diff --git a/dev-vcs/git/git-2.17.0.ebuild b/dev-vcs/git/git-2.17.0.ebuild index ec767a414c4..5f55ce0d640 100644 --- a/dev-vcs/git/git-2.17.0.ebuild +++ b/dev-vcs/git/git-2.17.0.ebuild @@ -544,10 +544,10 @@ src_install() { newdoc "${S}"/gitweb/README README.gitweb for d in "${ED%/}"/usr/lib{,64}/perl5/ ; do - test -d "$d" && find "${d}" \ + if test -d "$d" ; then find "$d" \ -name .packlist \ - -delete \ - || die + -delete || die + fi done else rm -rf "${ED%/}"/usr/share/gitweb diff --git a/dev-vcs/git/git-9999-r1.ebuild b/dev-vcs/git/git-9999-r1.ebuild index 592c262cdb8..1fb66925cbf 100644 --- a/dev-vcs/git/git-9999-r1.ebuild +++ b/dev-vcs/git/git-9999-r1.ebuild @@ -544,10 +544,10 @@ src_install() { newdoc "${S}"/gitweb/README README.gitweb for d in "${ED%/}"/usr/lib{,64}/perl5/ ; do - test -d "$d" && find "${d}" \ + if test -d "$d" ; then find "$d" \ -name .packlist \ - -delete \ - || die + -delete || die + fi done else rm -rf "${ED%/}"/usr/share/gitweb diff --git a/dev-vcs/git/git-9999-r2.ebuild b/dev-vcs/git/git-9999-r2.ebuild index 592c262cdb8..1fb66925cbf 100644 --- a/dev-vcs/git/git-9999-r2.ebuild +++ b/dev-vcs/git/git-9999-r2.ebuild @@ -544,10 +544,10 @@ src_install() { newdoc "${S}"/gitweb/README README.gitweb for d in "${ED%/}"/usr/lib{,64}/perl5/ ; do - test -d "$d" && find "${d}" \ + if test -d "$d" ; then find "$d" \ -name .packlist \ - -delete \ - || die + -delete || die + fi done else rm -rf "${ED%/}"/usr/share/gitweb diff --git a/dev-vcs/git/git-9999-r3.ebuild b/dev-vcs/git/git-9999-r3.ebuild index 592c262cdb8..259fc34ecd4 100644 --- a/dev-vcs/git/git-9999-r3.ebuild +++ b/dev-vcs/git/git-9999-r3.ebuild @@ -544,10 +544,10 @@ src_install() { newdoc "${S}"/gitweb/README README.gitweb for d in "${ED%/}"/usr/lib{,64}/perl5/ ; do - test -d "$d" && find "${d}" \ + if test -d "$d" ; then find "${d}" \ -name .packlist \ - -delete \ - || die + -delete || die + fi done else rm -rf "${ED%/}"/usr/share/gitweb diff --git a/dev-vcs/git/git-9999.ebuild b/dev-vcs/git/git-9999.ebuild index 592c262cdb8..1fb66925cbf 100644 --- a/dev-vcs/git/git-9999.ebuild +++ b/dev-vcs/git/git-9999.ebuild @@ -544,10 +544,10 @@ src_install() { newdoc "${S}"/gitweb/README README.gitweb for d in "${ED%/}"/usr/lib{,64}/perl5/ ; do - test -d "$d" && find "${d}" \ + if test -d "$d" ; then find "$d" \ -name .packlist \ - -delete \ - || die + -delete || die + fi done else rm -rf "${ED%/}"/usr/share/gitweb