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 3C2AA139694 for ; Sat, 24 Jun 2017 14:21:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F304D22400B; Sat, 24 Jun 2017 14:20:58 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D5C2522400B for ; Sat, 24 Jun 2017 14:20:58 +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 B9F8B341A64 for ; Sat, 24 Jun 2017 14:20:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 275AA7496 for ; Sat, 24 Jun 2017 14:20:56 +0000 (UTC) From: "Michael Palimaka" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Palimaka" Message-ID: <1498314045.b8461fe9a7c531c3cf46c9a7d500e51ad759fd01.kensington@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/cmake/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/cmake/cmake-3.8.2.ebuild dev-util/cmake/cmake-3.9.0_rc4.ebuild X-VCS-Directories: dev-util/cmake/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: b8461fe9a7c531c3cf46c9a7d500e51ad759fd01 X-VCS-Branch: master Date: Sat, 24 Jun 2017 14:20:56 +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: 395f7e1c-8bd0-427a-ad00-3544871b0c5c X-Archives-Hash: 8262b2648597e842e382b0e3c7a0bc21 commit: b8461fe9a7c531c3cf46c9a7d500e51ad759fd01 Author: Michael Palimaka gentoo org> AuthorDate: Sat Jun 24 14:20:28 2017 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Sat Jun 24 14:20:45 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8461fe9 dev-util/cmake: restrict RunCMake.CPack_RPM test Gentoo-bug: 600936 Package-Manager: Portage-2.3.6, Repoman-2.3.2 dev-util/cmake/cmake-3.8.2.ebuild | 4 +++- dev-util/cmake/cmake-3.9.0_rc4.ebuild | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/dev-util/cmake/cmake-3.8.2.ebuild b/dev-util/cmake/cmake-3.8.2.ebuild index 98921d9a61a..b47015dd5c2 100644 --- a/dev-util/cmake/cmake-3.8.2.ebuild +++ b/dev-util/cmake/cmake-3.8.2.ebuild @@ -111,9 +111,11 @@ cmake_src_test() { # CTest.updatecvs: which fails to commit as root # Fortran: requires fortran # Qt4Deploy, which tries to break sandbox and ignores prefix + # RunCMake.CPack_RPM: breaks if app-arch/rpm is installed because + # debugedit binary is not in the expected location # TestUpload, which requires network access "${BUILD_DIR}"/bin/ctest ${ctestargs} \ - -E "(BootstrapTest|BundleUtilities|CTest.UpdateCVS|Fortran|Qt4Deploy|TestUpload)" \ + -E "(BootstrapTest|BundleUtilities|CTest.UpdateCVS|Fortran|Qt4Deploy|RunCMake.CPack_RPM|TestUpload)" \ || die "Tests failed" popd > /dev/null diff --git a/dev-util/cmake/cmake-3.9.0_rc4.ebuild b/dev-util/cmake/cmake-3.9.0_rc4.ebuild index 2f18f973e4b..6362fe81846 100644 --- a/dev-util/cmake/cmake-3.9.0_rc4.ebuild +++ b/dev-util/cmake/cmake-3.9.0_rc4.ebuild @@ -111,9 +111,11 @@ cmake_src_test() { # CTest.updatecvs: which fails to commit as root # Fortran: requires fortran # Qt4Deploy, which tries to break sandbox and ignores prefix + # RunCMake.CPack_RPM: breaks if app-arch/rpm is installed because + # debugedit binary is not in the expected location # TestUpload, which requires network access "${BUILD_DIR}"/bin/ctest ${ctestargs} \ - -E "(BootstrapTest|BundleUtilities|CTest.UpdateCVS|Fortran|Qt4Deploy|TestUpload)" \ + -E "(BootstrapTest|BundleUtilities|CTest.UpdateCVS|Fortran|Qt4Deploy|RunCMake.CPack_RPM|TestUpload)" \ || die "Tests failed" popd > /dev/null