public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sci-mathematics/yafu: yafu-9999.ebuild ChangeLog
@ 2013-01-06 14:24 Patrick Lauer (patrick)
  0 siblings, 0 replies; 4+ messages in thread
From: Patrick Lauer (patrick) @ 2013-01-06 14:24 UTC (permalink / raw
  To: gentoo-commits

patrick     13/01/06 14:24:33

  Modified:             ChangeLog
  Added:                yafu-9999.ebuild
  Log:
  Add live ebuild
  
  (Portage version: 2.2.0_alpha149/cvs/Linux x86_64, unsigned Manifest commit)

Revision  Changes    Path
1.4                  sci-mathematics/yafu/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/yafu/ChangeLog?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/yafu/ChangeLog?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/yafu/ChangeLog?r1=1.3&r2=1.4

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/yafu/ChangeLog,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ChangeLog	28 Nov 2012 08:12:53 -0000	1.3
+++ ChangeLog	6 Jan 2013 14:24:33 -0000	1.4
@@ -1,6 +1,11 @@
 # ChangeLog for sci-mathematics/yafu
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/yafu/ChangeLog,v 1.3 2012/11/28 08:12:53 patrick Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/yafu/ChangeLog,v 1.4 2013/01/06 14:24:33 patrick Exp $
+
+*yafu-9999 (06 Jan 2013)
+
+  06 Jan 2013; Patrick Lauer <patrick@gentoo.org> +yafu-9999.ebuild:
+  Add live ebuild
 
   28 Nov 2012; Patrick Lauer <patrick@gentoo.org> yafu-1.33-r1.ebuild:
   Adding ggnfs dep



1.1                  sci-mathematics/yafu/yafu-9999.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/yafu/yafu-9999.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/yafu/yafu-9999.ebuild?rev=1.1&content-type=text/plain

Index: yafu-9999.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/yafu/yafu-9999.ebuild,v 1.1 2013/01/06 14:24:33 patrick Exp $

EAPI=4
DESCRIPTION="Yet another factoring utility"
HOMEPAGE="http://sourceforge.net/projects/yafu/"
#SRC_URI="mirror://sourceforge/${PN}/${PV}/${P}-src.zip"
ESVN_REPO_URI="https://yafu.svn.sourceforge.net/svnroot/yafu"

inherit eutils subversion

LICENSE="public-domain"
SLOT="0"
KEYWORDS=""
# nfs is overloaded, so using less confusing sieve here
IUSE="+sieve"

DEPEND="dev-libs/gmp
	sci-mathematics/gmp-ecm
	sieve? ( sci-mathematics/msieve
		sci-mathematics/ggnfs )"
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"
}

src_compile() {
	cd trunk
	# hmm, not that useful:
	#VAR="TIMING=1 "
	if use sieve; then
		VAR+="NFS=1"
	fi
	if use amd64; then
		emake $VAR x86_64 || die "Failed to build"
	fi
	if use x86; then
		emake $VAR x86 || die "Failed to build"
	fi
}

src_install() {
	mkdir -p "${D}/usr/bin/"
	cp "${S}/trunk/yafu" "${D}/usr/bin/" 					|| die "Failed to install"
	mkdir -p "${D}/usr/share/doc/${PN}"
	cp "${S}/trunk/docfile.txt" "${D}/usr/share/doc/${PN}/yafu.txt" 	|| die "Failed to install"
	cp "${S}/trunk/README" "${D}/usr/share/doc/${PN}/"			|| die "Failed to install"
	cp "${S}/trunk/yafu.ini" "${D}/usr/share/doc/${PN}/yafu.ini.example"	|| die "Failed to install"
}





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

* [gentoo-commits] gentoo-x86 commit in sci-mathematics/yafu: yafu-9999.ebuild ChangeLog
@ 2013-01-06 15:39 Patrick Lauer (patrick)
  0 siblings, 0 replies; 4+ messages in thread
From: Patrick Lauer (patrick) @ 2013-01-06 15:39 UTC (permalink / raw
  To: gentoo-commits

patrick     13/01/06 15:39:41

  Modified:             yafu-9999.ebuild ChangeLog
  Log:
  Fixing ggnfs default paths for live ebuild too
  
  (Portage version: 2.2.0_alpha149/cvs/Linux x86_64, unsigned Manifest commit)

Revision  Changes    Path
1.2                  sci-mathematics/yafu/yafu-9999.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/yafu/yafu-9999.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/yafu/yafu-9999.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/yafu/yafu-9999.ebuild?r1=1.1&r2=1.2

Index: yafu-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/yafu/yafu-9999.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- yafu-9999.ebuild	6 Jan 2013 14:24:33 -0000	1.1
+++ yafu-9999.ebuild	6 Jan 2013 15:39:41 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/yafu/yafu-9999.ebuild,v 1.1 2013/01/06 14:24:33 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/yafu/yafu-9999.ebuild,v 1.2 2013/01/06 15:39:41 patrick Exp $
 
 EAPI=4
 DESCRIPTION="Yet another factoring utility"
@@ -31,6 +31,9 @@
 	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"
+
+	# 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() {



1.7                  sci-mathematics/yafu/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/yafu/ChangeLog?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/yafu/ChangeLog?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/yafu/ChangeLog?r1=1.6&r2=1.7

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/yafu/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog	6 Jan 2013 15:37:17 -0000	1.6
+++ ChangeLog	6 Jan 2013 15:39:41 -0000	1.7
@@ -1,6 +1,9 @@
 # ChangeLog for sci-mathematics/yafu
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/yafu/ChangeLog,v 1.6 2013/01/06 15:37:17 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/yafu/ChangeLog,v 1.7 2013/01/06 15:39:41 patrick Exp $
+
+  06 Jan 2013; Patrick Lauer <patrick@gentoo.org> yafu-9999.ebuild:
+  Fixing ggnfs default paths for live ebuild too
 
 *yafu-1.33-r2 (06 Jan 2013)
 





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

* [gentoo-commits] gentoo-x86 commit in sci-mathematics/yafu: yafu-9999.ebuild ChangeLog
@ 2015-04-29  6:12 Patrick Lauer (patrick)
  0 siblings, 0 replies; 4+ messages in thread
From: Patrick Lauer (patrick) @ 2015-04-29  6:12 UTC (permalink / raw
  To: gentoo-commits

patrick     15/04/29 06:12:51

  Modified:             yafu-9999.ebuild ChangeLog
  Log:
  Change repository location for -9999
  
  (Portage version: 2.2.18/cvs/Linux x86_64, unsigned Manifest commit)

Revision  Changes    Path
1.4                  sci-mathematics/yafu/yafu-9999.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/yafu/yafu-9999.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/yafu/yafu-9999.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/yafu/yafu-9999.ebuild?r1=1.3&r2=1.4

Index: yafu-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/yafu/yafu-9999.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- yafu-9999.ebuild	7 Mar 2013 09:58:11 -0000	1.3
+++ yafu-9999.ebuild	29 Apr 2015 06:12:51 -0000	1.4
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/yafu/yafu-9999.ebuild,v 1.3 2013/03/07 09:58:11 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/yafu/yafu-9999.ebuild,v 1.4 2015/04/29 06:12:51 patrick Exp $
 
 EAPI=5
 
@@ -9,7 +9,8 @@
 DESCRIPTION="Yet another factoring utility"
 HOMEPAGE="http://sourceforge.net/projects/yafu/"
 #SRC_URI="mirror://sourceforge/${PN}/${PV}/${P}-src.zip"
-ESVN_REPO_URI="https://yafu.svn.sourceforge.net/svnroot/yafu"
+ESVN_REPO_URI="https://svn.code.sf.net/p/yafu/code/"
+
 
 SLOT="0"
 LICENSE="public-domain"



1.12                 sci-mathematics/yafu/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/yafu/ChangeLog?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/yafu/ChangeLog?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/yafu/ChangeLog?r1=1.11&r2=1.12

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/yafu/ChangeLog,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- ChangeLog	21 Mar 2013 08:09:43 -0000	1.11
+++ ChangeLog	29 Apr 2015 06:12:51 -0000	1.12
@@ -1,6 +1,9 @@
 # ChangeLog for sci-mathematics/yafu
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/yafu/ChangeLog,v 1.11 2013/03/21 08:09:43 patrick Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/yafu/ChangeLog,v 1.12 2015/04/29 06:12:51 patrick Exp $
+
+  29 Apr 2015; Patrick Lauer <patrick@gentoo.org> yafu-9999.ebuild:
+  Change repository location for -9999
 
   21 Mar 2013; Patrick Lauer <patrick@gentoo.org> +files/fix-Makefile.patch,
   yafu-1.34.3.ebuild:





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

* [gentoo-commits] gentoo-x86 commit in sci-mathematics/yafu: yafu-9999.ebuild ChangeLog
@ 2015-04-29  9:17 Patrick Lauer (patrick)
  0 siblings, 0 replies; 4+ messages in thread
From: Patrick Lauer (patrick) @ 2015-04-29  9:17 UTC (permalink / raw
  To: gentoo-commits

patrick     15/04/29 09:17:12

  Modified:             yafu-9999.ebuild ChangeLog
  Log:
  Whitespace
  
  (Portage version: 2.2.18/cvs/Linux x86_64, unsigned Manifest commit)

Revision  Changes    Path
1.5                  sci-mathematics/yafu/yafu-9999.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/yafu/yafu-9999.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/yafu/yafu-9999.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/yafu/yafu-9999.ebuild?r1=1.4&r2=1.5

Index: yafu-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/yafu/yafu-9999.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- yafu-9999.ebuild	29 Apr 2015 06:12:51 -0000	1.4
+++ yafu-9999.ebuild	29 Apr 2015 09:17:12 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/yafu/yafu-9999.ebuild,v 1.4 2015/04/29 06:12:51 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/yafu/yafu-9999.ebuild,v 1.5 2015/04/29 09:17:12 patrick Exp $
 
 EAPI=5
 
@@ -11,7 +11,6 @@
 #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"
 KEYWORDS=""



1.13                 sci-mathematics/yafu/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/yafu/ChangeLog?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/yafu/ChangeLog?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/yafu/ChangeLog?r1=1.12&r2=1.13

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/yafu/ChangeLog,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ChangeLog	29 Apr 2015 06:12:51 -0000	1.12
+++ ChangeLog	29 Apr 2015 09:17:12 -0000	1.13
@@ -1,6 +1,9 @@
 # ChangeLog for sci-mathematics/yafu
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/yafu/ChangeLog,v 1.12 2015/04/29 06:12:51 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/yafu/ChangeLog,v 1.13 2015/04/29 09:17:12 patrick Exp $
+
+  29 Apr 2015; Patrick Lauer <patrick@gentoo.org> yafu-9999.ebuild:
+  Whitespace
 
   29 Apr 2015; Patrick Lauer <patrick@gentoo.org> yafu-9999.ebuild:
   Change repository location for -9999





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

end of thread, other threads:[~2015-04-29  9:17 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-06 15:39 [gentoo-commits] gentoo-x86 commit in sci-mathematics/yafu: yafu-9999.ebuild ChangeLog Patrick Lauer (patrick)
  -- strict thread matches above, loose matches on Subject: below --
2015-04-29  9:17 Patrick Lauer (patrick)
2015-04-29  6:12 Patrick Lauer (patrick)
2013-01-06 14:24 Patrick Lauer (patrick)

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