* [gentoo-commits] proj/sci:master commit in: dev-cpp/blitz/
@ 2021-04-20 15:44 Aisha Tammy
0 siblings, 0 replies; 8+ messages in thread
From: Aisha Tammy @ 2021-04-20 15:44 UTC (permalink / raw
To: gentoo-commits
commit: 74e34376cdf8e653a6ed3c54687daeb826917075
Author: band-a-prend <torokhov-s-a <AT> yandex <DOT> ru>
AuthorDate: Sun Mar 14 20:47:46 2021 +0000
Commit: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
CommitDate: Tue Apr 20 15:44:15 2021 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=74e34376
dev-cpp/blitz: 1.0.3_pre fix boost, doxygen dependencies
The blitz-1.0.2_p20200524 provides libblitz.so.1.0.3 therefore
the new ebuild is renamed to *-1.0.3_pre20200524 instead of revision bump
while both use the same git-commit-sha-tarball.
Blitz++ optionally depends on dev-libs/boost[static-libs]
to allow build with Boost::serialization support
(note: cmake option is realy with typo).
USE="boost" is used to handle this option.
Add USE="doc" app-doc/doxygen build dependency to build dev docs.
Add python build time dependency.
The testsuite, benchmark, examples targets now is only conditionally build
in src_compile() and tests are ran in implicit src_test() phase.
Update live ebuild.
Signed-off-by: band-a-prend <torokhov-s-a <AT> yandex.ru>
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
dev-cpp/blitz/blitz-1.0.3_pre20200524.ebuild | 52 ++++++++++++++++++++++++++++
dev-cpp/blitz/blitz-9999.ebuild | 46 ++++++++++++++----------
dev-cpp/blitz/metadata.xml | 10 ++++++
3 files changed, 89 insertions(+), 19 deletions(-)
diff --git a/dev-cpp/blitz/blitz-1.0.3_pre20200524.ebuild b/dev-cpp/blitz/blitz-1.0.3_pre20200524.ebuild
new file mode 100644
index 000000000..b92ebbcce
--- /dev/null
+++ b/dev-cpp/blitz/blitz-1.0.3_pre20200524.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7..9} )
+
+inherit cmake python-any-r1
+
+COMMIT="39f885951a9b8b11f931f917935a16066a945056"
+
+DESCRIPTION="Multi-dimensional array library for C++"
+HOMEPAGE="https://github.com/blitzpp/blitz"
+SRC_URI="https://github.com/blitzpp/blitz/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/${PN}-${COMMIT}"
+
+LICENSE="BSD LGPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+IUSE="boost doc test"
+RESTRICT="!test? ( test )"
+
+BDEPEND="
+ ${PYTHON_DEPS}
+ doc? ( app-doc/doxygen[dot] )
+"
+DEPEND="
+ boost? ( dev-libs/boost:=[static-libs] )
+"
+
+src_configure() {
+ local mycmakeargs=(
+ -DBUILD_DOC=$(usex doc)
+ -DBUILD_TESTING=$(usex test)
+ -DENABLE_SERIALISATION=$(usex boost)
+ )
+ use doc && mycmakeargs+=( -DDISABLE_REFMAN_PDF=ON )
+ cmake_src_configure
+}
+
+src_compile() {
+ cmake_src_compile
+ use doc && cmake_build blitz-doc
+ use test && cmake_build testsuite benchmark examples
+}
+
+src_install() {
+ cmake_src_install
+ if use doc ; then
+ find "${D}" -type f \( -name "*.md5" -o -name "*.map" \) -delete || die
+ fi
+}
diff --git a/dev-cpp/blitz/blitz-9999.ebuild b/dev-cpp/blitz/blitz-9999.ebuild
index 47a9e5d25..7ac6d5688 100644
--- a/dev-cpp/blitz/blitz-9999.ebuild
+++ b/dev-cpp/blitz/blitz-9999.ebuild
@@ -1,40 +1,48 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-inherit cmake
-CMAKE_MAKEFILE_GENERATOR=emake
+PYTHON_COMPAT=( python3_{7..9} )
-DESCRIPTION="multi-dimensional array library for C++"
-HOMEPAGE="https://github.com/blitzpp/blitz"
+inherit cmake git-r3 python-any-r1
-if [[ ${PV} == 9999 ]] ; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/blitzpp/blitz"
-else
- COMMIT=39f885951a9b8b11f931f917935a16066a945056
- SRC_URI="https://github.com/blitzpp/blitz/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
- S="${WORKDIR}"/${PN}-${COMMIT}
- KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
-fi
+DESCRIPTION="Multi-dimensional array library for C++"
+HOMEPAGE="https://github.com/blitzpp/blitz"
+EGIT_REPO_URI="https://github.com/blitzpp/blitz"
LICENSE="BSD LGPL-3+"
SLOT="0"
-IUSE="test"
+IUSE="boost doc test"
RESTRICT="!test? ( test )"
+BDEPEND="
+ ${PYTHON_DEPS}
+ doc? ( app-doc/doxygen[dot] )
+"
+DEPEND="
+ boost? ( dev-libs/boost:=[static-libs] )
+"
+
src_configure() {
local mycmakeargs=(
+ -DBUILD_DOC=$(usex doc)
-DBUILD_TESTING=$(usex test)
+ -DENABLE_SERIALISATION=$(usex boost)
)
+ use doc && mycmakeargs+=( -DDISABLE_REFMAN_PDF=ON )
cmake_src_configure
}
src_compile() {
- if use test; then
- cmake_build check-testsuite check-benchmarks check-examples
- else
- cmake build
+ cmake_src_compile
+ use doc && cmake_build blitz-doc
+ use test && cmake_build testsuite benchmark examples
+}
+
+src_install() {
+ cmake_src_install
+ if use doc ; then
+ find "${D}" -type f \( -name "*.md5" -o -name "*.map" \) -delete || die
fi
}
diff --git a/dev-cpp/blitz/metadata.xml b/dev-cpp/blitz/metadata.xml
index e97c4322a..c0e5e78aa 100644
--- a/dev-cpp/blitz/metadata.xml
+++ b/dev-cpp/blitz/metadata.xml
@@ -9,4 +9,14 @@
<email>sci@gentoo.org</email>
<name>Gentoo Science Project</name>
</maintainer>
+ <longdescription>
+ Blitz++ is a C++ template class library that provides high-performance
+ multidimensional array containers for scientific compiting.
+ </longdescription>
+ <use>
+ <flag name="boost">Enable serialization support using Boost::Serialization.</flag>
+ </use>
+ <upstream>
+ <remote-id type="github">blitzpp/blitz</remote-id>
+ </upstream>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-cpp/blitz/
@ 2024-01-22 12:21 Horea Christian
0 siblings, 0 replies; 8+ messages in thread
From: Horea Christian @ 2024-01-22 12:21 UTC (permalink / raw
To: gentoo-commits
commit: 10516409189d808dd42270c7f4723e47f07b9b2b
Author: Horea Christian <chr <AT> chymera <DOT> eu>
AuthorDate: Mon Jan 22 12:01:38 2024 +0000
Commit: Horea Christian <horea.christ <AT> gmail <DOT> com>
CommitDate: Mon Jan 22 12:01:38 2024 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=10516409
dev-cpp/blitz: updated dependency name
Signed-off-by: Horea Christian <chr <AT> chymera.eu>
dev-cpp/blitz/blitz-1.0.3_pre20200524.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-cpp/blitz/blitz-1.0.3_pre20200524.ebuild b/dev-cpp/blitz/blitz-1.0.3_pre20200524.ebuild
index 38e0dfbd0..e331bc6c9 100644
--- a/dev-cpp/blitz/blitz-1.0.3_pre20200524.ebuild
+++ b/dev-cpp/blitz/blitz-1.0.3_pre20200524.ebuild
@@ -20,7 +20,7 @@ RESTRICT="!test? ( test )"
BDEPEND="
${PYTHON_DEPS}
- doc? ( app-doc/doxygen[dot] )
+ doc? ( app-text/doxygen[dot] )
"
DEPEND="
boost? ( dev-libs/boost:= )
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-cpp/blitz/
@ 2022-07-07 3:34 Sam James
0 siblings, 0 replies; 8+ messages in thread
From: Sam James @ 2022-07-07 3:34 UTC (permalink / raw
To: gentoo-commits
commit: 063910c6a4dcfd0a9193823646bdd232e6aa640c
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 7 02:48:51 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Jul 7 03:34:13 2022 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=063910c6
dev-cpp/blitz: update EAPI 7 -> 8. Python 3.10, Python 3.11
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-cpp/blitz/blitz-1.0.3_pre20200524.ebuild | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/dev-cpp/blitz/blitz-1.0.3_pre20200524.ebuild b/dev-cpp/blitz/blitz-1.0.3_pre20200524.ebuild
index 389e5430d..432004f11 100644
--- a/dev-cpp/blitz/blitz-1.0.3_pre20200524.ebuild
+++ b/dev-cpp/blitz/blitz-1.0.3_pre20200524.ebuild
@@ -1,14 +1,12 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7..9} )
+EAPI=8
+PYTHON_COMPAT=( python3_{8..11} )
inherit cmake python-any-r1
COMMIT="39f885951a9b8b11f931f917935a16066a945056"
-
DESCRIPTION="Multi-dimensional array library for C++"
HOMEPAGE="https://github.com/blitzpp/blitz"
SRC_URI="https://github.com/blitzpp/blitz/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-cpp/blitz/
@ 2022-01-23 13:33 Andrew Ammerlaan
0 siblings, 0 replies; 8+ messages in thread
From: Andrew Ammerlaan @ 2022-01-23 13:33 UTC (permalink / raw
To: gentoo-commits
commit: 2c1d82b6736053664989cb565f51a732000c9c1b
Author: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 23 13:33:52 2022 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Sun Jan 23 13:33:52 2022 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=2c1d82b6
dev-cpp/blitz: drop live
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>
dev-cpp/blitz/blitz-9999.ebuild | 48 -----------------------------------------
1 file changed, 48 deletions(-)
diff --git a/dev-cpp/blitz/blitz-9999.ebuild b/dev-cpp/blitz/blitz-9999.ebuild
deleted file mode 100644
index cb92e37f0..000000000
--- a/dev-cpp/blitz/blitz-9999.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7..9} )
-
-inherit cmake git-r3 python-any-r1
-
-DESCRIPTION="Multi-dimensional array library for C++"
-HOMEPAGE="https://github.com/blitzpp/blitz"
-EGIT_REPO_URI="https://github.com/blitzpp/blitz"
-
-LICENSE="BSD LGPL-3+"
-SLOT="0"
-IUSE="boost doc test"
-RESTRICT="!test? ( test )"
-
-BDEPEND="
- ${PYTHON_DEPS}
- doc? ( app-doc/doxygen[dot] )
-"
-DEPEND="
- boost? ( dev-libs/boost:=[static-libs(-)] )
-"
-
-src_configure() {
- local mycmakeargs=(
- -DBUILD_DOC=$(usex doc)
- -DBUILD_TESTING=$(usex test)
- -DENABLE_SERIALISATION=$(usex boost)
- )
- use doc && mycmakeargs+=( -DDISABLE_REFMAN_PDF=ON )
- cmake_src_configure
-}
-
-src_compile() {
- cmake_src_compile
- use doc && cmake_build blitz-doc
- use test && cmake_build testsuite benchmark examples
-}
-
-src_install() {
- cmake_src_install
- if use doc ; then
- find "${D}" -type f \( -name "*.md5" -o -name "*.map" \) -delete || die
- fi
-}
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-cpp/blitz/
@ 2022-01-15 14:14 Andrew Ammerlaan
0 siblings, 0 replies; 8+ messages in thread
From: Andrew Ammerlaan @ 2022-01-15 14:14 UTC (permalink / raw
To: gentoo-commits
commit: d63a808df6e3108ef577f8dd7b86340b30bc448b
Author: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 15 14:13:09 2022 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Sat Jan 15 14:13:09 2022 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=d63a808d
dev-cpp/blitz: drop unavailable flag
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>
dev-cpp/blitz/blitz-1.0.3_pre20200524.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-cpp/blitz/blitz-1.0.3_pre20200524.ebuild b/dev-cpp/blitz/blitz-1.0.3_pre20200524.ebuild
index 3c796ab5f..389e5430d 100644
--- a/dev-cpp/blitz/blitz-1.0.3_pre20200524.ebuild
+++ b/dev-cpp/blitz/blitz-1.0.3_pre20200524.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -25,7 +25,7 @@ BDEPEND="
doc? ( app-doc/doxygen[dot] )
"
DEPEND="
- boost? ( dev-libs/boost:=[static-libs(-)] )
+ boost? ( dev-libs/boost:= )
"
src_configure() {
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-cpp/blitz/
@ 2021-08-31 9:45 Andrew Ammerlaan
0 siblings, 0 replies; 8+ messages in thread
From: Andrew Ammerlaan @ 2021-08-31 9:45 UTC (permalink / raw
To: gentoo-commits
commit: 39f8958ca794d02b2b228298ea9615c21a7beb8a
Author: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 31 09:33:05 2021 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Tue Aug 31 09:33:05 2021 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=39f8958c
dev-cpp/blitz: add MissingUseDepDefault
Package-Manager: Portage-3.0.22, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>
dev-cpp/blitz/blitz-1.0.3_pre20200524.ebuild | 2 +-
dev-cpp/blitz/blitz-9999.ebuild | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-cpp/blitz/blitz-1.0.3_pre20200524.ebuild b/dev-cpp/blitz/blitz-1.0.3_pre20200524.ebuild
index b92ebbcce..3c796ab5f 100644
--- a/dev-cpp/blitz/blitz-1.0.3_pre20200524.ebuild
+++ b/dev-cpp/blitz/blitz-1.0.3_pre20200524.ebuild
@@ -25,7 +25,7 @@ BDEPEND="
doc? ( app-doc/doxygen[dot] )
"
DEPEND="
- boost? ( dev-libs/boost:=[static-libs] )
+ boost? ( dev-libs/boost:=[static-libs(-)] )
"
src_configure() {
diff --git a/dev-cpp/blitz/blitz-9999.ebuild b/dev-cpp/blitz/blitz-9999.ebuild
index 7ac6d5688..cb92e37f0 100644
--- a/dev-cpp/blitz/blitz-9999.ebuild
+++ b/dev-cpp/blitz/blitz-9999.ebuild
@@ -21,7 +21,7 @@ BDEPEND="
doc? ( app-doc/doxygen[dot] )
"
DEPEND="
- boost? ( dev-libs/boost:=[static-libs] )
+ boost? ( dev-libs/boost:=[static-libs(-)] )
"
src_configure() {
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-cpp/blitz/
@ 2021-04-20 15:44 Aisha Tammy
0 siblings, 0 replies; 8+ messages in thread
From: Aisha Tammy @ 2021-04-20 15:44 UTC (permalink / raw
To: gentoo-commits
commit: 176df3f084611fef1febe14957b3a4532d6291f4
Author: band-a-prend <torokhov-s-a <AT> yandex <DOT> ru>
AuthorDate: Tue Mar 16 15:41:27 2021 +0000
Commit: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
CommitDate: Tue Apr 20 15:44:15 2021 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=176df3f0
dev-cpp/blitz: drop replaced blitz-1.0.2_p20200524.ebuild
Signed-off-by: Sergey Torokhov <torokhov-s-a <AT> yandex.ru>
Closes: https://github.com/gentoo/sci/pull/1065
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
dev-cpp/blitz/blitz-1.0.2_p20200524.ebuild | 40 ------------------------------
1 file changed, 40 deletions(-)
diff --git a/dev-cpp/blitz/blitz-1.0.2_p20200524.ebuild b/dev-cpp/blitz/blitz-1.0.2_p20200524.ebuild
deleted file mode 100644
index 47a9e5d25..000000000
--- a/dev-cpp/blitz/blitz-1.0.2_p20200524.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake
-CMAKE_MAKEFILE_GENERATOR=emake
-
-DESCRIPTION="multi-dimensional array library for C++"
-HOMEPAGE="https://github.com/blitzpp/blitz"
-
-if [[ ${PV} == 9999 ]] ; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/blitzpp/blitz"
-else
- COMMIT=39f885951a9b8b11f931f917935a16066a945056
- SRC_URI="https://github.com/blitzpp/blitz/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
- S="${WORKDIR}"/${PN}-${COMMIT}
- KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
-fi
-
-LICENSE="BSD LGPL-3+"
-SLOT="0"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-src_configure() {
- local mycmakeargs=(
- -DBUILD_TESTING=$(usex test)
- )
- cmake_src_configure
-}
-
-src_compile() {
- if use test; then
- cmake_build check-testsuite check-benchmarks check-examples
- else
- cmake build
- fi
-}
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-cpp/blitz/
@ 2020-10-02 10:27 Aisha Tammy
0 siblings, 0 replies; 8+ messages in thread
From: Aisha Tammy @ 2020-10-02 10:27 UTC (permalink / raw
To: gentoo-commits
commit: b6a975ddfc6833b2b1af8e560a3c5cc6b9dfe678
Author: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Fri Oct 2 01:13:18 2020 +0000
Commit: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
CommitDate: Fri Oct 2 01:38:27 2020 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=b6a975dd
dev-cpp/blitz: cpp tensor library
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
dev-cpp/blitz/blitz-1.0.2_p20200524.ebuild | 40 ++++++++++++++++++++++++++++++
dev-cpp/blitz/blitz-9999.ebuild | 40 ++++++++++++++++++++++++++++++
dev-cpp/blitz/metadata.xml | 12 +++++++++
3 files changed, 92 insertions(+)
diff --git a/dev-cpp/blitz/blitz-1.0.2_p20200524.ebuild b/dev-cpp/blitz/blitz-1.0.2_p20200524.ebuild
new file mode 100644
index 000000000..47a9e5d25
--- /dev/null
+++ b/dev-cpp/blitz/blitz-1.0.2_p20200524.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake
+CMAKE_MAKEFILE_GENERATOR=emake
+
+DESCRIPTION="multi-dimensional array library for C++"
+HOMEPAGE="https://github.com/blitzpp/blitz"
+
+if [[ ${PV} == 9999 ]] ; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/blitzpp/blitz"
+else
+ COMMIT=39f885951a9b8b11f931f917935a16066a945056
+ SRC_URI="https://github.com/blitzpp/blitz/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
+ S="${WORKDIR}"/${PN}-${COMMIT}
+ KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+fi
+
+LICENSE="BSD LGPL-3+"
+SLOT="0"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+src_configure() {
+ local mycmakeargs=(
+ -DBUILD_TESTING=$(usex test)
+ )
+ cmake_src_configure
+}
+
+src_compile() {
+ if use test; then
+ cmake_build check-testsuite check-benchmarks check-examples
+ else
+ cmake build
+ fi
+}
diff --git a/dev-cpp/blitz/blitz-9999.ebuild b/dev-cpp/blitz/blitz-9999.ebuild
new file mode 100644
index 000000000..47a9e5d25
--- /dev/null
+++ b/dev-cpp/blitz/blitz-9999.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake
+CMAKE_MAKEFILE_GENERATOR=emake
+
+DESCRIPTION="multi-dimensional array library for C++"
+HOMEPAGE="https://github.com/blitzpp/blitz"
+
+if [[ ${PV} == 9999 ]] ; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/blitzpp/blitz"
+else
+ COMMIT=39f885951a9b8b11f931f917935a16066a945056
+ SRC_URI="https://github.com/blitzpp/blitz/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
+ S="${WORKDIR}"/${PN}-${COMMIT}
+ KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+fi
+
+LICENSE="BSD LGPL-3+"
+SLOT="0"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+src_configure() {
+ local mycmakeargs=(
+ -DBUILD_TESTING=$(usex test)
+ )
+ cmake_src_configure
+}
+
+src_compile() {
+ if use test; then
+ cmake_build check-testsuite check-benchmarks check-examples
+ else
+ cmake build
+ fi
+}
diff --git a/dev-cpp/blitz/metadata.xml b/dev-cpp/blitz/metadata.xml
new file mode 100644
index 000000000..e97c4322a
--- /dev/null
+++ b/dev-cpp/blitz/metadata.xml
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>gentoo@aisha.cc</email>
+ <name>Aisha Tammy</name>
+ </maintainer>
+ <maintainer type="project">
+ <email>sci@gentoo.org</email>
+ <name>Gentoo Science Project</name>
+ </maintainer>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 8+ messages in thread
end of thread, other threads:[~2024-01-22 12:21 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-04-20 15:44 [gentoo-commits] proj/sci:master commit in: dev-cpp/blitz/ Aisha Tammy
-- strict thread matches above, loose matches on Subject: below --
2024-01-22 12:21 Horea Christian
2022-07-07 3:34 Sam James
2022-01-23 13:33 Andrew Ammerlaan
2022-01-15 14:14 Andrew Ammerlaan
2021-08-31 9:45 Andrew Ammerlaan
2021-04-20 15:44 Aisha Tammy
2020-10-02 10:27 Aisha Tammy
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox