public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sci-mathematics/flint: flint-2.4.5.ebuild ChangeLog
@ 2015-04-02 12:27 Thomas Kahle (tomka)
  0 siblings, 0 replies; 4+ messages in thread
From: Thomas Kahle (tomka) @ 2015-04-02 12:27 UTC (permalink / raw
  To: gentoo-commits

tomka       15/04/02 12:27:59

  Modified:             ChangeLog
  Added:                flint-2.4.5.ebuild
  Log:
  Bump to 2.4.5 (542682)
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 565C32BC)

Revision  Changes    Path
1.11                 sci-mathematics/flint/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/flint/ChangeLog,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- ChangeLog	25 Nov 2014 23:27:26 -0000	1.10
+++ ChangeLog	2 Apr 2015 12:27:59 -0000	1.11
@@ -1,6 +1,11 @@
 # ChangeLog for sci-mathematics/flint
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/flint/ChangeLog,v 1.10 2014/11/25 23:27:26 hasufell Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/flint/ChangeLog,v 1.11 2015/04/02 12:27:59 tomka Exp $
+
+*flint-2.4.5 (02 Apr 2015)
+
+  02 Apr 2015; Thomas Kahle <tomka@gentoo.org> +flint-2.4.5.ebuild:
+  Bump to 2.4.5 (542682)
 
   25 Nov 2014; Julian Ospald <hasufell@gentoo.org> metadata.xml:
   drop maintainership



1.1                  sci-mathematics/flint/flint-2.4.5.ebuild

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

Index: flint-2.4.5.ebuild
===================================================================
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/flint/flint-2.4.5.ebuild,v 1.1 2015/04/02 12:27:59 tomka Exp $

EAPI="5"

inherit eutils multilib toolchain-funcs

DESCRIPTION="Fast Library for Number Theory"
HOMEPAGE="http://www.flintlib.org/"
SRC_URI="http://www.flintlib.org/${P}.tar.gz"

RESTRICT="mirror"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc gc ntl static-libs test"

RDEPEND="dev-libs/gmp
	dev-libs/mpfr
	gc? ( dev-libs/boehm-gc )
	ntl? ( dev-libs/ntl )"
DEPEND="${RDEPEND}
	doc? (
		app-text/texlive-core
		dev-texlive/texlive-latex
		dev-texlive/texlive-latexextra
	)"

src_prepare() {
	epatch "${FILESDIR}"/${PN}-2.4.3-libdir.patch \
		"${FILESDIR}"/${PN}-2.4.3-whitespaces.patch \
		"${FILESDIR}"/${PN}-2.4.3-cflags-ldflags.patch \
		"${FILESDIR}"/${PN}-2.4.4-test.patch
}

src_configure() {
	./configure \
		--prefix="${EPREFIX}/usr" \
		--with-gmp="${EPREFIX}/usr" \
		--with-mpfr="${EPREFIX}/usr" \
		$(usex ntl "--with-ntl=${EPREFIX}/usr" "") \
		$(use_enable static-libs static) \
		$(usex gc "--with-gc=${EPREFIX}/usr" "") \
		CC=$(tc-getCC) \
		CXX=$(tc-getCXX) \
		AR=$(tc-getAR) \
		|| die
}

src_compile() {
	emake verbose

	if use doc ; then
		emake -C doc/latex
	fi
}

src_test() {
	emake AT= QUIET_CC= QUIET_CXX= QUIET_AR= check
}

src_install() {
	emake DESTDIR="${D}" LIBDIR="$(get_libdir)" install
	einstalldocs
	use doc && dodoc doc/latex/flint-manual.pdf
}





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

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

patrick     15/04/03 06:29:58

  Modified:             flint-2.4.5.ebuild ChangeLog
  Log:
  Restrict ntl dep #545318
  
  (Portage version: 2.2.18/cvs/Linux x86_64, unsigned Manifest commit)

Revision  Changes    Path
1.2                  sci-mathematics/flint/flint-2.4.5.ebuild

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

Index: flint-2.4.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/flint/flint-2.4.5.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- flint-2.4.5.ebuild	2 Apr 2015 12:27:59 -0000	1.1
+++ flint-2.4.5.ebuild	3 Apr 2015 06:29:57 -0000	1.2
@@ -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/flint/flint-2.4.5.ebuild,v 1.1 2015/04/02 12:27:59 tomka Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/flint/flint-2.4.5.ebuild,v 1.2 2015/04/03 06:29:57 patrick Exp $
 
 EAPI="5"
 
@@ -19,7 +19,7 @@
 RDEPEND="dev-libs/gmp
 	dev-libs/mpfr
 	gc? ( dev-libs/boehm-gc )
-	ntl? ( dev-libs/ntl )"
+	ntl? ( <dev-libs/ntl-8 )"
 DEPEND="${RDEPEND}
 	doc? (
 		app-text/texlive-core



1.12                 sci-mathematics/flint/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/flint/ChangeLog,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- ChangeLog	2 Apr 2015 12:27:59 -0000	1.11
+++ ChangeLog	3 Apr 2015 06:29:57 -0000	1.12
@@ -1,6 +1,9 @@
 # ChangeLog for sci-mathematics/flint
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/flint/ChangeLog,v 1.11 2015/04/02 12:27:59 tomka Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/flint/ChangeLog,v 1.12 2015/04/03 06:29:57 patrick Exp $
+
+  03 Apr 2015; Patrick Lauer <patrick@gentoo.org> flint-2.4.5.ebuild:
+  Restrict ntl dep #545318
 
 *flint-2.4.5 (02 Apr 2015)
 





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

* [gentoo-commits] gentoo-x86 commit in sci-mathematics/flint: flint-2.4.5.ebuild ChangeLog
@ 2015-04-03 10:03 Thomas Kahle (tomka)
  0 siblings, 0 replies; 4+ messages in thread
From: Thomas Kahle (tomka) @ 2015-04-03 10:03 UTC (permalink / raw
  To: gentoo-commits

tomka       15/04/03 10:03:43

  Modified:             flint-2.4.5.ebuild ChangeLog
  Log:
  Fix tests with gmp-6 (bug 545378)
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 565C32BC)

Revision  Changes    Path
1.3                  sci-mathematics/flint/flint-2.4.5.ebuild

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

Index: flint-2.4.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/flint/flint-2.4.5.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- flint-2.4.5.ebuild	3 Apr 2015 06:29:57 -0000	1.2
+++ flint-2.4.5.ebuild	3 Apr 2015 10:03:43 -0000	1.3
@@ -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/flint/flint-2.4.5.ebuild,v 1.2 2015/04/03 06:29:57 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/flint/flint-2.4.5.ebuild,v 1.3 2015/04/03 10:03:43 tomka Exp $
 
 EAPI="5"
 
@@ -31,7 +31,8 @@
 	epatch "${FILESDIR}"/${PN}-2.4.3-libdir.patch \
 		"${FILESDIR}"/${PN}-2.4.3-whitespaces.patch \
 		"${FILESDIR}"/${PN}-2.4.3-cflags-ldflags.patch \
-		"${FILESDIR}"/${PN}-2.4.4-test.patch
+		"${FILESDIR}"/${PN}-2.4.4-test.patch \
+		"${FILESDIR}"/${PN}-2.4.5-gmp6-compat.patch
 }
 
 src_configure() {



1.13                 sci-mathematics/flint/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/flint/ChangeLog,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ChangeLog	3 Apr 2015 06:29:57 -0000	1.12
+++ ChangeLog	3 Apr 2015 10:03:43 -0000	1.13
@@ -1,6 +1,10 @@
 # ChangeLog for sci-mathematics/flint
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/flint/ChangeLog,v 1.12 2015/04/03 06:29:57 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/flint/ChangeLog,v 1.13 2015/04/03 10:03:43 tomka Exp $
+
+  03 Apr 2015; Thomas Kahle <tomka@gentoo.org>
+  +files/flint-2.4.5-gmp6-compat.patch, flint-2.4.5.ebuild:
+  Fix tests with gmp-6 (bug 545378)
 
   03 Apr 2015; Patrick Lauer <patrick@gentoo.org> flint-2.4.5.ebuild:
   Restrict ntl dep #545318





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

* [gentoo-commits] gentoo-x86 commit in sci-mathematics/flint: flint-2.4.5.ebuild ChangeLog
@ 2015-04-05 11:19 Thomas Kahle (tomka)
  0 siblings, 0 replies; 4+ messages in thread
From: Thomas Kahle (tomka) @ 2015-04-05 11:19 UTC (permalink / raw
  To: gentoo-commits

tomka       15/04/05 11:19:35

  Modified:             flint-2.4.5.ebuild ChangeLog
  Log:
  Fix ntl compatibility (bug 545318)
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 565C32BC)

Revision  Changes    Path
1.4                  sci-mathematics/flint/flint-2.4.5.ebuild

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

Index: flint-2.4.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/flint/flint-2.4.5.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- flint-2.4.5.ebuild	3 Apr 2015 10:03:43 -0000	1.3
+++ flint-2.4.5.ebuild	5 Apr 2015 11:19:35 -0000	1.4
@@ -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/flint/flint-2.4.5.ebuild,v 1.3 2015/04/03 10:03:43 tomka Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/flint/flint-2.4.5.ebuild,v 1.4 2015/04/05 11:19:35 tomka Exp $
 
 EAPI="5"
 
@@ -19,7 +19,7 @@
 RDEPEND="dev-libs/gmp
 	dev-libs/mpfr
 	gc? ( dev-libs/boehm-gc )
-	ntl? ( <dev-libs/ntl-8 )"
+	ntl? ( dev-libs/ntl )"
 DEPEND="${RDEPEND}
 	doc? (
 		app-text/texlive-core
@@ -32,7 +32,8 @@
 		"${FILESDIR}"/${PN}-2.4.3-whitespaces.patch \
 		"${FILESDIR}"/${PN}-2.4.3-cflags-ldflags.patch \
 		"${FILESDIR}"/${PN}-2.4.4-test.patch \
-		"${FILESDIR}"/${PN}-2.4.5-gmp6-compat.patch
+		"${FILESDIR}"/${PN}-2.4.5-gmp6-compat.patch \
+		"${FILESDIR}"/${PN}-2.4.5-ntl62.patch
 }
 
 src_configure() {



1.14                 sci-mathematics/flint/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/flint/ChangeLog,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- ChangeLog	3 Apr 2015 10:03:43 -0000	1.13
+++ ChangeLog	5 Apr 2015 11:19:35 -0000	1.14
@@ -1,6 +1,10 @@
 # ChangeLog for sci-mathematics/flint
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/flint/ChangeLog,v 1.13 2015/04/03 10:03:43 tomka Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/flint/ChangeLog,v 1.14 2015/04/05 11:19:35 tomka Exp $
+
+  05 Apr 2015; Thomas Kahle <tomka@gentoo.org> +files/flint-2.4.5-ntl62.patch,
+  flint-2.4.5.ebuild:
+  Fix ntl compatibility (bug 545318)
 
   03 Apr 2015; Thomas Kahle <tomka@gentoo.org>
   +files/flint-2.4.5-gmp6-compat.patch, flint-2.4.5.ebuild:





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

end of thread, other threads:[~2015-04-05 11:19 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-04-05 11:19 [gentoo-commits] gentoo-x86 commit in sci-mathematics/flint: flint-2.4.5.ebuild ChangeLog Thomas Kahle (tomka)
  -- strict thread matches above, loose matches on Subject: below --
2015-04-03 10:03 Thomas Kahle (tomka)
2015-04-03  6:29 Patrick Lauer (patrick)
2015-04-02 12:27 Thomas Kahle (tomka)

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