* [gentoo-commits] proj/sci:master commit in: sci-chemistry/smmp/
@ 2011-06-24 17:09 Justin Lecher
0 siblings, 0 replies; 5+ messages in thread
From: Justin Lecher @ 2011-06-24 17:09 UTC (permalink / raw
To: gentoo-commits
commit: 22716034acc6451caffcdc2f2722b3ba14bb610e
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 24 12:11:35 2011 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Fri Jun 24 12:11:35 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=22716034
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-chemistry/smmp/ChangeLog | 3 +++
sci-chemistry/smmp/smmp-3.0.5.ebuild | 12 ++++++------
2 files changed, 9 insertions(+), 6 deletions(-)
diff --git a/sci-chemistry/smmp/ChangeLog b/sci-chemistry/smmp/ChangeLog
index f58c391..cddd7bf 100644
--- a/sci-chemistry/smmp/ChangeLog
+++ b/sci-chemistry/smmp/ChangeLog
@@ -2,6 +2,9 @@
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+ 24 Jun 2011; Justin Lecher <jlec@gentoo.org> smmp-3.0.5.ebuild:
+ Streamlined fortran-2 eclass usage
+
21 Jun 2011; Justin Lecher <jlec@gentoo.org> smmp-3.0.5.ebuild:
Added fortran-2.eclass support
diff --git a/sci-chemistry/smmp/smmp-3.0.5.ebuild b/sci-chemistry/smmp/smmp-3.0.5.ebuild
index 0c226db..8f49f3d 100644
--- a/sci-chemistry/smmp/smmp-3.0.5.ebuild
+++ b/sci-chemistry/smmp/smmp-3.0.5.ebuild
@@ -22,7 +22,9 @@ KEYWORDS="~amd64 ~x86"
LICENSE="GPL-2"
IUSE="doc mpi test"
-RDEPEND="mpi? ( virtual/mpi )"
+RDEPEND="
+ virtual/fortran
+ mpi? ( virtual/mpi )"
DEPEND="${RDEPEND}
doc? ( app-doc/doxygen )"
@@ -37,18 +39,16 @@ src_compile() {
FC="mpif90"
target="parallel"
else
- FC=$(tc-getFC)
target="${PN}"
fi
- emake FC=${FC} ${target} || die
+ tc-export FC
- if use test; then
- emake FC=${FC} examples || die
- fi
+ emake ${target} || die
}
src_test() {
+ emake examples || die
cd EXAMPLES
bash smmp.cmd || die
}
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-chemistry/smmp/
@ 2013-10-16 4:49 Nicolas Bock
0 siblings, 0 replies; 5+ messages in thread
From: Nicolas Bock @ 2013-10-16 4:49 UTC (permalink / raw
To: gentoo-commits
commit: 4444407a9a96cbbe321a1d0328aaac2a70807106
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 15 13:31:48 2013 +0000
Commit: Nicolas Bock <nicolasbock <AT> gmail <DOT> com>
CommitDate: Tue Oct 15 13:31:48 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=4444407a
sci-chemistry/smmp: Add missing PYTHON_DEPS and PYTHON_REQUIRED_USE
Package-Manager: portage-2.2.7
---
sci-chemistry/smmp/ChangeLog | 3 +++
sci-chemistry/smmp/metadata.xml | 2 +-
sci-chemistry/smmp/smmp-3.0.5.ebuild | 17 +++++++++--------
3 files changed, 13 insertions(+), 9 deletions(-)
diff --git a/sci-chemistry/smmp/ChangeLog b/sci-chemistry/smmp/ChangeLog
index 375ec72..b7b3cd7 100644
--- a/sci-chemistry/smmp/ChangeLog
+++ b/sci-chemistry/smmp/ChangeLog
@@ -2,6 +2,9 @@
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+ 15 Oct 2013; Justin Lecher <jlec@gentoo.org> smmp-3.0.5.ebuild, metadata.xml:
+ Add missing PYTHON_DEPS and PYTHON_REQUIRED_USE
+
16 Jun 2013; Justin Lecher <jlec@gentoo.org> smmp-3.0.5.ebuild, metadata.xml:
Bump to EAPI=5 and python-r1.eclass
diff --git a/sci-chemistry/smmp/metadata.xml b/sci-chemistry/smmp/metadata.xml
index 9ac9ffd..51fdeda 100644
--- a/sci-chemistry/smmp/metadata.xml
+++ b/sci-chemistry/smmp/metadata.xml
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
-<herd>sci-chemistry</herd>
+ <herd>sci-chemistry</herd>
</pkgmetadata>
diff --git a/sci-chemistry/smmp/smmp-3.0.5.ebuild b/sci-chemistry/smmp/smmp-3.0.5.ebuild
index 95dda99..c6c0376 100644
--- a/sci-chemistry/smmp/smmp-3.0.5.ebuild
+++ b/sci-chemistry/smmp/smmp-3.0.5.ebuild
@@ -20,7 +20,11 @@ LICENSE="GPL-2"
KEYWORDS="~amd64 ~x86"
IUSE="doc mpi test"
-RDEPEND="mpi? ( virtual/mpi )"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+RDEPEND="
+ ${PYTHON_DEPS}
+ mpi? ( virtual/mpi )"
DEPEND="${RDEPEND}
doc? ( app-doc/doxygen )"
@@ -43,17 +47,14 @@ src_compile() {
src_test() {
emake examples
- cd EXAMPLES
+ cd EXAMPLES || die
bash smmp.cmd || die
}
src_install() {
dobin ${PN}
- installation() {
- python_moduleinto ${PN}
- python_domodule *.py
- python_optimize
- }
- python_foreach_impl installation
+ python_moduleinto ${PN}
+ python_parallel_foreach_impl python_domodule *.py
+ python_parallel_foreach_impl python_optimize
dodoc README
}
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-chemistry/smmp/
@ 2013-10-15 17:17 Justin Lecher
0 siblings, 0 replies; 5+ messages in thread
From: Justin Lecher @ 2013-10-15 17:17 UTC (permalink / raw
To: gentoo-commits
commit: a852f79624cf67d282332d6331d593d75eb9519c
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 15 13:31:48 2013 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Tue Oct 15 17:17:08 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=a852f796
sci-chemistry/smmp: Add missing PYTHON_DEPS and PYTHON_REQUIRED_USE
Package-Manager: portage-2.2.7
---
sci-chemistry/smmp/ChangeLog | 3 +++
sci-chemistry/smmp/metadata.xml | 2 +-
sci-chemistry/smmp/smmp-3.0.5.ebuild | 17 +++++++++--------
3 files changed, 13 insertions(+), 9 deletions(-)
diff --git a/sci-chemistry/smmp/ChangeLog b/sci-chemistry/smmp/ChangeLog
index 375ec72..b7b3cd7 100644
--- a/sci-chemistry/smmp/ChangeLog
+++ b/sci-chemistry/smmp/ChangeLog
@@ -2,6 +2,9 @@
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+ 15 Oct 2013; Justin Lecher <jlec@gentoo.org> smmp-3.0.5.ebuild, metadata.xml:
+ Add missing PYTHON_DEPS and PYTHON_REQUIRED_USE
+
16 Jun 2013; Justin Lecher <jlec@gentoo.org> smmp-3.0.5.ebuild, metadata.xml:
Bump to EAPI=5 and python-r1.eclass
diff --git a/sci-chemistry/smmp/metadata.xml b/sci-chemistry/smmp/metadata.xml
index 9ac9ffd..51fdeda 100644
--- a/sci-chemistry/smmp/metadata.xml
+++ b/sci-chemistry/smmp/metadata.xml
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
-<herd>sci-chemistry</herd>
+ <herd>sci-chemistry</herd>
</pkgmetadata>
diff --git a/sci-chemistry/smmp/smmp-3.0.5.ebuild b/sci-chemistry/smmp/smmp-3.0.5.ebuild
index 95dda99..c6c0376 100644
--- a/sci-chemistry/smmp/smmp-3.0.5.ebuild
+++ b/sci-chemistry/smmp/smmp-3.0.5.ebuild
@@ -20,7 +20,11 @@ LICENSE="GPL-2"
KEYWORDS="~amd64 ~x86"
IUSE="doc mpi test"
-RDEPEND="mpi? ( virtual/mpi )"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+RDEPEND="
+ ${PYTHON_DEPS}
+ mpi? ( virtual/mpi )"
DEPEND="${RDEPEND}
doc? ( app-doc/doxygen )"
@@ -43,17 +47,14 @@ src_compile() {
src_test() {
emake examples
- cd EXAMPLES
+ cd EXAMPLES || die
bash smmp.cmd || die
}
src_install() {
dobin ${PN}
- installation() {
- python_moduleinto ${PN}
- python_domodule *.py
- python_optimize
- }
- python_foreach_impl installation
+ python_moduleinto ${PN}
+ python_parallel_foreach_impl python_domodule *.py
+ python_parallel_foreach_impl python_optimize
dodoc README
}
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] proj/sci:fixing commit in: sci-chemistry/smmp/
@ 2013-06-16 15:53 Justin Lecher
2013-06-16 15:53 ` [gentoo-commits] proj/sci:master " Justin Lecher
0 siblings, 1 reply; 5+ messages in thread
From: Justin Lecher @ 2013-06-16 15:53 UTC (permalink / raw
To: gentoo-commits
commit: 321109c8c71e20ef2beed437a8006be7979994c1
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 16 15:18:44 2013 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Sun Jun 16 15:18:44 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=321109c8
sci-chemistry/smmp: Bump to EAPI=5 and python-r1.eclass
Package-Manager: portage-2.2.0_alpha180
---
sci-chemistry/smmp/ChangeLog | 5 ++++-
sci-chemistry/smmp/metadata.xml | 8 +++----
sci-chemistry/smmp/smmp-3.0.5.ebuild | 41 ++++++++++++------------------------
3 files changed, 22 insertions(+), 32 deletions(-)
diff --git a/sci-chemistry/smmp/ChangeLog b/sci-chemistry/smmp/ChangeLog
index cddd7bf..375ec72 100644
--- a/sci-chemistry/smmp/ChangeLog
+++ b/sci-chemistry/smmp/ChangeLog
@@ -1,7 +1,10 @@
# ChangeLog for sci-chemistry/smmp
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+ 16 Jun 2013; Justin Lecher <jlec@gentoo.org> smmp-3.0.5.ebuild, metadata.xml:
+ Bump to EAPI=5 and python-r1.eclass
+
24 Jun 2011; Justin Lecher <jlec@gentoo.org> smmp-3.0.5.ebuild:
Streamlined fortran-2 eclass usage
diff --git a/sci-chemistry/smmp/metadata.xml b/sci-chemistry/smmp/metadata.xml
index 0fbe927..d410f15 100644
--- a/sci-chemistry/smmp/metadata.xml
+++ b/sci-chemistry/smmp/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-chemistry</herd>
-<maintainer>
- <email>sci@gentoo.org</email>
-</maintainer>
+ <herd>sci-chemistry</herd>
+ <maintainer>
+ <email>sci@gentoo.org</email>
+ </maintainer>
</pkgmetadata>
diff --git a/sci-chemistry/smmp/smmp-3.0.5.ebuild b/sci-chemistry/smmp/smmp-3.0.5.ebuild
index 8f49f3d..95dda99 100644
--- a/sci-chemistry/smmp/smmp-3.0.5.ebuild
+++ b/sci-chemistry/smmp/smmp-3.0.5.ebuild
@@ -1,14 +1,12 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
-EAPI=2
+EAPI=5
-PYTHON_DEPEND="2"
-SUPPORT_PYTHON_ABIS="1"
-RESTRICT_PYTHON_ABIS="3.*"
+PYTHON_COMPAT=( python{2_6,2_7} )
-inherit eutils fortran-2 python toolchain-funcs
+inherit eutils fortran-2 python-r1 toolchain-funcs
MY_PN="SMMP"
MY_P="${MY_PN}-${PV}"
@@ -18,13 +16,11 @@ HOMEPAGE="http://smmp.berlios.de/"
SRC_URI="mirror://berlios/${PN}/${MY_P}.tar.bz2"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
LICENSE="GPL-2"
+KEYWORDS="~amd64 ~x86"
IUSE="doc mpi test"
-RDEPEND="
- virtual/fortran
- mpi? ( virtual/mpi )"
+RDEPEND="mpi? ( virtual/mpi )"
DEPEND="${RDEPEND}
doc? ( app-doc/doxygen )"
@@ -42,31 +38,22 @@ src_compile() {
target="${PN}"
fi
- tc-export FC
-
- emake ${target} || die
+ emake ${target}
}
src_test() {
- emake examples || die
+ emake examples
cd EXAMPLES
bash smmp.cmd || die
}
src_install() {
- dobin ${PN} || die
+ dobin ${PN}
installation() {
- insinto $(python_get_sitedir)/${PN}
- doins *.py || die
+ python_moduleinto ${PN}
+ python_domodule *.py
+ python_optimize
}
- python_execute_function installation
- dodoc README || die
-}
-
-pkg_postinst() {
- python_mod_optimize ${PN}
-}
-
-pkg_postrm() {
- python_mod_cleanup ${PN}
+ python_foreach_impl installation
+ dodoc README
}
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-chemistry/smmp/
2013-06-16 15:53 [gentoo-commits] proj/sci:fixing " Justin Lecher
@ 2013-06-16 15:53 ` Justin Lecher
0 siblings, 0 replies; 5+ messages in thread
From: Justin Lecher @ 2013-06-16 15:53 UTC (permalink / raw
To: gentoo-commits
commit: 321109c8c71e20ef2beed437a8006be7979994c1
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 16 15:18:44 2013 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Sun Jun 16 15:18:44 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=321109c8
sci-chemistry/smmp: Bump to EAPI=5 and python-r1.eclass
Package-Manager: portage-2.2.0_alpha180
---
sci-chemistry/smmp/ChangeLog | 5 ++++-
sci-chemistry/smmp/metadata.xml | 8 +++----
sci-chemistry/smmp/smmp-3.0.5.ebuild | 41 ++++++++++++------------------------
3 files changed, 22 insertions(+), 32 deletions(-)
diff --git a/sci-chemistry/smmp/ChangeLog b/sci-chemistry/smmp/ChangeLog
index cddd7bf..375ec72 100644
--- a/sci-chemistry/smmp/ChangeLog
+++ b/sci-chemistry/smmp/ChangeLog
@@ -1,7 +1,10 @@
# ChangeLog for sci-chemistry/smmp
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+ 16 Jun 2013; Justin Lecher <jlec@gentoo.org> smmp-3.0.5.ebuild, metadata.xml:
+ Bump to EAPI=5 and python-r1.eclass
+
24 Jun 2011; Justin Lecher <jlec@gentoo.org> smmp-3.0.5.ebuild:
Streamlined fortran-2 eclass usage
diff --git a/sci-chemistry/smmp/metadata.xml b/sci-chemistry/smmp/metadata.xml
index 0fbe927..d410f15 100644
--- a/sci-chemistry/smmp/metadata.xml
+++ b/sci-chemistry/smmp/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-chemistry</herd>
-<maintainer>
- <email>sci@gentoo.org</email>
-</maintainer>
+ <herd>sci-chemistry</herd>
+ <maintainer>
+ <email>sci@gentoo.org</email>
+ </maintainer>
</pkgmetadata>
diff --git a/sci-chemistry/smmp/smmp-3.0.5.ebuild b/sci-chemistry/smmp/smmp-3.0.5.ebuild
index 8f49f3d..95dda99 100644
--- a/sci-chemistry/smmp/smmp-3.0.5.ebuild
+++ b/sci-chemistry/smmp/smmp-3.0.5.ebuild
@@ -1,14 +1,12 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
-EAPI=2
+EAPI=5
-PYTHON_DEPEND="2"
-SUPPORT_PYTHON_ABIS="1"
-RESTRICT_PYTHON_ABIS="3.*"
+PYTHON_COMPAT=( python{2_6,2_7} )
-inherit eutils fortran-2 python toolchain-funcs
+inherit eutils fortran-2 python-r1 toolchain-funcs
MY_PN="SMMP"
MY_P="${MY_PN}-${PV}"
@@ -18,13 +16,11 @@ HOMEPAGE="http://smmp.berlios.de/"
SRC_URI="mirror://berlios/${PN}/${MY_P}.tar.bz2"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
LICENSE="GPL-2"
+KEYWORDS="~amd64 ~x86"
IUSE="doc mpi test"
-RDEPEND="
- virtual/fortran
- mpi? ( virtual/mpi )"
+RDEPEND="mpi? ( virtual/mpi )"
DEPEND="${RDEPEND}
doc? ( app-doc/doxygen )"
@@ -42,31 +38,22 @@ src_compile() {
target="${PN}"
fi
- tc-export FC
-
- emake ${target} || die
+ emake ${target}
}
src_test() {
- emake examples || die
+ emake examples
cd EXAMPLES
bash smmp.cmd || die
}
src_install() {
- dobin ${PN} || die
+ dobin ${PN}
installation() {
- insinto $(python_get_sitedir)/${PN}
- doins *.py || die
+ python_moduleinto ${PN}
+ python_domodule *.py
+ python_optimize
}
- python_execute_function installation
- dodoc README || die
-}
-
-pkg_postinst() {
- python_mod_optimize ${PN}
-}
-
-pkg_postrm() {
- python_mod_cleanup ${PN}
+ python_foreach_impl installation
+ dodoc README
}
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-chemistry/smmp/
@ 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: 68933df85040b2124e0da93cbefcb224582a47cc
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 21 10:58:44 2011 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Tue Jun 21 10:58:44 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=68933df8
Added fortran-2.eclass support
(Portage version: 2.2.0_alpha41/git/Linux x86_64, signed Manifest commit with key 70EB7916)
---
sci-chemistry/smmp/ChangeLog | 5 ++++-
sci-chemistry/smmp/smmp-3.0.5.ebuild | 9 ++++-----
2 files changed, 8 insertions(+), 6 deletions(-)
diff --git a/sci-chemistry/smmp/ChangeLog b/sci-chemistry/smmp/ChangeLog
index 1e848e7..f58c391 100644
--- a/sci-chemistry/smmp/ChangeLog
+++ b/sci-chemistry/smmp/ChangeLog
@@ -1,7 +1,10 @@
# ChangeLog for sci-chemistry/smmp
-# 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> smmp-3.0.5.ebuild:
+ Added fortran-2.eclass support
+
29 Jun 2010; Justin Lecher <jlec@gentoo.org> smmp-3.0.5.ebuild:
Python ABI fixes
diff --git a/sci-chemistry/smmp/smmp-3.0.5.ebuild b/sci-chemistry/smmp/smmp-3.0.5.ebuild
index 9540246..0c226db 100644
--- a/sci-chemistry/smmp/smmp-3.0.5.ebuild
+++ b/sci-chemistry/smmp/smmp-3.0.5.ebuild
@@ -1,13 +1,14 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
-EAPI="2"
+EAPI=2
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
+RESTRICT_PYTHON_ABIS="3.*"
-inherit eutils python toolchain-funcs
+inherit eutils fortran-2 python toolchain-funcs
MY_PN="SMMP"
MY_P="${MY_PN}-${PV}"
@@ -25,8 +26,6 @@ RDEPEND="mpi? ( virtual/mpi )"
DEPEND="${RDEPEND}
doc? ( app-doc/doxygen )"
-RESTRICT_PYTHON_ABIS="3.*"
-
S="${WORKDIR}/${MY_P}"
src_prepare() {
^ permalink raw reply related [flat|nested] 5+ messages in thread
end of thread, other threads:[~2013-10-16 4:49 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-06-24 17:09 [gentoo-commits] proj/sci:master commit in: sci-chemistry/smmp/ Justin Lecher
-- strict thread matches above, loose matches on Subject: below --
2013-10-16 4:49 Nicolas Bock
2013-10-15 17:17 Justin Lecher
2013-06-16 15:53 [gentoo-commits] proj/sci:fixing " Justin Lecher
2013-06-16 15:53 ` [gentoo-commits] proj/sci:master " 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