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 E3090138359 for ; Sat, 14 Nov 2020 09:34:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EFB05E0872; Sat, 14 Nov 2020 09:34:39 +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 B563BE0871 for ; Sat, 14 Nov 2020 09:34:39 +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 A9BDD3408F9 for ; Sat, 14 Nov 2020 09:34:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2EF8C2CA for ; Sat, 14 Nov 2020 09:34:37 +0000 (UTC) From: "Kent Fredric" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Kent Fredric" Message-ID: <1605346369.b06c8cb0ab916ed51493741f76e6a5645b1ee5ad.kentnl@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/rex/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-admin/rex/rex-9999.ebuild X-VCS-Directories: app-admin/rex/ X-VCS-Committer: kentnl X-VCS-Committer-Name: Kent Fredric X-VCS-Revision: b06c8cb0ab916ed51493741f76e6a5645b1ee5ad X-VCS-Branch: master Date: Sat, 14 Nov 2020 09:34:37 +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: 4afd8245-088d-4f04-b0d0-e815808fb3ca X-Archives-Hash: 7673a7468648446e8cbb3fec1f19b14a commit: b06c8cb0ab916ed51493741f76e6a5645b1ee5ad Author: Kent Fredric gentoo org> AuthorDate: Sat Nov 14 09:19:51 2020 +0000 Commit: Kent Fredric gentoo org> CommitDate: Sat Nov 14 09:32:49 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b06c8cb0 app-admin/rex: -9999 strip authortests w/ false-postive missing deps These files make `dzil listdeps` report additional dependencies that aren't actually useful or needed anywhere in the build. Stripping them makes the number of complained about missing deps in einfo logs smaller Package-Manager: Portage-3.0.8, Repoman-3.0.1 Signed-off-by: Kent Fredric gentoo.org> app-admin/rex/rex-9999.ebuild | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/app-admin/rex/rex-9999.ebuild b/app-admin/rex/rex-9999.ebuild index 6a9496d529c..f3a8a74be86 100644 --- a/app-admin/rex/rex-9999.ebuild +++ b/app-admin/rex/rex-9999.ebuild @@ -130,6 +130,12 @@ dzil_src_prep() { -e '/^\[OptionalFeature/,/^$/d' \ -e '/^\[Test::MinimumVersion\]/{N;d}' \ -i dist.ini || die "Can't patch dist.ini" + + # Removals/additons have to be tracked by git or dzil build fails + # Spurious warning during src_prepare + git rm -f xt/author/critic-progressive.t || die "Can't rm author/critic-progressive.t" + # Spurious warning during src_prepare + git rm -f xt/author/perltidy.t || die "Can't rm author/perltidy.t" } dzil_env_setup() { # NextRelease noise :( @@ -146,7 +152,7 @@ dzil_to_distdir() { cd "${dzil_root}" || die "Can't enter git workdir '${dzil_root}'"; - dzil_src_prep + S="${dzil_root}" dzil_src_prep dzil_env_setup dzil_version="$(dzil version)" || die "Error invoking 'dzil version'"