* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/topcom/
@ 2021-03-07 22:18 Michael Orlitzky
0 siblings, 0 replies; 6+ messages in thread
From: Michael Orlitzky @ 2021-03-07 22:18 UTC (permalink / raw
To: gentoo-commits
commit: bd1da1555f1f7388e84fb7e265b70b0bc579d6d3
Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 7 21:45:41 2021 +0000
Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
CommitDate: Sun Mar 7 22:17:25 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd1da155
sci-mathematics/topcom: new revision to fixup examples install.
Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org>
.../topcom/{topcom-0.17.8.ebuild => topcom-0.17.8-r1.ebuild} | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/sci-mathematics/topcom/topcom-0.17.8.ebuild b/sci-mathematics/topcom/topcom-0.17.8-r1.ebuild
similarity index 92%
rename from sci-mathematics/topcom/topcom-0.17.8.ebuild
rename to sci-mathematics/topcom/topcom-0.17.8-r1.ebuild
index e6627c5cd43..a3496c642f6 100644
--- a/sci-mathematics/topcom/topcom-0.17.8.ebuild
+++ b/sci-mathematics/topcom/topcom-0.17.8-r1.ebuild
@@ -45,7 +45,10 @@ src_configure() {
src_install () {
default
- use examples && docompress -x "/usr/share/doc/${PF}/examples"
+ if use examples; then
+ docompress -x "/usr/share/doc/${PF}/examples"
+ dodoc -r examples
+ fi
use doc && einstalldocs
mv "${ED}/usr/bin/cube" "${ED}/usr/bin/topcom_cube" || die
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/topcom/
@ 2021-03-16 22:42 Michael Orlitzky
0 siblings, 0 replies; 6+ messages in thread
From: Michael Orlitzky @ 2021-03-16 22:42 UTC (permalink / raw
To: gentoo-commits
commit: 2240bdc6f264381ad7ca58225457bac424f992cc
Author: François Bissey <frp.bissey <AT> gmail <DOT> com>
AuthorDate: Tue Mar 16 21:57:13 2021 +0000
Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
CommitDate: Tue Mar 16 22:42:09 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2240bdc6
sci-mathematics/topcom: removing doc use flag, unconditional installation
Closes: https://github.com/gentoo/gentoo/pull/19936
Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: François René Pierre Bissey <frp.bissey <AT> gmail.com>
Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org>
sci-mathematics/topcom/topcom-0.17.8-r1.ebuild | 10 ++++------
1 file changed, 4 insertions(+), 6 deletions(-)
diff --git a/sci-mathematics/topcom/topcom-0.17.8-r1.ebuild b/sci-mathematics/topcom/topcom-0.17.8-r1.ebuild
index 36196048f94..1bf043adc34 100644
--- a/sci-mathematics/topcom/topcom-0.17.8-r1.ebuild
+++ b/sci-mathematics/topcom/topcom-0.17.8-r1.ebuild
@@ -9,12 +9,12 @@ DESCRIPTION="Computing Triangulations Of Point Configurations and Oriented Matro
HOMEPAGE="http://www.rambau.wm.uni-bayreuth.de/TOPCOM/"
SRC_URI="
http://www.rambau.wm.uni-bayreuth.de/Software/TOPCOM-${PV}.tar.gz
- doc? ( http://www.rambau.wm.uni-bayreuth.de/TOPCOM/TOPCOM-manual.html )
+ http://www.rambau.wm.uni-bayreuth.de/TOPCOM/TOPCOM-manual.html
"
KEYWORDS="~amd64 ~x86"
SLOT="0"
LICENSE="GPL-2"
-IUSE="doc examples"
+IUSE="examples"
DEPEND="
dev-libs/gmp:0
@@ -25,6 +25,8 @@ BDEPEND="app-shells/tcsh"
PATCHES=( "${FILESDIR}/${P}-buildsystem.patch" )
+HTML_DOCS=( "${DISTDIR}/TOPCOM-manual.html" )
+
src_prepare () {
default
@@ -42,10 +44,6 @@ src_configure() {
}
src_install () {
- if use doc ; then
- HTML_DOCS=( "${DISTDIR}/TOPCOM-manual.html" )
- fi
-
default
if use examples; then
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/topcom/
@ 2021-03-16 22:42 Michael Orlitzky
0 siblings, 0 replies; 6+ messages in thread
From: Michael Orlitzky @ 2021-03-16 22:42 UTC (permalink / raw
To: gentoo-commits
commit: 2f1b6afe266c1d9ead2393dae1bb4ddbffc95f54
Author: François Bissey <frp.bissey <AT> gmail <DOT> com>
AuthorDate: Mon Mar 15 08:07:15 2021 +0000
Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
CommitDate: Tue Mar 16 22:42:05 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f1b6afe
sci-mathematics/topcom: define HTML_DOCS only when doc is in USE.
Package-Manager: Portage-3.0.13, Repoman-3.0.2
Bug: https://bugs.gentoo.org/776310
Signed-off-by: François René Pierre Bissey <frp.bissey <AT> gmail.com>
Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org>
sci-mathematics/topcom/topcom-0.17.8-r1.ebuild | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/sci-mathematics/topcom/topcom-0.17.8-r1.ebuild b/sci-mathematics/topcom/topcom-0.17.8-r1.ebuild
index a3496c642f6..36196048f94 100644
--- a/sci-mathematics/topcom/topcom-0.17.8-r1.ebuild
+++ b/sci-mathematics/topcom/topcom-0.17.8-r1.ebuild
@@ -24,7 +24,6 @@ RDEPEND="${DEPEND}"
BDEPEND="app-shells/tcsh"
PATCHES=( "${FILESDIR}/${P}-buildsystem.patch" )
-HTML_DOCS=( "${DISTDIR}/TOPCOM-manual.html" )
src_prepare () {
default
@@ -43,13 +42,16 @@ src_configure() {
}
src_install () {
+ if use doc ; then
+ HTML_DOCS=( "${DISTDIR}/TOPCOM-manual.html" )
+ fi
+
default
if use examples; then
docompress -x "/usr/share/doc/${PF}/examples"
dodoc -r examples
fi
- use doc && einstalldocs
mv "${ED}/usr/bin/cube" "${ED}/usr/bin/topcom_cube" || die
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/topcom/
@ 2021-05-28 15:57 David Seifert
0 siblings, 0 replies; 6+ messages in thread
From: David Seifert @ 2021-05-28 15:57 UTC (permalink / raw
To: gentoo-commits
commit: c92ee1afebec98ba5b8d627fa27e83b9804ae5c9
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri May 28 15:57:19 2021 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Fri May 28 15:57:19 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c92ee1af
sci-mathematics/topcom: fix docinto argument (avoid double 'prefix')
Signed-off-by: Sam James <sam <AT> gentoo.org>
Signed-off-by: David Seifert <soap <AT> gentoo.org>
.../topcom/{topcom-0.17.7.ebuild => topcom-0.17.7-r1.ebuild} | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sci-mathematics/topcom/topcom-0.17.7.ebuild b/sci-mathematics/topcom/topcom-0.17.7-r1.ebuild
similarity index 93%
rename from sci-mathematics/topcom/topcom-0.17.7.ebuild
rename to sci-mathematics/topcom/topcom-0.17.7-r1.ebuild
index 6ff02493a14..0e7e8c06ff2 100644
--- a/sci-mathematics/topcom/topcom-0.17.7.ebuild
+++ b/sci-mathematics/topcom/topcom-0.17.7-r1.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=6
@@ -41,7 +41,7 @@ src_install() {
use examples && dodoc -r "${S}"/examples
- docinto /usr/share/doc/${PF}/html
+ docinto html
use doc && dodoc "${DISTDIR}"/TOPCOM-manual.html
mv "${ED}"/usr/bin/cube "${ED}"/usr/bin/topcom_cube || die
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/topcom/
@ 2021-12-29 13:46 Yixun Lan
0 siblings, 0 replies; 6+ messages in thread
From: Yixun Lan @ 2021-12-29 13:46 UTC (permalink / raw
To: gentoo-commits
commit: 9fbc3118b0f8f8e2d17a586bd7fbb9f0e6125d1c
Author: Alex Fan <alex.fan.q <AT> gmail <DOT> com>
AuthorDate: Tue Dec 28 10:25:13 2021 +0000
Commit: Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Wed Dec 29 13:40:22 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9fbc3118
sci-mathematics/topcom: keyword 0.17.8-r1 for ~riscv
Signed-off-by: Alex Fan <alex.fan.q <AT> gmail.com>
Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>
sci-mathematics/topcom/topcom-0.17.8-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sci-mathematics/topcom/topcom-0.17.8-r1.ebuild b/sci-mathematics/topcom/topcom-0.17.8-r1.ebuild
index 1bf043adc34f..d0558905f947 100644
--- a/sci-mathematics/topcom/topcom-0.17.8-r1.ebuild
+++ b/sci-mathematics/topcom/topcom-0.17.8-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="
http://www.rambau.wm.uni-bayreuth.de/Software/TOPCOM-${PV}.tar.gz
http://www.rambau.wm.uni-bayreuth.de/TOPCOM/TOPCOM-manual.html
"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~riscv ~x86"
SLOT="0"
LICENSE="GPL-2"
IUSE="examples"
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/topcom/
@ 2022-05-08 1:20 Michael Orlitzky
0 siblings, 0 replies; 6+ messages in thread
From: Michael Orlitzky @ 2022-05-08 1:20 UTC (permalink / raw
To: gentoo-commits
commit: e9826e895bcf12b4de14809e301d1989a12903cb
Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
AuthorDate: Sun May 8 01:17:44 2022 +0000
Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
CommitDate: Sun May 8 01:18:09 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9826e89
sci-mathematics/topcom: new revision to fix gmp dependency.
We need gmp[cxx] to link with -lgmpxx.
Closes: https://bugs.gentoo.org/776883
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org>
.../topcom/{topcom-0.17.8-r2.ebuild => topcom-0.17.8-r3.ebuild} | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/sci-mathematics/topcom/topcom-0.17.8-r2.ebuild b/sci-mathematics/topcom/topcom-0.17.8-r3.ebuild
similarity index 95%
rename from sci-mathematics/topcom/topcom-0.17.8-r2.ebuild
rename to sci-mathematics/topcom/topcom-0.17.8-r3.ebuild
index 1e0b4b30d0bd..a2d33b020ee2 100644
--- a/sci-mathematics/topcom/topcom-0.17.8-r2.ebuild
+++ b/sci-mathematics/topcom/topcom-0.17.8-r3.ebuild
@@ -19,8 +19,9 @@ SLOT="0"
LICENSE="GPL-2"
IUSE="examples"
+# need gmp[cxx] since we append -lgmpxx to LIBS
DEPEND="
- dev-libs/gmp:0
+ dev-libs/gmp:0[cxx]
>=sci-libs/cddlib-094f
"
RDEPEND="${DEPEND}"
^ permalink raw reply related [flat|nested] 6+ messages in thread
end of thread, other threads:[~2022-05-08 1:20 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-05-08 1:20 [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/topcom/ Michael Orlitzky
-- strict thread matches above, loose matches on Subject: below --
2021-12-29 13:46 Yixun Lan
2021-05-28 15:57 David Seifert
2021-03-16 22:42 Michael Orlitzky
2021-03-16 22:42 Michael Orlitzky
2021-03-07 22:18 Michael Orlitzky
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox