public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Anna Vyalkova" <cyber+gentoo@sysrq.in>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/cli11/
Date: Tue, 19 Oct 2021 16:35:19 +0000 (UTC)	[thread overview]
Message-ID: <1634661303.f404eee9e805e88c143ab45fcca6f4553dfe32ce.cybertailor@gentoo> (raw)

commit:     f404eee9e805e88c143ab45fcca6f4553dfe32ce
Author:     Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Tue Oct 19 16:33:31 2021 +0000
Commit:     Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Tue Oct 19 16:35:03 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f404eee9

dev-cpp/cli11: add 2.1.2, drop 2.0.0

Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>

 dev-cpp/cli11/Manifest                                   |  2 +-
 dev-cpp/cli11/{cli11-2.0.0.ebuild => cli11-2.1.2.ebuild} | 15 ++++++++++-----
 2 files changed, 11 insertions(+), 6 deletions(-)

diff --git a/dev-cpp/cli11/Manifest b/dev-cpp/cli11/Manifest
index af94af0b0..98091fdea 100644
--- a/dev-cpp/cli11/Manifest
+++ b/dev-cpp/cli11/Manifest
@@ -1,3 +1,3 @@
 DIST catch-2.13.6.hpp 656886 BLAKE2B 590fabc7970b97f333457f409276688f69a66de7fa3c43d767994ed212a3b5bde6e6c113c36a0ff03dd95bbb0cdb38cc12b43a96d16644525ea7425e028485a6 SHA512 ca401efb224e87c4f9d9f3bd58102d3223ef3356149837be2474fa2dbae645272c1ecb17d7db96c2b43b97034aacb63f840f4ebec16f2f3d447c1cc80a500d40
-DIST cli11-2.0.0.tar.gz 280797 BLAKE2B 5ce65d6c23f98d4128d1e7d4711f9dcd258b1705317b7e94b094d172c090c27a26b43580df16fee8d0a1a1cb993b763d7d43cc8fda7dad231f0ca018c816b9e7 SHA512 5ac06623383c003286b915e585e85ad419449735770e9a164665395f33d9e03ec6340445ab782200e2cfe5f40123b5843a7401211b6ece5b16342321e3e7a10a
 DIST cli11-2.1.0.tar.gz 286192 BLAKE2B c88a57effedaa19a119a28f5ad6d63f3b1a43055359e6d7d74258a839e0846817593974460e3f51d44218bca2b6b227c9d893a919155b38b63cd6b0b37711073 SHA512 22c75e6b55d5320656ca2f65bf7c1dc82546fa65458f66a3d6401d002e83f12a0ee93a572637f5daa8daed9e0ce11fbf4aabf864caadc851f75bced63814ba10
+DIST cli11-2.1.2.tar.gz 285131 BLAKE2B 7967491bb252bcbf38194440ede4d1276ee5224e122cd9a5381de95a2d9f3d6cd6527d9c787b846c9d8009a824754bbf9f73d70dd26392c0d0945158edac8b84 SHA512 3b21d015e046666d2e3df2b7cf1a6247c2daa26bf583e714dc1f0a94518785bf90993cd8530f88078b4daac02530dc517db0d5ad452d2a91521b3007f270ea55

diff --git a/dev-cpp/cli11/cli11-2.0.0.ebuild b/dev-cpp/cli11/cli11-2.1.2.ebuild
similarity index 78%
rename from dev-cpp/cli11/cli11-2.0.0.ebuild
rename to dev-cpp/cli11/cli11-2.1.2.ebuild
index 5322d14d3..a758cbac2 100644
--- a/dev-cpp/cli11/cli11-2.0.0.ebuild
+++ b/dev-cpp/cli11/cli11-2.1.2.ebuild
@@ -1,31 +1,36 @@
 # Copyright 2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 DOCS_BUILDER="doxygen"
 DOCS_DIR="docs"
 inherit cmake docs
 
+CATCH_PV=2.13.6
 DESCRIPTION="Command line parser for C++11"
 HOMEPAGE="https://github.com/CLIUtils/CLI11 https://cliutils.github.io/CLI11/book"
 SRC_URI="https://github.com/CLIUtils/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
 S="${WORKDIR}/CLI11-${PV}"
 
 LICENSE="BSD"
-SLOT="0"
+SLOT="0/2"
 KEYWORDS="~amd64 ~x86"
+
 IUSE="test"
 RESTRICT="!test? ( test )"
 
+DEPEND="test? (
+	dev-cpp/catch:0
+	dev-libs/boost
+)"
+
 DOCS=( README.md CHANGELOG.md )
 
 src_configure() {
 	local mycmakeargs=(
 		-DCLI11_BUILD_DOCS=OFF  # handled by docs.eclass
-		-DCLI11_BUILD_TESTS=OFF  # requires download of catch.hpp
-		-DCLI11_BUILD_EXAMPLES=$(usex test)  # ...so examples are tested instead
-		-DCLI11_BUILD_EXAMPLES_JSON=OFF
+		-DCLI11_BUILD_TESTS=$(usex test)
 	)
 
 	cmake_src_configure


             reply	other threads:[~2021-10-19 16:35 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-10-19 16:35 Anna Vyalkova [this message]
  -- strict thread matches above, loose matches on Subject: below --
2023-05-12 10:07 [gentoo-commits] repo/proj/guru:master commit in: dev-cpp/cli11/ Viorel Munteanu
2023-05-12  9:52 ` [gentoo-commits] repo/proj/guru:dev " Viorel Munteanu
2023-01-05 13:08 Anna Vyalkova
2022-11-03  3:09 Anna Vyalkova
2022-10-08 23:30 Anna Vyalkova
2022-10-08 14:58 Anna Vyalkova
2022-03-31  7:24 Anna Vyalkova
2021-09-21 20:10 Anna Vyalkova
2021-07-27  5:35 Anna Vyalkova
2021-05-22 15:21 Anna Vyalkova

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=1634661303.f404eee9e805e88c143ab45fcca6f4553dfe32ce.cybertailor@gentoo \
    --to=cyber+gentoo@sysrq.in \
    --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