* [gentoo-commits] proj/sci:master commit in: sci-physics/atompaw2abinit/
@ 2011-02-25 5:20 Honza Macháček
0 siblings, 0 replies; 5+ messages in thread
From: Honza Macháček @ 2011-02-25 5:20 UTC (permalink / raw
To: gentoo-commits
commit: dcb3e14bb9188a1ee00c3ed0fea612bc8f6abaec
Author: Honza Macháček <Hloupy.Honza <AT> centrum <DOT> cz>
AuthorDate: Fri Feb 25 05:20:23 2011 +0000
Commit: Honza Macháček <Hloupy.Honza <AT> centrum <DOT> cz>
CommitDate: Fri Feb 25 05:20:23 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=dcb3e14b
A supporting utility of sci-physics/abinit to convert the data generated by sci-physics/atompaw for the use with abinit
---
sci-physics/atompaw2abinit/ChangeLog | 11 ++++
.../atompaw2abinit/atompaw2abinit-3.3.0.ebuild | 52 ++++++++++++++++++++
2 files changed, 63 insertions(+), 0 deletions(-)
diff --git a/sci-physics/atompaw2abinit/ChangeLog b/sci-physics/atompaw2abinit/ChangeLog
new file mode 100644
index 0000000..7b94567
--- /dev/null
+++ b/sci-physics/atompaw2abinit/ChangeLog
@@ -0,0 +1,11 @@
+# ChangeLog for sci-physics/atompaw2abinit
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+*atompaw2abinit-3.3.0 (25 Feb 2011)
+
+ 25 Feb 2011; Honza Macháček <Hloupy.Honza@centrum.cz>
+ +atompaw2abinit-3.3.0.ebuild:
+ A supporting utility of sci-physics/abinit to convert the data generated by
+ sci-physics/atompaw for the use with abinit
+
diff --git a/sci-physics/atompaw2abinit/atompaw2abinit-3.3.0.ebuild b/sci-physics/atompaw2abinit/atompaw2abinit-3.3.0.ebuild
new file mode 100644
index 0000000..37c6dc6
--- /dev/null
+++ b/sci-physics/atompaw2abinit/atompaw2abinit-3.3.0.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=3
+
+inherit eutils multilib toolchain-funcs
+
+DESCRIPTION="Abinit AtomPAW atomic data convertor"
+HOMEPAGE="http://www.abinit.org/downloads/PAW/AtomPAW2Abinit-Manual-html/AtomPAW2Abinit2.htm"
+IUSE=""
+SRC_URI="http://www.abinit.org/downloads/PAW/AtomPAW2Abinit-Manual-html/Atompaw2Abinit.tgz"
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+RDEPEND="virtual/lapack
+ virtual/blas
+ sci-physics/atompaw"
+DEPEND="${RDEPEND}
+ dev-util/pkgconfig"
+
+S=${WORKDIR}/Atompaw2Abinit.v${PV}
+
+pkg_nofetch() {
+ elog "If there is a digest mismatch, please file a bug"
+ elog "at https://bugs.gentoo.org/ -- a version bump"
+ elog "is probably required."
+}
+
+src_unpack() {
+ unpack ${A}
+}
+
+src_configure() {
+ head -n 6 Makefile >Makefile.1
+ tail -n +6 Makefile >Makefile.2
+ cp Makefile.1 Makefile
+ echo FC = $(tc-getFC) >>Makefile
+ echo FFLAGS = ${FCFLAGS:- ${FFLAGS:- -O2}} >>Makefile
+ echo -n FFLAGS_LIBS= >>Makefile
+ pkg-config --libs lapack >>Makefile
+ echo >>Makefile
+ sed -e's/^\(FC *=\)/#\1/' -e's/^\(FFLAGS *=\)/#\1/' \
+ -e's/^\(FFLAGS_LIBS *=\)/#\1/' Makefile.2 >>Makefile
+}
+
+src_compile() {
+ emake -j1 || die "Make failed"
+}
+
+src_install() {
+ dobin atompaw2abinit
+}
\ No newline at end of file
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-physics/atompaw2abinit/
@ 2011-06-21 11:54 Justin Lecher
0 siblings, 0 replies; 5+ messages in thread
From: Justin Lecher @ 2011-06-21 11:54 UTC (permalink / raw
To: gentoo-commits
commit: d4f0e53c5ad488c2d829f1b38d5f5657daad89d2
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 21 11:26:43 2011 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Tue Jun 21 11:26:43 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=d4f0e53c
Added fortran-2.eclass support
(Portage version: 2.2.0_alpha41/git/Linux x86_64, signed Manifest commit with key 70EB7916)
---
sci-physics/atompaw2abinit/ChangeLog | 4 ++++
.../atompaw2abinit/atompaw2abinit-3.3.0.ebuild | 18 +++++++++---------
sci-physics/atompaw2abinit/metadata.xml | 8 ++++++++
3 files changed, 21 insertions(+), 9 deletions(-)
diff --git a/sci-physics/atompaw2abinit/ChangeLog b/sci-physics/atompaw2abinit/ChangeLog
index 7b94567..b4c912c 100644
--- a/sci-physics/atompaw2abinit/ChangeLog
+++ b/sci-physics/atompaw2abinit/ChangeLog
@@ -2,6 +2,10 @@
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+ 21 Jun 2011; Justin Lecher <jlec@gentoo.org> atompaw2abinit-3.3.0.ebuild,
+ +metadata.xml:
+ Added fortran-2.eclass support
+
*atompaw2abinit-3.3.0 (25 Feb 2011)
25 Feb 2011; Honza Macháček <Hloupy.Honza@centrum.cz>
diff --git a/sci-physics/atompaw2abinit/atompaw2abinit-3.3.0.ebuild b/sci-physics/atompaw2abinit/atompaw2abinit-3.3.0.ebuild
index 37c6dc6..eb93fa2 100644
--- a/sci-physics/atompaw2abinit/atompaw2abinit-3.3.0.ebuild
+++ b/sci-physics/atompaw2abinit/atompaw2abinit-3.3.0.ebuild
@@ -1,18 +1,22 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
+# $Header: $
EAPI=3
-inherit eutils multilib toolchain-funcs
+inherit eutils fortran-2 multilib toolchain-funcs
DESCRIPTION="Abinit AtomPAW atomic data convertor"
HOMEPAGE="http://www.abinit.org/downloads/PAW/AtomPAW2Abinit-Manual-html/AtomPAW2Abinit2.htm"
-IUSE=""
-SRC_URI="http://www.abinit.org/downloads/PAW/AtomPAW2Abinit-Manual-html/Atompaw2Abinit.tgz"
+SRC_URI="http://www.abinit.org/downloads/PAW/AtomPAW2Abinit-Manual-html/Atompaw2Abinit.tgz -> ${P}.tgz"
+
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
-RDEPEND="virtual/lapack
+IUSE=""
+
+RDEPEND="
+ virtual/lapack
virtual/blas
sci-physics/atompaw"
DEPEND="${RDEPEND}
@@ -26,10 +30,6 @@ pkg_nofetch() {
elog "is probably required."
}
-src_unpack() {
- unpack ${A}
-}
-
src_configure() {
head -n 6 Makefile >Makefile.1
tail -n +6 Makefile >Makefile.2
@@ -49,4 +49,4 @@ src_compile() {
src_install() {
dobin atompaw2abinit
-}
\ No newline at end of file
+}
diff --git a/sci-physics/atompaw2abinit/metadata.xml b/sci-physics/atompaw2abinit/metadata.xml
new file mode 100644
index 0000000..efb490d
--- /dev/null
+++ b/sci-physics/atompaw2abinit/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>sci</herd>
+<maintainer>
+ <email>sci@gentoo.org</email>
+</maintainer>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-physics/atompaw2abinit/
@ 2011-12-17 8:51 Honza Macháček
0 siblings, 0 replies; 5+ messages in thread
From: Honza Macháček @ 2011-12-17 8:51 UTC (permalink / raw
To: gentoo-commits
commit: 01198d336a4e6e68e375a095e2f4b3d64be96403
Author: Honza Macháček <Hloupy.Honza <AT> centrum <DOT> cz>
AuthorDate: Sat Dec 17 08:50:49 2011 +0000
Commit: Honza Macháček <Hloupy.Honza <AT> centrum <DOT> cz>
CommitDate: Sat Dec 17 08:50:49 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=01198d33
sci-physics/atompaw2abinit-3.3.0-r1.ebuild reflects the new structure of the abinit web
---
sci-physics/atompaw2abinit/ChangeLog | 6 ++++++
...3.3.0.ebuild => atompaw2abinit-3.3.0-r1.ebuild} | 5 +++--
2 files changed, 9 insertions(+), 2 deletions(-)
diff --git a/sci-physics/atompaw2abinit/ChangeLog b/sci-physics/atompaw2abinit/ChangeLog
index b4c912c..42b7088 100644
--- a/sci-physics/atompaw2abinit/ChangeLog
+++ b/sci-physics/atompaw2abinit/ChangeLog
@@ -2,6 +2,12 @@
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+*atompaw2abinit-3.3.0-r1 (17 Dec 2011)
+
+ 17 Dec 2011; Honza Macháček <Hloupy.Honza@centrum.cz>
+ -atompaw2abinit-3.3.0.ebuild, +atompaw2abinit-3.3.0-r1.ebuild:
+ Homepage and source URI changed
+
21 Jun 2011; Justin Lecher <jlec@gentoo.org> atompaw2abinit-3.3.0.ebuild,
+metadata.xml:
Added fortran-2.eclass support
diff --git a/sci-physics/atompaw2abinit/atompaw2abinit-3.3.0.ebuild b/sci-physics/atompaw2abinit/atompaw2abinit-3.3.0-r1.ebuild
similarity index 80%
rename from sci-physics/atompaw2abinit/atompaw2abinit-3.3.0.ebuild
rename to sci-physics/atompaw2abinit/atompaw2abinit-3.3.0-r1.ebuild
index eb93fa2..d27516b 100644
--- a/sci-physics/atompaw2abinit/atompaw2abinit-3.3.0.ebuild
+++ b/sci-physics/atompaw2abinit/atompaw2abinit-3.3.0-r1.ebuild
@@ -7,8 +7,9 @@ EAPI=3
inherit eutils fortran-2 multilib toolchain-funcs
DESCRIPTION="Abinit AtomPAW atomic data convertor"
-HOMEPAGE="http://www.abinit.org/downloads/PAW/AtomPAW2Abinit-Manual-html/AtomPAW2Abinit2.htm"
-SRC_URI="http://www.abinit.org/downloads/PAW/AtomPAW2Abinit-Manual-html/Atompaw2Abinit.tgz -> ${P}.tgz"
+HOMEPAGE="http://www.abinit.org/downloads/PAW2/AtomPAW2Abinit-Manual-html/Old-AtomPAW2Abinit-Manual-html/AtomPAW2Abinit2.htm"
+SRC_URI="http://www.abinit.org/downloads/PAW2/AtomPAW2Abinit-Manual-html/Old-AtomPAW2Abinit-Manual-html/Atompaw2Abinit.tgz -> ${P}.tgz"
+
LICENSE="GPL-2"
SLOT="0"
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-physics/atompaw2abinit/
@ 2013-02-22 10:15 Justin Lecher
0 siblings, 0 replies; 5+ messages in thread
From: Justin Lecher @ 2013-02-22 10:15 UTC (permalink / raw
To: gentoo-commits
commit: 08ac889dc8671fc78df8abacf6628a66fe3f43e6
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 22 09:21:24 2013 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Fri Feb 22 09:21:24 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=08ac889d
sci-physics/atompaw2abinit: Use tc-getPKG_CONFIG from toolchain-funcs.eclass instead of plain pkg-config; correct dep for pkgconfig to virtual
Package-Manager: portage-2.2.0_alpha163
---
sci-physics/atompaw2abinit/ChangeLog | 7 ++++++-
.../atompaw2abinit/atompaw2abinit-3.3.0-r1.ebuild | 19 ++++++++-----------
sci-physics/atompaw2abinit/metadata.xml | 8 ++++----
3 files changed, 18 insertions(+), 16 deletions(-)
diff --git a/sci-physics/atompaw2abinit/ChangeLog b/sci-physics/atompaw2abinit/ChangeLog
index 42b7088..ee2f5bb 100644
--- a/sci-physics/atompaw2abinit/ChangeLog
+++ b/sci-physics/atompaw2abinit/ChangeLog
@@ -1,7 +1,12 @@
# ChangeLog for sci-physics/atompaw2abinit
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+ 22 Feb 2013; Justin Lecher <jlec@gentoo.org> atompaw2abinit-3.3.0-r1.ebuild,
+ metadata.xml:
+ Use tc-getPKG_CONFIG from toolchain-funcs.eclass instead of plain pkg-config;
+ correct dep for pkgconfig to virtual
+
*atompaw2abinit-3.3.0-r1 (17 Dec 2011)
17 Dec 2011; Honza Macháček <Hloupy.Honza@centrum.cz>
diff --git a/sci-physics/atompaw2abinit/atompaw2abinit-3.3.0-r1.ebuild b/sci-physics/atompaw2abinit/atompaw2abinit-3.3.0-r1.ebuild
index d27516b..b609dc3 100644
--- a/sci-physics/atompaw2abinit/atompaw2abinit-3.3.0-r1.ebuild
+++ b/sci-physics/atompaw2abinit/atompaw2abinit-3.3.0-r1.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
-EAPI=3
+EAPI=5
inherit eutils fortran-2 multilib toolchain-funcs
@@ -10,7 +10,6 @@ DESCRIPTION="Abinit AtomPAW atomic data convertor"
HOMEPAGE="http://www.abinit.org/downloads/PAW2/AtomPAW2Abinit-Manual-html/Old-AtomPAW2Abinit-Manual-html/AtomPAW2Abinit2.htm"
SRC_URI="http://www.abinit.org/downloads/PAW2/AtomPAW2Abinit-Manual-html/Old-AtomPAW2Abinit-Manual-html/Atompaw2Abinit.tgz -> ${P}.tgz"
-
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
@@ -21,10 +20,12 @@ RDEPEND="
virtual/blas
sci-physics/atompaw"
DEPEND="${RDEPEND}
- dev-util/pkgconfig"
+ virtual/pkgconfig"
S=${WORKDIR}/Atompaw2Abinit.v${PV}
+MAKEOPTS+=" -j1"
+
pkg_nofetch() {
elog "If there is a digest mismatch, please file a bug"
elog "at https://bugs.gentoo.org/ -- a version bump"
@@ -36,18 +37,14 @@ src_configure() {
tail -n +6 Makefile >Makefile.2
cp Makefile.1 Makefile
echo FC = $(tc-getFC) >>Makefile
- echo FFLAGS = ${FCFLAGS:- ${FFLAGS:- -O2}} >>Makefile
+ echo FFLAGS = ${FFLAGS} >>Makefile
echo -n FFLAGS_LIBS= >>Makefile
- pkg-config --libs lapack >>Makefile
+ $(tc-getPKG_CONFIG) --libs lapack >>Makefile
echo >>Makefile
sed -e's/^\(FC *=\)/#\1/' -e's/^\(FFLAGS *=\)/#\1/' \
-e's/^\(FFLAGS_LIBS *=\)/#\1/' Makefile.2 >>Makefile
}
-src_compile() {
- emake -j1 || die "Make failed"
-}
-
src_install() {
- dobin atompaw2abinit
+ dobin ${PN}
}
diff --git a/sci-physics/atompaw2abinit/metadata.xml b/sci-physics/atompaw2abinit/metadata.xml
index 875538a..c620ca1 100644
--- a/sci-physics/atompaw2abinit/metadata.xml
+++ b/sci-physics/atompaw2abinit/metadata.xml
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
-<herd>sci-physics</herd>
-<maintainer>
- <email>sci@gentoo.org</email>
-</maintainer>
+ <herd>sci-physics</herd>
+ <maintainer>
+ <email>sci@gentoo.org</email>
+ </maintainer>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-physics/atompaw2abinit/
@ 2015-09-22 10:06 Justin Lecher
0 siblings, 0 replies; 5+ messages in thread
From: Justin Lecher @ 2015-09-22 10:06 UTC (permalink / raw
To: gentoo-commits
commit: b08d75e2366c85d5d6bd57740a44018e57344aef
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 22 09:50:22 2015 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Tue Sep 22 09:50:22 2015 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=b08d75e2
Drop obsolete Sources unavailable
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
sci-physics/atompaw2abinit/ChangeLog | 26 -----------
.../atompaw2abinit/atompaw2abinit-3.3.0-r1.ebuild | 50 ----------------------
sci-physics/atompaw2abinit/metadata.xml | 5 ---
3 files changed, 81 deletions(-)
diff --git a/sci-physics/atompaw2abinit/ChangeLog b/sci-physics/atompaw2abinit/ChangeLog
deleted file mode 100644
index f690ebd..0000000
--- a/sci-physics/atompaw2abinit/ChangeLog
+++ /dev/null
@@ -1,26 +0,0 @@
-# ChangeLog for sci-physics/atompaw2abinit
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Id$
-
- 22 Feb 2013; Justin Lecher <jlec@gentoo.org> atompaw2abinit-3.3.0-r1.ebuild,
- metadata.xml:
- Use tc-getPKG_CONFIG from toolchain-funcs.eclass instead of plain pkg-config;
- correct dep for pkgconfig to virtual
-
-*atompaw2abinit-3.3.0-r1 (17 Dec 2011)
-
- 17 Dec 2011; Honza Macháček <Hloupy.Honza@centrum.cz>
- -atompaw2abinit-3.3.0.ebuild, +atompaw2abinit-3.3.0-r1.ebuild:
- Homepage and source URI changed
-
- 21 Jun 2011; Justin Lecher <jlec@gentoo.org> atompaw2abinit-3.3.0.ebuild,
- +metadata.xml:
- Added fortran-2.eclass support
-
-*atompaw2abinit-3.3.0 (25 Feb 2011)
-
- 25 Feb 2011; Honza Macháček <Hloupy.Honza@centrum.cz>
- +atompaw2abinit-3.3.0.ebuild:
- A supporting utility of sci-physics/abinit to convert the data generated by
- sci-physics/atompaw for the use with abinit
-
diff --git a/sci-physics/atompaw2abinit/atompaw2abinit-3.3.0-r1.ebuild b/sci-physics/atompaw2abinit/atompaw2abinit-3.3.0-r1.ebuild
deleted file mode 100644
index d41e796..0000000
--- a/sci-physics/atompaw2abinit/atompaw2abinit-3.3.0-r1.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit eutils fortran-2 multilib toolchain-funcs
-
-DESCRIPTION="Abinit AtomPAW atomic data convertor"
-HOMEPAGE="http://www.abinit.org/downloads/PAW2/AtomPAW2Abinit-Manual-html/Old-AtomPAW2Abinit-Manual-html/AtomPAW2Abinit2.htm"
-SRC_URI="http://www.abinit.org/downloads/PAW2/AtomPAW2Abinit-Manual-html/Old-AtomPAW2Abinit-Manual-html/Atompaw2Abinit.tgz -> ${P}.tgz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="
- virtual/lapack
- virtual/blas
- sci-physics/atompaw"
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-S=${WORKDIR}/Atompaw2Abinit.v${PV}
-
-MAKEOPTS+=" -j1"
-
-pkg_nofetch() {
- elog "If there is a digest mismatch, please file a bug"
- elog "at https://bugs.gentoo.org/ -- a version bump"
- elog "is probably required."
-}
-
-src_configure() {
- head -n 6 Makefile >Makefile.1
- tail -n +6 Makefile >Makefile.2
- cp Makefile.1 Makefile
- echo FC = $(tc-getFC) >>Makefile
- echo FFLAGS = ${FFLAGS} >>Makefile
- echo -n FFLAGS_LIBS= >>Makefile
- $(tc-getPKG_CONFIG) --libs lapack >>Makefile
- echo >>Makefile
- sed -e's/^\(FC *=\)/#\1/' -e's/^\(FFLAGS *=\)/#\1/' \
- -e's/^\(FFLAGS_LIBS *=\)/#\1/' Makefile.2 >>Makefile
-}
-
-src_install() {
- dobin ${PN}
-}
diff --git a/sci-physics/atompaw2abinit/metadata.xml b/sci-physics/atompaw2abinit/metadata.xml
deleted file mode 100644
index 131ee59..0000000
--- a/sci-physics/atompaw2abinit/metadata.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<herd>sci-physics</herd>
-</pkgmetadata>
^ permalink raw reply related [flat|nested] 5+ messages in thread
end of thread, other threads:[~2015-09-22 10:07 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-02-22 10:15 [gentoo-commits] proj/sci:master commit in: sci-physics/atompaw2abinit/ Justin Lecher
-- strict thread matches above, loose matches on Subject: below --
2015-09-22 10:06 Justin Lecher
2011-12-17 8:51 Honza Macháček
2011-06-21 11:54 Justin Lecher
2011-02-25 5:20 Honza Macháček
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox