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 24DC11382C5 for ; Wed, 14 Feb 2018 15:55:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 035DFE09C9; Wed, 14 Feb 2018 15:55:07 +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 CBC83E09C9 for ; Wed, 14 Feb 2018 15:55:06 +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 64C60335C92 for ; Wed, 14 Feb 2018 13:28:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E43931E6 for ; Wed, 14 Feb 2018 13:28:41 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1518614917.368cf8c604417576891a8f2efe1d33eab7f246dd.polynomial-c@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-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: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 368cf8c604417576891a8f2efe1d33eab7f246dd X-VCS-Branch: master Date: Wed, 14 Feb 2018 13:28:41 +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: 262438e8-e3be-4222-9329-c60812ca6c8b X-Archives-Hash: 549c4dbd6aaea1053070c524d73abae2 commit: 368cf8c604417576891a8f2efe1d33eab7f246dd Author: Lars Wendler gentoo org> AuthorDate: Wed Feb 14 13:28:23 2018 +0000 Commit: Lars Wendler gentoo org> CommitDate: Wed Feb 14 13:28:37 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=368cf8c6 dev-vcs/git: Minor adjustments in src_test() Package-Manager: Portage-2.3.24, Repoman-2.3.6 dev-vcs/git/git-2.16.1.ebuild | 14 +++++++------- dev-vcs/git/git-9999-r1.ebuild | 14 +++++++------- dev-vcs/git/git-9999-r2.ebuild | 14 +++++++------- dev-vcs/git/git-9999-r3.ebuild | 14 +++++++------- dev-vcs/git/git-9999.ebuild | 14 +++++++------- 5 files changed, 35 insertions(+), 35 deletions(-) diff --git a/dev-vcs/git/git-2.16.1.ebuild b/dev-vcs/git/git-2.16.1.ebuild index 67a7f811554..e9f0c242bcf 100644 --- a/dev-vcs/git/git-2.16.1.ebuild +++ b/dev-vcs/git/git-2.16.1.ebuild @@ -572,7 +572,7 @@ src_install() { } src_test() { - local disabled="t9128-git-svn-cmd-branch.sh" + local disabled="" local tests_cvs="t9200-git-cvsexportcommit.sh \ t9400-git-cvsserver-server.sh \ t9401-git-cvsserver-crlf.sh \ @@ -603,7 +603,7 @@ src_test() { # Unzip is used only for the testcase code, not by any normal parts of Git. if ! has_version app-arch/unzip ; then einfo "Disabling tar-tree tests" - disabled="${disabled} t5000-tar-tree.sh" + disabled+=" t5000-tar-tree.sh" fi cvs=0 @@ -612,10 +612,10 @@ src_test() { if [[ $cvs -eq 1 ]]; then ewarn "Skipping CVS tests because CVS does not work as root!" ewarn "You should retest with FEATURES=userpriv!" - disabled="${disabled} ${tests_cvs}" + disabled+=" ${tests_cvs}" fi einfo "Skipping other tests that require being non-root" - disabled="${disabled} ${tests_nonroot}" + disabled+=" ${tests_nonroot}" else [[ $cvs -gt 0 ]] && \ has_version dev-vcs/cvs && \ @@ -625,17 +625,17 @@ src_test() { let cvs=$cvs+1 if [[ $cvs -lt 3 ]]; then einfo "Disabling CVS tests (needs dev-vcs/cvs[USE=server])" - disabled="${disabled} ${tests_cvs}" + disabled+=" ${tests_cvs}" fi fi if ! use perl ; then einfo "Disabling tests that need Perl" - disabled="${disabled} ${tests_perl}" + disabled+=" ${tests_perl}" fi einfo "Disabling tests that fail with SVN 1.7" - disabled="${disabled} ${test_svn}" + disabled+=" ${test_svn}" # Reset all previously disabled tests cd "${S}/t" diff --git a/dev-vcs/git/git-9999-r1.ebuild b/dev-vcs/git/git-9999-r1.ebuild index 67a7f811554..e9f0c242bcf 100644 --- a/dev-vcs/git/git-9999-r1.ebuild +++ b/dev-vcs/git/git-9999-r1.ebuild @@ -572,7 +572,7 @@ src_install() { } src_test() { - local disabled="t9128-git-svn-cmd-branch.sh" + local disabled="" local tests_cvs="t9200-git-cvsexportcommit.sh \ t9400-git-cvsserver-server.sh \ t9401-git-cvsserver-crlf.sh \ @@ -603,7 +603,7 @@ src_test() { # Unzip is used only for the testcase code, not by any normal parts of Git. if ! has_version app-arch/unzip ; then einfo "Disabling tar-tree tests" - disabled="${disabled} t5000-tar-tree.sh" + disabled+=" t5000-tar-tree.sh" fi cvs=0 @@ -612,10 +612,10 @@ src_test() { if [[ $cvs -eq 1 ]]; then ewarn "Skipping CVS tests because CVS does not work as root!" ewarn "You should retest with FEATURES=userpriv!" - disabled="${disabled} ${tests_cvs}" + disabled+=" ${tests_cvs}" fi einfo "Skipping other tests that require being non-root" - disabled="${disabled} ${tests_nonroot}" + disabled+=" ${tests_nonroot}" else [[ $cvs -gt 0 ]] && \ has_version dev-vcs/cvs && \ @@ -625,17 +625,17 @@ src_test() { let cvs=$cvs+1 if [[ $cvs -lt 3 ]]; then einfo "Disabling CVS tests (needs dev-vcs/cvs[USE=server])" - disabled="${disabled} ${tests_cvs}" + disabled+=" ${tests_cvs}" fi fi if ! use perl ; then einfo "Disabling tests that need Perl" - disabled="${disabled} ${tests_perl}" + disabled+=" ${tests_perl}" fi einfo "Disabling tests that fail with SVN 1.7" - disabled="${disabled} ${test_svn}" + disabled+=" ${test_svn}" # Reset all previously disabled tests cd "${S}/t" diff --git a/dev-vcs/git/git-9999-r2.ebuild b/dev-vcs/git/git-9999-r2.ebuild index 67a7f811554..e9f0c242bcf 100644 --- a/dev-vcs/git/git-9999-r2.ebuild +++ b/dev-vcs/git/git-9999-r2.ebuild @@ -572,7 +572,7 @@ src_install() { } src_test() { - local disabled="t9128-git-svn-cmd-branch.sh" + local disabled="" local tests_cvs="t9200-git-cvsexportcommit.sh \ t9400-git-cvsserver-server.sh \ t9401-git-cvsserver-crlf.sh \ @@ -603,7 +603,7 @@ src_test() { # Unzip is used only for the testcase code, not by any normal parts of Git. if ! has_version app-arch/unzip ; then einfo "Disabling tar-tree tests" - disabled="${disabled} t5000-tar-tree.sh" + disabled+=" t5000-tar-tree.sh" fi cvs=0 @@ -612,10 +612,10 @@ src_test() { if [[ $cvs -eq 1 ]]; then ewarn "Skipping CVS tests because CVS does not work as root!" ewarn "You should retest with FEATURES=userpriv!" - disabled="${disabled} ${tests_cvs}" + disabled+=" ${tests_cvs}" fi einfo "Skipping other tests that require being non-root" - disabled="${disabled} ${tests_nonroot}" + disabled+=" ${tests_nonroot}" else [[ $cvs -gt 0 ]] && \ has_version dev-vcs/cvs && \ @@ -625,17 +625,17 @@ src_test() { let cvs=$cvs+1 if [[ $cvs -lt 3 ]]; then einfo "Disabling CVS tests (needs dev-vcs/cvs[USE=server])" - disabled="${disabled} ${tests_cvs}" + disabled+=" ${tests_cvs}" fi fi if ! use perl ; then einfo "Disabling tests that need Perl" - disabled="${disabled} ${tests_perl}" + disabled+=" ${tests_perl}" fi einfo "Disabling tests that fail with SVN 1.7" - disabled="${disabled} ${test_svn}" + disabled+=" ${test_svn}" # Reset all previously disabled tests cd "${S}/t" diff --git a/dev-vcs/git/git-9999-r3.ebuild b/dev-vcs/git/git-9999-r3.ebuild index 67a7f811554..e9f0c242bcf 100644 --- a/dev-vcs/git/git-9999-r3.ebuild +++ b/dev-vcs/git/git-9999-r3.ebuild @@ -572,7 +572,7 @@ src_install() { } src_test() { - local disabled="t9128-git-svn-cmd-branch.sh" + local disabled="" local tests_cvs="t9200-git-cvsexportcommit.sh \ t9400-git-cvsserver-server.sh \ t9401-git-cvsserver-crlf.sh \ @@ -603,7 +603,7 @@ src_test() { # Unzip is used only for the testcase code, not by any normal parts of Git. if ! has_version app-arch/unzip ; then einfo "Disabling tar-tree tests" - disabled="${disabled} t5000-tar-tree.sh" + disabled+=" t5000-tar-tree.sh" fi cvs=0 @@ -612,10 +612,10 @@ src_test() { if [[ $cvs -eq 1 ]]; then ewarn "Skipping CVS tests because CVS does not work as root!" ewarn "You should retest with FEATURES=userpriv!" - disabled="${disabled} ${tests_cvs}" + disabled+=" ${tests_cvs}" fi einfo "Skipping other tests that require being non-root" - disabled="${disabled} ${tests_nonroot}" + disabled+=" ${tests_nonroot}" else [[ $cvs -gt 0 ]] && \ has_version dev-vcs/cvs && \ @@ -625,17 +625,17 @@ src_test() { let cvs=$cvs+1 if [[ $cvs -lt 3 ]]; then einfo "Disabling CVS tests (needs dev-vcs/cvs[USE=server])" - disabled="${disabled} ${tests_cvs}" + disabled+=" ${tests_cvs}" fi fi if ! use perl ; then einfo "Disabling tests that need Perl" - disabled="${disabled} ${tests_perl}" + disabled+=" ${tests_perl}" fi einfo "Disabling tests that fail with SVN 1.7" - disabled="${disabled} ${test_svn}" + disabled+=" ${test_svn}" # Reset all previously disabled tests cd "${S}/t" diff --git a/dev-vcs/git/git-9999.ebuild b/dev-vcs/git/git-9999.ebuild index 67a7f811554..e9f0c242bcf 100644 --- a/dev-vcs/git/git-9999.ebuild +++ b/dev-vcs/git/git-9999.ebuild @@ -572,7 +572,7 @@ src_install() { } src_test() { - local disabled="t9128-git-svn-cmd-branch.sh" + local disabled="" local tests_cvs="t9200-git-cvsexportcommit.sh \ t9400-git-cvsserver-server.sh \ t9401-git-cvsserver-crlf.sh \ @@ -603,7 +603,7 @@ src_test() { # Unzip is used only for the testcase code, not by any normal parts of Git. if ! has_version app-arch/unzip ; then einfo "Disabling tar-tree tests" - disabled="${disabled} t5000-tar-tree.sh" + disabled+=" t5000-tar-tree.sh" fi cvs=0 @@ -612,10 +612,10 @@ src_test() { if [[ $cvs -eq 1 ]]; then ewarn "Skipping CVS tests because CVS does not work as root!" ewarn "You should retest with FEATURES=userpriv!" - disabled="${disabled} ${tests_cvs}" + disabled+=" ${tests_cvs}" fi einfo "Skipping other tests that require being non-root" - disabled="${disabled} ${tests_nonroot}" + disabled+=" ${tests_nonroot}" else [[ $cvs -gt 0 ]] && \ has_version dev-vcs/cvs && \ @@ -625,17 +625,17 @@ src_test() { let cvs=$cvs+1 if [[ $cvs -lt 3 ]]; then einfo "Disabling CVS tests (needs dev-vcs/cvs[USE=server])" - disabled="${disabled} ${tests_cvs}" + disabled+=" ${tests_cvs}" fi fi if ! use perl ; then einfo "Disabling tests that need Perl" - disabled="${disabled} ${tests_perl}" + disabled+=" ${tests_perl}" fi einfo "Disabling tests that fail with SVN 1.7" - disabled="${disabled} ${test_svn}" + disabled+=" ${test_svn}" # Reset all previously disabled tests cd "${S}/t"