public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/sci:master commit in: sci-mathematics/libsfmt/
@ 2014-11-13  0:15 Christoph Junghans
  0 siblings, 0 replies; 3+ messages in thread
From: Christoph Junghans @ 2014-11-13  0:15 UTC (permalink / raw
  To: gentoo-commits

commit:     614e418cf8458d6448e944f2c7c5fc02b09e6dcb
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 12 15:24:32 2014 +0000
Commit:     Christoph Junghans <ottxor <AT> gentoo <DOT> org>
CommitDate: Wed Nov 12 15:24:32 2014 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=614e418c

sci-mathematics/libsfmt: Bump to EAPI=5

Package-Manager: portage-2.2.14

---
 sci-mathematics/libsfmt/ChangeLog            |  6 +++++-
 sci-mathematics/libsfmt/libsfmt-1.3.0.ebuild | 12 ++++--------
 sci-mathematics/libsfmt/metadata.xml         |  2 +-
 3 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/sci-mathematics/libsfmt/ChangeLog b/sci-mathematics/libsfmt/ChangeLog
index 8663a4f..f9044f5 100644
--- a/sci-mathematics/libsfmt/ChangeLog
+++ b/sci-mathematics/libsfmt/ChangeLog
@@ -1,7 +1,11 @@
 # ChangeLog for sci-mathematics/libsfmt
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  12 Nov 2014; Justin Lecher <jlec@gentoo.org> libsfmt-1.3.0.ebuild,
+  metadata.xml:
+  Bump to EAPI=5
+
   19 Jun 2008; Sébastien Fabbro <bicatali@gentoo.org>
   +libsfmt-1.3.0.ebuild:
   Initial import, ebuild by Perttu Luukko, bug #227851

diff --git a/sci-mathematics/libsfmt/libsfmt-1.3.0.ebuild b/sci-mathematics/libsfmt/libsfmt-1.3.0.ebuild
index 0a56a93..de7eda8 100644
--- a/sci-mathematics/libsfmt/libsfmt-1.3.0.ebuild
+++ b/sci-mathematics/libsfmt/libsfmt-1.3.0.ebuild
@@ -2,6 +2,8 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
 
+EAPI=5
+
 DESCRIPTION="SIMD-oriented Fast Mersenne Twister"
 HOMEPAGE="http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/SFMT/index.html"
 SRC_URI="http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/SFMT/VERSIONS/ARCHIVES/${P}.tar.bz2"
@@ -11,12 +13,6 @@ SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE="sse2"
 
-src_compile() {
-	econf $(use_enable sse2) || die "econf failed"
-	emake || die "emake failed"
-}
-
-src_install() {
-	emake DESTDIR="${D}" install || die "install failed"
-	dodoc ChangeLog NEWS README
+src_configure() {
+	econf $(use_enable sse2)
 }

diff --git a/sci-mathematics/libsfmt/metadata.xml b/sci-mathematics/libsfmt/metadata.xml
index 2b0bd53..66aa9fe 100644
--- a/sci-mathematics/libsfmt/metadata.xml
+++ b/sci-mathematics/libsfmt/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-mathematics</herd>
+  <herd>sci-mathematics</herd>
 </pkgmetadata>


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

* [gentoo-commits] proj/sci:master commit in: sci-mathematics/libsfmt/
@ 2015-02-02 12:06 Justin Lecher
  0 siblings, 0 replies; 3+ messages in thread
From: Justin Lecher @ 2015-02-02 12:06 UTC (permalink / raw
  To: gentoo-commits

commit:     4454b56204cc00e222a095db4a2a4085b9682264
Author:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Sun Feb  1 18:15:48 2015 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Sun Feb  1 18:15:48 2015 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=4454b562

sci-mathematics/libsfmt: Convert sse2 to cpu_flags_x86_sse2

---
 sci-mathematics/libsfmt/ChangeLog            | 6 +++++-
 sci-mathematics/libsfmt/libsfmt-1.3.0.ebuild | 6 +++---
 2 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/sci-mathematics/libsfmt/ChangeLog b/sci-mathematics/libsfmt/ChangeLog
index f9044f5..6cddce3 100644
--- a/sci-mathematics/libsfmt/ChangeLog
+++ b/sci-mathematics/libsfmt/ChangeLog
@@ -1,7 +1,11 @@
 # ChangeLog for sci-mathematics/libsfmt
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  01 Feb 2015; Marius Brehler <marbre@linux.sungazer.de>
+  libsfmt-1.3.0.ebuild:
+  Convert sse2 to cpu_flags_x86_sse2
+
   12 Nov 2014; Justin Lecher <jlec@gentoo.org> libsfmt-1.3.0.ebuild,
   metadata.xml:
   Bump to EAPI=5

diff --git a/sci-mathematics/libsfmt/libsfmt-1.3.0.ebuild b/sci-mathematics/libsfmt/libsfmt-1.3.0.ebuild
index de7eda8..ae8d74f 100644
--- a/sci-mathematics/libsfmt/libsfmt-1.3.0.ebuild
+++ b/sci-mathematics/libsfmt/libsfmt-1.3.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
 
@@ -11,8 +11,8 @@ SRC_URI="http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/SFMT/VERSIONS/ARCHIVES/
 LICENSE="BSD"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="sse2"
+IUSE="cpu_flags_x86_sse2"
 
 src_configure() {
-	econf $(use_enable sse2)
+	econf $(use_enable cpu_flags_x86_sse2 sse2)
 }


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

* [gentoo-commits] proj/sci:master commit in: sci-mathematics/libsfmt/
@ 2021-03-04 11:53 Andrew Ammerlaan
  0 siblings, 0 replies; 3+ messages in thread
From: Andrew Ammerlaan @ 2021-03-04 11:53 UTC (permalink / raw
  To: gentoo-commits

commit:     9d3824d6c16a8086a0081372355990866546eaf2
Author:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Thu Mar  4 11:14:45 2021 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Thu Mar  4 11:14:45 2021 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=9d3824d6

sci-mathematics/libsfmt: EAPI bump

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

 sci-mathematics/libsfmt/libsfmt-1.3.0.ebuild | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/sci-mathematics/libsfmt/libsfmt-1.3.0.ebuild b/sci-mathematics/libsfmt/libsfmt-1.3.0.ebuild
index e90437e41..c933eb0ac 100644
--- a/sci-mathematics/libsfmt/libsfmt-1.3.0.ebuild
+++ b/sci-mathematics/libsfmt/libsfmt-1.3.0.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=7
 
 DESCRIPTION="SIMD-oriented Fast Mersenne Twister"
 HOMEPAGE="http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/SFMT/index.html"
@@ -10,6 +10,7 @@ SRC_URI="http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/SFMT/VERSIONS/ARCHIVES/
 LICENSE="BSD"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
+
 IUSE="cpu_flags_x86_sse2"
 
 src_configure() {


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

end of thread, other threads:[~2021-03-04 11:53 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-03-04 11:53 [gentoo-commits] proj/sci:master commit in: sci-mathematics/libsfmt/ Andrew Ammerlaan
  -- strict thread matches above, loose matches on Subject: below --
2015-02-02 12:06 Justin Lecher
2014-11-13  0:15 Christoph Junghans

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