diff options
author | David Seifert <soap@gentoo.org> | 2021-11-27 17:53:31 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2021-11-27 17:53:31 +0100 |
commit | 421e019a1c7dccf6cf9106710d0f310c8716276b (patch) | |
tree | 9f266e7724ee71b23a32a55a3a9b13b9057fb40f /dev-cpp | |
parent | dev-cpp/catch: add 2.13.7 (diff) | |
download | gentoo-421e019a1c7dccf6cf9106710d0f310c8716276b.tar.gz gentoo-421e019a1c7dccf6cf9106710d0f310c8716276b.tar.bz2 gentoo-421e019a1c7dccf6cf9106710d0f310c8716276b.zip |
dev-cpp/catch: update live ebuild
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'dev-cpp')
-rw-r--r-- | dev-cpp/catch/catch-9999.ebuild | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/dev-cpp/catch/catch-9999.ebuild b/dev-cpp/catch/catch-9999.ebuild index 7501403174d5..339f89fdb860 100644 --- a/dev-cpp/catch/catch-9999.ebuild +++ b/dev-cpp/catch/catch-9999.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 -PYTHON_COMPAT=( python3_{7..9} ) +PYTHON_COMPAT=( python3_{8..10} ) inherit cmake python-any-r1 @@ -13,9 +13,9 @@ if [[ ${PV} == *9999 ]]; then else MY_P=${PN^}2-${PV} SRC_URI="https://github.com/catchorg/Catch2/archive/v${PV}.tar.gz -> ${MY_P}.tar.gz" - KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" - S="${WORKDIR}/${MY_P}" + + KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" fi DESCRIPTION="Modern C++ header-only framework for unit-tests" @@ -35,11 +35,10 @@ pkg_setup() { src_configure() { local mycmakeargs=( -DCATCH_ENABLE_WERROR=OFF - -DBUILD_TESTING=$(usex test) -DCATCH_DEVELOPMENT_BUILD=$(usex test) ) use test && - mycmakeargs+=(-DPYTHON_EXECUTABLE="${PYTHON}") + mycmakeargs+=( -DPYTHON_EXECUTABLE="${PYTHON}" ) cmake_src_configure } |