public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sci-mathematics/normaliz: normaliz-2.10.ebuild ChangeLog
@ 2013-05-14  7:21 Thomas Kahle (tomka)
  0 siblings, 0 replies; 4+ messages in thread
From: Thomas Kahle (tomka) @ 2013-05-14  7:21 UTC (permalink / raw
  To: gentoo-commits

tomka       13/05/14 07:21:21

  Modified:             ChangeLog
  Added:                normaliz-2.10.ebuild
  Log:
  bump to 2.10
  
  (Portage version: 2.1.11.63/cvs/Linux x86_64, signed Manifest commit with key 0x89DEB219565C32BC!)

Revision  Changes    Path
1.10                 sci-mathematics/normaliz/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/normaliz/ChangeLog,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ChangeLog	12 Nov 2012 03:15:19 -0000	1.9
+++ ChangeLog	14 May 2013 07:21:21 -0000	1.10
@@ -1,6 +1,12 @@
 # ChangeLog for sci-mathematics/normaliz
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/normaliz/ChangeLog,v 1.9 2012/11/12 03:15:19 tomka Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/normaliz/ChangeLog,v 1.10 2013/05/14 07:21:21 tomka Exp $
+
+*normaliz-2.10 (14 May 2013)
+
+  14 May 2013; Thomas Kahle <tomka@gentoo.org>
+  +files/normaliz-2.10-respect-flags.patch, +normaliz-2.10.ebuild:
+  bump to 2.10
 
 *normaliz-2.8 (12 Nov 2012)
 



1.1                  sci-mathematics/normaliz/normaliz-2.10.ebuild

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

Index: normaliz-2.10.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/normaliz/normaliz-2.10.ebuild,v 1.1 2013/05/14 07:21:21 tomka Exp $

EAPI=5

inherit eutils toolchain-funcs

MYP="Normaliz${PV}"

DESCRIPTION="Tool for computations in affine monoids and more"
HOMEPAGE="http://www.mathematik.uni-osnabrueck.de/normaliz/"
SRC_URI="http://www.mathematik.uni-osnabrueck.de/${PN}/${MYP}/${MYP}.zip"

LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="extras openmp"

RDEPEND="dev-libs/gmp[cxx]"
DEPEND="${RDEPEND}
	app-arch/unzip
	dev-libs/boost"
# Only a boost header is needed -> not RDEPEND

S=${WORKDIR}/${MYP}

src_prepare () {
	epatch "${FILESDIR}/${P}-respect-flags.patch"

	if use openmp && tc-has-openmp; then
		export OPENMP=yes
	else
		export OPENMP=no
	fi
}

src_compile(){
	emake CXX="$(tc-getCXX)" OPENMP="${OPENMP}" -C source
}

src_install() {
	dobin source/normaliz
	dodoc doc/"${MYP}Documentation.pdf"
	dodoc doc/"NmzIntegrate1.1Documentation.pdf"
	if use extras; then
		elog "You have selected to install extras which consist of Macaulay2"
		elog "and Singular packages. These have been installed into "
		elog "/usr/share/${PN}, and cannot be used without additional setup. Please refer"
		elog "to the homepages of the respective projects for additional information."
		elog "Note however, Gentoo's versions of Singular and Macaulay2 bring their own"
		elog "copies of these interface packages. Usually you don't need normaliz's versions."
		insinto "/usr/share/${PN}"
		doins Singular/normaliz.lib
		doins Macaulay2/Normaliz.m2
	fi
}





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

* [gentoo-commits] gentoo-x86 commit in sci-mathematics/normaliz: normaliz-2.10.ebuild ChangeLog
@ 2013-06-25  8:26 Thomas Kahle (tomka)
  0 siblings, 0 replies; 4+ messages in thread
From: Thomas Kahle (tomka) @ 2013-06-25  8:26 UTC (permalink / raw
  To: gentoo-commits

tomka       13/06/25 08:26:23

  Modified:             normaliz-2.10.ebuild ChangeLog
  Log:
  Respect users AR tool (bug 474532)
  
  (Portage version: 2.1.12.9/cvs/Linux x86_64, signed Manifest commit with key 0x89DEB219565C32BC!)

Revision  Changes    Path
1.2                  sci-mathematics/normaliz/normaliz-2.10.ebuild

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

Index: normaliz-2.10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/normaliz/normaliz-2.10.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- normaliz-2.10.ebuild	14 May 2013 07:21:21 -0000	1.1
+++ normaliz-2.10.ebuild	25 Jun 2013 08:26:23 -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/normaliz/normaliz-2.10.ebuild,v 1.1 2013/05/14 07:21:21 tomka Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/normaliz/normaliz-2.10.ebuild,v 1.2 2013/06/25 08:26:23 tomka Exp $
 
 EAPI=5
 
@@ -28,6 +28,9 @@
 src_prepare () {
 	epatch "${FILESDIR}/${P}-respect-flags.patch"
 
+	# Respect users AR tool (Bug 474532)
+	sed -e "s:ar -cr:$(tc-getAR) -cr:" -i source/libnormaliz/Makefile
+
 	if use openmp && tc-has-openmp; then
 		export OPENMP=yes
 	else



1.12                 sci-mathematics/normaliz/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/normaliz/ChangeLog,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- ChangeLog	14 May 2013 07:24:11 -0000	1.11
+++ ChangeLog	25 Jun 2013 08:26:23 -0000	1.12
@@ -1,6 +1,9 @@
 # ChangeLog for sci-mathematics/normaliz
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/normaliz/ChangeLog,v 1.11 2013/05/14 07:24:11 tomka Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/normaliz/ChangeLog,v 1.12 2013/06/25 08:26:23 tomka Exp $
+
+  25 Jun 2013; Thomas Kahle <tomka@gentoo.org> normaliz-2.10.ebuild:
+  Respect users AR tool (bug 474532)
 
   14 May 2013; Thomas Kahle <tomka@gentoo.org> normaliz-2.10.ebuild:
   bump to 2.10





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

* [gentoo-commits] gentoo-x86 commit in sci-mathematics/normaliz: normaliz-2.10.ebuild ChangeLog
@ 2013-06-25 12:09 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 4+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-06-25 12:09 UTC (permalink / raw
  To: gentoo-commits

ago         13/06/25 12:09:18

  Modified:             normaliz-2.10.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #473564
  
  (Portage version: 2.1.12.9/cvs/Linux x86_64, RepoMan options: --include-arches="x86", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.3                  sci-mathematics/normaliz/normaliz-2.10.ebuild

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

Index: normaliz-2.10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/normaliz/normaliz-2.10.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- normaliz-2.10.ebuild	25 Jun 2013 08:26:23 -0000	1.2
+++ normaliz-2.10.ebuild	25 Jun 2013 12:09:18 -0000	1.3
@@ -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/normaliz/normaliz-2.10.ebuild,v 1.2 2013/06/25 08:26:23 tomka Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/normaliz/normaliz-2.10.ebuild,v 1.3 2013/06/25 12:09:18 ago Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE="extras openmp"
 
 RDEPEND="dev-libs/gmp[cxx]"



1.13                 sci-mathematics/normaliz/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/normaliz/ChangeLog,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ChangeLog	25 Jun 2013 08:26:23 -0000	1.12
+++ ChangeLog	25 Jun 2013 12:09:18 -0000	1.13
@@ -1,6 +1,9 @@
 # ChangeLog for sci-mathematics/normaliz
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/normaliz/ChangeLog,v 1.12 2013/06/25 08:26:23 tomka Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/normaliz/ChangeLog,v 1.13 2013/06/25 12:09:18 ago Exp $
+
+  25 Jun 2013; Agostino Sarubbo <ago@gentoo.org> normaliz-2.10.ebuild:
+  Stable for x86, wrt bug #473564
 
   25 Jun 2013; Thomas Kahle <tomka@gentoo.org> normaliz-2.10.ebuild:
   Respect users AR tool (bug 474532)





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

* [gentoo-commits] gentoo-x86 commit in sci-mathematics/normaliz: normaliz-2.10.ebuild ChangeLog
@ 2013-06-25 12:57 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 4+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-06-25 12:57 UTC (permalink / raw
  To: gentoo-commits

ago         13/06/25 12:57:09

  Modified:             normaliz-2.10.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #473564
  
  (Portage version: 2.1.12.9/cvs/Linux x86_64, RepoMan options: --include-arches="amd64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.4                  sci-mathematics/normaliz/normaliz-2.10.ebuild

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

Index: normaliz-2.10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/normaliz/normaliz-2.10.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- normaliz-2.10.ebuild	25 Jun 2013 12:09:18 -0000	1.3
+++ normaliz-2.10.ebuild	25 Jun 2013 12:57:08 -0000	1.4
@@ -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/normaliz/normaliz-2.10.ebuild,v 1.3 2013/06/25 12:09:18 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/normaliz/normaliz-2.10.ebuild,v 1.4 2013/06/25 12:57:08 ago Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 IUSE="extras openmp"
 
 RDEPEND="dev-libs/gmp[cxx]"



1.14                 sci-mathematics/normaliz/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/normaliz/ChangeLog,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- ChangeLog	25 Jun 2013 12:09:18 -0000	1.13
+++ ChangeLog	25 Jun 2013 12:57:08 -0000	1.14
@@ -1,6 +1,9 @@
 # ChangeLog for sci-mathematics/normaliz
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/normaliz/ChangeLog,v 1.13 2013/06/25 12:09:18 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/normaliz/ChangeLog,v 1.14 2013/06/25 12:57:08 ago Exp $
+
+  25 Jun 2013; Agostino Sarubbo <ago@gentoo.org> normaliz-2.10.ebuild:
+  Stable for amd64, wrt bug #473564
 
   25 Jun 2013; Agostino Sarubbo <ago@gentoo.org> normaliz-2.10.ebuild:
   Stable for x86, wrt bug #473564





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

end of thread, other threads:[~2013-06-25 12:57 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-06-25  8:26 [gentoo-commits] gentoo-x86 commit in sci-mathematics/normaliz: normaliz-2.10.ebuild ChangeLog Thomas Kahle (tomka)
  -- strict thread matches above, loose matches on Subject: below --
2013-06-25 12:57 Agostino Sarubbo (ago)
2013-06-25 12:09 Agostino Sarubbo (ago)
2013-05-14  7:21 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