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.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 7486B15806E for ; Sun, 14 May 2023 00:31:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B5CB6E07EF; Sun, 14 May 2023 00:31:53 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 pigeon.gentoo.org (Postfix) with ESMTPS id 9434AE07EF for ; Sun, 14 May 2023 00:31:53 +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 C6F18340F0E for ; Sun, 14 May 2023 00:31:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3A4D9A6E for ; Sun, 14 May 2023 00:31:51 +0000 (UTC) From: "Sam James" 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" Message-ID: <1684024282.031e152dafaa74c07068f677c853b71b5f350ec1.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/vigra/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/vigra/metadata.xml media-libs/vigra/vigra-1.11.1-r8.ebuild media-libs/vigra/vigra-1.11.1-r9.ebuild media-libs/vigra/vigra-9999.ebuild X-VCS-Directories: media-libs/vigra/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 031e152dafaa74c07068f677c853b71b5f350ec1 X-VCS-Branch: master Date: Sun, 14 May 2023 00:31:51 +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: a7dfd370-7b67-4f24-be45-3c7ea8fbfb65 X-Archives-Hash: 213196866b34581949d352a5dfe4beb1 commit: 031e152dafaa74c07068f677c853b71b5f350ec1 Author: Sam James gentoo org> AuthorDate: Sun May 14 00:19:34 2023 +0000 Commit: Sam James gentoo org> CommitDate: Sun May 14 00:31:22 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=031e152d media-libs/vigra: drop invalid USE=valgrind flag (for test suite) We don't, in general, run Valgrind for test suites in Gentoo because it's not portable enough and gives inconsistent results, especially under sandbox. Plus it's confusing given USE=valgrind is effectively a global USE flag (even if it isn't in use.desc yet) for meaning "enable annotations to enable better debugging under Valgrind", rather than "run tests under it". Signed-off-by: Sam James gentoo.org> media-libs/vigra/metadata.xml | 3 --- media-libs/vigra/vigra-1.11.1-r8.ebuild | 5 ++--- media-libs/vigra/vigra-1.11.1-r9.ebuild | 5 ++--- media-libs/vigra/vigra-9999.ebuild | 5 ++--- 4 files changed, 6 insertions(+), 12 deletions(-) diff --git a/media-libs/vigra/metadata.xml b/media-libs/vigra/metadata.xml index 14449893ddbe..42f024b353cf 100644 --- a/media-libs/vigra/metadata.xml +++ b/media-libs/vigra/metadata.xml @@ -5,9 +5,6 @@ printing@gentoo.org Gentoo Printing Project - - Enable valgrind in make check - ukoethe/vigra diff --git a/media-libs/vigra/vigra-1.11.1-r8.ebuild b/media-libs/vigra/vigra-1.11.1-r8.ebuild index 2c819e907573..8e05bebbabd4 100644 --- a/media-libs/vigra/vigra-1.11.1-r8.ebuild +++ b/media-libs/vigra/vigra-1.11.1-r8.ebuild @@ -20,7 +20,7 @@ fi LICENSE="MIT" SLOT="0" -IUSE="doc +fftw +hdf5 +jpeg mpi openexr +png +python test +tiff valgrind +zlib" +IUSE="doc +fftw +hdf5 +jpeg mpi openexr +png +python test +tiff +zlib" REQUIRED_USE=" python? ( hdf5 ${PYTHON_REQUIRED_USE} ) @@ -29,7 +29,6 @@ REQUIRED_USE=" BDEPEND=" test? ( >=dev-python/nose-1.1.2-r1[${PYTHON_USEDEP}] - valgrind? ( dev-util/valgrind ) ) " # runtime dependency on python is required by the vigra-config script @@ -113,7 +112,7 @@ src_configure() { -DDOCINSTALL="share/doc/${PF}/html" -DWITH_HDF5=$(usex hdf5) -DWITH_OPENEXR=$(usex openexr) - -DWITH_VALGRIND=$(usex valgrind) + -DWITH_VALGRIND=OFF # only used for tests -DWITH_VIGRANUMPY=$(usex python) ) cmake_src_configure diff --git a/media-libs/vigra/vigra-1.11.1-r9.ebuild b/media-libs/vigra/vigra-1.11.1-r9.ebuild index beb3622e9ca0..ef5236cfe1b7 100644 --- a/media-libs/vigra/vigra-1.11.1-r9.ebuild +++ b/media-libs/vigra/vigra-1.11.1-r9.ebuild @@ -20,7 +20,7 @@ fi LICENSE="MIT" SLOT="0" -IUSE="doc +fftw +hdf5 +jpeg mpi openexr +png +python test +tiff valgrind +zlib" +IUSE="doc +fftw +hdf5 +jpeg mpi openexr +png +python test +tiff +zlib" REQUIRED_USE=" python? ( hdf5 ${PYTHON_REQUIRED_USE} ) @@ -29,7 +29,6 @@ REQUIRED_USE=" BDEPEND=" test? ( >=dev-python/nose-1.1.2-r1[${PYTHON_USEDEP}] - valgrind? ( dev-util/valgrind ) ) " # runtime dependency on python is required by the vigra-config script @@ -114,7 +113,7 @@ src_configure() { -DDOCINSTALL="share/doc/${PF}/html" -DWITH_HDF5=$(usex hdf5) -DWITH_OPENEXR=$(usex openexr) - -DWITH_VALGRIND=$(usex valgrind) + -DWITH_VALGRIND=OFF # only used for tests -DWITH_VIGRANUMPY=$(usex python) ) cmake_src_configure diff --git a/media-libs/vigra/vigra-9999.ebuild b/media-libs/vigra/vigra-9999.ebuild index 9d414e9529c7..5a2feab44ca9 100644 --- a/media-libs/vigra/vigra-9999.ebuild +++ b/media-libs/vigra/vigra-9999.ebuild @@ -20,7 +20,7 @@ fi LICENSE="MIT" SLOT="0" -IUSE="doc +fftw +hdf5 +jpeg mpi openexr +png +python test +tiff valgrind +zlib" +IUSE="doc +fftw +hdf5 +jpeg mpi openexr +png +python test +tiff +zlib" REQUIRED_USE=" python? ( hdf5 ${PYTHON_REQUIRED_USE} ) @@ -29,7 +29,6 @@ REQUIRED_USE=" BDEPEND=" test? ( >=dev-python/nose-1.1.2-r1[${PYTHON_USEDEP}] - valgrind? ( dev-util/valgrind ) ) " # runtime dependency on python is required by the vigra-config script @@ -107,7 +106,7 @@ src_configure() { -DDOCINSTALL="share/doc/${PF}/html" -DWITH_HDF5=$(usex hdf5) -DWITH_OPENEXR=$(usex openexr) - -DWITH_VALGRIND=$(usex valgrind) + -DWITH_VALGRIND=OFF # only used for tests -DWITH_VIGRANUMPY=$(usex python) ) cmake_src_configure