* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/yafu/
@ 2021-03-30 9:25 David Seifert
0 siblings, 0 replies; 6+ messages in thread
From: David Seifert @ 2021-03-30 9:25 UTC (permalink / raw
To: gentoo-commits
commit: 96a339dda415fc229484841a898b0b4054f1152d
Author: Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr>
AuthorDate: Tue Mar 30 09:24:03 2021 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Tue Mar 30 09:24:03 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96a339dd
sci-mathematics/yafu: Remove sieve USE flag
Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr>
Signed-off-by: David Seifert <soap <AT> gentoo.org>
sci-mathematics/yafu/metadata.xml | 3 ---
.../yafu/{yafu-1.34.3.ebuild => yafu-1.34.3-r1.ebuild} | 8 +-------
sci-mathematics/yafu/yafu-9999.ebuild | 9 +--------
3 files changed, 2 insertions(+), 18 deletions(-)
diff --git a/sci-mathematics/yafu/metadata.xml b/sci-mathematics/yafu/metadata.xml
index f07f2757aeb..056ae1719a6 100644
--- a/sci-mathematics/yafu/metadata.xml
+++ b/sci-mathematics/yafu/metadata.xml
@@ -5,9 +5,6 @@
<email>patrick@gentoo.org</email>
<name>Patrick Lauer</name>
</maintainer>
- <use>
- <flag name="sieve">Use msieve for the sieving steps of NFS</flag>
- </use>
<upstream>
<remote-id type="sourceforge">yafu</remote-id>
</upstream>
diff --git a/sci-mathematics/yafu/yafu-1.34.3.ebuild b/sci-mathematics/yafu/yafu-1.34.3-r1.ebuild
similarity index 90%
rename from sci-mathematics/yafu/yafu-1.34.3.ebuild
rename to sci-mathematics/yafu/yafu-1.34.3-r1.ebuild
index e48b2e4b205..24b5c5e29c9 100644
--- a/sci-mathematics/yafu/yafu-1.34.3.ebuild
+++ b/sci-mathematics/yafu/yafu-1.34.3-r1.ebuild
@@ -13,15 +13,10 @@ SRC_URI="mirror://sourceforge/${PN}/${MY_PV}/${PN}-${MY_PV}-src.zip"
SLOT="0"
LICENSE="public-domain"
KEYWORDS="~amd64 ~x86"
-IUSE="+sieve"
DEPEND="
dev-libs/gmp:0=
- sci-mathematics/gmp-ecm
- sieve? (
- sci-mathematics/ggnfs
- sci-mathematics/msieve
- )"
+ sci-mathematics/gmp-ecm"
RDEPEND="${DEPEND}"
BDEPEND="app-arch/unzip"
@@ -48,7 +43,6 @@ src_configure() {
src_compile() {
local VAR
- use sieve && VAR="NFS=1"
use amd64 && emake $VAR x86_64
use x86 && emake $VAR x86
}
diff --git a/sci-mathematics/yafu/yafu-9999.ebuild b/sci-mathematics/yafu/yafu-9999.ebuild
index 3f727cf66ae..baa6c351b54 100644
--- a/sci-mathematics/yafu/yafu-9999.ebuild
+++ b/sci-mathematics/yafu/yafu-9999.ebuild
@@ -12,16 +12,10 @@ ESVN_REPO_URI="https://svn.code.sf.net/p/yafu/code/"
SLOT="0"
LICENSE="public-domain"
-KEYWORDS=""
-# nfs is overloaded, so using less confusing sieve here
-IUSE="+sieve"
DEPEND="
dev-libs/gmp:0=
- sci-mathematics/gmp-ecm
- sieve? (
- sci-mathematics/msieve
- sci-mathematics/ggnfs )"
+ sci-mathematics/gmp-ecm"
RDEPEND="${DEPEND}"
src_prepare() {
@@ -44,7 +38,6 @@ src_compile() {
cd trunk
# hmm, not that useful:
#VAR="TIMING=1 "
- use sieve && VAR+="NFS=1"
use amd64 && emake $VAR x86_64
use x86 && emake $VAR x86
}
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/yafu/
@ 2022-01-23 14:08 罗百科
0 siblings, 0 replies; 6+ messages in thread
From: 罗百科 @ 2022-01-23 14:08 UTC (permalink / raw
To: gentoo-commits
commit: 9334ecb37c878660f72cba3d09e860ce542b8ae0
Author: Patrick Lauer <patrick <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 23 14:07:39 2022 +0000
Commit: 罗百科 <patrick <AT> gentoo <DOT> org>
CommitDate: Sun Jan 23 14:07:48 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9334ecb3
sci-mathematics/yafu: Add openmp dependency
Closes: https://bugs.gentoo.org/831890
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Patrick Lauer <patrick <AT> gentoo.org>
sci-mathematics/yafu/yafu-1.34.3-r1.ebuild | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/sci-mathematics/yafu/yafu-1.34.3-r1.ebuild b/sci-mathematics/yafu/yafu-1.34.3-r1.ebuild
index 24b5c5e29c94..dd3a36e87d85 100644
--- a/sci-mathematics/yafu/yafu-1.34.3-r1.ebuild
+++ b/sci-mathematics/yafu/yafu-1.34.3-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -15,6 +15,10 @@ LICENSE="public-domain"
KEYWORDS="~amd64 ~x86"
DEPEND="
+ || (
+ >=sys-devel/gcc-4.2:*[openmp]
+ sys-devel/clang-runtime:*[openmp]
+ )
dev-libs/gmp:0=
sci-mathematics/gmp-ecm"
RDEPEND="${DEPEND}"
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/yafu/
@ 2021-05-31 17:49 David Seifert
0 siblings, 0 replies; 6+ messages in thread
From: David Seifert @ 2021-05-31 17:49 UTC (permalink / raw
To: gentoo-commits
commit: 9624ef15a01bd05425c5761f83c65a8c13531b26
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Mon May 31 17:47:50 2021 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Mon May 31 17:47:50 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9624ef15
sci-mathematics/yafu: drop inactive maintainer
Package-Manager: Portage-3.0.19, Repoman-3.0.3
Signed-off-by: David Seifert <soap <AT> gentoo.org>
sci-mathematics/yafu/metadata.xml | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/sci-mathematics/yafu/metadata.xml b/sci-mathematics/yafu/metadata.xml
index 056ae1719a6..f5b47bd8043 100644
--- a/sci-mathematics/yafu/metadata.xml
+++ b/sci-mathematics/yafu/metadata.xml
@@ -1,10 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <maintainer type="person">
- <email>patrick@gentoo.org</email>
- <name>Patrick Lauer</name>
- </maintainer>
+ <!-- maintainer-needed -->
<upstream>
<remote-id type="sourceforge">yafu</remote-id>
</upstream>
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/yafu/
@ 2021-04-18 12:11 Andreas Sturmlechner
0 siblings, 0 replies; 6+ messages in thread
From: Andreas Sturmlechner @ 2021-04-18 12:11 UTC (permalink / raw
To: gentoo-commits
commit: 0115733449ace2a81ffc6eaa3ebff033da1bbf34
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 18 12:05:14 2021 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sun Apr 18 12:05:14 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01157334
sci-mathematics/yafu: Drop unmaintained live ebuild
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
sci-mathematics/yafu/yafu-9999.ebuild | 48 -----------------------------------
1 file changed, 48 deletions(-)
diff --git a/sci-mathematics/yafu/yafu-9999.ebuild b/sci-mathematics/yafu/yafu-9999.ebuild
deleted file mode 100644
index 76173ba1c42..00000000000
--- a/sci-mathematics/yafu/yafu-9999.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit subversion versionator
-
-DESCRIPTION="Yet another factoring utility"
-HOMEPAGE="https://sourceforge.net/projects/yafu/"
-#SRC_URI="mirror://sourceforge/${PN}/${PV}/${P}-src.zip"
-ESVN_REPO_URI="https://svn.code.sf.net/p/yafu/code/"
-
-SLOT="0"
-LICENSE="public-domain"
-
-DEPEND="
- dev-libs/gmp:0=
- sci-mathematics/gmp-ecm"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
- cd trunk
- # This is not nice. But then the Makefile is quite special :)
- sed -i -e 's:../gmp/include:gmp:' Makefile || die "Failed to rectify things"
- sed -i -e 's:../gmp-ecm/include:gmp-ecm:' Makefile || die "Failed to rectify things"
- sed -i -e 's:LIBS += -L../:# LIBS += -L../:g' Makefile || die "Failed to rectify things"
- sed -i -e 's:\"config.h\":<gmp-ecm/config.h>:g' top/driver.c || die "Failed to rectify things"
- sed -i -e 's:# LIBS += -L../msieve/lib/linux/x86_64:LIBS += -lmsieve -lz -ldl:' Makefile || die "Failed to rectify things"
- sed -i -e 's:CFLAGS = -g:#CFLAGS = -g:' Makefile || die "Failed to rectify things"
- sed -i -e '/$(LIBS)$/s:$(CC):$(CC) $(LDFLAGS):g' Makefile || die
-
- # proper ggnfs default path
- sed -i -e 's~strcpy(fobj->nfs_obj.ggnfs_dir,"./");~strcpy(fobj->nfs_obj.ggnfs_dir,"/usr/bin/");~' factor/factor_common.c || die "Failed to rectify things"
-}
-
-src_compile() {
- local VAR=""
- cd trunk
- # hmm, not that useful:
- #VAR="TIMING=1 "
- use amd64 && emake $VAR x86_64
- use x86 && emake $VAR x86
-}
-
-src_install() {
- dobin "${S}/yafu"
- dodoc docfile.txt README yafu.ini
-}
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/yafu/
@ 2016-05-14 23:32 David Seifert
0 siblings, 0 replies; 6+ messages in thread
From: David Seifert @ 2016-05-14 23:32 UTC (permalink / raw
To: gentoo-commits
commit: 1fe0f4345fefc6b179f96665c6439fcddf3fa5e2
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sat May 14 23:12:37 2016 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sat May 14 23:16:58 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1fe0f434
sci-mathematics/yafu: Fix QA MissingSlotDep
Package-Manager: portage-2.2.28
sci-mathematics/yafu/yafu-1.34.3.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sci-mathematics/yafu/yafu-1.34.3.ebuild b/sci-mathematics/yafu/yafu-1.34.3.ebuild
index 49dce30..b711c82 100644
--- a/sci-mathematics/yafu/yafu-1.34.3.ebuild
+++ b/sci-mathematics/yafu/yafu-1.34.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
@@ -19,7 +19,7 @@ KEYWORDS="~amd64 ~x86"
IUSE="+sieve"
DEPEND="
- dev-libs/gmp
+ dev-libs/gmp:0=
sci-mathematics/gmp-ecm
sieve? (
sci-mathematics/msieve
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/yafu/
@ 2016-05-14 23:32 David Seifert
0 siblings, 0 replies; 6+ messages in thread
From: David Seifert @ 2016-05-14 23:32 UTC (permalink / raw
To: gentoo-commits
commit: c96d5b8feda3b184c3af1f3685a8c18749247b83
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sat May 14 23:13:20 2016 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sat May 14 23:17:00 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c96d5b8f
sci-mathematics/yafu: Fix QA MissingSlotDep
Package-Manager: portage-2.2.28
sci-mathematics/yafu/yafu-9999.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sci-mathematics/yafu/yafu-9999.ebuild b/sci-mathematics/yafu/yafu-9999.ebuild
index f19d80f..9fdf00f 100644
--- a/sci-mathematics/yafu/yafu-9999.ebuild
+++ b/sci-mathematics/yafu/yafu-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
@@ -18,7 +18,7 @@ KEYWORDS=""
IUSE="+sieve"
DEPEND="
- dev-libs/gmp
+ dev-libs/gmp:0=
sci-mathematics/gmp-ecm
sieve? (
sci-mathematics/msieve
^ permalink raw reply related [flat|nested] 6+ messages in thread
end of thread, other threads:[~2022-01-23 14:08 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-03-30 9:25 [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/yafu/ David Seifert
-- strict thread matches above, loose matches on Subject: below --
2022-01-23 14:08 罗百科
2021-05-31 17:49 David Seifert
2021-04-18 12:11 Andreas Sturmlechner
2016-05-14 23:32 David Seifert
2016-05-14 23:32 David Seifert
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox