public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/sci:master commit in: sci-libs/fgsl/
@ 2011-06-21 11:54 Justin Lecher
  0 siblings, 0 replies; 8+ messages in thread
From: Justin Lecher @ 2011-06-21 11:54 UTC (permalink / raw
  To: gentoo-commits

commit:     708e6c6696af64604c15aca7edb2d39f7c7f870b
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 21 11:00:03 2011 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Tue Jun 21 11:00:03 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=708e6c66

Added fortran-2.eclass support

(Portage version: 2.2.0_alpha41/git/Linux x86_64, signed Manifest commit with key 70EB7916)

---
 sci-libs/fgsl/ChangeLog         |    5 ++++-
 sci-libs/fgsl/fgsl-0.9.3.ebuild |    4 ++--
 2 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/sci-libs/fgsl/ChangeLog b/sci-libs/fgsl/ChangeLog
index e38e9a5..6e416cd 100644
--- a/sci-libs/fgsl/ChangeLog
+++ b/sci-libs/fgsl/ChangeLog
@@ -1,7 +1,10 @@
 # ChangeLog for sci-libs/fgsl
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  21 Jun 2011; Justin Lecher <jlec@gentoo.org> fgsl-0.9.3.ebuild:
+  Added fortran-2.eclass support
+
 *fgsl-0.9.3 (17 Aug 2010)
 
   17 Aug 2010; Kacper Kowalik <xarthisius@gentoo.org> +fgsl-0.9.3.ebuild,

diff --git a/sci-libs/fgsl/fgsl-0.9.3.ebuild b/sci-libs/fgsl/fgsl-0.9.3.ebuild
index 2d7bbfc..f192213 100644
--- a/sci-libs/fgsl/fgsl-0.9.3.ebuild
+++ b/sci-libs/fgsl/fgsl-0.9.3.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
 
 EAPI=2
 
-inherit eutils multilib toolchain-funcs
+inherit eutils fortran-2 multilib toolchain-funcs
 
 DESCRIPTION="A Fortran interface to the GNU Scientific Library"
 HOMEPAGE="http://www.lrz.de/services/software/mathematik/gsl/fortran/"



^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [gentoo-commits] proj/sci:master commit in: sci-libs/fgsl/
@ 2011-06-24 17:09 Justin Lecher
  0 siblings, 0 replies; 8+ messages in thread
From: Justin Lecher @ 2011-06-24 17:09 UTC (permalink / raw
  To: gentoo-commits

commit:     8f2192a1ae4e22e86718af82cbc619b10e484b43
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 24 12:21:06 2011 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Fri Jun 24 12:21:06 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=8f2192a1

Streamlined fortran-2 eclass usage

(Portage version: 2.2.0_alpha41/git/Linux x86_64, RepoMan options: --force, signed Manifest commit with key 70EB7916)

---
 sci-libs/fgsl/ChangeLog         |    3 +++
 sci-libs/fgsl/fgsl-0.9.3.ebuild |   14 ++++++++------
 2 files changed, 11 insertions(+), 6 deletions(-)

diff --git a/sci-libs/fgsl/ChangeLog b/sci-libs/fgsl/ChangeLog
index 6e416cd..563d67b 100644
--- a/sci-libs/fgsl/ChangeLog
+++ b/sci-libs/fgsl/ChangeLog
@@ -2,6 +2,9 @@
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  24 Jun 2011; Justin Lecher <jlec@gentoo.org> fgsl-0.9.3.ebuild:
+  Streamlined fortran-2 eclass usage
+
   21 Jun 2011; Justin Lecher <jlec@gentoo.org> fgsl-0.9.3.ebuild:
   Added fortran-2.eclass support
 

diff --git a/sci-libs/fgsl/fgsl-0.9.3.ebuild b/sci-libs/fgsl/fgsl-0.9.3.ebuild
index f192213..cf842e8 100644
--- a/sci-libs/fgsl/fgsl-0.9.3.ebuild
+++ b/sci-libs/fgsl/fgsl-0.9.3.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
 
-EAPI=2
+EAPI=4
 
 inherit eutils fortran-2 multilib toolchain-funcs
 
@@ -15,7 +15,9 @@ SLOT="0"
 KEYWORDS="~amd64"
 IUSE="static-libs"
 
-DEPEND=">=sci-libs/gsl-1.14"
+DEPEND="
+	>=sci-libs/gsl-1.14
+	virtual/fortran"
 RDEPEND="${DEPEND}"
 #TODO: make docs
 
@@ -41,13 +43,13 @@ src_configure() {
 }
 
 src_install() {
-	dodoc NEWS README || die
+	dodoc NEWS README
 	ln -s lib${PN}.so.0.0.0 lib${PN}.so.0
 	ln -s lib${PN}.so.0.0.0 lib${PN}.so
-	dolib.so lib${PN}.so* || die
+	dolib.so lib${PN}.so*
 	insinto /usr/include
-	doins ${PN}.mod || die
+	doins ${PN}.mod
 	if use static-libs ; then
-		newlib.a lib${PN}_$(tc-getFC).a lib${PN}.a || die
+		newlib.a lib${PN}_$(tc-getFC).a lib${PN}.a
 	fi
 }



^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [gentoo-commits] proj/sci:master commit in: sci-libs/fgsl/
@ 2011-06-28 17:15 Justin Lecher
  0 siblings, 0 replies; 8+ messages in thread
From: Justin Lecher @ 2011-06-28 17:15 UTC (permalink / raw
  To: gentoo-commits

commit:     161066df942f54897e71bf6fa6e1d872a08b63d6
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 28 17:14:11 2011 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Tue Jun 28 17:14:11 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=161066df

Version Bump

(Portage version: 2.2.0_alpha41/git/Linux x86_64, signed Manifest commit with key 70EB7916)

---
 sci-libs/fgsl/ChangeLog                            |    6 ++++++
 sci-libs/fgsl/fgsl-0.9.3.ebuild                    |    2 ++
 .../fgsl/{fgsl-0.9.3.ebuild => fgsl-0.9.4.ebuild}  |    8 +++++---
 3 files changed, 13 insertions(+), 3 deletions(-)

diff --git a/sci-libs/fgsl/ChangeLog b/sci-libs/fgsl/ChangeLog
index 563d67b..9013e80 100644
--- a/sci-libs/fgsl/ChangeLog
+++ b/sci-libs/fgsl/ChangeLog
@@ -2,6 +2,12 @@
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+*fgsl-0.9.4 (28 Jun 2011)
+
+  28 Jun 2011; Justin Lecher <jlec@gentoo.org> fgsl-0.9.3.ebuild,
+  +fgsl-0.9.4.ebuild:
+  Version Bump
+
   24 Jun 2011; Justin Lecher <jlec@gentoo.org> fgsl-0.9.3.ebuild:
   Streamlined fortran-2 eclass usage
 

diff --git a/sci-libs/fgsl/fgsl-0.9.3.ebuild b/sci-libs/fgsl/fgsl-0.9.3.ebuild
index cf842e8..cb37221 100644
--- a/sci-libs/fgsl/fgsl-0.9.3.ebuild
+++ b/sci-libs/fgsl/fgsl-0.9.3.ebuild
@@ -21,6 +21,8 @@ DEPEND="
 RDEPEND="${DEPEND}"
 #TODO: make docs
 
+FORTRAN_STANDARD=90
+
 src_prepare() {
 	epatch "${FILESDIR}"/${P}-sharedlibs.patch
 	use amd64 && ln -s interface/integer_ilp64.finc integer.finc

diff --git a/sci-libs/fgsl/fgsl-0.9.3.ebuild b/sci-libs/fgsl/fgsl-0.9.4.ebuild
similarity index 92%
copy from sci-libs/fgsl/fgsl-0.9.3.ebuild
copy to sci-libs/fgsl/fgsl-0.9.4.ebuild
index cf842e8..792b0de 100644
--- a/sci-libs/fgsl/fgsl-0.9.3.ebuild
+++ b/sci-libs/fgsl/fgsl-0.9.4.ebuild
@@ -16,13 +16,15 @@ KEYWORDS="~amd64"
 IUSE="static-libs"
 
 DEPEND="
-	>=sci-libs/gsl-1.14
+	>=sci-libs/gsl-1.15
 	virtual/fortran"
 RDEPEND="${DEPEND}"
 #TODO: make docs
 
+FORTRAN_STANDARD=90
+
 src_prepare() {
-	epatch "${FILESDIR}"/${P}-sharedlibs.patch
+	epatch "${FILESDIR}"/${PN}-0.9.3-sharedlibs.patch
 	use amd64 && ln -s interface/integer_ilp64.finc integer.finc
 	use x86 && ln -s interface/integer_ilp32.finc integer.finc
 	cat <<- EOF > "${S}/make.inc"
@@ -39,7 +41,7 @@ src_prepare() {
 }
 
 src_configure() {
-	return
+:
 }
 
 src_install() {



^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [gentoo-commits] proj/sci:master commit in: sci-libs/fgsl/
@ 2012-03-01  9:48 Kacper Kowalik
  0 siblings, 0 replies; 8+ messages in thread
From: Kacper Kowalik @ 2012-03-01  9:48 UTC (permalink / raw
  To: gentoo-commits

commit:     2b3faa305d0110f18ff5f1ddc698277fd99302f0
Author:     Kacper Kowalik (Xarthisius) <xarthisius <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 29 20:25:50 2012 +0000
Commit:     Kacper Kowalik <xarthisius <AT> gentoo <DOT> org>
CommitDate: Wed Feb 29 20:25:50 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=2b3faa30

[sci-libs/fgsl] add prefix love

---
 sci-libs/fgsl/fgsl-0.9.4.ebuild |    5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/sci-libs/fgsl/fgsl-0.9.4.ebuild b/sci-libs/fgsl/fgsl-0.9.4.ebuild
index 792b0de..d5fef48 100644
--- a/sci-libs/fgsl/fgsl-0.9.4.ebuild
+++ b/sci-libs/fgsl/fgsl-0.9.4.ebuild
@@ -12,11 +12,10 @@ SRC_URI="http://www.lrz.de/services/software/mathematik/gsl/fortran/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~amd64-linux"
 IUSE="static-libs"
 
-DEPEND="
-	>=sci-libs/gsl-1.15
+DEPEND=">=sci-libs/gsl-1.15
 	virtual/fortran"
 RDEPEND="${DEPEND}"
 #TODO: make docs



^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [gentoo-commits] proj/sci:master commit in: sci-libs/fgsl/
@ 2014-01-06 19:27 Justin Lecher
  0 siblings, 0 replies; 8+ messages in thread
From: Justin Lecher @ 2014-01-06 19:27 UTC (permalink / raw
  To: gentoo-commits

commit:     8de8e76ee16740994be36c8e584fe8ead21550ac
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Mon Jan  6 19:25:00 2014 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Mon Jan  6 19:25:00 2014 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=8de8e76e

sci-libs/fgsl: Don't use plain pkg-config

Package-Manager: portage-2.2.8

---
 sci-libs/fgsl/ChangeLog         |  6 +++++-
 sci-libs/fgsl/fgsl-0.9.3.ebuild | 30 ++++++++++++++++++------------
 sci-libs/fgsl/fgsl-0.9.4.ebuild | 29 ++++++++++++++++++-----------
 sci-libs/fgsl/metadata.xml      | 12 ++++++------
 4 files changed, 47 insertions(+), 30 deletions(-)

diff --git a/sci-libs/fgsl/ChangeLog b/sci-libs/fgsl/ChangeLog
index 9013e80..d157df1 100644
--- a/sci-libs/fgsl/ChangeLog
+++ b/sci-libs/fgsl/ChangeLog
@@ -1,7 +1,11 @@
 # ChangeLog for sci-libs/fgsl
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  06 Jan 2014; Justin Lecher <jlec@gentoo.org> fgsl-0.9.3.ebuild,
+  fgsl-0.9.4.ebuild, metadata.xml:
+  Don't use plain pkg-config
+
 *fgsl-0.9.4 (28 Jun 2011)
 
   28 Jun 2011; Justin Lecher <jlec@gentoo.org> fgsl-0.9.3.ebuild,

diff --git a/sci-libs/fgsl/fgsl-0.9.3.ebuild b/sci-libs/fgsl/fgsl-0.9.3.ebuild
index cb37221..93e52e3 100644
--- a/sci-libs/fgsl/fgsl-0.9.3.ebuild
+++ b/sci-libs/fgsl/fgsl-0.9.3.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
 
-EAPI=4
+EAPI=5
 
 inherit eutils fortran-2 multilib toolchain-funcs
 
@@ -15,28 +15,34 @@ SLOT="0"
 KEYWORDS="~amd64"
 IUSE="static-libs"
 
-DEPEND="
-	>=sci-libs/gsl-1.14
-	virtual/fortran"
-RDEPEND="${DEPEND}"
+RDEPEND=">=sci-libs/gsl-1.14"
+DEPEND="${RDEPEND}
+	virtual/pkgconfig"
 #TODO: make docs
 
 FORTRAN_STANDARD=90
 
 src_prepare() {
 	epatch "${FILESDIR}"/${P}-sharedlibs.patch
-	use amd64 && ln -s interface/integer_ilp64.finc integer.finc
-	use x86 && ln -s interface/integer_ilp32.finc integer.finc
+	if use amd64; then
+		ln -s interface/integer_ilp64.finc integer.finc || die
+	elif use x86; then
+		ln -s interface/integer_ilp32.finc integer.finc || die
+	else
+		die "Don't know who you are"
+	fi
+
 	cat <<- EOF > "${S}/make.inc"
 		F90 = $(tc-getFC)
 		CC = $(tc-getCC)
-		GSL_LIB = $(pkg-config --libs gsl)
-		GSL_INC = $(pkg-config --cflags gsl)
+		GSL_LIB = $($(tc-getPKG_CONFIG) --libs gsl)
+		GSL_INC = $($(tc-getPKG_CONFIG) --cflags gsl)
 		PREFIX = /usr
 		ARFLAGS = -csrv
 		FPP = -cpp
 		LIB = $(get_libdir)
 	EOF
+
 	use static-libs && echo "STATIC_LIBS = yes" >> "${S}/make.inc"
 }
 
@@ -46,8 +52,8 @@ src_configure() {
 
 src_install() {
 	dodoc NEWS README
-	ln -s lib${PN}.so.0.0.0 lib${PN}.so.0
-	ln -s lib${PN}.so.0.0.0 lib${PN}.so
+	ln -s lib${PN}.so.0.0.0 lib${PN}.so.0 || die
+	ln -s lib${PN}.so.0.0.0 lib${PN}.so || die
 	dolib.so lib${PN}.so*
 	insinto /usr/include
 	doins ${PN}.mod

diff --git a/sci-libs/fgsl/fgsl-0.9.4.ebuild b/sci-libs/fgsl/fgsl-0.9.4.ebuild
index d5fef48..e5e717f 100644
--- a/sci-libs/fgsl/fgsl-0.9.4.ebuild
+++ b/sci-libs/fgsl/fgsl-0.9.4.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
 
-EAPI=4
+EAPI=5
 
 inherit eutils fortran-2 multilib toolchain-funcs
 
@@ -15,27 +15,34 @@ SLOT="0"
 KEYWORDS="~amd64 ~amd64-linux"
 IUSE="static-libs"
 
-DEPEND=">=sci-libs/gsl-1.15
-	virtual/fortran"
-RDEPEND="${DEPEND}"
+RDEPEND=">=sci-libs/gsl-1.14"
+DEPEND="${RDEPEND}
+	virtual/pkgconfig"
 #TODO: make docs
 
 FORTRAN_STANDARD=90
 
 src_prepare() {
 	epatch "${FILESDIR}"/${PN}-0.9.3-sharedlibs.patch
-	use amd64 && ln -s interface/integer_ilp64.finc integer.finc
-	use x86 && ln -s interface/integer_ilp32.finc integer.finc
+	if use amd64; then
+		ln -s interface/integer_ilp64.finc integer.finc || die
+	elif use x86; then
+		ln -s interface/integer_ilp32.finc integer.finc || die
+	else
+		die "Don't know who you are"
+	fi
+
 	cat <<- EOF > "${S}/make.inc"
 		F90 = $(tc-getFC)
 		CC = $(tc-getCC)
-		GSL_LIB = $(pkg-config --libs gsl)
-		GSL_INC = $(pkg-config --cflags gsl)
+		GSL_LIB = $($(tc-getPKG_CONFIG) --libs gsl)
+		GSL_INC = $($(tc-getPKG_CONFIG) --cflags gsl)
 		PREFIX = /usr
 		ARFLAGS = -csrv
 		FPP = -cpp
 		LIB = $(get_libdir)
 	EOF
+
 	use static-libs && echo "STATIC_LIBS = yes" >> "${S}/make.inc"
 }
 
@@ -45,8 +52,8 @@ src_configure() {
 
 src_install() {
 	dodoc NEWS README
-	ln -s lib${PN}.so.0.0.0 lib${PN}.so.0
-	ln -s lib${PN}.so.0.0.0 lib${PN}.so
+	ln -s lib${PN}.so.0.0.0 lib${PN}.so.0 || die
+	ln -s lib${PN}.so.0.0.0 lib${PN}.so || die
 	dolib.so lib${PN}.so*
 	insinto /usr/include
 	doins ${PN}.mod

diff --git a/sci-libs/fgsl/metadata.xml b/sci-libs/fgsl/metadata.xml
index 111e6a5..9cbb8f9 100644
--- a/sci-libs/fgsl/metadata.xml
+++ b/sci-libs/fgsl/metadata.xml
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-	<herd>sci</herd>
-	<maintainer>
-		<email>xarthisius@gentoo.org</email>
-		<name>Kacper Kowalik</name>
-	</maintainer>
-	<longdescription>FGSL: A Fortran interface to the GNU Scientific Library</longdescription>
+  <herd>sci</herd>
+  <maintainer>
+    <email>xarthisius@gentoo.org</email>
+    <name>Kacper Kowalik</name>
+  </maintainer>
+  <longdescription>FGSL: A Fortran interface to the GNU Scientific Library</longdescription>
 </pkgmetadata>


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [gentoo-commits] proj/sci:master commit in: sci-libs/fgsl/
@ 2021-01-13 21:06 Andrew Ammerlaan
  0 siblings, 0 replies; 8+ messages in thread
From: Andrew Ammerlaan @ 2021-01-13 21:06 UTC (permalink / raw
  To: gentoo-commits

commit:     7b513c902eaf8bf76913d274bb513d994d786982
Author:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Wed Jan 13 20:54:44 2021 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Wed Jan 13 20:54:44 2021 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=7b513c90

sci-libs/fgsl: use https

Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>

 sci-libs/fgsl/fgsl-0.9.4.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/sci-libs/fgsl/fgsl-0.9.4.ebuild b/sci-libs/fgsl/fgsl-0.9.4.ebuild
index dc4dc2adf..e59e79bf9 100644
--- a/sci-libs/fgsl/fgsl-0.9.4.ebuild
+++ b/sci-libs/fgsl/fgsl-0.9.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -6,8 +6,8 @@ EAPI=5
 inherit eutils fortran-2 multilib toolchain-funcs
 
 DESCRIPTION="A Fortran interface to the GNU Scientific Library"
-HOMEPAGE="http://www.lrz.de/services/software/mathematik/gsl/fortran/"
-SRC_URI="http://www.lrz.de/services/software/mathematik/gsl/fortran/${P}.tar.gz"
+HOMEPAGE="https://www.lrz.de/services/software/mathematik/gsl/fortran/"
+SRC_URI="https://www.lrz.de/services/software/mathematik/gsl/fortran/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [gentoo-commits] proj/sci:master commit in: sci-libs/fgsl/
@ 2021-01-30 15:19 Andrew Ammerlaan
  0 siblings, 0 replies; 8+ messages in thread
From: Andrew Ammerlaan @ 2021-01-30 15:19 UTC (permalink / raw
  To: gentoo-commits

commit:     9dc518f90f76c03e5b33237eb298ee11d8ff4e0e
Author:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Sat Jan 30 15:18:44 2021 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Sat Jan 30 15:18:44 2021 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=9dc518f9

sci-libs/fgsl: remove short long description

Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>

 sci-libs/fgsl/metadata.xml | 1 -
 1 file changed, 1 deletion(-)

diff --git a/sci-libs/fgsl/metadata.xml b/sci-libs/fgsl/metadata.xml
index 51d30f204..4aad8620d 100644
--- a/sci-libs/fgsl/metadata.xml
+++ b/sci-libs/fgsl/metadata.xml
@@ -9,5 +9,4 @@
 		<email>sci@gentoo.org</email>
 		<name>Gentoo Science Project</name>
 	</maintainer>
-	<longdescription>FGSL: A Fortran interface to the GNU Scientific Library</longdescription>
 </pkgmetadata>


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [gentoo-commits] proj/sci:master commit in: sci-libs/fgsl/
@ 2021-12-16 10:57 Andrew Ammerlaan
  0 siblings, 0 replies; 8+ messages in thread
From: Andrew Ammerlaan @ 2021-12-16 10:57 UTC (permalink / raw
  To: gentoo-commits

commit:     e1282f9edd31c30290c196460cdb614595d3f444
Author:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 16 10:44:10 2021 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Thu Dec 16 10:44:10 2021 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=e1282f9e

sci-libs/fgsl: drop UnusedInherits

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>

 sci-libs/fgsl/fgsl-1.3.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-libs/fgsl/fgsl-1.3.0.ebuild b/sci-libs/fgsl/fgsl-1.3.0.ebuild
index 58da9c18b..01c415ad2 100644
--- a/sci-libs/fgsl/fgsl-1.3.0.ebuild
+++ b/sci-libs/fgsl/fgsl-1.3.0.ebuild
@@ -6,7 +6,7 @@ EAPI=7
 DOCS_BUILDER="doxygen"
 DOCS_DEPEND="media-gfx/graphviz"
 
-inherit autotools docs fortran-2 toolchain-funcs
+inherit docs fortran-2
 
 DESCRIPTION="A Fortran interface to the GNU Scientific Library"
 HOMEPAGE="https://doku.lrz.de/display/PUBLIC/FGSL+-+A+Fortran+interface+to+the+GNU+Scientific+Library/"


^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2021-12-16 10:57 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-06-28 17:15 [gentoo-commits] proj/sci:master commit in: sci-libs/fgsl/ Justin Lecher
  -- strict thread matches above, loose matches on Subject: below --
2021-12-16 10:57 Andrew Ammerlaan
2021-01-30 15:19 Andrew Ammerlaan
2021-01-13 21:06 Andrew Ammerlaan
2014-01-06 19:27 Justin Lecher
2012-03-01  9:48 Kacper Kowalik
2011-06-24 17:09 Justin Lecher
2011-06-21 11:54 Justin Lecher

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox