* [gentoo-commits] repo/gentoo:master commit in: sci-libs/votca-tools/
@ 2015-09-24 5:20 Christoph Junghans
0 siblings, 0 replies; 39+ messages in thread
From: Christoph Junghans @ 2015-09-24 5:20 UTC (permalink / raw
To: gentoo-commits
commit: 7cf40842d6227349b45ebd231506adf139821134
Author: Christoph Junghans <ottxor <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 24 04:59:10 2015 +0000
Commit: Christoph Junghans <ottxor <AT> gentoo <DOT> org>
CommitDate: Thu Sep 24 05:21:03 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7cf40842
sci-libs/votca-tools: version bump
Package-Manager: portage-2.2.20.1
sci-libs/votca-tools/Manifest | 1 +
sci-libs/votca-tools/votca-tools-1.3_rc1.ebuild | 60 +++++++++++++++++++++++++
2 files changed, 61 insertions(+)
diff --git a/sci-libs/votca-tools/Manifest b/sci-libs/votca-tools/Manifest
index 55f9c81..e396448 100644
--- a/sci-libs/votca-tools/Manifest
+++ b/sci-libs/votca-tools/Manifest
@@ -1,3 +1,4 @@
DIST votca-tools-1.2.2.tar.gz 987104 SHA256 26eb8b97944844cecbfeb4609091af223c5b912696492bda8347b8f98ad543be SHA512 10710323fc3a20748d6af97b5408829b31ce31c4358147232c851986e6cfcaed886574ea261a660e49b6914e893d24af390b0acb744506e730b0df8249e30680 WHIRLPOOL c6209b201f69d5e68b4b74c1b9ca5c552f4c4ad39cfc90b19f5034563a4c9309947f139515510ddd3cdf4f9eec70d0fb5ee0c1c3a40be7ce7141fff64b69896a
DIST votca-tools-1.2.2_pristine.tar.gz 85442 SHA256 23e53ea7d462ced18dde8a5795c4e1dc8c05084c18deb50663023c270314eb28 SHA512 5245e9fdeaedc28fca211378f088636720c83511592a6e34b92f07d465692c7d2305a40ee111726a9ddf2d11e82a8f34ee9c3345e151780276d7679149857e7d WHIRLPOOL b792be3c2e2dc935b7ecbb40740fdba33afafe22ae0249b18eda36826c98f38345c7cc6513fe72db31ba53f61e7b93fbc1459ceec76b2959f774ba035cf63c60
DIST votca-tools-1.2.4_pristine.tar.gz 84836 SHA256 acb5545c7cbdf8f8dbad6645f553e90e5dfa979e5f662f56696f73fc5a957c55 SHA512 65e780cbedf9b9001f3d704d7d45a8272cd995f21cea7a31a446a0e040c803994ff9aea2a884a2c5c972cef9b980434cb8e2bbcef8b96cfb31e178d95ddb0f45 WHIRLPOOL a8a341349ac3d36b9f331c57cfcc62c1995ca71fcec035dab098438cbbc1a2c6a80ed50d048e8673333af352723352a2af9aed41411e43e4d9e40cfbedf362ca
+DIST votca-tools-1.3_rc1.tar.gz 96959 SHA256 d9cfdeab9ad69bdd81e5cf26ba803e518442a4c6e3f9c853fcc233e173f00a33 SHA512 dcad8c845496427744b1b9dcde54cd715591f030bd3c737098293c5b9dcf2e12a3ddbf435f9c74528e12dbd030a5fac914c37d4212ccb8e3627c6dc45c300487 WHIRLPOOL 24673373506ee9f2cdcddddb8d6ed9dfa6b9e13ee19f9be6e739fe10360be5e769e933c906b166fed6684f9282d3a492969208e2d2010534f17a2750261aab48
diff --git a/sci-libs/votca-tools/votca-tools-1.3_rc1.ebuild b/sci-libs/votca-tools/votca-tools-1.3_rc1.ebuild
new file mode 100644
index 0000000..4dae0bf
--- /dev/null
+++ b/sci-libs/votca-tools/votca-tools-1.3_rc1.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+CMAKE_MAKEFILE_GENERATOR="ninja"
+
+inherit cmake-utils eutils multilib
+
+if [ "${PV}" != "9999" ]; then
+ SRC_URI="https://github.com/${PN/-//}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-macos"
+ S="${WORKDIR}/${P#votca-}"
+else
+ inherit git-r3
+ EGIT_REPO_URI="git://github.com/${PN/-//}.git https://github.com/${PN/-//}.git"
+ KEYWORDS=""
+fi
+
+DESCRIPTION="Votca tools library"
+HOMEPAGE="http://www.votca.org"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE="doc +fftw +gsl sqlite"
+
+RDEPEND="
+ dev-libs/boost:=
+ dev-libs/expat
+ fftw? ( sci-libs/fftw:3.0 )
+ gsl? ( sci-libs/gsl )
+ sqlite? ( dev-db/sqlite:3 )"
+
+DEPEND="${RDEPEND}
+ doc? ( >=app-doc/doxygen-1.7.6.1[dot] )
+ >=app-text/txt2tags-2.5
+ virtual/pkgconfig"
+
+DOCS=( NOTICE )
+
+src_configure() {
+ mycmakeargs=(
+ $(cmake-utils_use_with gsl GSL)
+ $(cmake-utils_use_with fftw FFTW)
+ $(cmake-utils_use_with sqlite SQLITE3)
+ -DWITH_RC_FILES=OFF
+ -DLIB=$(get_libdir)
+ )
+ cmake-utils_src_configure
+}
+
+src_install() {
+ cmake-utils_src_install
+ if use doc; then
+ cd "${CMAKE_BUILD_DIR}"
+ cmake-utils_src_make html
+ dohtml -r share/doc/html/*
+ fi
+}
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-libs/votca-tools/
@ 2016-01-15 22:30 Christoph Junghans
0 siblings, 0 replies; 39+ messages in thread
From: Christoph Junghans @ 2016-01-15 22:30 UTC (permalink / raw
To: gentoo-commits
commit: e71e6ec9d9b69495c27d2c028f1a6b49916d23b1
Author: Christoph Junghans <ottxor <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 15 22:23:33 2016 +0000
Commit: Christoph Junghans <ottxor <AT> gentoo <DOT> org>
CommitDate: Fri Jan 15 22:30:32 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e71e6ec9
version bump
Package-Manager: portage-2.2.26
sci-libs/votca-tools/Manifest | 2 +-
.../votca-tools/{votca-tools-1.3_rc1.ebuild => votca-tools-1.3.ebuild} | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/sci-libs/votca-tools/Manifest b/sci-libs/votca-tools/Manifest
index e396448..23e52b3 100644
--- a/sci-libs/votca-tools/Manifest
+++ b/sci-libs/votca-tools/Manifest
@@ -1,4 +1,4 @@
DIST votca-tools-1.2.2.tar.gz 987104 SHA256 26eb8b97944844cecbfeb4609091af223c5b912696492bda8347b8f98ad543be SHA512 10710323fc3a20748d6af97b5408829b31ce31c4358147232c851986e6cfcaed886574ea261a660e49b6914e893d24af390b0acb744506e730b0df8249e30680 WHIRLPOOL c6209b201f69d5e68b4b74c1b9ca5c552f4c4ad39cfc90b19f5034563a4c9309947f139515510ddd3cdf4f9eec70d0fb5ee0c1c3a40be7ce7141fff64b69896a
DIST votca-tools-1.2.2_pristine.tar.gz 85442 SHA256 23e53ea7d462ced18dde8a5795c4e1dc8c05084c18deb50663023c270314eb28 SHA512 5245e9fdeaedc28fca211378f088636720c83511592a6e34b92f07d465692c7d2305a40ee111726a9ddf2d11e82a8f34ee9c3345e151780276d7679149857e7d WHIRLPOOL b792be3c2e2dc935b7ecbb40740fdba33afafe22ae0249b18eda36826c98f38345c7cc6513fe72db31ba53f61e7b93fbc1459ceec76b2959f774ba035cf63c60
DIST votca-tools-1.2.4_pristine.tar.gz 84836 SHA256 acb5545c7cbdf8f8dbad6645f553e90e5dfa979e5f662f56696f73fc5a957c55 SHA512 65e780cbedf9b9001f3d704d7d45a8272cd995f21cea7a31a446a0e040c803994ff9aea2a884a2c5c972cef9b980434cb8e2bbcef8b96cfb31e178d95ddb0f45 WHIRLPOOL a8a341349ac3d36b9f331c57cfcc62c1995ca71fcec035dab098438cbbc1a2c6a80ed50d048e8673333af352723352a2af9aed41411e43e4d9e40cfbedf362ca
-DIST votca-tools-1.3_rc1.tar.gz 96959 SHA256 d9cfdeab9ad69bdd81e5cf26ba803e518442a4c6e3f9c853fcc233e173f00a33 SHA512 dcad8c845496427744b1b9dcde54cd715591f030bd3c737098293c5b9dcf2e12a3ddbf435f9c74528e12dbd030a5fac914c37d4212ccb8e3627c6dc45c300487 WHIRLPOOL 24673373506ee9f2cdcddddb8d6ed9dfa6b9e13ee19f9be6e739fe10360be5e769e933c906b166fed6684f9282d3a492969208e2d2010534f17a2750261aab48
+DIST votca-tools-1.3.tar.gz 96908 SHA256 ecacfb46b645f69fa0bb9f40408c9211fa09a02dd47bcb4adb069cf7e3f60348 SHA512 c6b69d5bae234b9af9c469db4203d3c7e4f57e18486ac69665b2a24b9c5fd74ec007a88c491b6439d36849346468fde8748c62ce54c63f462a58f1b6bc9b5993 WHIRLPOOL 540db48b417698a42dc34406d15d84a34a1b798ac70a4916c73fdb964218705a1c5f7ecec660d09fcf5844230a5aab6d498a7972261b320696bb0502da267a4e
diff --git a/sci-libs/votca-tools/votca-tools-1.3_rc1.ebuild b/sci-libs/votca-tools/votca-tools-1.3.ebuild
similarity index 96%
rename from sci-libs/votca-tools/votca-tools-1.3_rc1.ebuild
rename to sci-libs/votca-tools/votca-tools-1.3.ebuild
index 4dae0bf..ad02036 100644
--- a/sci-libs/votca-tools/votca-tools-1.3_rc1.ebuild
+++ b/sci-libs/votca-tools/votca-tools-1.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-libs/votca-tools/
@ 2016-01-22 18:51 Michael Palimaka
0 siblings, 0 replies; 39+ messages in thread
From: Michael Palimaka @ 2016-01-22 18:51 UTC (permalink / raw
To: gentoo-commits
commit: 77aa2668ff82a528a60f1cec2e5a859ae9c23bcb
Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 22 18:50:07 2016 +0000
Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Fri Jan 22 18:50:52 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77aa2668
sci-libs/votca-tools: remove old
Package-Manager: portage-2.2.27
sci-libs/votca-tools/Manifest | 2 -
sci-libs/votca-tools/metadata.xml | 3 --
sci-libs/votca-tools/votca-tools-1.2.2.ebuild | 69 ---------------------------
3 files changed, 74 deletions(-)
diff --git a/sci-libs/votca-tools/Manifest b/sci-libs/votca-tools/Manifest
index 23e52b3..d99e5ae 100644
--- a/sci-libs/votca-tools/Manifest
+++ b/sci-libs/votca-tools/Manifest
@@ -1,4 +1,2 @@
-DIST votca-tools-1.2.2.tar.gz 987104 SHA256 26eb8b97944844cecbfeb4609091af223c5b912696492bda8347b8f98ad543be SHA512 10710323fc3a20748d6af97b5408829b31ce31c4358147232c851986e6cfcaed886574ea261a660e49b6914e893d24af390b0acb744506e730b0df8249e30680 WHIRLPOOL c6209b201f69d5e68b4b74c1b9ca5c552f4c4ad39cfc90b19f5034563a4c9309947f139515510ddd3cdf4f9eec70d0fb5ee0c1c3a40be7ce7141fff64b69896a
-DIST votca-tools-1.2.2_pristine.tar.gz 85442 SHA256 23e53ea7d462ced18dde8a5795c4e1dc8c05084c18deb50663023c270314eb28 SHA512 5245e9fdeaedc28fca211378f088636720c83511592a6e34b92f07d465692c7d2305a40ee111726a9ddf2d11e82a8f34ee9c3345e151780276d7679149857e7d WHIRLPOOL b792be3c2e2dc935b7ecbb40740fdba33afafe22ae0249b18eda36826c98f38345c7cc6513fe72db31ba53f61e7b93fbc1459ceec76b2959f774ba035cf63c60
DIST votca-tools-1.2.4_pristine.tar.gz 84836 SHA256 acb5545c7cbdf8f8dbad6645f553e90e5dfa979e5f662f56696f73fc5a957c55 SHA512 65e780cbedf9b9001f3d704d7d45a8272cd995f21cea7a31a446a0e040c803994ff9aea2a884a2c5c972cef9b980434cb8e2bbcef8b96cfb31e178d95ddb0f45 WHIRLPOOL a8a341349ac3d36b9f331c57cfcc62c1995ca71fcec035dab098438cbbc1a2c6a80ed50d048e8673333af352723352a2af9aed41411e43e4d9e40cfbedf362ca
DIST votca-tools-1.3.tar.gz 96908 SHA256 ecacfb46b645f69fa0bb9f40408c9211fa09a02dd47bcb4adb069cf7e3f60348 SHA512 c6b69d5bae234b9af9c469db4203d3c7e4f57e18486ac69665b2a24b9c5fd74ec007a88c491b6439d36849346468fde8748c62ce54c63f462a58f1b6bc9b5993 WHIRLPOOL 540db48b417698a42dc34406d15d84a34a1b798ac70a4916c73fdb964218705a1c5f7ecec660d09fcf5844230a5aab6d498a7972261b320696bb0502da267a4e
diff --git a/sci-libs/votca-tools/metadata.xml b/sci-libs/votca-tools/metadata.xml
index 2a848f5..c6b65ec 100644
--- a/sci-libs/votca-tools/metadata.xml
+++ b/sci-libs/votca-tools/metadata.xml
@@ -6,9 +6,6 @@
<email>ottxor@gentoo.org</email>
<name>Christoph Junghans</name>
</maintainer>
- <use>
- <flag name="system-boost">Use system boost (<pkg>dev-libs/boost</pkg>) instead of bundled one</flag>
- </use>
<upstream>
<remote-id type="google-code">votca</remote-id>
<remote-id type="github">votca/tools</remote-id>
diff --git a/sci-libs/votca-tools/votca-tools-1.2.2.ebuild b/sci-libs/votca-tools/votca-tools-1.2.2.ebuild
deleted file mode 100644
index 272d19e..0000000
--- a/sci-libs/votca-tools/votca-tools-1.2.2.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="3"
-
-inherit cmake-utils eutils multilib
-
-if [ "${PV}" != "9999" ]; then
- SRC_URI="system-boost? ( https://votca.googlecode.com/files/${PF}_pristine.tar.gz )
- !system-boost? ( https://votca.googlecode.com/files/${PF}.tar.gz )"
- RESTRICT="primaryuri"
-else
- SRC_URI=""
- inherit mercurial
- EHG_REPO_URI="https://tools.votca.googlecode.com/hg"
-fi
-
-DESCRIPTION="Votca tools library"
-HOMEPAGE="http://www.votca.org"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 x86 ~amd64-linux ~x86-macos"
-IUSE="doc +fftw +gsl sqlite +system-boost"
-
-RDEPEND="fftw? ( sci-libs/fftw:3.0 )
- dev-libs/expat
- gsl? ( sci-libs/gsl )
- system-boost? ( dev-libs/boost )
- sqlite? ( dev-db/sqlite:3 )"
-
-DEPEND="${RDEPEND}
- doc? ( || ( <app-doc/doxygen-1.7.6.1[-nodot] >=app-doc/doxygen-1.7.6.1[dot] ) )
- >=app-text/txt2tags-2.5
- virtual/pkgconfig"
-
-src_prepare() {
- use gsl || ewarn "Disabling gsl will lead to reduced functionality"
- use fftw || ewarn "Disabling fftw will lead to reduced functionality"
-
- #remove bundled libs
- if use system-boost; then
- rm -rf src/libboost
- fi
-}
-
-src_configure() {
- mycmakeargs=(
- $(cmake-utils_use system-boost EXTERNAL_BOOST)
- $(cmake-utils_use_with gsl GSL)
- $(cmake-utils_use_with fftw FFTW)
- $(cmake-utils_use_with sqlite SQLITE3)
- -DWITH_RC_FILES=OFF
- -DLIB=$(get_libdir)
- )
- cmake-utils_src_configure || die
-}
-
-src_install() {
- DOCS=(${CMAKE_BUILD_DIR}/CHANGELOG NOTICE)
- cmake-utils_src_install || die
- if use doc; then
- cd "${CMAKE_BUILD_DIR}" || die
- cd share/doc || die
- doxygen || die
- dohtml -r html/* || die
- fi
-}
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-libs/votca-tools/
@ 2016-07-14 17:30 Christoph Junghans
0 siblings, 0 replies; 39+ messages in thread
From: Christoph Junghans @ 2016-07-14 17:30 UTC (permalink / raw
To: gentoo-commits
commit: 2fbbafef94953e4a52c7ff37f8a517971ae16072
Author: Christoph Junghans <ottxor <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 14 17:27:43 2016 +0000
Commit: Christoph Junghans <ottxor <AT> gentoo <DOT> org>
CommitDate: Thu Jul 14 17:30:22 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2fbbafef
sci-libs/votca-tools: import live ebuild from sci
Package-Manager: portage-2.2.28
sci-libs/votca-tools/votca-tools-9999.ebuild | 60 ++++++++++++++++++++++++++++
1 file changed, 60 insertions(+)
diff --git a/sci-libs/votca-tools/votca-tools-9999.ebuild b/sci-libs/votca-tools/votca-tools-9999.ebuild
new file mode 100644
index 0000000..34b0cd2
--- /dev/null
+++ b/sci-libs/votca-tools/votca-tools-9999.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+CMAKE_MAKEFILE_GENERATOR="ninja"
+
+inherit cmake-utils eutils multilib
+
+if [ "${PV}" != "9999" ]; then
+ SRC_URI="https://github.com/${PN/-//}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-macos"
+ S="${WORKDIR}/${P#votca-}"
+else
+ inherit git-r3
+ EGIT_REPO_URI="git://github.com/${PN/-//}.git https://github.com/${PN/-//}.git"
+ KEYWORDS=""
+fi
+
+DESCRIPTION="Votca tools library"
+HOMEPAGE="http://www.votca.org"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE="doc +fftw +gsl sqlite"
+
+RDEPEND="
+ dev-libs/boost:=
+ dev-libs/expat
+ fftw? ( sci-libs/fftw:3.0 )
+ gsl? ( sci-libs/gsl )
+ sqlite? ( dev-db/sqlite:3 )"
+
+DEPEND="${RDEPEND}
+ doc? ( >=app-doc/doxygen-1.7.6.1[dot] )
+ >=app-text/txt2tags-2.5
+ virtual/pkgconfig"
+
+DOCS=( NOTICE )
+
+src_configure() {
+ mycmakeargs=(
+ -DWITH_GSL=$(usex gsl)
+ -DWITH_FFTW=$(usex fftw)
+ -DWITH_SQLITE3=$(usex sqlite)
+ -DWITH_RC_FILES=OFF
+ -DLIB=$(get_libdir)
+ )
+ cmake-utils_src_configure
+}
+
+src_install() {
+ cmake-utils_src_install
+ if use doc; then
+ cd "${CMAKE_BUILD_DIR}"
+ cmake-utils_src_make html
+ dodoc -r share/doc/html
+ fi
+}
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-libs/votca-tools/
@ 2016-08-19 21:59 Christoph Junghans
0 siblings, 0 replies; 39+ messages in thread
From: Christoph Junghans @ 2016-08-19 21:59 UTC (permalink / raw
To: gentoo-commits
commit: 6a46455ead3896a8fdc4f3895569f4fbb690117e
Author: Christoph Junghans <ottxor <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 19 21:30:15 2016 +0000
Commit: Christoph Junghans <ottxor <AT> gentoo <DOT> org>
CommitDate: Fri Aug 19 21:59:36 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a46455e
sci-libs/votca-tools: version bump
Package-Manager: portage-2.2.28
sci-libs/votca-tools/Manifest | 1 +
sci-libs/votca-tools/votca-tools-1.3.1.ebuild | 60 +++++++++++++++++++++++++++
2 files changed, 61 insertions(+)
diff --git a/sci-libs/votca-tools/Manifest b/sci-libs/votca-tools/Manifest
index d99e5ae..777546b 100644
--- a/sci-libs/votca-tools/Manifest
+++ b/sci-libs/votca-tools/Manifest
@@ -1,2 +1,3 @@
DIST votca-tools-1.2.4_pristine.tar.gz 84836 SHA256 acb5545c7cbdf8f8dbad6645f553e90e5dfa979e5f662f56696f73fc5a957c55 SHA512 65e780cbedf9b9001f3d704d7d45a8272cd995f21cea7a31a446a0e040c803994ff9aea2a884a2c5c972cef9b980434cb8e2bbcef8b96cfb31e178d95ddb0f45 WHIRLPOOL a8a341349ac3d36b9f331c57cfcc62c1995ca71fcec035dab098438cbbc1a2c6a80ed50d048e8673333af352723352a2af9aed41411e43e4d9e40cfbedf362ca
+DIST votca-tools-1.3.1.tar.gz 96920 SHA256 3a1d612c2dbf4e82c35201d1ae5f9aa064c64b88568df6b098bd54375a23e9fe SHA512 591d6fb6f10397451c60df24f72dcb46d9a9ae40c10152956b7c319394d52559253e74f481cf71bbe43a6b17255c6c8a42c4d8f3bae8fc12807430e108908cd2 WHIRLPOOL 1bd8aaf740ea0c6371d8c6ec76b57b7d1348712912ae36dc8481537cbd6fc688af0903a8c2461a5fea0c2fc3bd63c9999d262e62cb0932f5162fde3a1d771c0c
DIST votca-tools-1.3.tar.gz 96908 SHA256 ecacfb46b645f69fa0bb9f40408c9211fa09a02dd47bcb4adb069cf7e3f60348 SHA512 c6b69d5bae234b9af9c469db4203d3c7e4f57e18486ac69665b2a24b9c5fd74ec007a88c491b6439d36849346468fde8748c62ce54c63f462a58f1b6bc9b5993 WHIRLPOOL 540db48b417698a42dc34406d15d84a34a1b798ac70a4916c73fdb964218705a1c5f7ecec660d09fcf5844230a5aab6d498a7972261b320696bb0502da267a4e
diff --git a/sci-libs/votca-tools/votca-tools-1.3.1.ebuild b/sci-libs/votca-tools/votca-tools-1.3.1.ebuild
new file mode 100644
index 0000000..34b0cd2
--- /dev/null
+++ b/sci-libs/votca-tools/votca-tools-1.3.1.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+CMAKE_MAKEFILE_GENERATOR="ninja"
+
+inherit cmake-utils eutils multilib
+
+if [ "${PV}" != "9999" ]; then
+ SRC_URI="https://github.com/${PN/-//}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-macos"
+ S="${WORKDIR}/${P#votca-}"
+else
+ inherit git-r3
+ EGIT_REPO_URI="git://github.com/${PN/-//}.git https://github.com/${PN/-//}.git"
+ KEYWORDS=""
+fi
+
+DESCRIPTION="Votca tools library"
+HOMEPAGE="http://www.votca.org"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE="doc +fftw +gsl sqlite"
+
+RDEPEND="
+ dev-libs/boost:=
+ dev-libs/expat
+ fftw? ( sci-libs/fftw:3.0 )
+ gsl? ( sci-libs/gsl )
+ sqlite? ( dev-db/sqlite:3 )"
+
+DEPEND="${RDEPEND}
+ doc? ( >=app-doc/doxygen-1.7.6.1[dot] )
+ >=app-text/txt2tags-2.5
+ virtual/pkgconfig"
+
+DOCS=( NOTICE )
+
+src_configure() {
+ mycmakeargs=(
+ -DWITH_GSL=$(usex gsl)
+ -DWITH_FFTW=$(usex fftw)
+ -DWITH_SQLITE3=$(usex sqlite)
+ -DWITH_RC_FILES=OFF
+ -DLIB=$(get_libdir)
+ )
+ cmake-utils_src_configure
+}
+
+src_install() {
+ cmake-utils_src_install
+ if use doc; then
+ cd "${CMAKE_BUILD_DIR}"
+ cmake-utils_src_make html
+ dodoc -r share/doc/html
+ fi
+}
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-libs/votca-tools/
@ 2016-09-27 18:13 Christoph Junghans
0 siblings, 0 replies; 39+ messages in thread
From: Christoph Junghans @ 2016-09-27 18:13 UTC (permalink / raw
To: gentoo-commits
commit: f2de7114bb18961ef7d74de40dfdb26dab5b860b
Author: Christoph Junghans <ottxor <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 27 16:22:28 2016 +0000
Commit: Christoph Junghans <ottxor <AT> gentoo <DOT> org>
CommitDate: Tue Sep 27 18:13:37 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2de7114
sci-libs/votca-tools: version bump
Package-Manager: portage-2.3.0
sci-libs/votca-tools/Manifest | 1 +
sci-libs/votca-tools/votca-tools-1.4_rc1.ebuild | 60 +++++++++++++++++++++++++
2 files changed, 61 insertions(+)
diff --git a/sci-libs/votca-tools/Manifest b/sci-libs/votca-tools/Manifest
index 777546b..248dda7 100644
--- a/sci-libs/votca-tools/Manifest
+++ b/sci-libs/votca-tools/Manifest
@@ -1,3 +1,4 @@
DIST votca-tools-1.2.4_pristine.tar.gz 84836 SHA256 acb5545c7cbdf8f8dbad6645f553e90e5dfa979e5f662f56696f73fc5a957c55 SHA512 65e780cbedf9b9001f3d704d7d45a8272cd995f21cea7a31a446a0e040c803994ff9aea2a884a2c5c972cef9b980434cb8e2bbcef8b96cfb31e178d95ddb0f45 WHIRLPOOL a8a341349ac3d36b9f331c57cfcc62c1995ca71fcec035dab098438cbbc1a2c6a80ed50d048e8673333af352723352a2af9aed41411e43e4d9e40cfbedf362ca
DIST votca-tools-1.3.1.tar.gz 96920 SHA256 3a1d612c2dbf4e82c35201d1ae5f9aa064c64b88568df6b098bd54375a23e9fe SHA512 591d6fb6f10397451c60df24f72dcb46d9a9ae40c10152956b7c319394d52559253e74f481cf71bbe43a6b17255c6c8a42c4d8f3bae8fc12807430e108908cd2 WHIRLPOOL 1bd8aaf740ea0c6371d8c6ec76b57b7d1348712912ae36dc8481537cbd6fc688af0903a8c2461a5fea0c2fc3bd63c9999d262e62cb0932f5162fde3a1d771c0c
DIST votca-tools-1.3.tar.gz 96908 SHA256 ecacfb46b645f69fa0bb9f40408c9211fa09a02dd47bcb4adb069cf7e3f60348 SHA512 c6b69d5bae234b9af9c469db4203d3c7e4f57e18486ac69665b2a24b9c5fd74ec007a88c491b6439d36849346468fde8748c62ce54c63f462a58f1b6bc9b5993 WHIRLPOOL 540db48b417698a42dc34406d15d84a34a1b798ac70a4916c73fdb964218705a1c5f7ecec660d09fcf5844230a5aab6d498a7972261b320696bb0502da267a4e
+DIST votca-tools-1.4_rc1.tar.gz 103097 SHA256 97791147e1db2154873f5f7990487c64f5f8f49f5fa318d06bf109df80d163f0 SHA512 e1d32bc54d2c12e167449da5476c6454bbb3ce090113e2e7c05c31e1d38b81b2d8c86303cf73ac1c6d274c1b9d9ed2cdfbf14ba24ce458374a9a882b7a96f726 WHIRLPOOL acbf2c831fda576e6803485d6e214ffd7d09b4511876d65fc6178f93fd24e6c574e55fe74a6453bcbcb0e580e4d60f1b82d7bf4163102086c90a427f4d0e9827
diff --git a/sci-libs/votca-tools/votca-tools-1.4_rc1.ebuild b/sci-libs/votca-tools/votca-tools-1.4_rc1.ebuild
new file mode 100644
index 00000000..34b0cd2
--- /dev/null
+++ b/sci-libs/votca-tools/votca-tools-1.4_rc1.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+CMAKE_MAKEFILE_GENERATOR="ninja"
+
+inherit cmake-utils eutils multilib
+
+if [ "${PV}" != "9999" ]; then
+ SRC_URI="https://github.com/${PN/-//}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-macos"
+ S="${WORKDIR}/${P#votca-}"
+else
+ inherit git-r3
+ EGIT_REPO_URI="git://github.com/${PN/-//}.git https://github.com/${PN/-//}.git"
+ KEYWORDS=""
+fi
+
+DESCRIPTION="Votca tools library"
+HOMEPAGE="http://www.votca.org"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE="doc +fftw +gsl sqlite"
+
+RDEPEND="
+ dev-libs/boost:=
+ dev-libs/expat
+ fftw? ( sci-libs/fftw:3.0 )
+ gsl? ( sci-libs/gsl )
+ sqlite? ( dev-db/sqlite:3 )"
+
+DEPEND="${RDEPEND}
+ doc? ( >=app-doc/doxygen-1.7.6.1[dot] )
+ >=app-text/txt2tags-2.5
+ virtual/pkgconfig"
+
+DOCS=( NOTICE )
+
+src_configure() {
+ mycmakeargs=(
+ -DWITH_GSL=$(usex gsl)
+ -DWITH_FFTW=$(usex fftw)
+ -DWITH_SQLITE3=$(usex sqlite)
+ -DWITH_RC_FILES=OFF
+ -DLIB=$(get_libdir)
+ )
+ cmake-utils_src_configure
+}
+
+src_install() {
+ cmake-utils_src_install
+ if use doc; then
+ cd "${CMAKE_BUILD_DIR}"
+ cmake-utils_src_make html
+ dodoc -r share/doc/html
+ fi
+}
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-libs/votca-tools/
@ 2016-10-29 21:41 Christoph Junghans
0 siblings, 0 replies; 39+ messages in thread
From: Christoph Junghans @ 2016-10-29 21:41 UTC (permalink / raw
To: gentoo-commits
commit: b72033f7875ff121ff16f4fa5e83ea19fc356786
Author: Christoph Junghans <ottxor <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 29 21:20:08 2016 +0000
Commit: Christoph Junghans <ottxor <AT> gentoo <DOT> org>
CommitDate: Sat Oct 29 21:41:19 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b72033f7
sci-libs/votca-tools: version bump
Package-Manager: portage-2.3.0
sci-libs/votca-tools/Manifest | 2 +-
.../votca-tools/{votca-tools-1.4_rc1.ebuild => votca-tools-1.4.ebuild} | 0
2 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/sci-libs/votca-tools/Manifest b/sci-libs/votca-tools/Manifest
index 248dda7..5ce5bc1 100644
--- a/sci-libs/votca-tools/Manifest
+++ b/sci-libs/votca-tools/Manifest
@@ -1,4 +1,4 @@
DIST votca-tools-1.2.4_pristine.tar.gz 84836 SHA256 acb5545c7cbdf8f8dbad6645f553e90e5dfa979e5f662f56696f73fc5a957c55 SHA512 65e780cbedf9b9001f3d704d7d45a8272cd995f21cea7a31a446a0e040c803994ff9aea2a884a2c5c972cef9b980434cb8e2bbcef8b96cfb31e178d95ddb0f45 WHIRLPOOL a8a341349ac3d36b9f331c57cfcc62c1995ca71fcec035dab098438cbbc1a2c6a80ed50d048e8673333af352723352a2af9aed41411e43e4d9e40cfbedf362ca
DIST votca-tools-1.3.1.tar.gz 96920 SHA256 3a1d612c2dbf4e82c35201d1ae5f9aa064c64b88568df6b098bd54375a23e9fe SHA512 591d6fb6f10397451c60df24f72dcb46d9a9ae40c10152956b7c319394d52559253e74f481cf71bbe43a6b17255c6c8a42c4d8f3bae8fc12807430e108908cd2 WHIRLPOOL 1bd8aaf740ea0c6371d8c6ec76b57b7d1348712912ae36dc8481537cbd6fc688af0903a8c2461a5fea0c2fc3bd63c9999d262e62cb0932f5162fde3a1d771c0c
DIST votca-tools-1.3.tar.gz 96908 SHA256 ecacfb46b645f69fa0bb9f40408c9211fa09a02dd47bcb4adb069cf7e3f60348 SHA512 c6b69d5bae234b9af9c469db4203d3c7e4f57e18486ac69665b2a24b9c5fd74ec007a88c491b6439d36849346468fde8748c62ce54c63f462a58f1b6bc9b5993 WHIRLPOOL 540db48b417698a42dc34406d15d84a34a1b798ac70a4916c73fdb964218705a1c5f7ecec660d09fcf5844230a5aab6d498a7972261b320696bb0502da267a4e
-DIST votca-tools-1.4_rc1.tar.gz 103097 SHA256 97791147e1db2154873f5f7990487c64f5f8f49f5fa318d06bf109df80d163f0 SHA512 e1d32bc54d2c12e167449da5476c6454bbb3ce090113e2e7c05c31e1d38b81b2d8c86303cf73ac1c6d274c1b9d9ed2cdfbf14ba24ce458374a9a882b7a96f726 WHIRLPOOL acbf2c831fda576e6803485d6e214ffd7d09b4511876d65fc6178f93fd24e6c574e55fe74a6453bcbcb0e580e4d60f1b82d7bf4163102086c90a427f4d0e9827
+DIST votca-tools-1.4.tar.gz 103102 SHA256 df0f96e81a1639eba9e4dce61c28bb08e69c371fb727b4d14c66f5771f22e2fb SHA512 7c4bf2e2ba8cf795f03879138787db3875f48db56b88394c98b18cef0ae90e636d8aafff42eb62a408df06a91583e37e59b33440e83de9f4338295e9ccfc9be5 WHIRLPOOL ae2d51c46442d8089a6f2d84e73c14d675704caee863e70093ba5182451c2987b9428b554f85c4d07b3062cbdf5ddcfd8a90f080333ae65baa97c4a3b300eb54
diff --git a/sci-libs/votca-tools/votca-tools-1.4_rc1.ebuild b/sci-libs/votca-tools/votca-tools-1.4.ebuild
similarity index 100%
rename from sci-libs/votca-tools/votca-tools-1.4_rc1.ebuild
rename to sci-libs/votca-tools/votca-tools-1.4.ebuild
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-libs/votca-tools/
@ 2016-11-14 2:01 Christoph Junghans
0 siblings, 0 replies; 39+ messages in thread
From: Christoph Junghans @ 2016-11-14 2:01 UTC (permalink / raw
To: gentoo-commits
commit: afe20e2e04b99fef6ff6a85fe43fa768b4895aaf
Author: Christoph Junghans <junghans <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 14 01:56:22 2016 +0000
Commit: Christoph Junghans <junghans <AT> gentoo <DOT> org>
CommitDate: Mon Nov 14 01:56:22 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=afe20e2e
sci-libs/votca-tools: update metadata
Package-Manager: portage-2.3.0
sci-libs/votca-tools/metadata.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sci-libs/votca-tools/metadata.xml b/sci-libs/votca-tools/metadata.xml
index 60ad734..e057315 100644
--- a/sci-libs/votca-tools/metadata.xml
+++ b/sci-libs/votca-tools/metadata.xml
@@ -2,7 +2,7 @@
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
- <email>ottxor@gentoo.org</email>
+ <email>junghans@gentoo.org</email>
<name>Christoph Junghans</name>
</maintainer>
<maintainer type="project">
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-libs/votca-tools/
@ 2016-11-24 5:04 Christoph Junghans
0 siblings, 0 replies; 39+ messages in thread
From: Christoph Junghans @ 2016-11-24 5:04 UTC (permalink / raw
To: gentoo-commits
commit: 73cfa00b979abe7aceffb3701d97d83666368a38
Author: Christoph Junghans <junghans <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 24 05:03:08 2016 +0000
Commit: Christoph Junghans <junghans <AT> gentoo <DOT> org>
CommitDate: Thu Nov 24 05:04:24 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73cfa00b
sci-libs/votca-tools: remove googlecode refs
Package-Manager: portage-2.3.0
sci-libs/votca-tools/metadata.xml | 1 -
sci-libs/votca-tools/votca-tools-1.2.4.ebuild | 6 +-----
2 files changed, 1 insertion(+), 6 deletions(-)
diff --git a/sci-libs/votca-tools/metadata.xml b/sci-libs/votca-tools/metadata.xml
index e057315..bdb57bc 100644
--- a/sci-libs/votca-tools/metadata.xml
+++ b/sci-libs/votca-tools/metadata.xml
@@ -10,7 +10,6 @@
<name>Gentoo Chemistry Project</name>
</maintainer>
<upstream>
- <remote-id type="google-code">votca</remote-id>
<remote-id type="github">votca/tools</remote-id>
</upstream>
</pkgmetadata>
diff --git a/sci-libs/votca-tools/votca-tools-1.2.4.ebuild b/sci-libs/votca-tools/votca-tools-1.2.4.ebuild
index a9f6184..2910b02 100644
--- a/sci-libs/votca-tools/votca-tools-1.2.4.ebuild
+++ b/sci-libs/votca-tools/votca-tools-1.2.4.ebuild
@@ -7,11 +7,7 @@ EAPI="5"
inherit cmake-utils eutils multilib
if [ "${PV}" != "9999" ]; then
- SRC_URI="https://downloads.votca.googlecode.com/hg/${P}_pristine.tar.gz"
-else
- SRC_URI=""
- inherit mercurial
- EHG_REPO_URI="https://tools.votca.googlecode.com/hg"
+ SRC_URI="https://github.com/votca/downloads/raw/master/${P}_pristine.tar.gz"
fi
DESCRIPTION="Votca tools library"
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-libs/votca-tools/
@ 2016-12-20 14:30 Tobias Klausmann
0 siblings, 0 replies; 39+ messages in thread
From: Tobias Klausmann @ 2016-12-20 14:30 UTC (permalink / raw
To: gentoo-commits
commit: d890d60099e4898271d606c08f813571e7708aa1
Author: Tobias Klausmann <klausman <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 20 14:08:52 2016 +0000
Commit: Tobias Klausmann <klausman <AT> gentoo <DOT> org>
CommitDate: Tue Dec 20 14:30:06 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d890d600
sci-libs/votca-tools-1.4-r0: stable on amd64
Gentoo-Bug: 591702
sci-libs/votca-tools/votca-tools-1.4.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sci-libs/votca-tools/votca-tools-1.4.ebuild b/sci-libs/votca-tools/votca-tools-1.4.ebuild
index 34b0cd2..72292de 100644
--- a/sci-libs/votca-tools/votca-tools-1.4.ebuild
+++ b/sci-libs/votca-tools/votca-tools-1.4.ebuild
@@ -10,12 +10,12 @@ inherit cmake-utils eutils multilib
if [ "${PV}" != "9999" ]; then
SRC_URI="https://github.com/${PN/-//}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-macos"
+ KEYWORDS="amd64 ~x86 ~amd64-linux ~x86-macos"
S="${WORKDIR}/${P#votca-}"
else
inherit git-r3
EGIT_REPO_URI="git://github.com/${PN/-//}.git https://github.com/${PN/-//}.git"
- KEYWORDS=""
+ KEYWORDS="amd64"
fi
DESCRIPTION="Votca tools library"
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-libs/votca-tools/
@ 2017-01-02 14:42 Christoph Junghans
0 siblings, 0 replies; 39+ messages in thread
From: Christoph Junghans @ 2017-01-02 14:42 UTC (permalink / raw
To: gentoo-commits
commit: d7b80fdffdfabdafb5d295a3c3c06a90a1553c87
Author: Christoph Junghans <junghans <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 2 14:42:17 2017 +0000
Commit: Christoph Junghans <junghans <AT> gentoo <DOT> org>
CommitDate: Mon Jan 2 14:42:34 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7b80fdf
sci-libs/votca-tools: remove old
Package-Manager: portage-2.3.0
sci-libs/votca-tools/Manifest | 3 --
sci-libs/votca-tools/votca-tools-1.2.4.ebuild | 54 ------------------------
sci-libs/votca-tools/votca-tools-1.3.1.ebuild | 60 ---------------------------
sci-libs/votca-tools/votca-tools-1.3.ebuild | 60 ---------------------------
4 files changed, 177 deletions(-)
diff --git a/sci-libs/votca-tools/Manifest b/sci-libs/votca-tools/Manifest
index 5ce5bc1..dddd795 100644
--- a/sci-libs/votca-tools/Manifest
+++ b/sci-libs/votca-tools/Manifest
@@ -1,4 +1 @@
-DIST votca-tools-1.2.4_pristine.tar.gz 84836 SHA256 acb5545c7cbdf8f8dbad6645f553e90e5dfa979e5f662f56696f73fc5a957c55 SHA512 65e780cbedf9b9001f3d704d7d45a8272cd995f21cea7a31a446a0e040c803994ff9aea2a884a2c5c972cef9b980434cb8e2bbcef8b96cfb31e178d95ddb0f45 WHIRLPOOL a8a341349ac3d36b9f331c57cfcc62c1995ca71fcec035dab098438cbbc1a2c6a80ed50d048e8673333af352723352a2af9aed41411e43e4d9e40cfbedf362ca
-DIST votca-tools-1.3.1.tar.gz 96920 SHA256 3a1d612c2dbf4e82c35201d1ae5f9aa064c64b88568df6b098bd54375a23e9fe SHA512 591d6fb6f10397451c60df24f72dcb46d9a9ae40c10152956b7c319394d52559253e74f481cf71bbe43a6b17255c6c8a42c4d8f3bae8fc12807430e108908cd2 WHIRLPOOL 1bd8aaf740ea0c6371d8c6ec76b57b7d1348712912ae36dc8481537cbd6fc688af0903a8c2461a5fea0c2fc3bd63c9999d262e62cb0932f5162fde3a1d771c0c
-DIST votca-tools-1.3.tar.gz 96908 SHA256 ecacfb46b645f69fa0bb9f40408c9211fa09a02dd47bcb4adb069cf7e3f60348 SHA512 c6b69d5bae234b9af9c469db4203d3c7e4f57e18486ac69665b2a24b9c5fd74ec007a88c491b6439d36849346468fde8748c62ce54c63f462a58f1b6bc9b5993 WHIRLPOOL 540db48b417698a42dc34406d15d84a34a1b798ac70a4916c73fdb964218705a1c5f7ecec660d09fcf5844230a5aab6d498a7972261b320696bb0502da267a4e
DIST votca-tools-1.4.tar.gz 103102 SHA256 df0f96e81a1639eba9e4dce61c28bb08e69c371fb727b4d14c66f5771f22e2fb SHA512 7c4bf2e2ba8cf795f03879138787db3875f48db56b88394c98b18cef0ae90e636d8aafff42eb62a408df06a91583e37e59b33440e83de9f4338295e9ccfc9be5 WHIRLPOOL ae2d51c46442d8089a6f2d84e73c14d675704caee863e70093ba5182451c2987b9428b554f85c4d07b3062cbdf5ddcfd8a90f080333ae65baa97c4a3b300eb54
diff --git a/sci-libs/votca-tools/votca-tools-1.2.4.ebuild b/sci-libs/votca-tools/votca-tools-1.2.4.ebuild
deleted file mode 100644
index 2910b02..00000000
--- a/sci-libs/votca-tools/votca-tools-1.2.4.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-inherit cmake-utils eutils multilib
-
-if [ "${PV}" != "9999" ]; then
- SRC_URI="https://github.com/votca/downloads/raw/master/${P}_pristine.tar.gz"
-fi
-
-DESCRIPTION="Votca tools library"
-HOMEPAGE="http://www.votca.org"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 x86 ~amd64-linux ~x86-macos"
-IUSE="doc +fftw +gsl sqlite"
-
-RDEPEND="fftw? ( sci-libs/fftw:3.0 )
- dev-libs/expat
- gsl? ( sci-libs/gsl )
- dev-libs/boost:=
- sqlite? ( dev-db/sqlite:3 )"
-
-DEPEND="${RDEPEND}
- doc? ( >=app-doc/doxygen-1.7.6.1[dot] )
- >=app-text/txt2tags-2.5
- virtual/pkgconfig"
-
-DOCS=( NOTICE )
-
-src_configure() {
- mycmakeargs=(
- $(cmake-utils_use_with gsl GSL)
- $(cmake-utils_use_with fftw FFTW)
- $(cmake-utils_use_with sqlite SQLITE3)
- -DEXTERNAL_BOOST=ON
- -DWITH_RC_FILES=OFF
- -DLIB=$(get_libdir)
- )
- cmake-utils_src_configure
-}
-
-src_install() {
- cmake-utils_src_install
- if use doc; then
- cd "${CMAKE_BUILD_DIR}" || die
- cd share/doc || die
- doxygen || die
- dohtml -r html/*
- fi
-}
diff --git a/sci-libs/votca-tools/votca-tools-1.3.1.ebuild b/sci-libs/votca-tools/votca-tools-1.3.1.ebuild
deleted file mode 100644
index 34b0cd2..00000000
--- a/sci-libs/votca-tools/votca-tools-1.3.1.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-CMAKE_MAKEFILE_GENERATOR="ninja"
-
-inherit cmake-utils eutils multilib
-
-if [ "${PV}" != "9999" ]; then
- SRC_URI="https://github.com/${PN/-//}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-macos"
- S="${WORKDIR}/${P#votca-}"
-else
- inherit git-r3
- EGIT_REPO_URI="git://github.com/${PN/-//}.git https://github.com/${PN/-//}.git"
- KEYWORDS=""
-fi
-
-DESCRIPTION="Votca tools library"
-HOMEPAGE="http://www.votca.org"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-IUSE="doc +fftw +gsl sqlite"
-
-RDEPEND="
- dev-libs/boost:=
- dev-libs/expat
- fftw? ( sci-libs/fftw:3.0 )
- gsl? ( sci-libs/gsl )
- sqlite? ( dev-db/sqlite:3 )"
-
-DEPEND="${RDEPEND}
- doc? ( >=app-doc/doxygen-1.7.6.1[dot] )
- >=app-text/txt2tags-2.5
- virtual/pkgconfig"
-
-DOCS=( NOTICE )
-
-src_configure() {
- mycmakeargs=(
- -DWITH_GSL=$(usex gsl)
- -DWITH_FFTW=$(usex fftw)
- -DWITH_SQLITE3=$(usex sqlite)
- -DWITH_RC_FILES=OFF
- -DLIB=$(get_libdir)
- )
- cmake-utils_src_configure
-}
-
-src_install() {
- cmake-utils_src_install
- if use doc; then
- cd "${CMAKE_BUILD_DIR}"
- cmake-utils_src_make html
- dodoc -r share/doc/html
- fi
-}
diff --git a/sci-libs/votca-tools/votca-tools-1.3.ebuild b/sci-libs/votca-tools/votca-tools-1.3.ebuild
deleted file mode 100644
index ad02036..00000000
--- a/sci-libs/votca-tools/votca-tools-1.3.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-CMAKE_MAKEFILE_GENERATOR="ninja"
-
-inherit cmake-utils eutils multilib
-
-if [ "${PV}" != "9999" ]; then
- SRC_URI="https://github.com/${PN/-//}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-macos"
- S="${WORKDIR}/${P#votca-}"
-else
- inherit git-r3
- EGIT_REPO_URI="git://github.com/${PN/-//}.git https://github.com/${PN/-//}.git"
- KEYWORDS=""
-fi
-
-DESCRIPTION="Votca tools library"
-HOMEPAGE="http://www.votca.org"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-IUSE="doc +fftw +gsl sqlite"
-
-RDEPEND="
- dev-libs/boost:=
- dev-libs/expat
- fftw? ( sci-libs/fftw:3.0 )
- gsl? ( sci-libs/gsl )
- sqlite? ( dev-db/sqlite:3 )"
-
-DEPEND="${RDEPEND}
- doc? ( >=app-doc/doxygen-1.7.6.1[dot] )
- >=app-text/txt2tags-2.5
- virtual/pkgconfig"
-
-DOCS=( NOTICE )
-
-src_configure() {
- mycmakeargs=(
- $(cmake-utils_use_with gsl GSL)
- $(cmake-utils_use_with fftw FFTW)
- $(cmake-utils_use_with sqlite SQLITE3)
- -DWITH_RC_FILES=OFF
- -DLIB=$(get_libdir)
- )
- cmake-utils_src_configure
-}
-
-src_install() {
- cmake-utils_src_install
- if use doc; then
- cd "${CMAKE_BUILD_DIR}"
- cmake-utils_src_make html
- dohtml -r share/doc/html/*
- fi
-}
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-libs/votca-tools/
@ 2017-07-30 10:04 Michał Górny
0 siblings, 0 replies; 39+ messages in thread
From: Michał Górny @ 2017-07-30 10:04 UTC (permalink / raw
To: gentoo-commits
commit: eac520f0647f163158acc061c316237b3cf7e0fc
Author: David Hicks <david <AT> hicks <DOT> id <DOT> au>
AuthorDate: Sat Jul 29 19:01:17 2017 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Jul 30 10:04:27 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eac520f0
sci-libs/votca-tools: use HTTPS for GitHub
Package-Manager: Portage-2.3.6, Repoman-2.3.3
sci-libs/votca-tools/votca-tools-1.4.ebuild | 2 +-
sci-libs/votca-tools/votca-tools-9999.ebuild | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/sci-libs/votca-tools/votca-tools-1.4.ebuild b/sci-libs/votca-tools/votca-tools-1.4.ebuild
index 1cd55f36aaf..ae9aec9e652 100644
--- a/sci-libs/votca-tools/votca-tools-1.4.ebuild
+++ b/sci-libs/votca-tools/votca-tools-1.4.ebuild
@@ -13,7 +13,7 @@ if [ "${PV}" != "9999" ]; then
S="${WORKDIR}/${P#votca-}"
else
inherit git-r3
- EGIT_REPO_URI="git://github.com/${PN/-//}.git https://github.com/${PN/-//}.git"
+ EGIT_REPO_URI="https://github.com/${PN/-//}.git"
KEYWORDS="amd64 x86"
fi
diff --git a/sci-libs/votca-tools/votca-tools-9999.ebuild b/sci-libs/votca-tools/votca-tools-9999.ebuild
index 121832404c9..1902116de67 100644
--- a/sci-libs/votca-tools/votca-tools-9999.ebuild
+++ b/sci-libs/votca-tools/votca-tools-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -13,7 +13,7 @@ if [ "${PV}" != "9999" ]; then
S="${WORKDIR}/${P#votca-}"
else
inherit git-r3
- EGIT_REPO_URI="git://github.com/${PN/-//}.git https://github.com/${PN/-//}.git"
+ EGIT_REPO_URI="https://github.com/${PN/-//}.git"
KEYWORDS=""
fi
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-libs/votca-tools/
@ 2017-09-03 13:41 Christoph Junghans
0 siblings, 0 replies; 39+ messages in thread
From: Christoph Junghans @ 2017-09-03 13:41 UTC (permalink / raw
To: gentoo-commits
commit: cbdb705b7869ae3510e3d1887cdc2770a98b2645
Author: Christoph Junghans <junghans <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 3 13:36:24 2017 +0000
Commit: Christoph Junghans <junghans <AT> gentoo <DOT> org>
CommitDate: Sun Sep 3 13:41:02 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cbdb705b
sci-libs/votca-tools: version bump
Package-Manager: Portage-2.3.6, Repoman-2.3.1
sci-libs/votca-tools/Manifest | 1 +
sci-libs/votca-tools/votca-tools-1.4.1.ebuild | 59 +++++++++++++++++++++++++++
2 files changed, 60 insertions(+)
diff --git a/sci-libs/votca-tools/Manifest b/sci-libs/votca-tools/Manifest
index dddd7954bc7..fecced8db2c 100644
--- a/sci-libs/votca-tools/Manifest
+++ b/sci-libs/votca-tools/Manifest
@@ -1 +1,2 @@
+DIST votca-tools-1.4.1.tar.gz 103152 SHA256 c33a1e7cda3a53d51188d6f0452ddbd9a84141df0a1645c99cfebd3694646b26 SHA512 19165be7c9903cb664051a6556f9fd689b02af71156f040960008e8d74e4a32adfe283c67eb7b53c8bdc6ae6f72516ad0b674d9f2b3354ca50f082b1651dafef WHIRLPOOL 5996c3d264964b8347a057d5ac11a782ebd5bfaf513f9a4e196b957bed01c08993ca12b3a11a1a4b21f4a1600861c6101dade39575c06265d40cfe400e424d01
DIST votca-tools-1.4.tar.gz 103102 SHA256 df0f96e81a1639eba9e4dce61c28bb08e69c371fb727b4d14c66f5771f22e2fb SHA512 7c4bf2e2ba8cf795f03879138787db3875f48db56b88394c98b18cef0ae90e636d8aafff42eb62a408df06a91583e37e59b33440e83de9f4338295e9ccfc9be5 WHIRLPOOL ae2d51c46442d8089a6f2d84e73c14d675704caee863e70093ba5182451c2987b9428b554f85c4d07b3062cbdf5ddcfd8a90f080333ae65baa97c4a3b300eb54
diff --git a/sci-libs/votca-tools/votca-tools-1.4.1.ebuild b/sci-libs/votca-tools/votca-tools-1.4.1.ebuild
new file mode 100644
index 00000000000..2a2c4d6860c
--- /dev/null
+++ b/sci-libs/votca-tools/votca-tools-1.4.1.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+CMAKE_MAKEFILE_GENERATOR="ninja"
+
+inherit cmake-utils eutils multilib
+
+if [ "${PV}" != "9999" ]; then
+ SRC_URI="https://github.com/${PN/-//}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-macos"
+ S="${WORKDIR}/${P#votca-}"
+else
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/${PN/-//}.git"
+ KEYWORDS="~amd64 ~x86"
+fi
+
+DESCRIPTION="Votca tools library"
+HOMEPAGE="http://www.votca.org"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE="doc +fftw +gsl sqlite"
+
+RDEPEND="
+ dev-libs/boost:=
+ dev-libs/expat
+ fftw? ( sci-libs/fftw:3.0 )
+ gsl? ( sci-libs/gsl )
+ sqlite? ( dev-db/sqlite:3 )"
+
+DEPEND="${RDEPEND}
+ doc? ( >=app-doc/doxygen-1.7.6.1[dot] )
+ >=app-text/txt2tags-2.5
+ virtual/pkgconfig"
+
+DOCS=( NOTICE )
+
+src_configure() {
+ mycmakeargs=(
+ -DWITH_GSL=$(usex gsl)
+ -DWITH_FFTW=$(usex fftw)
+ -DWITH_SQLITE3=$(usex sqlite)
+ -DWITH_RC_FILES=OFF
+ -DLIB=$(get_libdir)
+ )
+ cmake-utils_src_configure
+}
+
+src_install() {
+ cmake-utils_src_install
+ if use doc; then
+ cd "${CMAKE_BUILD_DIR}"
+ cmake-utils_src_make html
+ dodoc -r share/doc/html
+ fi
+}
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-libs/votca-tools/
@ 2018-06-25 19:50 Christoph Junghans
0 siblings, 0 replies; 39+ messages in thread
From: Christoph Junghans @ 2018-06-25 19:50 UTC (permalink / raw
To: gentoo-commits
commit: b7bef9edf0509e4869b82b70c0163baed208a08f
Author: Christoph Junghans <junghans <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 25 19:49:20 2018 +0000
Commit: Christoph Junghans <junghans <AT> gentoo <DOT> org>
CommitDate: Mon Jun 25 19:49:50 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7bef9ed
sci-libs/votca-tools: fix cmake options
Closes: https://bugs.gentoo.org/659150
Package-Manager: Portage-2.3.40, Repoman-2.3.9
sci-libs/votca-tools/votca-tools-1.4.1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sci-libs/votca-tools/votca-tools-1.4.1.ebuild b/sci-libs/votca-tools/votca-tools-1.4.1.ebuild
index 2a2c4d6860c..182893347bc 100644
--- a/sci-libs/votca-tools/votca-tools-1.4.1.ebuild
+++ b/sci-libs/votca-tools/votca-tools-1.4.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -40,7 +40,7 @@ DOCS=( NOTICE )
src_configure() {
mycmakeargs=(
- -DWITH_GSL=$(usex gsl)
+ -DCMAKE_DISABLE_FIND_PACKAGE_GSL=$(usex '!gsl')
-DWITH_FFTW=$(usex fftw)
-DWITH_SQLITE3=$(usex sqlite)
-DWITH_RC_FILES=OFF
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-libs/votca-tools/
@ 2018-09-28 12:37 Christoph Junghans
0 siblings, 0 replies; 39+ messages in thread
From: Christoph Junghans @ 2018-09-28 12:37 UTC (permalink / raw
To: gentoo-commits
commit: f8174d0bce358b68cc3cc87045346fcccf101419
Author: Christoph Junghans <junghans <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 28 12:02:36 2018 +0000
Commit: Christoph Junghans <junghans <AT> gentoo <DOT> org>
CommitDate: Fri Sep 28 12:37:19 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8174d0b
sci-libs/votca-tools: fix deps
Package-Manager: Portage-2.3.49, Repoman-2.3.10
sci-libs/votca-tools/votca-tools-9999.ebuild | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/sci-libs/votca-tools/votca-tools-9999.ebuild b/sci-libs/votca-tools/votca-tools-9999.ebuild
index 1902116de67..470ee69553d 100644
--- a/sci-libs/votca-tools/votca-tools-9999.ebuild
+++ b/sci-libs/votca-tools/votca-tools-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -22,13 +22,13 @@ HOMEPAGE="http://www.votca.org"
LICENSE="Apache-2.0"
SLOT="0"
-IUSE="doc +fftw +gsl sqlite"
+IUSE="doc +fftw sqlite"
RDEPEND="
dev-libs/boost:=
dev-libs/expat
+ >=dev-cpp/eigen-3.3
fftw? ( sci-libs/fftw:3.0 )
- gsl? ( sci-libs/gsl )
sqlite? ( dev-db/sqlite:3 )"
DEPEND="${RDEPEND}
@@ -40,7 +40,6 @@ DOCS=( NOTICE )
src_configure() {
mycmakeargs=(
- -DWITH_GSL=$(usex gsl)
-DWITH_FFTW=$(usex fftw)
-DWITH_SQLITE3=$(usex sqlite)
-DWITH_RC_FILES=OFF
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-libs/votca-tools/
@ 2019-01-31 20:16 Christoph Junghans
0 siblings, 0 replies; 39+ messages in thread
From: Christoph Junghans @ 2019-01-31 20:16 UTC (permalink / raw
To: gentoo-commits
commit: 48e49ab3291c7b69e38070be1c23e4e44340803f
Author: Christoph Junghans <junghans <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 31 16:36:45 2019 +0000
Commit: Christoph Junghans <junghans <AT> gentoo <DOT> org>
CommitDate: Thu Jan 31 20:15:20 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48e49ab3
sci-libs/votca-tools: version bump
Package-Manager: Portage-2.3.51, Repoman-2.3.11
Signed-off-by: Christoph Junghans <junghans <AT> gentoo.org>
sci-libs/votca-tools/Manifest | 1 +
.../votca-tools/{votca-tools-9999.ebuild => votca-tools-1.5.ebuild} | 3 +--
sci-libs/votca-tools/votca-tools-9999.ebuild | 3 +--
3 files changed, 3 insertions(+), 4 deletions(-)
diff --git a/sci-libs/votca-tools/Manifest b/sci-libs/votca-tools/Manifest
index d4a52de49b7..fcff568f841 100644
--- a/sci-libs/votca-tools/Manifest
+++ b/sci-libs/votca-tools/Manifest
@@ -1,2 +1,3 @@
DIST votca-tools-1.4.1.tar.gz 103152 BLAKE2B 73dc726ea899ceb65d0406f3795f1df79a6184d65e50e95be3768678a2d006b75e487dbe3df5d44be4b5ba3899aeeb01ed63b51755bd46b546b017ccc0406d38 SHA512 19165be7c9903cb664051a6556f9fd689b02af71156f040960008e8d74e4a32adfe283c67eb7b53c8bdc6ae6f72516ad0b674d9f2b3354ca50f082b1651dafef
DIST votca-tools-1.4.tar.gz 103102 BLAKE2B a398d20b628148ec753ee1e59353e272dbda93848be11ecccaf2153385ebcac62c7b819c4ef0b9b1a7cfc7dfd85136d042726cc996af79a4dad64375f5aa9f6c SHA512 7c4bf2e2ba8cf795f03879138787db3875f48db56b88394c98b18cef0ae90e636d8aafff42eb62a408df06a91583e37e59b33440e83de9f4338295e9ccfc9be5
+DIST votca-tools-1.5.tar.gz 129464 BLAKE2B 2ab72758cc7c9bed5a49c924f7f0a93dc562a43cefbcc84f393656fd6c6b165152114eab48131db4d42008472d01103b5abba6ae0cf12779fe1ffacbcd65dc11 SHA512 fdee932c861742961937bdb88a1ace8caa4041c38ce80ece3b27e8a4b624248c21bf9be63b157565d1114047d3895c8b959f95b4fa49225c0cd1b2e708ef54f0
diff --git a/sci-libs/votca-tools/votca-tools-9999.ebuild b/sci-libs/votca-tools/votca-tools-1.5.ebuild
similarity index 94%
copy from sci-libs/votca-tools/votca-tools-9999.ebuild
copy to sci-libs/votca-tools/votca-tools-1.5.ebuild
index 470ee69553d..a0839fa8779 100644
--- a/sci-libs/votca-tools/votca-tools-9999.ebuild
+++ b/sci-libs/votca-tools/votca-tools-1.5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -43,7 +43,6 @@ src_configure() {
-DWITH_FFTW=$(usex fftw)
-DWITH_SQLITE3=$(usex sqlite)
-DWITH_RC_FILES=OFF
- -DLIB=$(get_libdir)
)
cmake-utils_src_configure
}
diff --git a/sci-libs/votca-tools/votca-tools-9999.ebuild b/sci-libs/votca-tools/votca-tools-9999.ebuild
index 470ee69553d..a0839fa8779 100644
--- a/sci-libs/votca-tools/votca-tools-9999.ebuild
+++ b/sci-libs/votca-tools/votca-tools-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -43,7 +43,6 @@ src_configure() {
-DWITH_FFTW=$(usex fftw)
-DWITH_SQLITE3=$(usex sqlite)
-DWITH_RC_FILES=OFF
- -DLIB=$(get_libdir)
)
cmake-utils_src_configure
}
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-libs/votca-tools/
@ 2019-05-20 11:03 Mikle Kolyada
0 siblings, 0 replies; 39+ messages in thread
From: Mikle Kolyada @ 2019-05-20 11:03 UTC (permalink / raw
To: gentoo-commits
commit: c6883546699733c4e0030835b72cd94de09f8787
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Mon May 20 11:02:49 2019 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Mon May 20 11:02:49 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6883546
sci-libs/votca-tools: amd64 stable wrt bug #685046
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"
sci-libs/votca-tools/votca-tools-1.5.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sci-libs/votca-tools/votca-tools-1.5.ebuild b/sci-libs/votca-tools/votca-tools-1.5.ebuild
index a0839fa8779..c6ba3a67b07 100644
--- a/sci-libs/votca-tools/votca-tools-1.5.ebuild
+++ b/sci-libs/votca-tools/votca-tools-1.5.ebuild
@@ -9,12 +9,12 @@ inherit cmake-utils eutils multilib
if [ "${PV}" != "9999" ]; then
SRC_URI="https://github.com/${PN/-//}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-macos"
+ KEYWORDS="amd64 ~x86 ~amd64-linux ~x86-macos"
S="${WORKDIR}/${P#votca-}"
else
inherit git-r3
EGIT_REPO_URI="https://github.com/${PN/-//}.git"
- KEYWORDS=""
+ KEYWORDS="amd64"
fi
DESCRIPTION="Votca tools library"
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-libs/votca-tools/
@ 2019-11-22 2:26 Christoph Junghans
0 siblings, 0 replies; 39+ messages in thread
From: Christoph Junghans @ 2019-11-22 2:26 UTC (permalink / raw
To: gentoo-commits
commit: fef08c6d343945428d1e1cae433669011ab0f6cb
Author: Christoph Junghans <junghans <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 21 16:35:16 2019 +0000
Commit: Christoph Junghans <junghans <AT> gentoo <DOT> org>
CommitDate: Fri Nov 22 02:26:22 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fef08c6d
sci-libs/votca-tools: version bump
Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Christoph Junghans <junghans <AT> gentoo.org>
sci-libs/votca-tools/Manifest | 1 +
sci-libs/votca-tools/votca-tools-1.5.1.ebuild | 57 +++++++++++++++++++++++++++
2 files changed, 58 insertions(+)
diff --git a/sci-libs/votca-tools/Manifest b/sci-libs/votca-tools/Manifest
index fcff568f841..e412d312c79 100644
--- a/sci-libs/votca-tools/Manifest
+++ b/sci-libs/votca-tools/Manifest
@@ -1,3 +1,4 @@
DIST votca-tools-1.4.1.tar.gz 103152 BLAKE2B 73dc726ea899ceb65d0406f3795f1df79a6184d65e50e95be3768678a2d006b75e487dbe3df5d44be4b5ba3899aeeb01ed63b51755bd46b546b017ccc0406d38 SHA512 19165be7c9903cb664051a6556f9fd689b02af71156f040960008e8d74e4a32adfe283c67eb7b53c8bdc6ae6f72516ad0b674d9f2b3354ca50f082b1651dafef
DIST votca-tools-1.4.tar.gz 103102 BLAKE2B a398d20b628148ec753ee1e59353e272dbda93848be11ecccaf2153385ebcac62c7b819c4ef0b9b1a7cfc7dfd85136d042726cc996af79a4dad64375f5aa9f6c SHA512 7c4bf2e2ba8cf795f03879138787db3875f48db56b88394c98b18cef0ae90e636d8aafff42eb62a408df06a91583e37e59b33440e83de9f4338295e9ccfc9be5
+DIST votca-tools-1.5.1.tar.gz 129629 BLAKE2B ab68b38241d2c065939cf0b2e08603eaaccf613454bb64056c3d3d03472501e2079408ce856fbcc7243d51d035acec0b52c9767e2d687234296c7858f1a46fa4 SHA512 c8fe4baee0f4586dbe1a9f5b7c33b7d6b16ef0ebc35b50febfdcb049b09cd150dec3a5e9b98b43430db66f866dd01c1776f6777f01d227246c9d7b7ca879ea72
DIST votca-tools-1.5.tar.gz 129464 BLAKE2B 2ab72758cc7c9bed5a49c924f7f0a93dc562a43cefbcc84f393656fd6c6b165152114eab48131db4d42008472d01103b5abba6ae0cf12779fe1ffacbcd65dc11 SHA512 fdee932c861742961937bdb88a1ace8caa4041c38ce80ece3b27e8a4b624248c21bf9be63b157565d1114047d3895c8b959f95b4fa49225c0cd1b2e708ef54f0
diff --git a/sci-libs/votca-tools/votca-tools-1.5.1.ebuild b/sci-libs/votca-tools/votca-tools-1.5.1.ebuild
new file mode 100644
index 00000000000..62f30699294
--- /dev/null
+++ b/sci-libs/votca-tools/votca-tools-1.5.1.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+CMAKE_MAKEFILE_GENERATOR="ninja"
+
+inherit cmake-utils eutils multilib
+
+if [ "${PV}" != "9999" ]; then
+ SRC_URI="https://github.com/${PN/-//}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-macos"
+ S="${WORKDIR}/${P#votca-}"
+else
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/${PN/-//}.git"
+ KEYWORDS="~amd64"
+fi
+
+DESCRIPTION="Votca tools library"
+HOMEPAGE="http://www.votca.org"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE="doc +fftw sqlite"
+
+RDEPEND="
+ dev-libs/boost:=
+ dev-libs/expat
+ >=dev-cpp/eigen-3.3
+ fftw? ( sci-libs/fftw:3.0 )
+ sqlite? ( dev-db/sqlite:3 )"
+
+DEPEND="${RDEPEND}
+ doc? ( >=app-doc/doxygen-1.7.6.1[dot] )
+ >=app-text/txt2tags-2.5
+ virtual/pkgconfig"
+
+DOCS=( NOTICE )
+
+src_configure() {
+ mycmakeargs=(
+ -DWITH_FFTW=$(usex fftw)
+ -DWITH_SQLITE3=$(usex sqlite)
+ -DWITH_RC_FILES=OFF
+ )
+ cmake-utils_src_configure
+}
+
+src_install() {
+ cmake-utils_src_install
+ if use doc; then
+ cd "${CMAKE_BUILD_DIR}"
+ cmake-utils_src_make html
+ dodoc -r share/doc/html
+ fi
+}
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-libs/votca-tools/
@ 2020-04-18 5:01 Christoph Junghans
0 siblings, 0 replies; 39+ messages in thread
From: Christoph Junghans @ 2020-04-18 5:01 UTC (permalink / raw
To: gentoo-commits
commit: f79cae88988091a96dbcf4e7cd5112bbdc9c8fe7
Author: Christoph Junghans <junghans <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 18 04:29:53 2020 +0000
Commit: Christoph Junghans <junghans <AT> gentoo <DOT> org>
CommitDate: Sat Apr 18 04:29:53 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f79cae88
sci-libs/votca-tools: version bump
Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Christoph Junghans <junghans <AT> gentoo.org>
sci-libs/votca-tools/Manifest | 1 +
sci-libs/votca-tools/votca-tools-1.6.ebuild | 44 +++++++++++++++++++++++++++++
2 files changed, 45 insertions(+)
diff --git a/sci-libs/votca-tools/Manifest b/sci-libs/votca-tools/Manifest
index 5900ee36f7d..cff5b44d489 100644
--- a/sci-libs/votca-tools/Manifest
+++ b/sci-libs/votca-tools/Manifest
@@ -2,4 +2,5 @@ DIST votca-tools-1.4.1.tar.gz 103152 BLAKE2B 73dc726ea899ceb65d0406f3795f1df79a6
DIST votca-tools-1.4.tar.gz 103102 BLAKE2B a398d20b628148ec753ee1e59353e272dbda93848be11ecccaf2153385ebcac62c7b819c4ef0b9b1a7cfc7dfd85136d042726cc996af79a4dad64375f5aa9f6c SHA512 7c4bf2e2ba8cf795f03879138787db3875f48db56b88394c98b18cef0ae90e636d8aafff42eb62a408df06a91583e37e59b33440e83de9f4338295e9ccfc9be5
DIST votca-tools-1.5.1.tar.gz 129629 BLAKE2B ab68b38241d2c065939cf0b2e08603eaaccf613454bb64056c3d3d03472501e2079408ce856fbcc7243d51d035acec0b52c9767e2d687234296c7858f1a46fa4 SHA512 c8fe4baee0f4586dbe1a9f5b7c33b7d6b16ef0ebc35b50febfdcb049b09cd150dec3a5e9b98b43430db66f866dd01c1776f6777f01d227246c9d7b7ca879ea72
DIST votca-tools-1.5.tar.gz 129464 BLAKE2B 2ab72758cc7c9bed5a49c924f7f0a93dc562a43cefbcc84f393656fd6c6b165152114eab48131db4d42008472d01103b5abba6ae0cf12779fe1ffacbcd65dc11 SHA512 fdee932c861742961937bdb88a1ace8caa4041c38ce80ece3b27e8a4b624248c21bf9be63b157565d1114047d3895c8b959f95b4fa49225c0cd1b2e708ef54f0
+DIST votca-tools-1.6.tar.gz 109824 BLAKE2B e030899e210e0f3030d43796a468ea20a573fe7ee62fbfde53e2e6865a9c0657d92ed06ddc44ebfa1c37c6142c865e97380e00570070351d75c403ead6fcfd19 SHA512 0159bc10066e05da8ba0f70e3c70d8cb4cd7b07ebd58edff1ccfeb86504af855eb5cae7184200e5c8ee3a3f6b6b85ec46a045f00dc8e681073ae8fdbbfc3965a
DIST votca-tools-1.6_rc1.tar.gz 128577 BLAKE2B d9270739c00f945ff4af24e45a529e73ff0da596956791991f03b5586134d16b5fec077b3859dcd685de96a334f419f5f82ede7df60614482c9fddc61a01ca8d SHA512 42b0eae148bb93293ac16e193d2595aaa850dcee0dcaab1f6cf0ca8e36a95a1719a03243d421fbfb1034c81baf2ef294768a86530f0d69b59862df95846241ed
diff --git a/sci-libs/votca-tools/votca-tools-1.6.ebuild b/sci-libs/votca-tools/votca-tools-1.6.ebuild
new file mode 100644
index 00000000000..6088d1e095d
--- /dev/null
+++ b/sci-libs/votca-tools/votca-tools-1.6.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+CMAKE_MAKEFILE_GENERATOR="ninja"
+
+inherit cmake-utils eutils multilib
+
+if [ "${PV}" != "9999" ]; then
+ SRC_URI="https://github.com/${PN/-//}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-macos"
+ S="${WORKDIR}/${P#votca-}"
+else
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/${PN/-//}.git"
+ KEYWORDS=""
+fi
+
+DESCRIPTION="Votca tools library"
+HOMEPAGE="http://www.votca.org"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+ dev-libs/boost:=
+ dev-libs/expat
+ >=dev-cpp/eigen-3.3
+ sci-libs/fftw:3.0"
+
+DEPEND="${RDEPEND}
+ >=app-text/txt2tags-2.5
+ virtual/pkgconfig"
+
+DOCS=( NOTICE )
+
+src_configure() {
+ mycmakeargs=(
+ -DWITH_RC_FILES=OFF
+ )
+ cmake-utils_src_configure
+}
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-libs/votca-tools/
@ 2020-06-21 15:41 Christoph Junghans
0 siblings, 0 replies; 39+ messages in thread
From: Christoph Junghans @ 2020-06-21 15:41 UTC (permalink / raw
To: gentoo-commits
commit: bdfe763a0f6aa0bec187fffec5610ea7f32b1b5c
Author: Christoph Junghans <junghans <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 21 14:57:28 2020 +0000
Commit: Christoph Junghans <junghans <AT> gentoo <DOT> org>
CommitDate: Sun Jun 21 15:41:37 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bdfe763a
sci-libs/votca-tools: version bump
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Christoph Junghans <junghans <AT> gentoo.org>
sci-libs/votca-tools/Manifest | 1 +
sci-libs/votca-tools/votca-tools-1.6.1.ebuild | 44 +++++++++++++++++++++++++++
2 files changed, 45 insertions(+)
diff --git a/sci-libs/votca-tools/Manifest b/sci-libs/votca-tools/Manifest
index cff5b44d489..3e48bbb29f7 100644
--- a/sci-libs/votca-tools/Manifest
+++ b/sci-libs/votca-tools/Manifest
@@ -2,5 +2,6 @@ DIST votca-tools-1.4.1.tar.gz 103152 BLAKE2B 73dc726ea899ceb65d0406f3795f1df79a6
DIST votca-tools-1.4.tar.gz 103102 BLAKE2B a398d20b628148ec753ee1e59353e272dbda93848be11ecccaf2153385ebcac62c7b819c4ef0b9b1a7cfc7dfd85136d042726cc996af79a4dad64375f5aa9f6c SHA512 7c4bf2e2ba8cf795f03879138787db3875f48db56b88394c98b18cef0ae90e636d8aafff42eb62a408df06a91583e37e59b33440e83de9f4338295e9ccfc9be5
DIST votca-tools-1.5.1.tar.gz 129629 BLAKE2B ab68b38241d2c065939cf0b2e08603eaaccf613454bb64056c3d3d03472501e2079408ce856fbcc7243d51d035acec0b52c9767e2d687234296c7858f1a46fa4 SHA512 c8fe4baee0f4586dbe1a9f5b7c33b7d6b16ef0ebc35b50febfdcb049b09cd150dec3a5e9b98b43430db66f866dd01c1776f6777f01d227246c9d7b7ca879ea72
DIST votca-tools-1.5.tar.gz 129464 BLAKE2B 2ab72758cc7c9bed5a49c924f7f0a93dc562a43cefbcc84f393656fd6c6b165152114eab48131db4d42008472d01103b5abba6ae0cf12779fe1ffacbcd65dc11 SHA512 fdee932c861742961937bdb88a1ace8caa4041c38ce80ece3b27e8a4b624248c21bf9be63b157565d1114047d3895c8b959f95b4fa49225c0cd1b2e708ef54f0
+DIST votca-tools-1.6.1.tar.gz 110141 BLAKE2B 948908a3aedb360d63aaf4077de366fb8dad7b5c97cd4532458a67e90e6e0271ba4ef30a23be264f426a1f860708592360982f283346d0a4788111719d3a8ee9 SHA512 e7dc03df46670f83139c0283824a630d8bec6cda5da156bc09e35e3c373f1cc65359ddb912e6bf19431a588acc5569ad57000045083d155fcc15c93980cfd26e
DIST votca-tools-1.6.tar.gz 109824 BLAKE2B e030899e210e0f3030d43796a468ea20a573fe7ee62fbfde53e2e6865a9c0657d92ed06ddc44ebfa1c37c6142c865e97380e00570070351d75c403ead6fcfd19 SHA512 0159bc10066e05da8ba0f70e3c70d8cb4cd7b07ebd58edff1ccfeb86504af855eb5cae7184200e5c8ee3a3f6b6b85ec46a045f00dc8e681073ae8fdbbfc3965a
DIST votca-tools-1.6_rc1.tar.gz 128577 BLAKE2B d9270739c00f945ff4af24e45a529e73ff0da596956791991f03b5586134d16b5fec077b3859dcd685de96a334f419f5f82ede7df60614482c9fddc61a01ca8d SHA512 42b0eae148bb93293ac16e193d2595aaa850dcee0dcaab1f6cf0ca8e36a95a1719a03243d421fbfb1034c81baf2ef294768a86530f0d69b59862df95846241ed
diff --git a/sci-libs/votca-tools/votca-tools-1.6.1.ebuild b/sci-libs/votca-tools/votca-tools-1.6.1.ebuild
new file mode 100644
index 00000000000..83b4a6d5bce
--- /dev/null
+++ b/sci-libs/votca-tools/votca-tools-1.6.1.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+CMAKE_MAKEFILE_GENERATOR="ninja"
+
+inherit cmake-utils eutils multilib
+
+if [ "${PV}" != "9999" ]; then
+ SRC_URI="https://github.com/${PN/-//}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-macos"
+ S="${WORKDIR}/${P#votca-}"
+else
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/${PN/-//}.git"
+ KEYWORDS="~amd64 ~x86"
+fi
+
+DESCRIPTION="Votca tools library"
+HOMEPAGE="http://www.votca.org"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+ dev-libs/boost:=
+ dev-libs/expat
+ >=dev-cpp/eigen-3.3
+ sci-libs/fftw:3.0"
+
+DEPEND="${RDEPEND}
+ >=app-text/txt2tags-2.5
+ virtual/pkgconfig"
+
+DOCS=( NOTICE )
+
+src_configure() {
+ mycmakeargs=(
+ -DWITH_RC_FILES=OFF
+ )
+ cmake-utils_src_configure
+}
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-libs/votca-tools/
@ 2020-08-22 23:36 Christoph Junghans
0 siblings, 0 replies; 39+ messages in thread
From: Christoph Junghans @ 2020-08-22 23:36 UTC (permalink / raw
To: gentoo-commits
commit: c848994db5e1755153be5017040e1cf6ab894ef7
Author: Christoph Junghans <junghans <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 22 21:44:31 2020 +0000
Commit: Christoph Junghans <junghans <AT> gentoo <DOT> org>
CommitDate: Sat Aug 22 23:35:53 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c848994d
sci-libs/votca-tools: version bump to 1.6.2
Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Christoph Junghans <junghans <AT> gentoo.org>
sci-libs/votca-tools/Manifest | 1 +
.../votca-tools/{votca-tools-9999.ebuild => votca-tools-1.6.2.ebuild} | 4 ++--
sci-libs/votca-tools/votca-tools-9999.ebuild | 4 ++--
3 files changed, 5 insertions(+), 4 deletions(-)
diff --git a/sci-libs/votca-tools/Manifest b/sci-libs/votca-tools/Manifest
index 3e48bbb29f7..ca10e4b96e8 100644
--- a/sci-libs/votca-tools/Manifest
+++ b/sci-libs/votca-tools/Manifest
@@ -3,5 +3,6 @@ DIST votca-tools-1.4.tar.gz 103102 BLAKE2B a398d20b628148ec753ee1e59353e272dbda9
DIST votca-tools-1.5.1.tar.gz 129629 BLAKE2B ab68b38241d2c065939cf0b2e08603eaaccf613454bb64056c3d3d03472501e2079408ce856fbcc7243d51d035acec0b52c9767e2d687234296c7858f1a46fa4 SHA512 c8fe4baee0f4586dbe1a9f5b7c33b7d6b16ef0ebc35b50febfdcb049b09cd150dec3a5e9b98b43430db66f866dd01c1776f6777f01d227246c9d7b7ca879ea72
DIST votca-tools-1.5.tar.gz 129464 BLAKE2B 2ab72758cc7c9bed5a49c924f7f0a93dc562a43cefbcc84f393656fd6c6b165152114eab48131db4d42008472d01103b5abba6ae0cf12779fe1ffacbcd65dc11 SHA512 fdee932c861742961937bdb88a1ace8caa4041c38ce80ece3b27e8a4b624248c21bf9be63b157565d1114047d3895c8b959f95b4fa49225c0cd1b2e708ef54f0
DIST votca-tools-1.6.1.tar.gz 110141 BLAKE2B 948908a3aedb360d63aaf4077de366fb8dad7b5c97cd4532458a67e90e6e0271ba4ef30a23be264f426a1f860708592360982f283346d0a4788111719d3a8ee9 SHA512 e7dc03df46670f83139c0283824a630d8bec6cda5da156bc09e35e3c373f1cc65359ddb912e6bf19431a588acc5569ad57000045083d155fcc15c93980cfd26e
+DIST votca-tools-1.6.2.tar.gz 109808 BLAKE2B 1eebb2950004ec5b0a0494904b35f5dc539a5a93e36d40ffdfba911632e48ef9431bfd8d6305c0b5f516c70cff8156976efa6d216ae061a77e018047e543beee SHA512 03139591e934ae97b6c0ddcd0fa9480b4b9d28c05882489b9067b9519727a97a1589a645c3d9ad959d65fa622e3845e8d1d5141f210e2704907d7d6f0bff2abc
DIST votca-tools-1.6.tar.gz 109824 BLAKE2B e030899e210e0f3030d43796a468ea20a573fe7ee62fbfde53e2e6865a9c0657d92ed06ddc44ebfa1c37c6142c865e97380e00570070351d75c403ead6fcfd19 SHA512 0159bc10066e05da8ba0f70e3c70d8cb4cd7b07ebd58edff1ccfeb86504af855eb5cae7184200e5c8ee3a3f6b6b85ec46a045f00dc8e681073ae8fdbbfc3965a
DIST votca-tools-1.6_rc1.tar.gz 128577 BLAKE2B d9270739c00f945ff4af24e45a529e73ff0da596956791991f03b5586134d16b5fec077b3859dcd685de96a334f419f5f82ede7df60614482c9fddc61a01ca8d SHA512 42b0eae148bb93293ac16e193d2595aaa850dcee0dcaab1f6cf0ca8e36a95a1719a03243d421fbfb1034c81baf2ef294768a86530f0d69b59862df95846241ed
diff --git a/sci-libs/votca-tools/votca-tools-9999.ebuild b/sci-libs/votca-tools/votca-tools-1.6.2.ebuild
similarity index 92%
copy from sci-libs/votca-tools/votca-tools-9999.ebuild
copy to sci-libs/votca-tools/votca-tools-1.6.2.ebuild
index 6088d1e095d..4c25081de7a 100644
--- a/sci-libs/votca-tools/votca-tools-9999.ebuild
+++ b/sci-libs/votca-tools/votca-tools-1.6.2.ebuild
@@ -5,7 +5,7 @@ EAPI=7
CMAKE_MAKEFILE_GENERATOR="ninja"
-inherit cmake-utils eutils multilib
+inherit cmake eutils multilib
if [ "${PV}" != "9999" ]; then
SRC_URI="https://github.com/${PN/-//}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
@@ -40,5 +40,5 @@ src_configure() {
mycmakeargs=(
-DWITH_RC_FILES=OFF
)
- cmake-utils_src_configure
+ cmake_src_configure
}
diff --git a/sci-libs/votca-tools/votca-tools-9999.ebuild b/sci-libs/votca-tools/votca-tools-9999.ebuild
index 6088d1e095d..4c25081de7a 100644
--- a/sci-libs/votca-tools/votca-tools-9999.ebuild
+++ b/sci-libs/votca-tools/votca-tools-9999.ebuild
@@ -5,7 +5,7 @@ EAPI=7
CMAKE_MAKEFILE_GENERATOR="ninja"
-inherit cmake-utils eutils multilib
+inherit cmake eutils multilib
if [ "${PV}" != "9999" ]; then
SRC_URI="https://github.com/${PN/-//}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
@@ -40,5 +40,5 @@ src_configure() {
mycmakeargs=(
-DWITH_RC_FILES=OFF
)
- cmake-utils_src_configure
+ cmake_src_configure
}
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-libs/votca-tools/
@ 2020-12-10 19:26 Christoph Junghans
0 siblings, 0 replies; 39+ messages in thread
From: Christoph Junghans @ 2020-12-10 19:26 UTC (permalink / raw
To: gentoo-commits
commit: 5343675b031821fca7a8d182fd39b995007566c8
Author: Christoph Junghans <junghans <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 10 18:58:12 2020 +0000
Commit: Christoph Junghans <junghans <AT> gentoo <DOT> org>
CommitDate: Thu Dec 10 19:26:01 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5343675b
sci-libs/votca-tools: version bump to v1.6.3
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Christoph Junghans <junghans <AT> gentoo.org>
sci-libs/votca-tools/Manifest | 1 +
sci-libs/votca-tools/votca-tools-1.6.3.ebuild | 44 +++++++++++++++++++++++++++
2 files changed, 45 insertions(+)
diff --git a/sci-libs/votca-tools/Manifest b/sci-libs/votca-tools/Manifest
index ca10e4b96e8..63e70fa584a 100644
--- a/sci-libs/votca-tools/Manifest
+++ b/sci-libs/votca-tools/Manifest
@@ -4,5 +4,6 @@ DIST votca-tools-1.5.1.tar.gz 129629 BLAKE2B ab68b38241d2c065939cf0b2e08603eaacc
DIST votca-tools-1.5.tar.gz 129464 BLAKE2B 2ab72758cc7c9bed5a49c924f7f0a93dc562a43cefbcc84f393656fd6c6b165152114eab48131db4d42008472d01103b5abba6ae0cf12779fe1ffacbcd65dc11 SHA512 fdee932c861742961937bdb88a1ace8caa4041c38ce80ece3b27e8a4b624248c21bf9be63b157565d1114047d3895c8b959f95b4fa49225c0cd1b2e708ef54f0
DIST votca-tools-1.6.1.tar.gz 110141 BLAKE2B 948908a3aedb360d63aaf4077de366fb8dad7b5c97cd4532458a67e90e6e0271ba4ef30a23be264f426a1f860708592360982f283346d0a4788111719d3a8ee9 SHA512 e7dc03df46670f83139c0283824a630d8bec6cda5da156bc09e35e3c373f1cc65359ddb912e6bf19431a588acc5569ad57000045083d155fcc15c93980cfd26e
DIST votca-tools-1.6.2.tar.gz 109808 BLAKE2B 1eebb2950004ec5b0a0494904b35f5dc539a5a93e36d40ffdfba911632e48ef9431bfd8d6305c0b5f516c70cff8156976efa6d216ae061a77e018047e543beee SHA512 03139591e934ae97b6c0ddcd0fa9480b4b9d28c05882489b9067b9519727a97a1589a645c3d9ad959d65fa622e3845e8d1d5141f210e2704907d7d6f0bff2abc
+DIST votca-tools-1.6.3.tar.gz 109937 BLAKE2B 4cc6a0f061c3455ff326eada36c5b66e31aedbc6aac297db42a128940c17d81dbd41e47c7c9af012ab5b24a7fe9f12575bf3563fd566d62492d1c79f1887db02 SHA512 2bc780f7b852e0d63ef1a6ff697c75aa67666121b8192a965442b62167fe33f69b0d4c18fb6b255326d02ba3cffd02c6af8f5d67364fafd9de597897ab30e349
DIST votca-tools-1.6.tar.gz 109824 BLAKE2B e030899e210e0f3030d43796a468ea20a573fe7ee62fbfde53e2e6865a9c0657d92ed06ddc44ebfa1c37c6142c865e97380e00570070351d75c403ead6fcfd19 SHA512 0159bc10066e05da8ba0f70e3c70d8cb4cd7b07ebd58edff1ccfeb86504af855eb5cae7184200e5c8ee3a3f6b6b85ec46a045f00dc8e681073ae8fdbbfc3965a
DIST votca-tools-1.6_rc1.tar.gz 128577 BLAKE2B d9270739c00f945ff4af24e45a529e73ff0da596956791991f03b5586134d16b5fec077b3859dcd685de96a334f419f5f82ede7df60614482c9fddc61a01ca8d SHA512 42b0eae148bb93293ac16e193d2595aaa850dcee0dcaab1f6cf0ca8e36a95a1719a03243d421fbfb1034c81baf2ef294768a86530f0d69b59862df95846241ed
diff --git a/sci-libs/votca-tools/votca-tools-1.6.3.ebuild b/sci-libs/votca-tools/votca-tools-1.6.3.ebuild
new file mode 100644
index 00000000000..4c25081de7a
--- /dev/null
+++ b/sci-libs/votca-tools/votca-tools-1.6.3.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+CMAKE_MAKEFILE_GENERATOR="ninja"
+
+inherit cmake eutils multilib
+
+if [ "${PV}" != "9999" ]; then
+ SRC_URI="https://github.com/${PN/-//}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-macos"
+ S="${WORKDIR}/${P#votca-}"
+else
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/${PN/-//}.git"
+ KEYWORDS=""
+fi
+
+DESCRIPTION="Votca tools library"
+HOMEPAGE="http://www.votca.org"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+ dev-libs/boost:=
+ dev-libs/expat
+ >=dev-cpp/eigen-3.3
+ sci-libs/fftw:3.0"
+
+DEPEND="${RDEPEND}
+ >=app-text/txt2tags-2.5
+ virtual/pkgconfig"
+
+DOCS=( NOTICE )
+
+src_configure() {
+ mycmakeargs=(
+ -DWITH_RC_FILES=OFF
+ )
+ cmake_src_configure
+}
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-libs/votca-tools/
@ 2021-01-06 15:17 Fabian Groffen
0 siblings, 0 replies; 39+ messages in thread
From: Fabian Groffen @ 2021-01-06 15:17 UTC (permalink / raw
To: gentoo-commits
commit: c6a511f719983554da1f30d6caef178f2c397ab7
Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 6 15:17:43 2021 +0000
Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
CommitDate: Wed Jan 6 15:17:43 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6a511f7
sci-libs/votca-tools: drop x86-macos
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Fabian Groffen <grobian <AT> gentoo.org>
sci-libs/votca-tools/votca-tools-1.4.1.ebuild | 4 ++--
sci-libs/votca-tools/votca-tools-1.4.ebuild | 4 ++--
sci-libs/votca-tools/votca-tools-1.5.1.ebuild | 4 ++--
sci-libs/votca-tools/votca-tools-1.5.ebuild | 4 ++--
sci-libs/votca-tools/votca-tools-1.6.1.ebuild | 4 ++--
sci-libs/votca-tools/votca-tools-1.6.2.ebuild | 4 ++--
sci-libs/votca-tools/votca-tools-1.6.3.ebuild | 4 ++--
sci-libs/votca-tools/votca-tools-1.6.ebuild | 4 ++--
sci-libs/votca-tools/votca-tools-1.6_rc1.ebuild | 4 ++--
sci-libs/votca-tools/votca-tools-9999.ebuild | 4 ++--
10 files changed, 20 insertions(+), 20 deletions(-)
diff --git a/sci-libs/votca-tools/votca-tools-1.4.1.ebuild b/sci-libs/votca-tools/votca-tools-1.4.1.ebuild
index 182893347bc..9a65a2be36b 100644
--- a/sci-libs/votca-tools/votca-tools-1.4.1.ebuild
+++ b/sci-libs/votca-tools/votca-tools-1.4.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -9,7 +9,7 @@ inherit cmake-utils eutils multilib
if [ "${PV}" != "9999" ]; then
SRC_URI="https://github.com/${PN/-//}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-macos"
+ KEYWORDS="~amd64 ~x86 ~amd64-linux"
S="${WORKDIR}/${P#votca-}"
else
inherit git-r3
diff --git a/sci-libs/votca-tools/votca-tools-1.4.ebuild b/sci-libs/votca-tools/votca-tools-1.4.ebuild
index ae9aec9e652..99c2d85be25 100644
--- a/sci-libs/votca-tools/votca-tools-1.4.ebuild
+++ b/sci-libs/votca-tools/votca-tools-1.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -9,7 +9,7 @@ inherit cmake-utils eutils multilib
if [ "${PV}" != "9999" ]; then
SRC_URI="https://github.com/${PN/-//}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="amd64 x86 ~amd64-linux ~x86-macos"
+ KEYWORDS="amd64 x86 ~amd64-linux"
S="${WORKDIR}/${P#votca-}"
else
inherit git-r3
diff --git a/sci-libs/votca-tools/votca-tools-1.5.1.ebuild b/sci-libs/votca-tools/votca-tools-1.5.1.ebuild
index 62f30699294..f8cf6211bda 100644
--- a/sci-libs/votca-tools/votca-tools-1.5.1.ebuild
+++ b/sci-libs/votca-tools/votca-tools-1.5.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -9,7 +9,7 @@ inherit cmake-utils eutils multilib
if [ "${PV}" != "9999" ]; then
SRC_URI="https://github.com/${PN/-//}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-macos"
+ KEYWORDS="~amd64 ~x86 ~amd64-linux"
S="${WORKDIR}/${P#votca-}"
else
inherit git-r3
diff --git a/sci-libs/votca-tools/votca-tools-1.5.ebuild b/sci-libs/votca-tools/votca-tools-1.5.ebuild
index c6ba3a67b07..b6739abf4f0 100644
--- a/sci-libs/votca-tools/votca-tools-1.5.ebuild
+++ b/sci-libs/votca-tools/votca-tools-1.5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -9,7 +9,7 @@ inherit cmake-utils eutils multilib
if [ "${PV}" != "9999" ]; then
SRC_URI="https://github.com/${PN/-//}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="amd64 ~x86 ~amd64-linux ~x86-macos"
+ KEYWORDS="amd64 ~x86 ~amd64-linux"
S="${WORKDIR}/${P#votca-}"
else
inherit git-r3
diff --git a/sci-libs/votca-tools/votca-tools-1.6.1.ebuild b/sci-libs/votca-tools/votca-tools-1.6.1.ebuild
index 83b4a6d5bce..96df685f451 100644
--- a/sci-libs/votca-tools/votca-tools-1.6.1.ebuild
+++ b/sci-libs/votca-tools/votca-tools-1.6.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -9,7 +9,7 @@ inherit cmake-utils eutils multilib
if [ "${PV}" != "9999" ]; then
SRC_URI="https://github.com/${PN/-//}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-macos"
+ KEYWORDS="~amd64 ~x86 ~amd64-linux"
S="${WORKDIR}/${P#votca-}"
else
inherit git-r3
diff --git a/sci-libs/votca-tools/votca-tools-1.6.2.ebuild b/sci-libs/votca-tools/votca-tools-1.6.2.ebuild
index 4c25081de7a..a636260d880 100644
--- a/sci-libs/votca-tools/votca-tools-1.6.2.ebuild
+++ b/sci-libs/votca-tools/votca-tools-1.6.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -9,7 +9,7 @@ inherit cmake eutils multilib
if [ "${PV}" != "9999" ]; then
SRC_URI="https://github.com/${PN/-//}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-macos"
+ KEYWORDS="~amd64 ~x86 ~amd64-linux"
S="${WORKDIR}/${P#votca-}"
else
inherit git-r3
diff --git a/sci-libs/votca-tools/votca-tools-1.6.3.ebuild b/sci-libs/votca-tools/votca-tools-1.6.3.ebuild
index 4c25081de7a..a636260d880 100644
--- a/sci-libs/votca-tools/votca-tools-1.6.3.ebuild
+++ b/sci-libs/votca-tools/votca-tools-1.6.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -9,7 +9,7 @@ inherit cmake eutils multilib
if [ "${PV}" != "9999" ]; then
SRC_URI="https://github.com/${PN/-//}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-macos"
+ KEYWORDS="~amd64 ~x86 ~amd64-linux"
S="${WORKDIR}/${P#votca-}"
else
inherit git-r3
diff --git a/sci-libs/votca-tools/votca-tools-1.6.ebuild b/sci-libs/votca-tools/votca-tools-1.6.ebuild
index 3370b1dc94b..701fb516d9b 100644
--- a/sci-libs/votca-tools/votca-tools-1.6.ebuild
+++ b/sci-libs/votca-tools/votca-tools-1.6.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -9,7 +9,7 @@ inherit cmake-utils eutils multilib
if [ "${PV}" != "9999" ]; then
SRC_URI="https://github.com/${PN/-//}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="amd64 x86 ~amd64-linux ~x86-macos"
+ KEYWORDS="amd64 x86 ~amd64-linux"
S="${WORKDIR}/${P#votca-}"
else
inherit git-r3
diff --git a/sci-libs/votca-tools/votca-tools-1.6_rc1.ebuild b/sci-libs/votca-tools/votca-tools-1.6_rc1.ebuild
index 888d78eb340..cb4447833be 100644
--- a/sci-libs/votca-tools/votca-tools-1.6_rc1.ebuild
+++ b/sci-libs/votca-tools/votca-tools-1.6_rc1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -9,7 +9,7 @@ inherit cmake-utils eutils multilib
if [ "${PV}" != "9999" ]; then
SRC_URI="https://github.com/${PN/-//}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-macos"
+ KEYWORDS="~amd64 ~x86 ~amd64-linux"
S="${WORKDIR}/${P#votca-}"
else
inherit git-r3
diff --git a/sci-libs/votca-tools/votca-tools-9999.ebuild b/sci-libs/votca-tools/votca-tools-9999.ebuild
index 4c25081de7a..a636260d880 100644
--- a/sci-libs/votca-tools/votca-tools-9999.ebuild
+++ b/sci-libs/votca-tools/votca-tools-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -9,7 +9,7 @@ inherit cmake eutils multilib
if [ "${PV}" != "9999" ]; then
SRC_URI="https://github.com/${PN/-//}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-macos"
+ KEYWORDS="~amd64 ~x86 ~amd64-linux"
S="${WORKDIR}/${P#votca-}"
else
inherit git-r3
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-libs/votca-tools/
@ 2021-01-13 1:20 Christoph Junghans
0 siblings, 0 replies; 39+ messages in thread
From: Christoph Junghans @ 2021-01-13 1:20 UTC (permalink / raw
To: gentoo-commits
commit: e1452a0f06b705edff2445a8977f8c437827ff39
Author: Christoph Junghans <junghans <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 13 00:12:02 2021 +0000
Commit: Christoph Junghans <junghans <AT> gentoo <DOT> org>
CommitDate: Wed Jan 13 00:12:02 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e1452a0f
sci-libs/votca-tools: add v1.6.4
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Christoph Junghans <junghans <AT> gentoo.org>
sci-libs/votca-tools/Manifest | 1 +
sci-libs/votca-tools/votca-tools-1.6.4.ebuild | 44 +++++++++++++++++++++++++++
2 files changed, 45 insertions(+)
diff --git a/sci-libs/votca-tools/Manifest b/sci-libs/votca-tools/Manifest
index 63e70fa584a..8722a7ac507 100644
--- a/sci-libs/votca-tools/Manifest
+++ b/sci-libs/votca-tools/Manifest
@@ -5,5 +5,6 @@ DIST votca-tools-1.5.tar.gz 129464 BLAKE2B 2ab72758cc7c9bed5a49c924f7f0a93dc562a
DIST votca-tools-1.6.1.tar.gz 110141 BLAKE2B 948908a3aedb360d63aaf4077de366fb8dad7b5c97cd4532458a67e90e6e0271ba4ef30a23be264f426a1f860708592360982f283346d0a4788111719d3a8ee9 SHA512 e7dc03df46670f83139c0283824a630d8bec6cda5da156bc09e35e3c373f1cc65359ddb912e6bf19431a588acc5569ad57000045083d155fcc15c93980cfd26e
DIST votca-tools-1.6.2.tar.gz 109808 BLAKE2B 1eebb2950004ec5b0a0494904b35f5dc539a5a93e36d40ffdfba911632e48ef9431bfd8d6305c0b5f516c70cff8156976efa6d216ae061a77e018047e543beee SHA512 03139591e934ae97b6c0ddcd0fa9480b4b9d28c05882489b9067b9519727a97a1589a645c3d9ad959d65fa622e3845e8d1d5141f210e2704907d7d6f0bff2abc
DIST votca-tools-1.6.3.tar.gz 109937 BLAKE2B 4cc6a0f061c3455ff326eada36c5b66e31aedbc6aac297db42a128940c17d81dbd41e47c7c9af012ab5b24a7fe9f12575bf3563fd566d62492d1c79f1887db02 SHA512 2bc780f7b852e0d63ef1a6ff697c75aa67666121b8192a965442b62167fe33f69b0d4c18fb6b255326d02ba3cffd02c6af8f5d67364fafd9de597897ab30e349
+DIST votca-tools-1.6.4.tar.gz 109929 BLAKE2B 8bc55fcd0a021002f11d412440a369a169c3c62ae5978781010de0a05502e43ed1ccbe5066e3d46ac8ef6fd0c1471baca70d35f6468ccbfd480dc0fa6f2b5047 SHA512 7a334071086e755960a3bd938c1baa1979c4cc9cd8f865af00540fa45365bf1c3153ffb8a5a5948618c47ebafcda9ecc62850d44ea06b7f35ac4587bd423439a
DIST votca-tools-1.6.tar.gz 109824 BLAKE2B e030899e210e0f3030d43796a468ea20a573fe7ee62fbfde53e2e6865a9c0657d92ed06ddc44ebfa1c37c6142c865e97380e00570070351d75c403ead6fcfd19 SHA512 0159bc10066e05da8ba0f70e3c70d8cb4cd7b07ebd58edff1ccfeb86504af855eb5cae7184200e5c8ee3a3f6b6b85ec46a045f00dc8e681073ae8fdbbfc3965a
DIST votca-tools-1.6_rc1.tar.gz 128577 BLAKE2B d9270739c00f945ff4af24e45a529e73ff0da596956791991f03b5586134d16b5fec077b3859dcd685de96a334f419f5f82ede7df60614482c9fddc61a01ca8d SHA512 42b0eae148bb93293ac16e193d2595aaa850dcee0dcaab1f6cf0ca8e36a95a1719a03243d421fbfb1034c81baf2ef294768a86530f0d69b59862df95846241ed
diff --git a/sci-libs/votca-tools/votca-tools-1.6.4.ebuild b/sci-libs/votca-tools/votca-tools-1.6.4.ebuild
new file mode 100644
index 00000000000..a636260d880
--- /dev/null
+++ b/sci-libs/votca-tools/votca-tools-1.6.4.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+CMAKE_MAKEFILE_GENERATOR="ninja"
+
+inherit cmake eutils multilib
+
+if [ "${PV}" != "9999" ]; then
+ SRC_URI="https://github.com/${PN/-//}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64 ~x86 ~amd64-linux"
+ S="${WORKDIR}/${P#votca-}"
+else
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/${PN/-//}.git"
+ KEYWORDS=""
+fi
+
+DESCRIPTION="Votca tools library"
+HOMEPAGE="http://www.votca.org"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+ dev-libs/boost:=
+ dev-libs/expat
+ >=dev-cpp/eigen-3.3
+ sci-libs/fftw:3.0"
+
+DEPEND="${RDEPEND}
+ >=app-text/txt2tags-2.5
+ virtual/pkgconfig"
+
+DOCS=( NOTICE )
+
+src_configure() {
+ mycmakeargs=(
+ -DWITH_RC_FILES=OFF
+ )
+ cmake_src_configure
+}
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-libs/votca-tools/
@ 2021-02-15 0:32 Sam James
0 siblings, 0 replies; 39+ messages in thread
From: Sam James @ 2021-02-15 0:32 UTC (permalink / raw
To: gentoo-commits
commit: 88fae8f5ebde939530fa669dd477b45af574eafa
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 14 23:21:38 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Feb 15 00:31:57 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88fae8f5
sci-libs/votca-tools: fix double KEYWORDS
Double KEYWORDS lines break tools like ekeyword and Nattka.
As per PMS, blank/empty KEYWORDS is implied by not defining
the variable.
See: https://projects.gentoo.org/qa/policy-guide/ebuild-format.html#pg0105
Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Sam James <sam <AT> gentoo.org>
sci-libs/votca-tools/votca-tools-1.4.1.ebuild | 3 +--
sci-libs/votca-tools/votca-tools-1.4.ebuild | 1 -
sci-libs/votca-tools/votca-tools-1.5.1.ebuild | 1 -
sci-libs/votca-tools/votca-tools-1.5.ebuild | 1 -
sci-libs/votca-tools/votca-tools-1.6.1.ebuild | 1 -
sci-libs/votca-tools/votca-tools-1.6.2.ebuild | 1 -
sci-libs/votca-tools/votca-tools-1.6.3.ebuild | 1 -
sci-libs/votca-tools/votca-tools-1.6.4.ebuild | 1 -
sci-libs/votca-tools/votca-tools-1.6.ebuild | 1 -
sci-libs/votca-tools/votca-tools-1.6_rc1.ebuild | 1 -
sci-libs/votca-tools/votca-tools-9999.ebuild | 1 -
11 files changed, 1 insertion(+), 12 deletions(-)
diff --git a/sci-libs/votca-tools/votca-tools-1.4.1.ebuild b/sci-libs/votca-tools/votca-tools-1.4.1.ebuild
index 9a65a2be36b..087be457b5c 100644
--- a/sci-libs/votca-tools/votca-tools-1.4.1.ebuild
+++ b/sci-libs/votca-tools/votca-tools-1.4.1.ebuild
@@ -9,12 +9,11 @@ inherit cmake-utils eutils multilib
if [ "${PV}" != "9999" ]; then
SRC_URI="https://github.com/${PN/-//}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~x86 ~amd64-linux"
S="${WORKDIR}/${P#votca-}"
+ KEYWORDS="~amd64 ~x86 ~amd64-linux"
else
inherit git-r3
EGIT_REPO_URI="https://github.com/${PN/-//}.git"
- KEYWORDS="~amd64 ~x86"
fi
DESCRIPTION="Votca tools library"
diff --git a/sci-libs/votca-tools/votca-tools-1.4.ebuild b/sci-libs/votca-tools/votca-tools-1.4.ebuild
index 99c2d85be25..eedb6ccd9de 100644
--- a/sci-libs/votca-tools/votca-tools-1.4.ebuild
+++ b/sci-libs/votca-tools/votca-tools-1.4.ebuild
@@ -14,7 +14,6 @@ if [ "${PV}" != "9999" ]; then
else
inherit git-r3
EGIT_REPO_URI="https://github.com/${PN/-//}.git"
- KEYWORDS="amd64 x86"
fi
DESCRIPTION="Votca tools library"
diff --git a/sci-libs/votca-tools/votca-tools-1.5.1.ebuild b/sci-libs/votca-tools/votca-tools-1.5.1.ebuild
index f8cf6211bda..3eeaa6f0da4 100644
--- a/sci-libs/votca-tools/votca-tools-1.5.1.ebuild
+++ b/sci-libs/votca-tools/votca-tools-1.5.1.ebuild
@@ -14,7 +14,6 @@ if [ "${PV}" != "9999" ]; then
else
inherit git-r3
EGIT_REPO_URI="https://github.com/${PN/-//}.git"
- KEYWORDS="~amd64"
fi
DESCRIPTION="Votca tools library"
diff --git a/sci-libs/votca-tools/votca-tools-1.5.ebuild b/sci-libs/votca-tools/votca-tools-1.5.ebuild
index b6739abf4f0..4701fe391d3 100644
--- a/sci-libs/votca-tools/votca-tools-1.5.ebuild
+++ b/sci-libs/votca-tools/votca-tools-1.5.ebuild
@@ -14,7 +14,6 @@ if [ "${PV}" != "9999" ]; then
else
inherit git-r3
EGIT_REPO_URI="https://github.com/${PN/-//}.git"
- KEYWORDS="amd64"
fi
DESCRIPTION="Votca tools library"
diff --git a/sci-libs/votca-tools/votca-tools-1.6.1.ebuild b/sci-libs/votca-tools/votca-tools-1.6.1.ebuild
index 96df685f451..bc03e7abcd6 100644
--- a/sci-libs/votca-tools/votca-tools-1.6.1.ebuild
+++ b/sci-libs/votca-tools/votca-tools-1.6.1.ebuild
@@ -14,7 +14,6 @@ if [ "${PV}" != "9999" ]; then
else
inherit git-r3
EGIT_REPO_URI="https://github.com/${PN/-//}.git"
- KEYWORDS="~amd64 ~x86"
fi
DESCRIPTION="Votca tools library"
diff --git a/sci-libs/votca-tools/votca-tools-1.6.2.ebuild b/sci-libs/votca-tools/votca-tools-1.6.2.ebuild
index a636260d880..ba77bc97616 100644
--- a/sci-libs/votca-tools/votca-tools-1.6.2.ebuild
+++ b/sci-libs/votca-tools/votca-tools-1.6.2.ebuild
@@ -14,7 +14,6 @@ if [ "${PV}" != "9999" ]; then
else
inherit git-r3
EGIT_REPO_URI="https://github.com/${PN/-//}.git"
- KEYWORDS=""
fi
DESCRIPTION="Votca tools library"
diff --git a/sci-libs/votca-tools/votca-tools-1.6.3.ebuild b/sci-libs/votca-tools/votca-tools-1.6.3.ebuild
index a636260d880..ba77bc97616 100644
--- a/sci-libs/votca-tools/votca-tools-1.6.3.ebuild
+++ b/sci-libs/votca-tools/votca-tools-1.6.3.ebuild
@@ -14,7 +14,6 @@ if [ "${PV}" != "9999" ]; then
else
inherit git-r3
EGIT_REPO_URI="https://github.com/${PN/-//}.git"
- KEYWORDS=""
fi
DESCRIPTION="Votca tools library"
diff --git a/sci-libs/votca-tools/votca-tools-1.6.4.ebuild b/sci-libs/votca-tools/votca-tools-1.6.4.ebuild
index a636260d880..ba77bc97616 100644
--- a/sci-libs/votca-tools/votca-tools-1.6.4.ebuild
+++ b/sci-libs/votca-tools/votca-tools-1.6.4.ebuild
@@ -14,7 +14,6 @@ if [ "${PV}" != "9999" ]; then
else
inherit git-r3
EGIT_REPO_URI="https://github.com/${PN/-//}.git"
- KEYWORDS=""
fi
DESCRIPTION="Votca tools library"
diff --git a/sci-libs/votca-tools/votca-tools-1.6.ebuild b/sci-libs/votca-tools/votca-tools-1.6.ebuild
index 701fb516d9b..dde9b50444e 100644
--- a/sci-libs/votca-tools/votca-tools-1.6.ebuild
+++ b/sci-libs/votca-tools/votca-tools-1.6.ebuild
@@ -14,7 +14,6 @@ if [ "${PV}" != "9999" ]; then
else
inherit git-r3
EGIT_REPO_URI="https://github.com/${PN/-//}.git"
- KEYWORDS="amd64 x86"
fi
DESCRIPTION="Votca tools library"
diff --git a/sci-libs/votca-tools/votca-tools-1.6_rc1.ebuild b/sci-libs/votca-tools/votca-tools-1.6_rc1.ebuild
index cb4447833be..eee887d01e4 100644
--- a/sci-libs/votca-tools/votca-tools-1.6_rc1.ebuild
+++ b/sci-libs/votca-tools/votca-tools-1.6_rc1.ebuild
@@ -14,7 +14,6 @@ if [ "${PV}" != "9999" ]; then
else
inherit git-r3
EGIT_REPO_URI="https://github.com/${PN/-//}.git"
- KEYWORDS=""
fi
DESCRIPTION="Votca tools library"
diff --git a/sci-libs/votca-tools/votca-tools-9999.ebuild b/sci-libs/votca-tools/votca-tools-9999.ebuild
index a636260d880..ba77bc97616 100644
--- a/sci-libs/votca-tools/votca-tools-9999.ebuild
+++ b/sci-libs/votca-tools/votca-tools-9999.ebuild
@@ -14,7 +14,6 @@ if [ "${PV}" != "9999" ]; then
else
inherit git-r3
EGIT_REPO_URI="https://github.com/${PN/-//}.git"
- KEYWORDS=""
fi
DESCRIPTION="Votca tools library"
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-libs/votca-tools/
@ 2021-02-18 8:35 Sam James
0 siblings, 0 replies; 39+ messages in thread
From: Sam James @ 2021-02-18 8:35 UTC (permalink / raw
To: gentoo-commits
commit: 5e1b583dfd0e9cd9d92874e877a377eaed3d4cdf
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 18 08:35:20 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Feb 18 08:35:20 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e1b583d
sci-libs/votca-tools: Stabilize 1.6.2 x86, #765760
Signed-off-by: Sam James <sam <AT> gentoo.org>
sci-libs/votca-tools/votca-tools-1.6.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sci-libs/votca-tools/votca-tools-1.6.2.ebuild b/sci-libs/votca-tools/votca-tools-1.6.2.ebuild
index ba77bc97616..fd25a78976c 100644
--- a/sci-libs/votca-tools/votca-tools-1.6.2.ebuild
+++ b/sci-libs/votca-tools/votca-tools-1.6.2.ebuild
@@ -9,7 +9,7 @@ inherit cmake eutils multilib
if [ "${PV}" != "9999" ]; then
SRC_URI="https://github.com/${PN/-//}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~x86 ~amd64-linux"
+ KEYWORDS="~amd64 x86 ~amd64-linux"
S="${WORKDIR}/${P#votca-}"
else
inherit git-r3
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-libs/votca-tools/
@ 2021-02-18 8:39 Sam James
0 siblings, 0 replies; 39+ messages in thread
From: Sam James @ 2021-02-18 8:39 UTC (permalink / raw
To: gentoo-commits
commit: e218206d35051a7aca50e6ef59e2650740cda7ab
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 18 08:38:49 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Feb 18 08:38:49 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e218206d
sci-libs/votca-tools: Stabilize 1.6.2 amd64, #765760
Signed-off-by: Sam James <sam <AT> gentoo.org>
sci-libs/votca-tools/votca-tools-1.6.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sci-libs/votca-tools/votca-tools-1.6.2.ebuild b/sci-libs/votca-tools/votca-tools-1.6.2.ebuild
index fd25a78976c..25130026592 100644
--- a/sci-libs/votca-tools/votca-tools-1.6.2.ebuild
+++ b/sci-libs/votca-tools/votca-tools-1.6.2.ebuild
@@ -9,7 +9,7 @@ inherit cmake eutils multilib
if [ "${PV}" != "9999" ]; then
SRC_URI="https://github.com/${PN/-//}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 x86 ~amd64-linux"
+ KEYWORDS="amd64 x86 ~amd64-linux"
S="${WORKDIR}/${P#votca-}"
else
inherit git-r3
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-libs/votca-tools/
@ 2021-02-28 18:08 Andreas Sturmlechner
0 siblings, 0 replies; 39+ messages in thread
From: Andreas Sturmlechner @ 2021-02-28 18:08 UTC (permalink / raw
To: gentoo-commits
commit: 8ea6d8dc6fdf1117e5f78354d17b6b6f6d20c270
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 26 22:12:19 2021 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sun Feb 28 18:08:15 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ea6d8dc
sci-libs/votca-tools: Fix EAPI-7 bump, drop unused eclasses
CMAKE_MAKEFILE_GENERATOR=ninja is default in EAPI-7/cmake.eclass
Use https
Use double brackets
Sort RDEPEND
Add slot operator to sci-libs/fftw
Use BDEPEND
local mycmakeargs
Bug: https://bugs.gentoo.org/773175
Package-Manager: Portage-3.0.15, Repoman-3.0.2
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
sci-libs/votca-tools/votca-tools-1.6.4.ebuild | 28 +++++++++++++--------------
sci-libs/votca-tools/votca-tools-9999.ebuild | 28 +++++++++++++--------------
2 files changed, 28 insertions(+), 28 deletions(-)
diff --git a/sci-libs/votca-tools/votca-tools-1.6.4.ebuild b/sci-libs/votca-tools/votca-tools-1.6.4.ebuild
index ba77bc97616..21ffc1d3bba 100644
--- a/sci-libs/votca-tools/votca-tools-1.6.4.ebuild
+++ b/sci-libs/votca-tools/votca-tools-1.6.4.ebuild
@@ -3,40 +3,40 @@
EAPI=7
-CMAKE_MAKEFILE_GENERATOR="ninja"
+inherit cmake
-inherit cmake eutils multilib
-
-if [ "${PV}" != "9999" ]; then
+if [[ ${PV} == *9999 ]]; then
+ EGIT_REPO_URI="https://github.com/${PN/-//}.git"
+ inherit git-r3
+else
SRC_URI="https://github.com/${PN/-//}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~x86 ~amd64-linux"
S="${WORKDIR}/${P#votca-}"
-else
- inherit git-r3
- EGIT_REPO_URI="https://github.com/${PN/-//}.git"
fi
DESCRIPTION="Votca tools library"
-HOMEPAGE="http://www.votca.org"
+HOMEPAGE="https://www.votca.org/"
LICENSE="Apache-2.0"
SLOT="0"
IUSE=""
RDEPEND="
+ >=dev-cpp/eigen-3.3
dev-libs/boost:=
dev-libs/expat
- >=dev-cpp/eigen-3.3
- sci-libs/fftw:3.0"
-
-DEPEND="${RDEPEND}
+ sci-libs/fftw:3.0=
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
>=app-text/txt2tags-2.5
- virtual/pkgconfig"
+ virtual/pkgconfig
+"
DOCS=( NOTICE )
src_configure() {
- mycmakeargs=(
+ local mycmakeargs=(
-DWITH_RC_FILES=OFF
)
cmake_src_configure
diff --git a/sci-libs/votca-tools/votca-tools-9999.ebuild b/sci-libs/votca-tools/votca-tools-9999.ebuild
index ba77bc97616..21ffc1d3bba 100644
--- a/sci-libs/votca-tools/votca-tools-9999.ebuild
+++ b/sci-libs/votca-tools/votca-tools-9999.ebuild
@@ -3,40 +3,40 @@
EAPI=7
-CMAKE_MAKEFILE_GENERATOR="ninja"
+inherit cmake
-inherit cmake eutils multilib
-
-if [ "${PV}" != "9999" ]; then
+if [[ ${PV} == *9999 ]]; then
+ EGIT_REPO_URI="https://github.com/${PN/-//}.git"
+ inherit git-r3
+else
SRC_URI="https://github.com/${PN/-//}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~x86 ~amd64-linux"
S="${WORKDIR}/${P#votca-}"
-else
- inherit git-r3
- EGIT_REPO_URI="https://github.com/${PN/-//}.git"
fi
DESCRIPTION="Votca tools library"
-HOMEPAGE="http://www.votca.org"
+HOMEPAGE="https://www.votca.org/"
LICENSE="Apache-2.0"
SLOT="0"
IUSE=""
RDEPEND="
+ >=dev-cpp/eigen-3.3
dev-libs/boost:=
dev-libs/expat
- >=dev-cpp/eigen-3.3
- sci-libs/fftw:3.0"
-
-DEPEND="${RDEPEND}
+ sci-libs/fftw:3.0=
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
>=app-text/txt2tags-2.5
- virtual/pkgconfig"
+ virtual/pkgconfig
+"
DOCS=( NOTICE )
src_configure() {
- mycmakeargs=(
+ local mycmakeargs=(
-DWITH_RC_FILES=OFF
)
cmake_src_configure
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-libs/votca-tools/
@ 2021-03-14 19:15 Christoph Junghans
0 siblings, 0 replies; 39+ messages in thread
From: Christoph Junghans @ 2021-03-14 19:15 UTC (permalink / raw
To: gentoo-commits
commit: 4c4eeb78f9c399a7d22fdc728a2f4fec93e91265
Author: Christoph Junghans <junghans <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 13 14:52:05 2021 +0000
Commit: Christoph Junghans <junghans <AT> gentoo <DOT> org>
CommitDate: Sun Mar 14 19:15:01 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c4eeb78
sci-libs/votca-tools: version bump
Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Christoph Junghans <junghans <AT> gentoo.org>
sci-libs/votca-tools/Manifest | 1 +
.../votca-tools/{votca-tools-9999.ebuild => votca-tools-2021.ebuild} | 5 ++---
sci-libs/votca-tools/votca-tools-9999.ebuild | 5 ++---
3 files changed, 5 insertions(+), 6 deletions(-)
diff --git a/sci-libs/votca-tools/Manifest b/sci-libs/votca-tools/Manifest
index 4f17ce0eb38..f54cf8590f6 100644
--- a/sci-libs/votca-tools/Manifest
+++ b/sci-libs/votca-tools/Manifest
@@ -2,3 +2,4 @@ DIST votca-tools-1.5.1.tar.gz 129629 BLAKE2B ab68b38241d2c065939cf0b2e08603eaacc
DIST votca-tools-1.6.2.tar.gz 109808 BLAKE2B 1eebb2950004ec5b0a0494904b35f5dc539a5a93e36d40ffdfba911632e48ef9431bfd8d6305c0b5f516c70cff8156976efa6d216ae061a77e018047e543beee SHA512 03139591e934ae97b6c0ddcd0fa9480b4b9d28c05882489b9067b9519727a97a1589a645c3d9ad959d65fa622e3845e8d1d5141f210e2704907d7d6f0bff2abc
DIST votca-tools-1.6.4.tar.gz 109929 BLAKE2B 8bc55fcd0a021002f11d412440a369a169c3c62ae5978781010de0a05502e43ed1ccbe5066e3d46ac8ef6fd0c1471baca70d35f6468ccbfd480dc0fa6f2b5047 SHA512 7a334071086e755960a3bd938c1baa1979c4cc9cd8f865af00540fa45365bf1c3153ffb8a5a5948618c47ebafcda9ecc62850d44ea06b7f35ac4587bd423439a
DIST votca-tools-1.6.tar.gz 109824 BLAKE2B e030899e210e0f3030d43796a468ea20a573fe7ee62fbfde53e2e6865a9c0657d92ed06ddc44ebfa1c37c6142c865e97380e00570070351d75c403ead6fcfd19 SHA512 0159bc10066e05da8ba0f70e3c70d8cb4cd7b07ebd58edff1ccfeb86504af855eb5cae7184200e5c8ee3a3f6b6b85ec46a045f00dc8e681073ae8fdbbfc3965a
+DIST votca-tools-2021.tar.gz 114974 BLAKE2B 9f707a901b83f0d8a6c7e5c9b43b135c7539cf4f1fa44a4ed1a5c8f2f7066e1241515fc025ea436f2e52e6bf4aefb7c9a15575e8a588845dda7fbb6717f50b7e SHA512 5ddcbe49b1898713fa292655efbb2a1c081a7f98c9bae3ef37b273e0db49eecb3800b865221883d610802923132d57d5847cc35ddb008de4eb180f4c30db3dbf
diff --git a/sci-libs/votca-tools/votca-tools-9999.ebuild b/sci-libs/votca-tools/votca-tools-2021.ebuild
similarity index 91%
copy from sci-libs/votca-tools/votca-tools-9999.ebuild
copy to sci-libs/votca-tools/votca-tools-2021.ebuild
index 21ffc1d3bba..50be2b65e3b 100644
--- a/sci-libs/votca-tools/votca-tools-9999.ebuild
+++ b/sci-libs/votca-tools/votca-tools-2021.ebuild
@@ -29,15 +29,14 @@ RDEPEND="
"
DEPEND="${RDEPEND}"
BDEPEND="
- >=app-text/txt2tags-2.5
virtual/pkgconfig
"
-DOCS=( NOTICE )
+DOCS=( NOTICE README.rst CHANGELOG.rst )
src_configure() {
local mycmakeargs=(
- -DWITH_RC_FILES=OFF
+ -DINSTALL_RC_FILES=OFF
)
cmake_src_configure
}
diff --git a/sci-libs/votca-tools/votca-tools-9999.ebuild b/sci-libs/votca-tools/votca-tools-9999.ebuild
index 21ffc1d3bba..50be2b65e3b 100644
--- a/sci-libs/votca-tools/votca-tools-9999.ebuild
+++ b/sci-libs/votca-tools/votca-tools-9999.ebuild
@@ -29,15 +29,14 @@ RDEPEND="
"
DEPEND="${RDEPEND}"
BDEPEND="
- >=app-text/txt2tags-2.5
virtual/pkgconfig
"
-DOCS=( NOTICE )
+DOCS=( NOTICE README.rst CHANGELOG.rst )
src_configure() {
local mycmakeargs=(
- -DWITH_RC_FILES=OFF
+ -DINSTALL_RC_FILES=OFF
)
cmake_src_configure
}
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-libs/votca-tools/
@ 2021-03-15 15:06 Christoph Junghans
0 siblings, 0 replies; 39+ messages in thread
From: Christoph Junghans @ 2021-03-15 15:06 UTC (permalink / raw
To: gentoo-commits
commit: 0f9d9ac8b60635d7bb849795408bf6eca5e69d83
Author: Christoph Junghans <junghans <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 15 15:06:27 2021 +0000
Commit: Christoph Junghans <junghans <AT> gentoo <DOT> org>
CommitDate: Mon Mar 15 15:06:48 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f9d9ac8
sci-libs/votca-tools: disable mkl (bug #776319)
Closes: https://bugs.gentoo.org/776319
Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Christoph Junghans <junghans <AT> gentoo.org>
sci-libs/votca-tools/votca-tools-2021.ebuild | 1 +
1 file changed, 1 insertion(+)
diff --git a/sci-libs/votca-tools/votca-tools-2021.ebuild b/sci-libs/votca-tools/votca-tools-2021.ebuild
index 50be2b65e3b..a53a01d0af5 100644
--- a/sci-libs/votca-tools/votca-tools-2021.ebuild
+++ b/sci-libs/votca-tools/votca-tools-2021.ebuild
@@ -37,6 +37,7 @@ DOCS=( NOTICE README.rst CHANGELOG.rst )
src_configure() {
local mycmakeargs=(
-DINSTALL_RC_FILES=OFF
+ -DCMAKE_DISABLE_FIND_PACKAGE_MKL=ON
)
cmake_src_configure
}
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-libs/votca-tools/
@ 2021-03-19 19:46 Christoph Junghans
0 siblings, 0 replies; 39+ messages in thread
From: Christoph Junghans @ 2021-03-19 19:46 UTC (permalink / raw
To: gentoo-commits
commit: 0e6e7f2151b2564616f7d4969a0486ab196602e9
Author: Christoph Junghans <junghans <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 19 19:45:28 2021 +0000
Commit: Christoph Junghans <junghans <AT> gentoo <DOT> org>
CommitDate: Fri Mar 19 19:45:53 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e6e7f21
sci-libs/votca-tools: live ebuild updates
Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Christoph Junghans <junghans <AT> gentoo.org>
sci-libs/votca-tools/votca-tools-9999.ebuild | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/sci-libs/votca-tools/votca-tools-9999.ebuild b/sci-libs/votca-tools/votca-tools-9999.ebuild
index 50be2b65e3b..a0d08f7fa88 100644
--- a/sci-libs/votca-tools/votca-tools-9999.ebuild
+++ b/sci-libs/votca-tools/votca-tools-9999.ebuild
@@ -19,7 +19,8 @@ HOMEPAGE="https://www.votca.org/"
LICENSE="Apache-2.0"
SLOT="0"
-IUSE=""
+IUSE="test"
+RESTRICT="!test? ( test )"
RDEPEND="
>=dev-cpp/eigen-3.3
@@ -37,6 +38,7 @@ DOCS=( NOTICE README.rst CHANGELOG.rst )
src_configure() {
local mycmakeargs=(
-DINSTALL_RC_FILES=OFF
+ -DENABLE_TESTING=$(usex test)
)
cmake_src_configure
}
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-libs/votca-tools/
@ 2021-03-27 16:07 Sam James
0 siblings, 0 replies; 39+ messages in thread
From: Sam James @ 2021-03-27 16:07 UTC (permalink / raw
To: gentoo-commits
commit: 67317dd0284e3c5e7e944e3fff1f50503292b0c1
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 27 16:06:58 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Mar 27 16:06:58 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67317dd0
sci-libs/votca-tools: Stabilize 1.6.4 amd64, #773175
Signed-off-by: Sam James <sam <AT> gentoo.org>
sci-libs/votca-tools/votca-tools-1.6.4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sci-libs/votca-tools/votca-tools-1.6.4.ebuild b/sci-libs/votca-tools/votca-tools-1.6.4.ebuild
index 21ffc1d3bba..86dc20184ea 100644
--- a/sci-libs/votca-tools/votca-tools-1.6.4.ebuild
+++ b/sci-libs/votca-tools/votca-tools-1.6.4.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == *9999 ]]; then
inherit git-r3
else
SRC_URI="https://github.com/${PN/-//}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~x86 ~amd64-linux"
+ KEYWORDS="amd64 ~x86 ~amd64-linux"
S="${WORKDIR}/${P#votca-}"
fi
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-libs/votca-tools/
@ 2021-03-28 10:02 Agostino Sarubbo
0 siblings, 0 replies; 39+ messages in thread
From: Agostino Sarubbo @ 2021-03-28 10:02 UTC (permalink / raw
To: gentoo-commits
commit: c8634422d58bdb7570627b7c6839b64e4e6b7194
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 28 10:01:58 2021 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Sun Mar 28 10:01:58 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8634422
sci-libs/votca-tools: x86 stable wrt bug #773175
Package-Manager: Portage-3.0.13, Repoman-3.0.2
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
sci-libs/votca-tools/votca-tools-1.6.4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sci-libs/votca-tools/votca-tools-1.6.4.ebuild b/sci-libs/votca-tools/votca-tools-1.6.4.ebuild
index 86dc20184ea..37b977cdd6b 100644
--- a/sci-libs/votca-tools/votca-tools-1.6.4.ebuild
+++ b/sci-libs/votca-tools/votca-tools-1.6.4.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == *9999 ]]; then
inherit git-r3
else
SRC_URI="https://github.com/${PN/-//}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="amd64 ~x86 ~amd64-linux"
+ KEYWORDS="amd64 x86 ~amd64-linux"
S="${WORKDIR}/${P#votca-}"
fi
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-libs/votca-tools/
@ 2021-04-05 16:53 Andreas Sturmlechner
0 siblings, 0 replies; 39+ messages in thread
From: Andreas Sturmlechner @ 2021-04-05 16:53 UTC (permalink / raw
To: gentoo-commits
commit: 0c366540a48d3028d01d80d5215b082dd632ba4f
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 5 12:42:34 2021 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Mon Apr 5 16:53:22 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c366540
sci-libs/votca-tools: Drop 1.6 and 1.6.2
Bug: https://bugs.gentoo.org/773175
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
sci-libs/votca-tools/Manifest | 2 --
sci-libs/votca-tools/votca-tools-1.6.2.ebuild | 43 ---------------------------
sci-libs/votca-tools/votca-tools-1.6.ebuild | 43 ---------------------------
3 files changed, 88 deletions(-)
diff --git a/sci-libs/votca-tools/Manifest b/sci-libs/votca-tools/Manifest
index f54cf8590f6..f364e75c2ac 100644
--- a/sci-libs/votca-tools/Manifest
+++ b/sci-libs/votca-tools/Manifest
@@ -1,5 +1,3 @@
DIST votca-tools-1.5.1.tar.gz 129629 BLAKE2B ab68b38241d2c065939cf0b2e08603eaaccf613454bb64056c3d3d03472501e2079408ce856fbcc7243d51d035acec0b52c9767e2d687234296c7858f1a46fa4 SHA512 c8fe4baee0f4586dbe1a9f5b7c33b7d6b16ef0ebc35b50febfdcb049b09cd150dec3a5e9b98b43430db66f866dd01c1776f6777f01d227246c9d7b7ca879ea72
-DIST votca-tools-1.6.2.tar.gz 109808 BLAKE2B 1eebb2950004ec5b0a0494904b35f5dc539a5a93e36d40ffdfba911632e48ef9431bfd8d6305c0b5f516c70cff8156976efa6d216ae061a77e018047e543beee SHA512 03139591e934ae97b6c0ddcd0fa9480b4b9d28c05882489b9067b9519727a97a1589a645c3d9ad959d65fa622e3845e8d1d5141f210e2704907d7d6f0bff2abc
DIST votca-tools-1.6.4.tar.gz 109929 BLAKE2B 8bc55fcd0a021002f11d412440a369a169c3c62ae5978781010de0a05502e43ed1ccbe5066e3d46ac8ef6fd0c1471baca70d35f6468ccbfd480dc0fa6f2b5047 SHA512 7a334071086e755960a3bd938c1baa1979c4cc9cd8f865af00540fa45365bf1c3153ffb8a5a5948618c47ebafcda9ecc62850d44ea06b7f35ac4587bd423439a
-DIST votca-tools-1.6.tar.gz 109824 BLAKE2B e030899e210e0f3030d43796a468ea20a573fe7ee62fbfde53e2e6865a9c0657d92ed06ddc44ebfa1c37c6142c865e97380e00570070351d75c403ead6fcfd19 SHA512 0159bc10066e05da8ba0f70e3c70d8cb4cd7b07ebd58edff1ccfeb86504af855eb5cae7184200e5c8ee3a3f6b6b85ec46a045f00dc8e681073ae8fdbbfc3965a
DIST votca-tools-2021.tar.gz 114974 BLAKE2B 9f707a901b83f0d8a6c7e5c9b43b135c7539cf4f1fa44a4ed1a5c8f2f7066e1241515fc025ea436f2e52e6bf4aefb7c9a15575e8a588845dda7fbb6717f50b7e SHA512 5ddcbe49b1898713fa292655efbb2a1c081a7f98c9bae3ef37b273e0db49eecb3800b865221883d610802923132d57d5847cc35ddb008de4eb180f4c30db3dbf
diff --git a/sci-libs/votca-tools/votca-tools-1.6.2.ebuild b/sci-libs/votca-tools/votca-tools-1.6.2.ebuild
deleted file mode 100644
index 25130026592..00000000000
--- a/sci-libs/votca-tools/votca-tools-1.6.2.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-CMAKE_MAKEFILE_GENERATOR="ninja"
-
-inherit cmake eutils multilib
-
-if [ "${PV}" != "9999" ]; then
- SRC_URI="https://github.com/${PN/-//}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="amd64 x86 ~amd64-linux"
- S="${WORKDIR}/${P#votca-}"
-else
- inherit git-r3
- EGIT_REPO_URI="https://github.com/${PN/-//}.git"
-fi
-
-DESCRIPTION="Votca tools library"
-HOMEPAGE="http://www.votca.org"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-IUSE=""
-
-RDEPEND="
- dev-libs/boost:=
- dev-libs/expat
- >=dev-cpp/eigen-3.3
- sci-libs/fftw:3.0"
-
-DEPEND="${RDEPEND}
- >=app-text/txt2tags-2.5
- virtual/pkgconfig"
-
-DOCS=( NOTICE )
-
-src_configure() {
- mycmakeargs=(
- -DWITH_RC_FILES=OFF
- )
- cmake_src_configure
-}
diff --git a/sci-libs/votca-tools/votca-tools-1.6.ebuild b/sci-libs/votca-tools/votca-tools-1.6.ebuild
deleted file mode 100644
index dde9b50444e..00000000000
--- a/sci-libs/votca-tools/votca-tools-1.6.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-CMAKE_MAKEFILE_GENERATOR="ninja"
-
-inherit cmake-utils eutils multilib
-
-if [ "${PV}" != "9999" ]; then
- SRC_URI="https://github.com/${PN/-//}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="amd64 x86 ~amd64-linux"
- S="${WORKDIR}/${P#votca-}"
-else
- inherit git-r3
- EGIT_REPO_URI="https://github.com/${PN/-//}.git"
-fi
-
-DESCRIPTION="Votca tools library"
-HOMEPAGE="http://www.votca.org"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-IUSE=""
-
-RDEPEND="
- dev-libs/boost:=
- dev-libs/expat
- >=dev-cpp/eigen-3.3
- sci-libs/fftw:3.0"
-
-DEPEND="${RDEPEND}
- >=app-text/txt2tags-2.5
- virtual/pkgconfig"
-
-DOCS=( NOTICE )
-
-src_configure() {
- mycmakeargs=(
- -DWITH_RC_FILES=OFF
- )
- cmake-utils_src_configure
-}
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-libs/votca-tools/
@ 2021-07-18 23:24 Christoph Junghans
0 siblings, 0 replies; 39+ messages in thread
From: Christoph Junghans @ 2021-07-18 23:24 UTC (permalink / raw
To: gentoo-commits
commit: 6c5df28c94659beec0e7327292af6b71cf2ec238
Author: Christoph Junghans <junghans <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 18 23:22:03 2021 +0000
Commit: Christoph Junghans <junghans <AT> gentoo <DOT> org>
CommitDate: Sun Jul 18 23:24:20 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c5df28c
sci-libs/votca-tools: version bump
Package-Manager: Portage-3.0.20, Repoman-3.0.2
Signed-off-by: Christoph Junghans <junghans <AT> gentoo.org>
sci-libs/votca-tools/Manifest | 1 +
.../votca-tools/{votca-tools-9999.ebuild => votca-tools-2021.1.ebuild} | 1 +
sci-libs/votca-tools/votca-tools-9999.ebuild | 1 +
3 files changed, 3 insertions(+)
diff --git a/sci-libs/votca-tools/Manifest b/sci-libs/votca-tools/Manifest
index f364e75c2ac..7cfde285c53 100644
--- a/sci-libs/votca-tools/Manifest
+++ b/sci-libs/votca-tools/Manifest
@@ -1,3 +1,4 @@
DIST votca-tools-1.5.1.tar.gz 129629 BLAKE2B ab68b38241d2c065939cf0b2e08603eaaccf613454bb64056c3d3d03472501e2079408ce856fbcc7243d51d035acec0b52c9767e2d687234296c7858f1a46fa4 SHA512 c8fe4baee0f4586dbe1a9f5b7c33b7d6b16ef0ebc35b50febfdcb049b09cd150dec3a5e9b98b43430db66f866dd01c1776f6777f01d227246c9d7b7ca879ea72
DIST votca-tools-1.6.4.tar.gz 109929 BLAKE2B 8bc55fcd0a021002f11d412440a369a169c3c62ae5978781010de0a05502e43ed1ccbe5066e3d46ac8ef6fd0c1471baca70d35f6468ccbfd480dc0fa6f2b5047 SHA512 7a334071086e755960a3bd938c1baa1979c4cc9cd8f865af00540fa45365bf1c3153ffb8a5a5948618c47ebafcda9ecc62850d44ea06b7f35ac4587bd423439a
+DIST votca-tools-2021.1.tar.gz 115082 BLAKE2B 994105769e9718fc4f6832fb88a958d0a769660a21d9de36d52e9f1ce3cf9f66d26cb138f300de8285117fb87890a7ace4fc5be5dfa1ec41b82ceff9bd680728 SHA512 9770f1e96b489413577e41858e659f11c0adc79070ae1058102c2ad2a771c3222fcdffd8646bae75b5d05450a7fa3b49eee7fce1ae16718dd809ff729b3dd25e
DIST votca-tools-2021.tar.gz 114974 BLAKE2B 9f707a901b83f0d8a6c7e5c9b43b135c7539cf4f1fa44a4ed1a5c8f2f7066e1241515fc025ea436f2e52e6bf4aefb7c9a15575e8a588845dda7fbb6717f50b7e SHA512 5ddcbe49b1898713fa292655efbb2a1c081a7f98c9bae3ef37b273e0db49eecb3800b865221883d610802923132d57d5847cc35ddb008de4eb180f4c30db3dbf
diff --git a/sci-libs/votca-tools/votca-tools-9999.ebuild b/sci-libs/votca-tools/votca-tools-2021.1.ebuild
similarity index 95%
copy from sci-libs/votca-tools/votca-tools-9999.ebuild
copy to sci-libs/votca-tools/votca-tools-2021.1.ebuild
index a0d08f7fa88..184243331d2 100644
--- a/sci-libs/votca-tools/votca-tools-9999.ebuild
+++ b/sci-libs/votca-tools/votca-tools-2021.1.ebuild
@@ -39,6 +39,7 @@ src_configure() {
local mycmakeargs=(
-DINSTALL_RC_FILES=OFF
-DENABLE_TESTING=$(usex test)
+ -DCMAKE_DISABLE_FIND_PACKAGE_MKL=ON
)
cmake_src_configure
}
diff --git a/sci-libs/votca-tools/votca-tools-9999.ebuild b/sci-libs/votca-tools/votca-tools-9999.ebuild
index a0d08f7fa88..184243331d2 100644
--- a/sci-libs/votca-tools/votca-tools-9999.ebuild
+++ b/sci-libs/votca-tools/votca-tools-9999.ebuild
@@ -39,6 +39,7 @@ src_configure() {
local mycmakeargs=(
-DINSTALL_RC_FILES=OFF
-DENABLE_TESTING=$(usex test)
+ -DCMAKE_DISABLE_FIND_PACKAGE_MKL=ON
)
cmake_src_configure
}
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-libs/votca-tools/
@ 2021-09-19 15:20 Christoph Junghans
0 siblings, 0 replies; 39+ messages in thread
From: Christoph Junghans @ 2021-09-19 15:20 UTC (permalink / raw
To: gentoo-commits
commit: 30b29d962deefb3b4685510ead023a3902ace9c6
Author: Christoph Junghans <junghans <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 19 15:16:06 2021 +0000
Commit: Christoph Junghans <junghans <AT> gentoo <DOT> org>
CommitDate: Sun Sep 19 15:20:43 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30b29d96
sci-libs/votca-tools: version bump
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Christoph Junghans <junghans <AT> gentoo.org>
sci-libs/votca-tools/Manifest | 1 +
sci-libs/votca-tools/votca-tools-2021.2.ebuild | 45 ++++++++++++++++++++++++++
2 files changed, 46 insertions(+)
diff --git a/sci-libs/votca-tools/Manifest b/sci-libs/votca-tools/Manifest
index 7cfde285c53..16674518827 100644
--- a/sci-libs/votca-tools/Manifest
+++ b/sci-libs/votca-tools/Manifest
@@ -1,4 +1,5 @@
DIST votca-tools-1.5.1.tar.gz 129629 BLAKE2B ab68b38241d2c065939cf0b2e08603eaaccf613454bb64056c3d3d03472501e2079408ce856fbcc7243d51d035acec0b52c9767e2d687234296c7858f1a46fa4 SHA512 c8fe4baee0f4586dbe1a9f5b7c33b7d6b16ef0ebc35b50febfdcb049b09cd150dec3a5e9b98b43430db66f866dd01c1776f6777f01d227246c9d7b7ca879ea72
DIST votca-tools-1.6.4.tar.gz 109929 BLAKE2B 8bc55fcd0a021002f11d412440a369a169c3c62ae5978781010de0a05502e43ed1ccbe5066e3d46ac8ef6fd0c1471baca70d35f6468ccbfd480dc0fa6f2b5047 SHA512 7a334071086e755960a3bd938c1baa1979c4cc9cd8f865af00540fa45365bf1c3153ffb8a5a5948618c47ebafcda9ecc62850d44ea06b7f35ac4587bd423439a
DIST votca-tools-2021.1.tar.gz 115082 BLAKE2B 994105769e9718fc4f6832fb88a958d0a769660a21d9de36d52e9f1ce3cf9f66d26cb138f300de8285117fb87890a7ace4fc5be5dfa1ec41b82ceff9bd680728 SHA512 9770f1e96b489413577e41858e659f11c0adc79070ae1058102c2ad2a771c3222fcdffd8646bae75b5d05450a7fa3b49eee7fce1ae16718dd809ff729b3dd25e
+DIST votca-tools-2021.2.tar.gz 115115 BLAKE2B 9ce16d96b6da7ee9cf9be60a69536555d21eebdad2260100bf35a0c4fe0a5b8cb76c2a3b54476fd843f5428ec5fb3fd33ae79b9fd6b27a90530637c550f06712 SHA512 84e756df4c6e355e149fd105835cfb0fd03935c824e2f7e4149ad92ed6fa81d5a43a7dd6aa532b5ee6e4a79794a94db08f8533e9f0cf99afa604c5ad9f7cb133
DIST votca-tools-2021.tar.gz 114974 BLAKE2B 9f707a901b83f0d8a6c7e5c9b43b135c7539cf4f1fa44a4ed1a5c8f2f7066e1241515fc025ea436f2e52e6bf4aefb7c9a15575e8a588845dda7fbb6717f50b7e SHA512 5ddcbe49b1898713fa292655efbb2a1c081a7f98c9bae3ef37b273e0db49eecb3800b865221883d610802923132d57d5847cc35ddb008de4eb180f4c30db3dbf
diff --git a/sci-libs/votca-tools/votca-tools-2021.2.ebuild b/sci-libs/votca-tools/votca-tools-2021.2.ebuild
new file mode 100644
index 00000000000..184243331d2
--- /dev/null
+++ b/sci-libs/votca-tools/votca-tools-2021.2.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake
+
+if [[ ${PV} == *9999 ]]; then
+ EGIT_REPO_URI="https://github.com/${PN/-//}.git"
+ inherit git-r3
+else
+ SRC_URI="https://github.com/${PN/-//}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64 ~x86 ~amd64-linux"
+ S="${WORKDIR}/${P#votca-}"
+fi
+
+DESCRIPTION="Votca tools library"
+HOMEPAGE="https://www.votca.org/"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+ >=dev-cpp/eigen-3.3
+ dev-libs/boost:=
+ dev-libs/expat
+ sci-libs/fftw:3.0=
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+ virtual/pkgconfig
+"
+
+DOCS=( NOTICE README.rst CHANGELOG.rst )
+
+src_configure() {
+ local mycmakeargs=(
+ -DINSTALL_RC_FILES=OFF
+ -DENABLE_TESTING=$(usex test)
+ -DCMAKE_DISABLE_FIND_PACKAGE_MKL=ON
+ )
+ cmake_src_configure
+}
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-libs/votca-tools/
@ 2022-02-20 14:58 Christoph Junghans
0 siblings, 0 replies; 39+ messages in thread
From: Christoph Junghans @ 2022-02-20 14:58 UTC (permalink / raw
To: gentoo-commits
commit: 39e359f59c54cf788cc529cd2038e895fc2e83da
Author: Christoph Junghans <junghans <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 20 14:55:11 2022 +0000
Commit: Christoph Junghans <junghans <AT> gentoo <DOT> org>
CommitDate: Sun Feb 20 14:55:11 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39e359f5
sci-libs/votca-tools: remove old
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Christoph Junghans <junghans <AT> gentoo.org>
sci-libs/votca-tools/Manifest | 2 --
sci-libs/votca-tools/votca-tools-2021.1.ebuild | 45 --------------------------
sci-libs/votca-tools/votca-tools-2021.ebuild | 43 ------------------------
3 files changed, 90 deletions(-)
diff --git a/sci-libs/votca-tools/Manifest b/sci-libs/votca-tools/Manifest
index 166745188272..2a4915b26545 100644
--- a/sci-libs/votca-tools/Manifest
+++ b/sci-libs/votca-tools/Manifest
@@ -1,5 +1,3 @@
DIST votca-tools-1.5.1.tar.gz 129629 BLAKE2B ab68b38241d2c065939cf0b2e08603eaaccf613454bb64056c3d3d03472501e2079408ce856fbcc7243d51d035acec0b52c9767e2d687234296c7858f1a46fa4 SHA512 c8fe4baee0f4586dbe1a9f5b7c33b7d6b16ef0ebc35b50febfdcb049b09cd150dec3a5e9b98b43430db66f866dd01c1776f6777f01d227246c9d7b7ca879ea72
DIST votca-tools-1.6.4.tar.gz 109929 BLAKE2B 8bc55fcd0a021002f11d412440a369a169c3c62ae5978781010de0a05502e43ed1ccbe5066e3d46ac8ef6fd0c1471baca70d35f6468ccbfd480dc0fa6f2b5047 SHA512 7a334071086e755960a3bd938c1baa1979c4cc9cd8f865af00540fa45365bf1c3153ffb8a5a5948618c47ebafcda9ecc62850d44ea06b7f35ac4587bd423439a
-DIST votca-tools-2021.1.tar.gz 115082 BLAKE2B 994105769e9718fc4f6832fb88a958d0a769660a21d9de36d52e9f1ce3cf9f66d26cb138f300de8285117fb87890a7ace4fc5be5dfa1ec41b82ceff9bd680728 SHA512 9770f1e96b489413577e41858e659f11c0adc79070ae1058102c2ad2a771c3222fcdffd8646bae75b5d05450a7fa3b49eee7fce1ae16718dd809ff729b3dd25e
DIST votca-tools-2021.2.tar.gz 115115 BLAKE2B 9ce16d96b6da7ee9cf9be60a69536555d21eebdad2260100bf35a0c4fe0a5b8cb76c2a3b54476fd843f5428ec5fb3fd33ae79b9fd6b27a90530637c550f06712 SHA512 84e756df4c6e355e149fd105835cfb0fd03935c824e2f7e4149ad92ed6fa81d5a43a7dd6aa532b5ee6e4a79794a94db08f8533e9f0cf99afa604c5ad9f7cb133
-DIST votca-tools-2021.tar.gz 114974 BLAKE2B 9f707a901b83f0d8a6c7e5c9b43b135c7539cf4f1fa44a4ed1a5c8f2f7066e1241515fc025ea436f2e52e6bf4aefb7c9a15575e8a588845dda7fbb6717f50b7e SHA512 5ddcbe49b1898713fa292655efbb2a1c081a7f98c9bae3ef37b273e0db49eecb3800b865221883d610802923132d57d5847cc35ddb008de4eb180f4c30db3dbf
diff --git a/sci-libs/votca-tools/votca-tools-2021.1.ebuild b/sci-libs/votca-tools/votca-tools-2021.1.ebuild
deleted file mode 100644
index 184243331d2d..000000000000
--- a/sci-libs/votca-tools/votca-tools-2021.1.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake
-
-if [[ ${PV} == *9999 ]]; then
- EGIT_REPO_URI="https://github.com/${PN/-//}.git"
- inherit git-r3
-else
- SRC_URI="https://github.com/${PN/-//}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~x86 ~amd64-linux"
- S="${WORKDIR}/${P#votca-}"
-fi
-
-DESCRIPTION="Votca tools library"
-HOMEPAGE="https://www.votca.org/"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- >=dev-cpp/eigen-3.3
- dev-libs/boost:=
- dev-libs/expat
- sci-libs/fftw:3.0=
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
- virtual/pkgconfig
-"
-
-DOCS=( NOTICE README.rst CHANGELOG.rst )
-
-src_configure() {
- local mycmakeargs=(
- -DINSTALL_RC_FILES=OFF
- -DENABLE_TESTING=$(usex test)
- -DCMAKE_DISABLE_FIND_PACKAGE_MKL=ON
- )
- cmake_src_configure
-}
diff --git a/sci-libs/votca-tools/votca-tools-2021.ebuild b/sci-libs/votca-tools/votca-tools-2021.ebuild
deleted file mode 100644
index a53a01d0af5a..000000000000
--- a/sci-libs/votca-tools/votca-tools-2021.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake
-
-if [[ ${PV} == *9999 ]]; then
- EGIT_REPO_URI="https://github.com/${PN/-//}.git"
- inherit git-r3
-else
- SRC_URI="https://github.com/${PN/-//}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~x86 ~amd64-linux"
- S="${WORKDIR}/${P#votca-}"
-fi
-
-DESCRIPTION="Votca tools library"
-HOMEPAGE="https://www.votca.org/"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-IUSE=""
-
-RDEPEND="
- >=dev-cpp/eigen-3.3
- dev-libs/boost:=
- dev-libs/expat
- sci-libs/fftw:3.0=
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
- virtual/pkgconfig
-"
-
-DOCS=( NOTICE README.rst CHANGELOG.rst )
-
-src_configure() {
- local mycmakeargs=(
- -DINSTALL_RC_FILES=OFF
- -DCMAKE_DISABLE_FIND_PACKAGE_MKL=ON
- )
- cmake_src_configure
-}
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-libs/votca-tools/
@ 2022-02-20 14:58 Christoph Junghans
0 siblings, 0 replies; 39+ messages in thread
From: Christoph Junghans @ 2022-02-20 14:58 UTC (permalink / raw
To: gentoo-commits
commit: ab44c2d1c93a2c148ac1a5171005fa76bcbec2a5
Author: Christoph Junghans <junghans <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 20 14:54:34 2022 +0000
Commit: Christoph Junghans <junghans <AT> gentoo <DOT> org>
CommitDate: Sun Feb 20 14:54:34 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab44c2d1
sci-libs/votca-tools: git version moved to sci-chemistry/votca
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Christoph Junghans <junghans <AT> gentoo.org>
sci-libs/votca-tools/votca-tools-9999.ebuild | 45 ----------------------------
1 file changed, 45 deletions(-)
diff --git a/sci-libs/votca-tools/votca-tools-9999.ebuild b/sci-libs/votca-tools/votca-tools-9999.ebuild
deleted file mode 100644
index 184243331d2d..000000000000
--- a/sci-libs/votca-tools/votca-tools-9999.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake
-
-if [[ ${PV} == *9999 ]]; then
- EGIT_REPO_URI="https://github.com/${PN/-//}.git"
- inherit git-r3
-else
- SRC_URI="https://github.com/${PN/-//}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~x86 ~amd64-linux"
- S="${WORKDIR}/${P#votca-}"
-fi
-
-DESCRIPTION="Votca tools library"
-HOMEPAGE="https://www.votca.org/"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- >=dev-cpp/eigen-3.3
- dev-libs/boost:=
- dev-libs/expat
- sci-libs/fftw:3.0=
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
- virtual/pkgconfig
-"
-
-DOCS=( NOTICE README.rst CHANGELOG.rst )
-
-src_configure() {
- local mycmakeargs=(
- -DINSTALL_RC_FILES=OFF
- -DENABLE_TESTING=$(usex test)
- -DCMAKE_DISABLE_FIND_PACKAGE_MKL=ON
- )
- cmake_src_configure
-}
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-libs/votca-tools/
@ 2022-03-30 19:43 Andreas Sturmlechner
0 siblings, 0 replies; 39+ messages in thread
From: Andreas Sturmlechner @ 2022-03-30 19:43 UTC (permalink / raw
To: gentoo-commits
commit: 0b31ba68aa1d7e68638070fc8db07a48e3f8f415
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 30 19:42:24 2022 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Wed Mar 30 19:42:54 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b31ba68
sci-libs/votca-tools: Drop 1.5.1, EAPI6--
Bug: https://bugs.gentoo.org/773175
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
sci-libs/votca-tools/Manifest | 1 -
sci-libs/votca-tools/votca-tools-1.5.1.ebuild | 56 ---------------------------
2 files changed, 57 deletions(-)
diff --git a/sci-libs/votca-tools/Manifest b/sci-libs/votca-tools/Manifest
index 2a4915b26545..af6afcbdfbb4 100644
--- a/sci-libs/votca-tools/Manifest
+++ b/sci-libs/votca-tools/Manifest
@@ -1,3 +1,2 @@
-DIST votca-tools-1.5.1.tar.gz 129629 BLAKE2B ab68b38241d2c065939cf0b2e08603eaaccf613454bb64056c3d3d03472501e2079408ce856fbcc7243d51d035acec0b52c9767e2d687234296c7858f1a46fa4 SHA512 c8fe4baee0f4586dbe1a9f5b7c33b7d6b16ef0ebc35b50febfdcb049b09cd150dec3a5e9b98b43430db66f866dd01c1776f6777f01d227246c9d7b7ca879ea72
DIST votca-tools-1.6.4.tar.gz 109929 BLAKE2B 8bc55fcd0a021002f11d412440a369a169c3c62ae5978781010de0a05502e43ed1ccbe5066e3d46ac8ef6fd0c1471baca70d35f6468ccbfd480dc0fa6f2b5047 SHA512 7a334071086e755960a3bd938c1baa1979c4cc9cd8f865af00540fa45365bf1c3153ffb8a5a5948618c47ebafcda9ecc62850d44ea06b7f35ac4587bd423439a
DIST votca-tools-2021.2.tar.gz 115115 BLAKE2B 9ce16d96b6da7ee9cf9be60a69536555d21eebdad2260100bf35a0c4fe0a5b8cb76c2a3b54476fd843f5428ec5fb3fd33ae79b9fd6b27a90530637c550f06712 SHA512 84e756df4c6e355e149fd105835cfb0fd03935c824e2f7e4149ad92ed6fa81d5a43a7dd6aa532b5ee6e4a79794a94db08f8533e9f0cf99afa604c5ad9f7cb133
diff --git a/sci-libs/votca-tools/votca-tools-1.5.1.ebuild b/sci-libs/votca-tools/votca-tools-1.5.1.ebuild
deleted file mode 100644
index 7c07b1f80ccd..000000000000
--- a/sci-libs/votca-tools/votca-tools-1.5.1.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-CMAKE_MAKEFILE_GENERATOR="ninja"
-
-inherit cmake-utils multilib
-
-if [ "${PV}" != "9999" ]; then
- SRC_URI="https://github.com/${PN/-//}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~x86 ~amd64-linux"
- S="${WORKDIR}/${P#votca-}"
-else
- inherit git-r3
- EGIT_REPO_URI="https://github.com/${PN/-//}.git"
-fi
-
-DESCRIPTION="Votca tools library"
-HOMEPAGE="http://www.votca.org"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-IUSE="doc +fftw sqlite"
-
-RDEPEND="
- dev-libs/boost:=
- dev-libs/expat
- >=dev-cpp/eigen-3.3
- fftw? ( sci-libs/fftw:3.0 )
- sqlite? ( dev-db/sqlite:3 )"
-
-DEPEND="${RDEPEND}
- doc? ( >=app-doc/doxygen-1.7.6.1[dot] )
- >=app-text/txt2tags-2.5
- virtual/pkgconfig"
-
-DOCS=( NOTICE )
-
-src_configure() {
- mycmakeargs=(
- -DWITH_FFTW=$(usex fftw)
- -DWITH_SQLITE3=$(usex sqlite)
- -DWITH_RC_FILES=OFF
- )
- cmake-utils_src_configure
-}
-
-src_install() {
- cmake-utils_src_install
- if use doc; then
- cd "${CMAKE_BUILD_DIR}"
- cmake-utils_src_make html
- dodoc -r share/doc/html
- fi
-}
^ permalink raw reply related [flat|nested] 39+ messages in thread
end of thread, other threads:[~2022-03-30 19:43 UTC | newest]
Thread overview: 39+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-02-20 14:58 [gentoo-commits] repo/gentoo:master commit in: sci-libs/votca-tools/ Christoph Junghans
-- strict thread matches above, loose matches on Subject: below --
2022-03-30 19:43 Andreas Sturmlechner
2022-02-20 14:58 Christoph Junghans
2021-09-19 15:20 Christoph Junghans
2021-07-18 23:24 Christoph Junghans
2021-04-05 16:53 Andreas Sturmlechner
2021-03-28 10:02 Agostino Sarubbo
2021-03-27 16:07 Sam James
2021-03-19 19:46 Christoph Junghans
2021-03-15 15:06 Christoph Junghans
2021-03-14 19:15 Christoph Junghans
2021-02-28 18:08 Andreas Sturmlechner
2021-02-18 8:39 Sam James
2021-02-18 8:35 Sam James
2021-02-15 0:32 Sam James
2021-01-13 1:20 Christoph Junghans
2021-01-06 15:17 Fabian Groffen
2020-12-10 19:26 Christoph Junghans
2020-08-22 23:36 Christoph Junghans
2020-06-21 15:41 Christoph Junghans
2020-04-18 5:01 Christoph Junghans
2019-11-22 2:26 Christoph Junghans
2019-05-20 11:03 Mikle Kolyada
2019-01-31 20:16 Christoph Junghans
2018-09-28 12:37 Christoph Junghans
2018-06-25 19:50 Christoph Junghans
2017-09-03 13:41 Christoph Junghans
2017-07-30 10:04 Michał Górny
2017-01-02 14:42 Christoph Junghans
2016-12-20 14:30 Tobias Klausmann
2016-11-24 5:04 Christoph Junghans
2016-11-14 2:01 Christoph Junghans
2016-10-29 21:41 Christoph Junghans
2016-09-27 18:13 Christoph Junghans
2016-08-19 21:59 Christoph Junghans
2016-07-14 17:30 Christoph Junghans
2016-01-22 18:51 Michael Palimaka
2016-01-15 22:30 Christoph Junghans
2015-09-24 5:20 Christoph Junghans
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox