* [gentoo-commits] proj/sci:master commit in: sci-libs/elmer-hutiter/, sci-libs/elmer-hutiter/files/
@ 2013-12-03 14:53 Justin Lecher
0 siblings, 0 replies; 3+ messages in thread
From: Justin Lecher @ 2013-12-03 14:53 UTC (permalink / raw
To: gentoo-commits
commit: e962f32ed979ded871322bbcba8f10de0710bc93
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 3 08:21:36 2013 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Tue Dec 3 08:21:36 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=e962f32e
sci-libs/elmer-hutiter: Bump EAPI; fix license; fix DESCRIPTION; drop keywords from live ebuild; use correct phase functions; simplify configure; build shared libraries
Package-Manager: portage-2.2.7
---
sci-libs/elmer-hutiter/ChangeLog | 12 +++++
.../elmer-hutiter/elmer-hutiter-5.4.1-r1.ebuild | 53 ---------------------
sci-libs/elmer-hutiter/elmer-hutiter-5.4.1.ebuild | 38 +++++++++++++++
sci-libs/elmer-hutiter/elmer-hutiter-9999.ebuild | 54 +++++++++-------------
.../files/elmer-hutiter-5.4.1-shared.patch | 33 +++++++++++++
sci-libs/elmer-hutiter/metadata.xml | 5 ++
6 files changed, 111 insertions(+), 84 deletions(-)
diff --git a/sci-libs/elmer-hutiter/ChangeLog b/sci-libs/elmer-hutiter/ChangeLog
new file mode 100644
index 0000000..ae14a71
--- /dev/null
+++ b/sci-libs/elmer-hutiter/ChangeLog
@@ -0,0 +1,12 @@
+# ChangeLog for sci-libs/elmer-hutiter
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+*elmer-hutiter-5.4.1 (03 Dec 2013)
+
+ 03 Dec 2013; Justin Lecher <jlec@gentoo.org> +elmer-hutiter-5.4.1.ebuild,
+ -elmer-hutiter-5.4.1-r1.ebuild, elmer-hutiter-9999.ebuild,
+ +files/elmer-hutiter-5.4.1-shared.patch, +metadata.xml:
+ Bump EAPI; fix license; fix DESCRIPTION; drop keywords from live ebuild; use
+ correct phase functions; simplify configure; build shared libraries
+
diff --git a/sci-libs/elmer-hutiter/elmer-hutiter-5.4.1-r1.ebuild b/sci-libs/elmer-hutiter/elmer-hutiter-5.4.1-r1.ebuild
deleted file mode 100644
index c9be1bc..0000000
--- a/sci-libs/elmer-hutiter/elmer-hutiter-5.4.1-r1.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI="4"
-
-inherit autotools eutils
-
-ELMER_ROOT="elmerfem"
-MY_PN=${PN/elmer-/}
-
-DESCRIPTION="Elmer is a collection of finite element programs, libraries, and visualization tools, hutiter library"
-HOMEPAGE="http://www.csc.fi/english/pages/elmer"
-SRC_URI="http://elmerfem.svn.sourceforge.net/viewvc/${ELMER_ROOT}/release/${PV}/${MY_PN}/?view=tar -> ${P}.tar.gz"
-RESTRICT="mirror"
-ESVN_REPO_URI="https://elmerfem.svn.sourceforge.net/svnroot/elmerfem/trunk/"
-ESVN_PROJECT="${MY_PN}"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
-IUSE="debug"
-DEPEND="sys-libs/glibc
- virtual/blas"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${PV}/hutiter"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- # configure must be executable
- chmod +x configure
- eautoreconf
-}
-
-src_compile() {
- cd "${S}"
- local myconf
- export FC="gfortran"
- export F77="gfortran"
- myconf="$myconf --with-blas"
- use debug &&
- myconf="${myconf} --with-debug" ||
- myconf="${myconf} --without-debug"
- econf $myconf || die "econf failed"
- emake || die "emake failed"
-}
-
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
-}
diff --git a/sci-libs/elmer-hutiter/elmer-hutiter-5.4.1.ebuild b/sci-libs/elmer-hutiter/elmer-hutiter-5.4.1.ebuild
new file mode 100644
index 0000000..fbf90d4
--- /dev/null
+++ b/sci-libs/elmer-hutiter/elmer-hutiter-5.4.1.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2013 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+AUTOTOOLS_AUTORECONF=true
+
+inherit autotools-utils toolchain-funcs
+
+ELMER_ROOT="elmerfem"
+MY_PN=${PN/elmer-/}
+
+DESCRIPTION="Finite element programs, libraries, and visualization tools - hutiter library"
+HOMEPAGE="http://www.csc.fi/english/pages/elmer"
+SRC_URI="http://elmerfem.svn.sourceforge.net/viewvc/${ELMER_ROOT}/release/${PV}/${MY_PN}/?view=tar -> ${P}.tar.gz"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="debug static-libs"
+
+RDEPEND="virtual/blas"
+DEPEND="${RDEPEND}
+ virtual/pkgconfig"
+
+S="${WORKDIR}"/hutiter
+
+PATCHES=( "${FILESDIR}"/${P}-shared.patch )
+
+src_configure() {
+ local myeconfargs=(
+ --enable-shared
+ $(use_with debug) \
+ --with-blas="$($(tc-getPKG_CONFIG) --libs blas)"
+ )
+ autotools-utils_src_configure
+}
diff --git a/sci-libs/elmer-hutiter/elmer-hutiter-9999.ebuild b/sci-libs/elmer-hutiter/elmer-hutiter-9999.ebuild
index d0f90b9..17125e1 100644
--- a/sci-libs/elmer-hutiter/elmer-hutiter-9999.ebuild
+++ b/sci-libs/elmer-hutiter/elmer-hutiter-9999.ebuild
@@ -1,48 +1,40 @@
-# Copyright 1999-2007 Gentoo Foundation
+# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
-EAPI="4"
+EAPI=5
-inherit autotools eutils subversion
+AUTOTOOLS_AUTORECONF=true
+
+inherit autotools-utils toolchain-funcs subversion
ELMER_ROOT="elmerfem"
MY_PN=${PN/elmer-/}
-DESCRIPTION="Elmer is a collection of finite element programs, libraries, and visualization tools, hutiter library"
+DESCRIPTION="Finite element programs, libraries, and visualization tools - hutiter library"
HOMEPAGE="http://www.csc.fi/english/pages/elmer"
-#SRC_URI="http://elmerfem.svn.sourceforge.net/viewvc/${ELMER_ROOT}/release/${PV}/${MY_PN}/?view=tar -> ${P}.tar.gz"
SRC_URI=""
-RESTRICT="mirror"
ESVN_REPO_URI="https://elmerfem.svn.sourceforge.net/svnroot/elmerfem/trunk/${MY_PN}"
ESVN_PROJECT="${MY_PN}"
-LICENSE="GPL-2"
+LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
-IUSE="debug"
-DEPEND="sys-libs/glibc
- virtual/blas"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${PV}/hutiter"
-
-src_prepare() {
- #unpack ${A}
- cd "${S}"
- # configure must be executable
- #chmod +x configure
- eautoreconf
-}
+KEYWORDS=""
+IUSE="debug static-libs"
+
+RDEPEND="virtual/blas"
+DEPEND="${RDEPEND}
+ virtual/pkgconfig"
+
+S="${WORKDIR}"/hutiter
+
+PATCHES=( "${FILESDIR}"/${PN}-5.4.1-shared.patch )
src_configure() {
- cd "${S}"
- local myconf
- export FC="gfortran"
- export F77="gfortran"
- myconf="$myconf --with-blas"
- use debug &&
- myconf="${myconf} --with-debug" ||
- myconf="${myconf} --without-debug"
- econf $myconf || die "econf failed"
+ local myeconfargs=(
+ --enable-shared
+ $(use_with debug) \
+ --with-blas="$($(tc-getPKG_CONFIG) --libs blas)"
+ )
+ autotools-utils_src_configure
}
diff --git a/sci-libs/elmer-hutiter/files/elmer-hutiter-5.4.1-shared.patch b/sci-libs/elmer-hutiter/files/elmer-hutiter-5.4.1-shared.patch
new file mode 100644
index 0000000..cc7e0cd
--- /dev/null
+++ b/sci-libs/elmer-hutiter/files/elmer-hutiter-5.4.1-shared.patch
@@ -0,0 +1,33 @@
+ src/Makefile.am | 5 +++--
+ 1 file changed, 3 insertions(+), 2 deletions(-)
+
+diff --git a/src/Makefile.am b/src/Makefile.am
+index bdfb73f..8800d1a 100755
+--- a/src/Makefile.am
++++ b/src/Makefile.am
+@@ -49,8 +49,9 @@ COMMON_SRCS = \
+
+
+
+-lib_LIBRARIES = libhuti.a
+-libhuti_a_SOURCES = $(COMMON_SRCS)
++lib_LTLIBRARIES = libhuti.la
++libhuti_la_SOURCES = $(COMMON_SRCS)
++libhuti_la_LIBADD =
+
+ #################################################################################
+ # If sources are missing generate them with the preprocessor.
+ configure.in | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/configure.in b/configure.in
+index 5b25b28..7356ca4 100755
+--- a/configure.in
++++ b/configure.in
+@@ -1,5 +1,5 @@
+ AC_INIT(src/huti_cg.src)
+-
++LT_INIT
+ dnl AC_PREREQ(2.59c)
+
+ AC_CANONICAL_HOST
diff --git a/sci-libs/elmer-hutiter/metadata.xml b/sci-libs/elmer-hutiter/metadata.xml
new file mode 100644
index 0000000..897aa2e
--- /dev/null
+++ b/sci-libs/elmer-hutiter/metadata.xml
@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <herd>sci</herd>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-libs/elmer-hutiter/, sci-libs/elmer-hutiter/files/
@ 2013-12-03 14:53 Justin Lecher
0 siblings, 0 replies; 3+ messages in thread
From: Justin Lecher @ 2013-12-03 14:53 UTC (permalink / raw
To: gentoo-commits
commit: 09f2ad6a399b14f6f2c3bb821d10bdc1b9d6440e
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 3 09:38:41 2013 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Tue Dec 3 09:38:41 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=09f2ad6a
sci-libs/elmer-hutiter: Fix version; force execution of all phases; Fix LICENSE
Package-Manager: portage-2.2.7
---
sci-libs/elmer-hutiter/ChangeLog | 6 ++++++
...elmer-hutiter-5.4.1.ebuild => elmer-hutiter-6.0_p4651.ebuild} | 4 ++--
sci-libs/elmer-hutiter/elmer-hutiter-9999.ebuild | 9 +++++++--
...r-5.4.1-shared.patch => elmer-hutiter-6.0_p4651-shared.patch} | 0
4 files changed, 15 insertions(+), 4 deletions(-)
diff --git a/sci-libs/elmer-hutiter/ChangeLog b/sci-libs/elmer-hutiter/ChangeLog
index ae14a71..dc6c5af 100644
--- a/sci-libs/elmer-hutiter/ChangeLog
+++ b/sci-libs/elmer-hutiter/ChangeLog
@@ -2,6 +2,12 @@
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+ 03 Dec 2013; Justin Lecher <jlec@gentoo.org> -elmer-hutiter-5.4.1.ebuild,
+ +elmer-hutiter-6.0_p4651.ebuild, elmer-hutiter-9999.ebuild,
+ -files/elmer-hutiter-5.4.1-shared.patch,
+ +files/elmer-hutiter-6.0_p4651-shared.patch:
+ Fix version; force execution of all phases; Fix LICENSE
+
*elmer-hutiter-5.4.1 (03 Dec 2013)
03 Dec 2013; Justin Lecher <jlec@gentoo.org> +elmer-hutiter-5.4.1.ebuild,
diff --git a/sci-libs/elmer-hutiter/elmer-hutiter-5.4.1.ebuild b/sci-libs/elmer-hutiter/elmer-hutiter-6.0_p4651.ebuild
similarity index 90%
rename from sci-libs/elmer-hutiter/elmer-hutiter-5.4.1.ebuild
rename to sci-libs/elmer-hutiter/elmer-hutiter-6.0_p4651.ebuild
index fbf90d4..26e9882 100644
--- a/sci-libs/elmer-hutiter/elmer-hutiter-5.4.1.ebuild
+++ b/sci-libs/elmer-hutiter/elmer-hutiter-6.0_p4651.ebuild
@@ -13,9 +13,9 @@ MY_PN=${PN/elmer-/}
DESCRIPTION="Finite element programs, libraries, and visualization tools - hutiter library"
HOMEPAGE="http://www.csc.fi/english/pages/elmer"
-SRC_URI="http://elmerfem.svn.sourceforge.net/viewvc/${ELMER_ROOT}/release/${PV}/${MY_PN}/?view=tar -> ${P}.tar.gz"
+SRC_URI="http://elmerfem.svn.sourceforge.net/viewvc/${ELMER_ROOT}/release/${PV%_p*}/${MY_PN}/?view=tar&pathrev=4651 -> ${P}.tar.gz"
-LICENSE="LGPL-2.1"
+LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="debug static-libs"
diff --git a/sci-libs/elmer-hutiter/elmer-hutiter-9999.ebuild b/sci-libs/elmer-hutiter/elmer-hutiter-9999.ebuild
index 17125e1..cbeef82 100644
--- a/sci-libs/elmer-hutiter/elmer-hutiter-9999.ebuild
+++ b/sci-libs/elmer-hutiter/elmer-hutiter-9999.ebuild
@@ -17,7 +17,7 @@ SRC_URI=""
ESVN_REPO_URI="https://elmerfem.svn.sourceforge.net/svnroot/elmerfem/trunk/${MY_PN}"
ESVN_PROJECT="${MY_PN}"
-LICENSE="LGPL-2.1"
+LICENSE="GPL-2"
SLOT="0"
KEYWORDS=""
IUSE="debug static-libs"
@@ -28,7 +28,12 @@ DEPEND="${RDEPEND}
S="${WORKDIR}"/hutiter
-PATCHES=( "${FILESDIR}"/${PN}-5.4.1-shared.patch )
+PATCHES=( "${FILESDIR}"/${PN}-6.0_p4651-shared.patch )
+
+src_prepare() {
+ subversion_src_prepare
+ autotools-utils_src_prepare
+}
src_configure() {
local myeconfargs=(
diff --git a/sci-libs/elmer-hutiter/files/elmer-hutiter-5.4.1-shared.patch b/sci-libs/elmer-hutiter/files/elmer-hutiter-6.0_p4651-shared.patch
similarity index 100%
rename from sci-libs/elmer-hutiter/files/elmer-hutiter-5.4.1-shared.patch
rename to sci-libs/elmer-hutiter/files/elmer-hutiter-6.0_p4651-shared.patch
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-libs/elmer-hutiter/, sci-libs/elmer-hutiter/files/
@ 2021-01-30 14:30 Andrew Ammerlaan
0 siblings, 0 replies; 3+ messages in thread
From: Andrew Ammerlaan @ 2021-01-30 14:30 UTC (permalink / raw
To: gentoo-commits
commit: d252a53b3aecc7fb4e8ee158aac93f582136944c
Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Sat Jan 30 14:18:56 2021 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Sat Jan 30 14:18:56 2021 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=d252a53b
sci-libs/elmer-hutiter: remove pack, included in elmer-fem now
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
.../elmer-hutiter/elmer-hutiter-6.0_p4651.ebuild | 37 ------------------
sci-libs/elmer-hutiter/elmer-hutiter-9999.ebuild | 44 ----------------------
.../files/elmer-hutiter-6.0_p4651-shared.patch | 33 ----------------
sci-libs/elmer-hutiter/metadata.xml | 11 ------
4 files changed, 125 deletions(-)
diff --git a/sci-libs/elmer-hutiter/elmer-hutiter-6.0_p4651.ebuild b/sci-libs/elmer-hutiter/elmer-hutiter-6.0_p4651.ebuild
deleted file mode 100644
index 9cf9a3c00..000000000
--- a/sci-libs/elmer-hutiter/elmer-hutiter-6.0_p4651.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-AUTOTOOLS_AUTORECONF=true
-
-inherit autotools-utils toolchain-funcs
-
-ELMER_ROOT="elmerfem"
-MY_PN=${PN/elmer-/}
-
-DESCRIPTION="Finite element programs, libraries, and visualization tools - hutiter library"
-HOMEPAGE="http://www.csc.fi/english/pages/elmer"
-SRC_URI="http://elmerfem.svn.sourceforge.net/viewvc/${ELMER_ROOT}/release/${PV%_p*}/${MY_PN}/?view=tar&pathrev=4651 -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="debug static-libs"
-
-RDEPEND="virtual/blas"
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-S="${WORKDIR}"/hutiter
-
-PATCHES=( "${FILESDIR}"/${P}-shared.patch )
-
-src_configure() {
- local myeconfargs=(
- --enable-shared
- $(use_with debug) \
- --with-blas="$($(tc-getPKG_CONFIG) --libs blas)"
- )
- autotools-utils_src_configure
-}
diff --git a/sci-libs/elmer-hutiter/elmer-hutiter-9999.ebuild b/sci-libs/elmer-hutiter/elmer-hutiter-9999.ebuild
deleted file mode 100644
index 7e053befa..000000000
--- a/sci-libs/elmer-hutiter/elmer-hutiter-9999.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-AUTOTOOLS_AUTORECONF=true
-
-inherit autotools-utils toolchain-funcs subversion
-
-ELMER_ROOT="elmerfem"
-MY_PN=${PN/elmer-/}
-
-DESCRIPTION="Finite element programs, libraries, and visualization tools - hutiter library"
-HOMEPAGE="http://www.csc.fi/english/pages/elmer"
-SRC_URI=""
-ESVN_REPO_URI="https://elmerfem.svn.sourceforge.net/svnroot/elmerfem/trunk/${MY_PN}"
-ESVN_PROJECT="${MY_PN}"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS=""
-IUSE="debug static-libs"
-
-RDEPEND="virtual/blas"
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-S="${WORKDIR}"/hutiter
-
-PATCHES=( "${FILESDIR}"/${PN}-6.0_p4651-shared.patch )
-
-src_prepare() {
- subversion_src_prepare
- autotools-utils_src_prepare
-}
-
-src_configure() {
- local myeconfargs=(
- --enable-shared
- $(use_with debug) \
- --with-blas="$($(tc-getPKG_CONFIG) --libs blas)"
- )
- autotools-utils_src_configure
-}
diff --git a/sci-libs/elmer-hutiter/files/elmer-hutiter-6.0_p4651-shared.patch b/sci-libs/elmer-hutiter/files/elmer-hutiter-6.0_p4651-shared.patch
deleted file mode 100644
index cc7e0cd11..000000000
--- a/sci-libs/elmer-hutiter/files/elmer-hutiter-6.0_p4651-shared.patch
+++ /dev/null
@@ -1,33 +0,0 @@
- src/Makefile.am | 5 +++--
- 1 file changed, 3 insertions(+), 2 deletions(-)
-
-diff --git a/src/Makefile.am b/src/Makefile.am
-index bdfb73f..8800d1a 100755
---- a/src/Makefile.am
-+++ b/src/Makefile.am
-@@ -49,8 +49,9 @@ COMMON_SRCS = \
-
-
-
--lib_LIBRARIES = libhuti.a
--libhuti_a_SOURCES = $(COMMON_SRCS)
-+lib_LTLIBRARIES = libhuti.la
-+libhuti_la_SOURCES = $(COMMON_SRCS)
-+libhuti_la_LIBADD =
-
- #################################################################################
- # If sources are missing generate them with the preprocessor.
- configure.in | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/configure.in b/configure.in
-index 5b25b28..7356ca4 100755
---- a/configure.in
-+++ b/configure.in
-@@ -1,5 +1,5 @@
- AC_INIT(src/huti_cg.src)
--
-+LT_INIT
- dnl AC_PREREQ(2.59c)
-
- AC_CANONICAL_HOST
diff --git a/sci-libs/elmer-hutiter/metadata.xml b/sci-libs/elmer-hutiter/metadata.xml
deleted file mode 100644
index 070aa2029..000000000
--- a/sci-libs/elmer-hutiter/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>sci@gentoo.org</email>
- <name>Gentoo Science Project</name>
- </maintainer>
- <upstream>
- <remote-id type="sourceforge">svn</remote-id>
- </upstream>
-</pkgmetadata>
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2021-01-30 14:30 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-03 14:53 [gentoo-commits] proj/sci:master commit in: sci-libs/elmer-hutiter/, sci-libs/elmer-hutiter/files/ Justin Lecher
-- strict thread matches above, loose matches on Subject: below --
2013-12-03 14:53 Justin Lecher
2021-01-30 14:30 Andrew Ammerlaan
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox