public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "David Seifert" <soap@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/catch/
Date: Thu, 19 Nov 2020 11:35:26 +0000 (UTC)	[thread overview]
Message-ID: <1605785703.f0b28e539115d85d6fdc3a9b8ee6dce17dfed9b9.soap@gentoo> (raw)

commit:     f0b28e539115d85d6fdc3a9b8ee6dce17dfed9b9
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 19 11:35:03 2020 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Thu Nov 19 11:35:03 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0b28e53

dev-cpp/catch: Remove old 2.7.0 and 2.9.1

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: David Seifert <soap <AT> gentoo.org>

 dev-cpp/catch/Manifest           |  2 --
 dev-cpp/catch/catch-2.7.0.ebuild | 44 ----------------------------------------
 dev-cpp/catch/catch-2.9.1.ebuild | 44 ----------------------------------------
 3 files changed, 90 deletions(-)

diff --git a/dev-cpp/catch/Manifest b/dev-cpp/catch/Manifest
index b422d0c1845..55fca7ae5df 100644
--- a/dev-cpp/catch/Manifest
+++ b/dev-cpp/catch/Manifest
@@ -1,5 +1,3 @@
 DIST Catch-1.12.2.tar.gz 377265 BLAKE2B bc27b4daee950f8fb93d65f3aed032e72bc856ee27a8dc28c35b89e33f414d68ba4cf00951e476688eddf9e4c0514036bd6916fa6cfa9e3359e6c625984f114f SHA512 ed963cdca9fe307ee02928677f81cafcb41cd607faaa315182fdf898d0f2aa28f0be2141bd642f46fdfac400c38f6d065e00a595a1e5879fe2335c4a3851e844
 DIST Catch2-2.13.3.tar.gz 655431 BLAKE2B 4343dab41818a4c85b875752b8d86a0dd1a46ce8c94d6773cee210a133f164b669053973c6678228b3afb356e25a3e705c8220b138c247a230e624b3f2412784 SHA512 caf0e3a39a2b5983346c2709ce06113da62881780117021c64db987d6c5190c41a9070fb70caa0ee6957cfef0baad87fff4e6558c9fea4fa464e82882fe17d55
 DIST Catch2-2.5.0.tar.gz 549328 BLAKE2B a32941a043a654228cc541dc675ad789f5b938ebc2d3177d1657f66f68fb175bec8c88a60ecba00e84eca74a7506dc83aed74ac89f7dde83213284eb4a497225 SHA512 420f1d1a5ea7b69be9fb316a8abe1fb7c7e78d44a982e883748f1e0c8d2a435c1518b6022742716019558a740f8b31977ed6a786b0293e0504206b016801cfe8
-DIST Catch2-2.7.0.tar.gz 569753 BLAKE2B cec11d79c85ac8a5577467ceb4722a2441a1dbd2fbe42fb06324113d2a6f9fadc12de351735900817274520bf8533ec245ba0a3686c8c1b4813cf3136d6d552f SHA512 ab6c816642a92418c76c8ddabf17eb0c19bef1dc6ac2405c820280d670ef1d78c9ae89909f5a36bf063f0939d253b7c6b5e845c1ac4e63b338927e125dee950d
-DIST Catch2-2.9.1.tar.gz 626539 BLAKE2B b68f17dba65cc8d1a842b105e5aa6a32e713df8d34c32b918e0588e6b87b8e3ae56f9130d1590795489afe2e29035c262a05795d0ee44c9e9ace2e814801821d SHA512 ea18eef1fece72518c8a46b89727f5d0545a15038957087324abe6421c682693379476ff46106132f080677ebcc1c9ead51a9cf25dced3bb576a33e4f6fae4f6

diff --git a/dev-cpp/catch/catch-2.7.0.ebuild b/dev-cpp/catch/catch-2.7.0.ebuild
deleted file mode 100644
index 2467542c7d9..00000000000
--- a/dev-cpp/catch/catch-2.7.0.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{6,7} )
-
-inherit cmake-utils python-any-r1
-
-if [[ ${PV} == *9999 ]]; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/catchorg/Catch2.git"
-else
-	MY_P=${PN^}2-${PV}
-	SRC_URI="https://github.com/catchorg/Catch2/archive/v${PV}.tar.gz -> ${MY_P}.tar.gz"
-	KEYWORDS="~amd64 ~x86"
-
-	S=${WORKDIR}/${MY_P}
-fi
-
-DESCRIPTION="Modern C++ header-only framework for unit-tests"
-HOMEPAGE="https://github.com/catchorg/Catch2"
-
-LICENSE="Boost-1.0"
-SLOT="0"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-BDEPEND="test? ( ${PYTHON_DEPS} )"
-
-pkg_setup() {
-	use test && python-any-r1_pkg_setup
-}
-
-src_configure() {
-	local mycmakeargs=(
-		-DCATCH_ENABLE_WERROR=OFF
-		-DBUILD_TESTING=$(usex test)
-	)
-	use test &&
-		mycmakeargs+=(-DPYTHON_EXECUTABLE="${PYTHON}")
-
-	cmake-utils_src_configure
-}

diff --git a/dev-cpp/catch/catch-2.9.1.ebuild b/dev-cpp/catch/catch-2.9.1.ebuild
deleted file mode 100644
index 77dac8be453..00000000000
--- a/dev-cpp/catch/catch-2.9.1.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{6,7} )
-
-inherit cmake-utils python-any-r1
-
-if [[ ${PV} == *9999 ]]; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/catchorg/Catch2.git"
-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}
-fi
-
-DESCRIPTION="Modern C++ header-only framework for unit-tests"
-HOMEPAGE="https://github.com/catchorg/Catch2"
-
-LICENSE="Boost-1.0"
-SLOT="0"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-BDEPEND="test? ( ${PYTHON_DEPS} )"
-
-pkg_setup() {
-	use test && python-any-r1_pkg_setup
-}
-
-src_configure() {
-	local mycmakeargs=(
-		-DCATCH_ENABLE_WERROR=OFF
-		-DBUILD_TESTING=$(usex test)
-	)
-	use test &&
-		mycmakeargs+=(-DPYTHON_EXECUTABLE="${PYTHON}")
-
-	cmake-utils_src_configure
-}


             reply	other threads:[~2020-11-19 11:35 UTC|newest]

Thread overview: 170+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-11-19 11:35 David Seifert [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-04-18 17:21 [gentoo-commits] repo/gentoo:master commit in: dev-cpp/catch/ David Seifert
2025-03-23 19:05 David Seifert
2025-03-23 19:05 David Seifert
2024-11-13 11:22 David Seifert
2024-11-13 11:22 David Seifert
2024-11-08  2:49 Sam James
2024-11-04 16:47 Arthur Zamarin
2024-11-03 18:28 Sam James
2024-11-03 18:28 Sam James
2024-11-03 18:28 Sam James
2024-11-03 18:28 Sam James
2024-11-03 18:05 Sam James
2024-10-25 17:53 David Seifert
2024-10-25 17:53 David Seifert
2024-10-19 15:25 Michał Górny
2024-10-19 15:25 Michał Górny
2024-10-19 15:25 Michał Górny
2024-10-19 15:25 Michał Górny
2024-10-19 15:25 Michał Górny
2024-10-19 15:25 Michał Górny
2024-10-19 15:25 Michał Górny
2024-09-28 20:07 David Seifert
2024-09-28 20:07 David Seifert
2024-09-06 16:13 Arthur Zamarin
2024-09-05 17:59 Sam James
2024-07-05 16:30 Arthur Zamarin
2024-07-05 13:26 Arthur Zamarin
2024-07-05 13:26 Arthur Zamarin
2024-07-05 11:13 Arthur Zamarin
2024-07-05 11:10 Arthur Zamarin
2024-07-05 11:10 Arthur Zamarin
2024-07-05 10:20 Arthur Zamarin
2024-05-11 16:22 David Seifert
2024-05-01  5:28 Joonas Niilola
2024-04-22 15:11 David Seifert
2024-04-13  6:26 Arthur Zamarin
2024-04-03 17:44 Michał Górny
2024-03-09 12:04 David Seifert
2024-03-09 11:37 David Seifert
2024-03-08 16:16 Sam James
2024-03-02 18:34 Arthur Zamarin
2024-02-20 23:38 Sam James
2024-02-20 23:38 Sam James
2024-02-20 23:38 Sam James
2024-02-20 23:38 Sam James
2024-02-20 23:38 Sam James
2024-02-20 14:06 Jakov Smolić
2024-01-18  9:26 David Seifert
2024-01-18  9:26 David Seifert
2024-01-11 14:11 David Seifert
2023-08-15  9:59 David Seifert
2023-08-12 21:57 David Seifert
2023-08-12 21:53 Sam James
2023-08-12 21:04 Sam James
2023-08-05 21:36 Sam James
2023-08-05 21:36 Sam James
2023-08-05 16:55 Arthur Zamarin
2023-08-05 15:16 Arthur Zamarin
2023-08-05 13:32 Arthur Zamarin
2023-08-05 13:27 Arthur Zamarin
2023-07-16 18:13 David Seifert
2023-07-16 18:13 David Seifert
2023-07-16 18:13 David Seifert
2023-07-16 18:13 David Seifert
2023-03-12  5:23 WANG Xuerui
2023-03-11 19:15 David Seifert
2023-03-11 19:15 David Seifert
2023-03-03 17:48 Arthur Zamarin
2023-01-08  8:12 Joonas Niilola
2022-12-25 17:46 Arthur Zamarin
2022-12-25 17:46 Arthur Zamarin
2022-12-25 17:35 Arthur Zamarin
2022-12-25 17:29 Arthur Zamarin
2022-12-25 17:21 Arthur Zamarin
2022-12-25 17:12 Arthur Zamarin
2022-12-02  6:32 Arthur Zamarin
2022-11-28  7:58 WANG Xuerui
2022-06-06  7:39 Michał Górny
2022-06-06  7:39 Michał Górny
2022-05-05  5:29 Arthur Zamarin
2022-05-05  5:29 Arthur Zamarin
2022-05-04 14:40 Sam James
2022-05-04 14:40 Sam James
2022-04-30 15:53 Marek Szuba
2022-04-18 18:22 Arthur Zamarin
2022-04-16  8:22 Arthur Zamarin
2022-04-10  2:35 Matt Turner
2022-04-09 19:40 Arthur Zamarin
2022-04-09 19:27 Arthur Zamarin
2022-04-09 19:26 Arthur Zamarin
2022-04-01  6:40 Yixun Lan
2022-02-26 14:31 David Seifert
2022-01-26 10:20 David Seifert
2022-01-26 10:20 David Seifert
2022-01-16 17:26 Jakov Smolić
2022-01-16 17:26 Jakov Smolić
2022-01-09 21:32 Andreas Sturmlechner
2021-12-31 10:56 Sam James
2021-12-30 17:59 Arthur Zamarin
2021-12-29  7:35 Sam James
2021-12-29  7:35 Sam James
2021-12-29  6:14 Arthur Zamarin
2021-12-29  0:15 Sam James
2021-11-28 14:02 David Seifert
2021-11-27 16:55 David Seifert
2021-11-27 16:55 David Seifert
2021-07-29 15:40 David Seifert
2021-04-08  9:38 David Seifert
2021-03-15  2:28 Sam James
2021-03-15  0:52 Sam James
2021-01-31 19:32 David Seifert
2021-01-31 18:48 Sam James
2021-01-25  0:42 Sam James
2021-01-24 17:28 David Seifert
2020-11-19 11:35 David Seifert
2020-11-19 11:35 David Seifert
2020-06-29  6:33 Michał Górny
2020-02-07  8:10 Georgy Yakovlev
2020-02-07  8:10 Georgy Yakovlev
2020-01-09  6:38 Georgy Yakovlev
2020-01-09  6:38 Georgy Yakovlev
2019-06-30 20:57 David Seifert
2019-04-21 19:48 Mikle Kolyada
2019-04-09 12:35 Mikle Kolyada
2019-04-09 12:26 Mikle Kolyada
2019-04-08 20:50 Mikle Kolyada
2019-04-07 16:37 David Seifert
2019-03-16 21:39 Agostino Sarubbo
2019-01-19 14:21 David Seifert
2018-12-13 14:08 David Seifert
2018-11-29 18:41 David Seifert
2018-11-29 18:41 David Seifert
2018-11-29 18:41 David Seifert
2018-10-07 11:59 Mikle Kolyada
2018-10-06 23:05 Thomas Deutschmann
2018-05-26  9:31 David Seifert
2018-01-26 16:33 David Seifert
2018-01-26 16:33 David Seifert
2018-01-26 16:33 David Seifert
2018-01-19 13:04 David Seifert
2018-01-19 13:04 David Seifert
2018-01-12  9:24 Michał Górny
2018-01-12  9:24 Michał Górny
2018-01-02  6:19 Michał Górny
2017-11-05 12:20 Michał Górny
2017-11-05 12:20 Michał Górny
2017-11-05 12:20 Michał Górny
2017-11-02 10:06 Michał Górny
2017-11-02 10:06 Michał Górny
2017-11-02 10:06 Michał Górny
2017-08-31 15:05 Michał Górny
2017-08-27  8:19 Michał Górny
2017-08-27  8:19 Michał Górny
2017-08-27  8:19 Michał Górny
2017-08-12 16:48 Michał Górny
2017-06-28  8:23 Michał Górny
2017-06-16  4:26 Michał Górny
2017-06-16  4:26 Michał Górny
2017-05-16 14:09 Michał Górny
2017-05-16 14:09 Michał Górny
2017-05-16 14:09 Michał Górny
2017-04-26 14:04 Michał Górny
2017-04-24 18:29 Michał Górny
2017-01-17 22:03 Michał Górny
2016-11-09 18:40 Michał Górny
2016-09-27 15:39 Michał Górny
2016-07-02 21:19 Michał Górny
2016-06-23 12:48 Michał Górny
2016-05-24 11:23 Michał Górny

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1605785703.f0b28e539115d85d6fdc3a9b8ee6dce17dfed9b9.soap@gentoo \
    --to=soap@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox