diff options
author | Sam James <sam@gentoo.org> | 2022-07-26 05:18:42 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-07-26 05:25:21 +0100 |
commit | b95e94b0b3aff1a043d63cceeda59e02e33696f3 (patch) | |
tree | d8ef66c1e079cb69e4649343ecb353420e392a57 /dev-cpp/termcolor | |
parent | dev-cpp/elfio: drop 3.9 (diff) | |
download | gentoo-b95e94b0b3aff1a043d63cceeda59e02e33696f3.tar.gz gentoo-b95e94b0b3aff1a043d63cceeda59e02e33696f3.tar.bz2 gentoo-b95e94b0b3aff1a043d63cceeda59e02e33696f3.zip |
dev-cpp/termcolor: drop 2.0.0
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-cpp/termcolor')
-rw-r--r-- | dev-cpp/termcolor/Manifest | 1 | ||||
-rw-r--r-- | dev-cpp/termcolor/termcolor-2.0.0.ebuild | 29 |
2 files changed, 0 insertions, 30 deletions
diff --git a/dev-cpp/termcolor/Manifest b/dev-cpp/termcolor/Manifest index a52fc8290f29..a84d57d1d1c6 100644 --- a/dev-cpp/termcolor/Manifest +++ b/dev-cpp/termcolor/Manifest @@ -1,2 +1 @@ -DIST termcolor-2.0.0.tar.gz 88582 BLAKE2B 3e7a4a99af3586fff103d0de0601e019881745e2921b4750dbf476439138a71120b6513a287c5fe26fd96a9c6115cb82295810d9bea11d0992f48fcd5d0a8d18 SHA512 72dead77fb9f3ff79432b1659b57c3d961a57b46305937acd0c221f5abb016f609dfaf7a9bf508bd7a073338ee604cf55f9915c8e8a76ddfaf6c68bc031e37f9 DIST termcolor-2.1.0.tar.gz 89041 BLAKE2B 1b3681dcd7dde394737bdc02e8a8ae10c61adfddbb1506e7254c27636a9045bc17ebe45801ecf813c3fc6b3a4bb3ea90bc6246e651105fab2e42b0807fa74339 SHA512 668853a93e1208a08a4ea9ac8db2d9c615cefd0325c35402b767e0b1bf373589507b8eb7685babd5801c1e4f2533db6f4eabfedde365737a4c7c069f00f536d8 diff --git a/dev-cpp/termcolor/termcolor-2.0.0.ebuild b/dev-cpp/termcolor/termcolor-2.0.0.ebuild deleted file mode 100644 index 34e39e788868..000000000000 --- a/dev-cpp/termcolor/termcolor-2.0.0.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 2020-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit cmake - -DESCRIPTION="A header-only C++ library for printing colored messages to the terminal" -HOMEPAGE="https://github.com/ikalnytskyi/termcolor https://termcolor.readthedocs.io" -SRC_URI="https://github.com/ikalnytskyi/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64" -IUSE="test" -# It's just a visual test, nothing automated / no way to detect failure in an ebuild. -RESTRICT="!test? ( test ) test" - -src_configure() { - local mycmakeargs=( - -DTERMCOLOR_TESTS=$(usex test) - ) - - cmake_src_configure -} - -src_test() { - "${BUILD_DIR}"/test_termcolor || die -} |