* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/frobby/
@ 2017-02-19 23:46 David Seifert
0 siblings, 0 replies; 7+ messages in thread
From: David Seifert @ 2017-02-19 23:46 UTC (permalink / raw
To: gentoo-commits
commit: 7d253bfa5cdd7bac77856a261a543a5ba521cd00
Author: Gerhard Bräunlich <wippbox <AT> gmx <DOT> net>
AuthorDate: Sun Feb 19 11:10:47 2017 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Feb 19 23:45:22 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d253bfa
sci-mathematics/frobby: EAPI bump 4 -> 6
Package-Manager: portage-2.3.3
Closes: https://github.com/gentoo/gentoo/pull/4032
sci-mathematics/frobby/frobby-0.9.0-r2.ebuild | 64 +++++++++++++++++++++++++++
1 file changed, 64 insertions(+)
diff --git a/sci-mathematics/frobby/frobby-0.9.0-r2.ebuild b/sci-mathematics/frobby/frobby-0.9.0-r2.ebuild
new file mode 100644
index 0000000000..77e7c9b15a
--- /dev/null
+++ b/sci-mathematics/frobby/frobby-0.9.0-r2.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit toolchain-funcs
+
+DESCRIPTION="Software system and project for computations with monomial ideals"
+HOMEPAGE="http://www.broune.com/frobby/"
+SRC_URI="http://www.broune.com/frobby/frobby_v${PV}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="doc static-libs"
+
+RDEPEND="dev-libs/gmp:0=[cxx]"
+DEPEND="${RDEPEND}
+ doc? ( virtual/latex-base )"
+
+S="${WORKDIR}/frobby_v${PV}"
+
+PATCHES=(
+ "${FILESDIR}/${PN}-cflags-no-strip-soname.patch"
+ "${FILESDIR}/${PN}-gcc-4.7.patch"
+ "${FILESDIR}/${PN}-gmp-5.1.patch"
+)
+
+src_prepare() {
+ default
+
+ # CXXFLAGS are called CPPFLAGS
+ sed "s/CPPFLAGS/CXXFLAGS/" -i Makefile || die
+}
+
+src_configure() {
+ default
+ # Makefile uses the value of CXX which may be defined in /etc/env,
+ # breaking cross-compile.
+ tc-export CXX
+}
+
+src_compile() {
+ emake
+ MODE=shared emake library
+ use static-libs && emake library
+ use doc && emake docPdf
+}
+
+src_install() {
+ dobin bin/frobby
+ dolib.so bin/libfrobby.so
+ dosym libfrobby.so "${PREFIX}/usr/$(get_libdir)/libfrobby.so.0"
+ use static-libs && dolib.a bin/libfrobby.a
+
+ insinto /usr/include
+ doins src/frobby.h
+
+ insinto /usr/include/"${PN}"
+ doins src/stdinc.h
+
+ use doc && dodoc bin/manual.pdf
+}
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/frobby/
@ 2022-12-26 15:59 David Seifert
0 siblings, 0 replies; 7+ messages in thread
From: David Seifert @ 2022-12-26 15:59 UTC (permalink / raw
To: gentoo-commits
commit: 9909bceaafa55cd574d17d1f4c7395afcc3e85c6
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 26 15:59:14 2022 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Mon Dec 26 15:59:14 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9909bcea
sci-mathematics/frobby: update EAPI 6 -> 8
Signed-off-by: David Seifert <soap <AT> gentoo.org>
...obby-0.9.0-r3.ebuild => frobby-0.9.0-r4.ebuild} | 32 ++++++++++------------
1 file changed, 14 insertions(+), 18 deletions(-)
diff --git a/sci-mathematics/frobby/frobby-0.9.0-r3.ebuild b/sci-mathematics/frobby/frobby-0.9.0-r4.ebuild
similarity index 62%
rename from sci-mathematics/frobby/frobby-0.9.0-r3.ebuild
rename to sci-mathematics/frobby/frobby-0.9.0-r4.ebuild
index ae7086641b0d..14a17f5470f5 100644
--- a/sci-mathematics/frobby/frobby-0.9.0-r3.ebuild
+++ b/sci-mathematics/frobby/frobby-0.9.0-r4.ebuild
@@ -1,29 +1,28 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=6
+EAPI=8
inherit toolchain-funcs
DESCRIPTION="Software system and project for computations with monomial ideals"
HOMEPAGE="http://www.broune.com/frobby/"
SRC_URI="http://www.broune.com/frobby/frobby_v${PV}.tar.gz"
+S="${WORKDIR}/frobby_v${PV}"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~arm x86"
-IUSE="doc static-libs"
+IUSE="doc"
RDEPEND="dev-libs/gmp:0=[cxx(+)]"
-DEPEND="${RDEPEND}
- doc? ( virtual/latex-base )"
-
-S="${WORKDIR}/frobby_v${PV}"
+DEPEND="${RDEPEND}"
+BDEPEND="doc? ( virtual/latex-base )"
PATCHES=(
- "${FILESDIR}/${PN}-cflags-no-strip-soname.patch"
- "${FILESDIR}/${PN}-gcc-4.7.patch"
- "${FILESDIR}/${PN}-gmp-5.1.patch"
+ "${FILESDIR}"/${PN}-cflags-no-strip-soname.patch
+ "${FILESDIR}"/${PN}-gcc-4.7.patch
+ "${FILESDIR}"/${PN}-gmp-5.1.patch
)
src_prepare() {
@@ -41,22 +40,19 @@ src_configure() {
}
src_compile() {
- emake
- MODE=shared emake library
- use static-libs && emake library
+ emake MODE=shared
+ emake MODE=shared library
use doc && emake docPdf
}
src_install() {
dobin bin/frobby
dolib.so bin/libfrobby.so
- dosym libfrobby.so "${PREFIX}/usr/$(get_libdir)/libfrobby.so.0"
- use static-libs && dolib.a bin/libfrobby.a
+ dosym libfrobby.so /usr/$(get_libdir)/libfrobby.so.0
- insinto /usr/include
- doins src/frobby.h
+ doheader src/frobby.h
- insinto /usr/include/"${PN}"
+ insinto /usr/include/frobby
doins src/stdinc.h
use doc && dodoc bin/manual.pdf
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/frobby/
@ 2021-06-18 13:15 David Seifert
0 siblings, 0 replies; 7+ messages in thread
From: David Seifert @ 2021-06-18 13:15 UTC (permalink / raw
To: gentoo-commits
commit: 3ca4f1b409291623899cc1195f928a2f786b53ac
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 18 13:15:30 2021 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Fri Jun 18 13:15:30 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ca4f1b4
sci-mathematics/frobby: Depend on dev-libs/gmp[cxx(+)]
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: David Seifert <soap <AT> gentoo.org>
.../frobby/{frobby-0.9.0-r2.ebuild => frobby-0.9.0-r3.ebuild} | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sci-mathematics/frobby/frobby-0.9.0-r2.ebuild b/sci-mathematics/frobby/frobby-0.9.0-r3.ebuild
similarity index 94%
rename from sci-mathematics/frobby/frobby-0.9.0-r2.ebuild
rename to sci-mathematics/frobby/frobby-0.9.0-r3.ebuild
index 3632bf9afd6..ae7086641b0 100644
--- a/sci-mathematics/frobby/frobby-0.9.0-r2.ebuild
+++ b/sci-mathematics/frobby/frobby-0.9.0-r3.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
@@ -14,7 +14,7 @@ SLOT="0"
KEYWORDS="amd64 ~arm x86"
IUSE="doc static-libs"
-RDEPEND="dev-libs/gmp:0=[cxx]"
+RDEPEND="dev-libs/gmp:0=[cxx(+)]"
DEPEND="${RDEPEND}
doc? ( virtual/latex-base )"
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/frobby/
@ 2018-02-08 0:10 Andreas Sturmlechner
0 siblings, 0 replies; 7+ messages in thread
From: Andreas Sturmlechner @ 2018-02-08 0:10 UTC (permalink / raw
To: gentoo-commits
commit: c136c12a1ffebae34f8c15d1033f0fb3de813160
Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Wed Feb 7 18:54:17 2018 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Wed Feb 7 23:59:10 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c136c12a
sci-mathematics/frobby: remove old
Closes: https://github.com/gentoo/gentoo/pull/7117
sci-mathematics/frobby/frobby-0.9.0-r1.ebuild | 54 ---------------------------
1 file changed, 54 deletions(-)
diff --git a/sci-mathematics/frobby/frobby-0.9.0-r1.ebuild b/sci-mathematics/frobby/frobby-0.9.0-r1.ebuild
deleted file mode 100644
index 42427b592bb..00000000000
--- a/sci-mathematics/frobby/frobby-0.9.0-r1.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit eutils
-
-DESCRIPTION="Software system and project for computations with monomial ideals"
-HOMEPAGE="http://www.broune.com/frobby/"
-SRC_URI="http://www.broune.com/frobby/frobby_v${PV}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm x86"
-IUSE="doc static-libs"
-
-RDEPEND="dev-libs/gmp[cxx]"
-DEPEND="${RDEPEND}
- doc? ( virtual/latex-base )"
-
-S="${WORKDIR}/frobby_v${PV}"
-
-src_prepare() {
- epatch \
- "${FILESDIR}/${PN}-cflags-no-strip-soname.patch" \
- "${FILESDIR}/${PN}-gcc-4.7.patch" \
- "${FILESDIR}/${PN}-gmp-5.1.patch"
- # CXXFLAGS are called CPPFLAGS
- sed "s/CPPFLAGS/CXXFLAGS/" -i Makefile || die
-}
-
-src_compile() {
- # Makefile uses the value of CXX which may be defined in /etc/env,
- # breaking cross-compile.
- CXX=$(tc-getCXX) emake
- MODE=shared CXX=$(tc-getCXX) emake library
- use static-libs && CXX=$(tc-getCXX) emake library
- use doc && emake docPdf
-}
-
-src_install() {
- dobin bin/frobby
- dolib.so bin/libfrobby.so
- dosym libfrobby.so "${PREFIX}/usr/$(get_libdir)/libfrobby.so.0"
- use static-libs && dolib.a bin/libfrobby.a
-
- insinto /usr/include
- doins src/frobby.h
-
- insinto /usr/include/"${PN}"
- doins src/stdinc.h
-
- use doc && dodoc bin/manual.pdf
-}
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/frobby/
@ 2017-03-11 13:42 Agostino Sarubbo
0 siblings, 0 replies; 7+ messages in thread
From: Agostino Sarubbo @ 2017-03-11 13:42 UTC (permalink / raw
To: gentoo-commits
commit: 2e72638bf4343ad49f155d82f50591de0019c550
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 11 13:42:16 2017 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Sat Mar 11 13:42:16 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e72638b
sci-mathematics/frobby: x86 stable wrt bug #610038
Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
sci-mathematics/frobby/frobby-0.9.0-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sci-mathematics/frobby/frobby-0.9.0-r2.ebuild b/sci-mathematics/frobby/frobby-0.9.0-r2.ebuild
index cef0fca07ca..3632bf9afd6 100644
--- a/sci-mathematics/frobby/frobby-0.9.0-r2.ebuild
+++ b/sci-mathematics/frobby/frobby-0.9.0-r2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://www.broune.com/frobby/frobby_v${PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="amd64 ~arm ~x86"
+KEYWORDS="amd64 ~arm x86"
IUSE="doc static-libs"
RDEPEND="dev-libs/gmp:0=[cxx]"
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/frobby/
@ 2017-03-11 13:31 Agostino Sarubbo
0 siblings, 0 replies; 7+ messages in thread
From: Agostino Sarubbo @ 2017-03-11 13:31 UTC (permalink / raw
To: gentoo-commits
commit: 3f9af3b89a2b5f8cb03051a66a2fe345a8e3cacb
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 11 13:31:10 2017 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Sat Mar 11 13:31:10 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f9af3b8
sci-mathematics/frobby: amd64 stable wrt bug #610038
Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
sci-mathematics/frobby/frobby-0.9.0-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sci-mathematics/frobby/frobby-0.9.0-r2.ebuild b/sci-mathematics/frobby/frobby-0.9.0-r2.ebuild
index 439748cc843..cef0fca07ca 100644
--- a/sci-mathematics/frobby/frobby-0.9.0-r2.ebuild
+++ b/sci-mathematics/frobby/frobby-0.9.0-r2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://www.broune.com/frobby/frobby_v${PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
+KEYWORDS="amd64 ~arm ~x86"
IUSE="doc static-libs"
RDEPEND="dev-libs/gmp:0=[cxx]"
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/frobby/
@ 2016-03-02 19:29 Markus Meier
0 siblings, 0 replies; 7+ messages in thread
From: Markus Meier @ 2016-03-02 19:29 UTC (permalink / raw
To: gentoo-commits
commit: bcb2dd709ded39ebaa3b33496db7b28682132d31
Author: Markus Meier <maekke <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 2 19:29:12 2016 +0000
Commit: Markus Meier <maekke <AT> gentoo <DOT> org>
CommitDate: Wed Mar 2 19:29:30 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bcb2dd70
sci-mathematics/frobby: add ~arm, bug #573324
Package-Manager: portage-2.2.27
RepoMan-Options: --include-arches="arm"
sci-mathematics/frobby/frobby-0.9.0-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sci-mathematics/frobby/frobby-0.9.0-r1.ebuild b/sci-mathematics/frobby/frobby-0.9.0-r1.ebuild
index 72bcfe7..9e52571 100644
--- a/sci-mathematics/frobby/frobby-0.9.0-r1.ebuild
+++ b/sci-mathematics/frobby/frobby-0.9.0-r1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="http://www.broune.com/frobby/frobby_v${PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="amd64 x86"
+KEYWORDS="amd64 ~arm x86"
IUSE="doc static-libs"
RDEPEND="dev-libs/gmp[cxx]"
^ permalink raw reply related [flat|nested] 7+ messages in thread
end of thread, other threads:[~2022-12-26 15:59 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-02-19 23:46 [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/frobby/ David Seifert
-- strict thread matches above, loose matches on Subject: below --
2022-12-26 15:59 David Seifert
2021-06-18 13:15 David Seifert
2018-02-08 0:10 Andreas Sturmlechner
2017-03-11 13:42 Agostino Sarubbo
2017-03-11 13:31 Agostino Sarubbo
2016-03-02 19:29 Markus Meier
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox