sci-mathematics/yafu: Port to EAPI 7

* Fix building with gcc-10
* Drop obsolete eclasses

Closes: https://bugs.gentoo.org/709304
Signed-off-by: Jakov Smolic <jakov.smolic@sartura.hr>
Closes: https://github.com/gentoo/gentoo/pull/19744
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Jakov Smolic 2021-03-02 22:09:48 +01:00 committed by Sam James
parent d3cc3f87f7
commit 6d14809988
No known key found for this signature in database
GPG Key ID: F4922810EEA0483B
3 changed files with 38 additions and 34 deletions

View File

@ -1,5 +1,5 @@
--- Makefile.orig 2013-03-17 11:20:40.248683894 +0400 --- a/Makefile
+++ Makefile 2013-03-17 11:20:47.352683657 +0400 +++ b/Makefile
@@ -87,7 +87,7 @@ ifeq ($(CC),icc) @@ -87,7 +87,7 @@ ifeq ($(CC),icc)
CFLAGS += -mtune=core2 -march=core2 CFLAGS += -mtune=core2 -march=core2
endif endif

View File

@ -1,14 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata> <pkgmetadata>
<maintainer type="person"> <maintainer type="person">
<email>patrick@gentoo.org</email> <email>patrick@gentoo.org</email>
<name>Patrick Lauer</name> <name>Patrick Lauer</name>
</maintainer> </maintainer>
<use> <use>
<flag name="sieve">Use msieve for the sieving steps of NFS</flag> <flag name="sieve">Use msieve for the sieving steps of NFS</flag>
</use> </use>
<upstream> <upstream>
<remote-id type="sourceforge">yafu</remote-id> <remote-id type="sourceforge">yafu</remote-id>
</upstream> </upstream>
</pkgmetadata> </pkgmetadata>

View File

@ -1,12 +1,11 @@
# Copyright 1999-2016 Gentoo Foundation # Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2 # Distributed under the terms of the GNU General Public License v2
EAPI=5 EAPI=7
inherit eutils versionator inherit flag-o-matic
MY_PV="$(get_version_component_range 1-2)"
MY_PV="$(ver_cut 1-2)"
DESCRIPTION="Yet another factoring utility" DESCRIPTION="Yet another factoring utility"
HOMEPAGE="https://sourceforge.net/projects/yafu/" HOMEPAGE="https://sourceforge.net/projects/yafu/"
SRC_URI="mirror://sourceforge/${PN}/${MY_PV}/${PN}-${MY_PV}-src.zip" SRC_URI="mirror://sourceforge/${PN}/${MY_PV}/${PN}-${MY_PV}-src.zip"
@ -14,42 +13,47 @@ SRC_URI="mirror://sourceforge/${PN}/${MY_PV}/${PN}-${MY_PV}-src.zip"
SLOT="0" SLOT="0"
LICENSE="public-domain" LICENSE="public-domain"
KEYWORDS="~amd64 ~x86" KEYWORDS="~amd64 ~x86"
# nfs is overloaded, so using less confusing sieve here
IUSE="+sieve" IUSE="+sieve"
DEPEND=" DEPEND="
dev-libs/gmp:0= dev-libs/gmp:0=
sci-mathematics/gmp-ecm sci-mathematics/gmp-ecm
sieve? ( sieve? (
sci-mathematics/ggnfs
sci-mathematics/msieve sci-mathematics/msieve
sci-mathematics/ggnfs )" )"
RDEPEND="${DEPEND}" RDEPEND="${DEPEND}"
BDEPEND="app-arch/unzip"
PATCHES=( "${FILESDIR}"/${P}-Makefile.patch )
src_prepare() { src_prepare() {
epatch "${FILESDIR}/fix-Makefile.patch" default
# This is not nice. But then the Makefile is quite special :) sed -i \
sed -i -e 's:../gmp/include:gmp:' Makefile || die "Failed to rectify things" -e 's:../gmp/include:gmp:' \
sed -i -e 's:../gmp-ecm/include:gmp-ecm:' Makefile || die "Failed to rectify things" -e 's:../gmp-ecm/include:gmp-ecm:' \
sed -i -e 's:LIBS += -L../:# LIBS += -L../:g' Makefile || die "Failed to rectify things" -e 's:# LIBS += -L../msieve/lib/linux/x86_64:LIBS += -lmsieve -lz -ldl:' \
sed -i -e 's:\"config.h\":<gmp-ecm/config.h>:g' top/driver.c || die "Failed to rectify things" -e 's:CFLAGS = -g:#CFLAGS = -g:' \
sed -i -e 's:# LIBS += -L../msieve/lib/linux/x86_64:LIBS += -lmsieve -lz -ldl:' Makefile || die "Failed to rectify things" -e '/$(LIBS)$/s:$(CC):$(CC) $(LDFLAGS):g' Makefile || die
sed -i -e 's:CFLAGS = -g:#CFLAGS = -g:' Makefile || die "Failed to rectify things" sed -i -e 's:\"config.h\":<gmp-ecm/config.h>:g' top/driver.c || die
sed -i -e '/$(LIBS)$/s:$(CC):$(CC) $(LDFLAGS):g' Makefile || die
# proper ggnfs default path # 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" sed -i -e 's~strcpy(fobj->nfs_obj.ggnfs_dir,"./");~strcpy(fobj->nfs_obj.ggnfs_dir,"/usr/bin/");~' factor/factor_common.c || die
}
src_configure() {
append-cflags -fcommon
default
} }
src_compile() { src_compile() {
local VAR="" local VAR
# hmm, not that useful: use sieve && VAR="NFS=1"
#VAR="TIMING=1 "
use sieve && VAR+="NFS=1"
use amd64 && emake $VAR x86_64 use amd64 && emake $VAR x86_64
use x86 && emake $VAR x86 use x86 && emake $VAR x86
} }
src_install() { src_install() {
dobin "${S}/yafu" dobin "${S}"/yafu
dodoc docfile.txt README yafu.ini dodoc docfile.txt README yafu.ini
} }