public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Christoph Junghans" <ottxor@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] proj/sci:master commit in: sci-libs/pfft/
Date: Thu, 16 Oct 2014 15:49:33 +0000 (UTC)	[thread overview]
Message-ID: <1413474532.601f39a40aa46dd8cc0e144005d3b4e73c2e1708.ottxor@gentoo> (raw)

commit:     601f39a40aa46dd8cc0e144005d3b4e73c2e1708
Author:     Christoph Junghans <ottxor <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 16 14:35:32 2014 +0000
Commit:     Christoph Junghans <ottxor <AT> gentoo <DOT> org>
CommitDate: Thu Oct 16 15:48:52 2014 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=601f39a4

version bump

Package-Manager: portage-2.2.8-r2

---
 sci-libs/pfft/ChangeLog               | 36 +++++++++++++++++++++++
 sci-libs/pfft/metadata.xml            |  9 ++++++
 sci-libs/pfft/pfft-1.0.7_alpha.ebuild | 54 +++++++++++++++++++++++++++++++++++
 sci-libs/pfft/pfft-9999.ebuild        | 54 +++++++++++++++++++++++++++++++++++
 4 files changed, 153 insertions(+)

diff --git a/sci-libs/pfft/ChangeLog b/sci-libs/pfft/ChangeLog
new file mode 100644
index 0000000..afb9a68
--- /dev/null
+++ b/sci-libs/pfft/ChangeLog
@@ -0,0 +1,36 @@
+# ChangeLog for sci-libs/pfft
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+*pfft-1.0.7_alpha (16 Oct 2014)
+*pfft-9999 (16 Oct 2014)
+
+  16 Oct 2014; Christoph Junghans <ottxor@gentoo.org> +pfft-1.0.7_alpha.ebuild,
+  +pfft-9999.ebuild, -files/pfft-1.0alpha2-Makefile.am,
+  -files/pfft-1.0alpha2-configure.ac, -files/pfft-1.0alpha2-libpfft.pc.in,
+  -pfft-1.0_alpha2.ebuild:
+  version bump
+
+*pfft-1.0_alpha2 (11 Sep 2011)
+
+  11 Sep 2011; Christoph Junghans <ottxor@gentoo.org> -pfft-1.0_alpha1.ebuild,
+  +pfft-1.0_alpha2.ebuild, -files/pfft-1.0alpha1-Makefile.am,
+  -files/pfft-1.0alpha1-configure.ac, -files/pfft-1.0alpha1-libpfft.pc.in,
+  +files/pfft-1.0alpha2-Makefile.am, +files/pfft-1.0alpha2-configure.ac,
+  +files/pfft-1.0alpha2-libpfft.pc.in, metadata.xml:
+  version bump
+
+  24 Jun 2011; Justin Lecher <jlec@gentoo.org> pfft-1.0_alpha1.ebuild:
+  Fixed Manifest and cleaned ebuild
+
+  15 Sep 2010; Christoph Junghans <kleiner_otti@gmx.de>
+  pfft-1.0_alpha1.ebuild, files/pfft-1.0alpha1-Makefile.am,
+  files/pfft-1.0alpha1-configure.ac, +files/pfft-1.0alpha1-libpfft.pc.in:
+  added --disable-la-files option
+
+*pfft-1.0_alpha1 (12 Sep 2010)
+
+  12 Sep 2010; Christoph Junghans <kleiner_otti@gmx.de>
+  +pfft-1.0_alpha1.ebuild, +files/pfft-1.0alpha1-Makefile.am,
+  +files/pfft-1.0alpha1-configure.ac, +metadata.xml, +metadata.xml~:
+  Initial commit

diff --git a/sci-libs/pfft/metadata.xml b/sci-libs/pfft/metadata.xml
new file mode 100644
index 0000000..119d0fd
--- /dev/null
+++ b/sci-libs/pfft/metadata.xml
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<herd>sci</herd>
+	<maintainer>
+		<email>ottxor@gentoo.org</email>
+		<name>Christoph Junghans</name>
+	</maintainer>
+</pkgmetadata>

diff --git a/sci-libs/pfft/pfft-1.0.7_alpha.ebuild b/sci-libs/pfft/pfft-1.0.7_alpha.ebuild
new file mode 100644
index 0000000..73fc7e0
--- /dev/null
+++ b/sci-libs/pfft/pfft-1.0.7_alpha.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+inherit autotools-utils fortran-2 multibuild
+
+DESCRIPTION="Parallel 3d FFT"
+HOMEPAGE="http://www-user.tu-chemnitz.de/~mpip/software.php"
+
+if [[ $PV = *9999 ]] ; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/mpip/pfft.git"
+	KEYWORDS=""
+	AUTOTOOLS_AUTORECONF=1
+else
+	SRC_URI="http://www-user.tu-chemnitz.de/~mpip/software/${P//_/-}.tar.gz"
+	KEYWORDS="~x86 ~amd64"
+	S="${WORKDIR}/${P//_/-}"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+IUSE="static-libs"
+
+RDEPEND="
+	sci-libs/fftw:3.0[mpi,fortran]
+	virtual/mpi
+	"
+
+DEPEND="
+	${RDEPEND}
+	"
+
+src_configure() {
+	MULTIBUILD_VARIANTS=( single double long-double )
+	my_src_configure() {
+		local myeconfargs=(
+			$([[ ${MULTIBUILD_VARIANT} != double ]] && echo "--enable-${MULTIBUILD_VARIANT}")
+		)
+		autotools-utils_src_configure
+	}
+
+	multibuild_parallel_foreach_variant my_src_configure
+}
+
+src_compile() {
+	multibuild_foreach_variant autotools-utils_src_compile
+}
+
+src_install() {
+	multibuild_parallel_foreach_variant autotools-utils_src_install
+}

diff --git a/sci-libs/pfft/pfft-9999.ebuild b/sci-libs/pfft/pfft-9999.ebuild
new file mode 100644
index 0000000..73fc7e0
--- /dev/null
+++ b/sci-libs/pfft/pfft-9999.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+inherit autotools-utils fortran-2 multibuild
+
+DESCRIPTION="Parallel 3d FFT"
+HOMEPAGE="http://www-user.tu-chemnitz.de/~mpip/software.php"
+
+if [[ $PV = *9999 ]] ; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/mpip/pfft.git"
+	KEYWORDS=""
+	AUTOTOOLS_AUTORECONF=1
+else
+	SRC_URI="http://www-user.tu-chemnitz.de/~mpip/software/${P//_/-}.tar.gz"
+	KEYWORDS="~x86 ~amd64"
+	S="${WORKDIR}/${P//_/-}"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+IUSE="static-libs"
+
+RDEPEND="
+	sci-libs/fftw:3.0[mpi,fortran]
+	virtual/mpi
+	"
+
+DEPEND="
+	${RDEPEND}
+	"
+
+src_configure() {
+	MULTIBUILD_VARIANTS=( single double long-double )
+	my_src_configure() {
+		local myeconfargs=(
+			$([[ ${MULTIBUILD_VARIANT} != double ]] && echo "--enable-${MULTIBUILD_VARIANT}")
+		)
+		autotools-utils_src_configure
+	}
+
+	multibuild_parallel_foreach_variant my_src_configure
+}
+
+src_compile() {
+	multibuild_foreach_variant autotools-utils_src_compile
+}
+
+src_install() {
+	multibuild_parallel_foreach_variant autotools-utils_src_install
+}


             reply	other threads:[~2014-10-16 15:49 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-10-16 15:49 Christoph Junghans [this message]
  -- strict thread matches above, loose matches on Subject: below --
2021-03-20 11:03 [gentoo-commits] proj/sci:master commit in: sci-libs/pfft/ Andrew Ammerlaan
2021-01-30 11:50 Andrew Ammerlaan
2017-05-13 16:01 Justin Lecher
2011-06-24 17:09 Justin Lecher
2011-06-24 17:09 Justin Lecher

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1413474532.601f39a40aa46dd8cc0e144005d3b4e73c2e1708.ottxor@gentoo \
    --to=ottxor@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox