diff options
| author | Palica <palica+gitlab@liguros.net> | 2020-06-23 22:35:08 +0200 |
|---|---|---|
| committer | Palica <palica+gitlab@liguros.net> | 2020-06-23 22:35:08 +0200 |
| commit | ecdac123787b96ce6649f0f91da12ea6458cc2b1 (patch) | |
| tree | b89c74d9e6fe6e8aebc4c77bcbeb4ab73214127d /dev-util/cpptest | |
| parent | 1be72aa41cf41dedadeecf59dca9f01de6381f5e (diff) | |
| download | baldeagleos-repo-ecdac123787b96ce6649f0f91da12ea6458cc2b1.tar.gz baldeagleos-repo-ecdac123787b96ce6649f0f91da12ea6458cc2b1.tar.xz baldeagleos-repo-ecdac123787b96ce6649f0f91da12ea6458cc2b1.zip | |
Updating liguros repo
Diffstat (limited to 'dev-util/cpptest')
| -rw-r--r-- | dev-util/cpptest/Manifest | 2 | ||||
| -rw-r--r-- | dev-util/cpptest/cpptest-1.1.2.ebuild | 30 | ||||
| -rw-r--r-- | dev-util/cpptest/cpptest-2.0.0-r1.ebuild | 27 | ||||
| -rw-r--r-- | dev-util/cpptest/cpptest-2.0.0.ebuild | 27 | ||||
| -rw-r--r-- | dev-util/cpptest/metadata.xml | 17 |
5 files changed, 103 insertions, 0 deletions
diff --git a/dev-util/cpptest/Manifest b/dev-util/cpptest/Manifest new file mode 100644 index 000000000000..f7b8c32798cd --- /dev/null +++ b/dev-util/cpptest/Manifest @@ -0,0 +1,2 @@ +DIST cpptest-1.1.2.tar.gz 458982 BLAKE2B dbb144196ec5726822f859397f5429e743bdc9bd840c2dab198f19512d2d0ff66b33e8b1018be2616944e300b0bc0e2fd247b7c7a5a290096f8d402592f1441b SHA512 da1030c69a5886e752b9ae08b65c501334c7d2d4abd2174190209ce11ed351239a615b9f7c5019ee601289523b2c21a1205d2042e59aea6c2882d77d636fc57a +DIST cpptest-2.0.0.tar.bz2 440323 BLAKE2B 7d703a9a41c6fc355f97d2074b71fc5c700ee2483386984147c399c096eebeec7f2a980f0678e1a4d9979a7795d3f7ff7d70cbf8b483e055a420de985aa40f2e SHA512 41b5f7989198a79dca29f7d579c4d3918e5c3bbc0f91f77317ae074af8daaa8e5ee8add7c29c8e345cb95b08524839cecc7659a8d95ee95712e205b8838c5029 diff --git a/dev-util/cpptest/cpptest-1.1.2.ebuild b/dev-util/cpptest/cpptest-1.1.2.ebuild new file mode 100644 index 000000000000..b12161051ace --- /dev/null +++ b/dev-util/cpptest/cpptest-1.1.2.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=4 +inherit eutils ltprune + +DESCRIPTION="Simple but powerful unit testing framework for C++" +HOMEPAGE="http://cpptest.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="amd64 ~arm ppc ppc64 x86" +IUSE="doc" + +DEPEND="doc? ( app-doc/doxygen )" +RDEPEND="" + +DOCS=( AUTHORS BUGS NEWS README ) + +src_configure() { + econf \ + $(use_enable doc) \ + --htmldir=/usr/share/doc/${PF}/html/ +} + +src_install() { + default + prune_libtool_files +} diff --git a/dev-util/cpptest/cpptest-2.0.0-r1.ebuild b/dev-util/cpptest/cpptest-2.0.0-r1.ebuild new file mode 100644 index 000000000000..044ea47a4a8a --- /dev/null +++ b/dev-util/cpptest/cpptest-2.0.0-r1.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Simple but powerful unit testing framework for C++" +HOMEPAGE="https://github.com/cpptest/cpptest" +SRC_URI="https://github.com/cpptest/cpptest/releases/download/${PV}/${P}.tar.bz2" + +LICENSE="LGPL-2.1" +SLOT="1" # for soversion 1.x.x +KEYWORDS="amd64 ~arm ppc ppc64 x86" +IUSE="doc static-libs" + +DEPEND="doc? ( app-doc/doxygen )" +RDEPEND="!dev-util/cpptest:0" + +DOCS=( AUTHORS BUGS NEWS README ) + +src_configure() { + econf $(use_enable doc) $(use_enable static-libs static) +} + +src_install() { + default + find "${D}" -name '*.la' -delete || die +} diff --git a/dev-util/cpptest/cpptest-2.0.0.ebuild b/dev-util/cpptest/cpptest-2.0.0.ebuild new file mode 100644 index 000000000000..3d5f2ce9f6ab --- /dev/null +++ b/dev-util/cpptest/cpptest-2.0.0.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Simple but powerful unit testing framework for C++" +HOMEPAGE="https://github.com/cpptest/cpptest" +SRC_URI="https://github.com/cpptest/cpptest/releases/download/${PV}/${P}.tar.bz2" + +LICENSE="LGPL-2.1" +SLOT="1" # for soversion 1.x.x +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86" +IUSE="doc" + +DEPEND="doc? ( app-doc/doxygen )" +RDEPEND="!dev-util/cpptest:0" + +DOCS=( AUTHORS BUGS NEWS README ) + +src_configure() { + econf $(use_enable doc) +} + +src_install() { + default + find "${D}" -name '*.la' -delete || die +} diff --git a/dev-util/cpptest/metadata.xml b/dev-util/cpptest/metadata.xml new file mode 100644 index 000000000000..85a64448694a --- /dev/null +++ b/dev-util/cpptest/metadata.xml @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>sping@gentoo.org</email> + <name>Sebastian Pipping</name> + </maintainer> + <longdescription lang="en"> + CppTest is a portable and powerful, yet simple, unit testing framework for handling + automated tests in C++. The focus lies on usability and extendability. + Several output formats are supported and new ones are easily added. + </longdescription> + <upstream> + <remote-id type="sourceforge">cpptest</remote-id> + </upstream> + <origin>gentoo-staging</origin> +</pkgmetadata> |
