public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-python/cgal-python: ChangeLog cgal-python-0.9.4_beta1.ebuild
@ 2010-02-26  0:30 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 3+ messages in thread
From: Samuli Suominen (ssuominen) @ 2010-02-26  0:30 UTC (permalink / raw
  To: gentoo-commits

ssuominen    10/02/26 00:30:38

  Modified:             ChangeLog cgal-python-0.9.4_beta1.ebuild
  Log:
  Link to CGAL, mpfr and gmp (if cgal was built with USE="gmp") wrt #306887, thanks to Kamil Kisiel for reporting.
  (Portage version: 2.2_rc63/cvs/Linux x86_64)

Revision  Changes    Path
1.3                  dev-python/cgal-python/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/cgal-python/ChangeLog?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/cgal-python/ChangeLog?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/cgal-python/ChangeLog?r1=1.2&r2=1.3

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/cgal-python/ChangeLog,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ChangeLog	10 Jan 2010 10:36:37 -0000	1.2
+++ ChangeLog	26 Feb 2010 00:30:37 -0000	1.3
@@ -1,6 +1,12 @@
 # ChangeLog for dev-python/cgal-python
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/cgal-python/ChangeLog,v 1.2 2010/01/10 10:36:37 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/cgal-python/ChangeLog,v 1.3 2010/02/26 00:30:37 ssuominen Exp $
+
+  26 Feb 2010; Samuli Suominen <ssuominen@gentoo.org>
+  cgal-python-0.9.4_beta1.ebuild,
+  +files/cgal-python-0.9.4_beta1-linking.patch:
+  Link to CGAL, mpfr and gmp (if cgal was built with USE="gmp") wrt #306887,
+  thanks to Kamil Kisiel for reporting.
 
 *cgal-python-0.9.4_beta1 (10 Jan 2010)
 



1.2                  dev-python/cgal-python/cgal-python-0.9.4_beta1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/cgal-python/cgal-python-0.9.4_beta1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/cgal-python/cgal-python-0.9.4_beta1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/cgal-python/cgal-python-0.9.4_beta1.ebuild?r1=1.1&r2=1.2

Index: cgal-python-0.9.4_beta1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/cgal-python/cgal-python-0.9.4_beta1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- cgal-python-0.9.4_beta1.ebuild	10 Jan 2010 10:36:37 -0000	1.1
+++ cgal-python-0.9.4_beta1.ebuild	26 Feb 2010 00:30:37 -0000	1.2
@@ -1,9 +1,9 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/cgal-python/cgal-python-0.9.4_beta1.ebuild,v 1.1 2010/01/10 10:36:37 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/cgal-python/cgal-python-0.9.4_beta1.ebuild,v 1.2 2010/02/26 00:30:37 ssuominen Exp $
 
 EAPI=2
-inherit toolchain-funcs python
+inherit eutils toolchain-funcs python
 
 MY_P=${P/_/-}
 
@@ -16,11 +16,20 @@
 KEYWORDS="~amd64 ~x86"
 IUSE="examples"
 
-DEPEND=">=sci-mathematics/cgal-3.5.1"
+DEPEND="dev-libs/mpfr
+	>=sci-mathematics/cgal-3.5.1"
 
 S=${WORKDIR}/${MY_P}
 
 src_prepare() {
+	epatch "${FILESDIR}"/${P}-linking.patch
+
+	if has_version sci-mathematics/cgal[gmp]; then
+		sed -i \
+			-e 's:$(CGAL_LDFLAGS):-lgmp $(CGAL_LDFLAGS):' \
+			bindings/makefile.inc || die
+	fi
+
 	python_version
 	sed -i \
 		-e "s:-I../.. -O2:-I/usr/include/python${PYVER} -I../..:g" \






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

* [gentoo-commits] gentoo-x86 commit in dev-python/cgal-python: ChangeLog cgal-python-0.9.4_beta1.ebuild
@ 2010-02-26 22:12 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 3+ messages in thread
From: Samuli Suominen (ssuominen) @ 2010-02-26 22:12 UTC (permalink / raw
  To: gentoo-commits

ssuominen    10/02/26 22:12:24

  Modified:             ChangeLog cgal-python-0.9.4_beta1.ebuild
  Log:
  Append -frounding-math wrt #307007, thanks to Kamil Kisiel for reporting.
  (Portage version: 2.2_rc63/cvs/Linux x86_64)

Revision  Changes    Path
1.4                  dev-python/cgal-python/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/cgal-python/ChangeLog?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/cgal-python/ChangeLog?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/cgal-python/ChangeLog?r1=1.3&r2=1.4

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/cgal-python/ChangeLog,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ChangeLog	26 Feb 2010 00:30:37 -0000	1.3
+++ ChangeLog	26 Feb 2010 22:12:23 -0000	1.4
@@ -1,6 +1,10 @@
 # ChangeLog for dev-python/cgal-python
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/cgal-python/ChangeLog,v 1.3 2010/02/26 00:30:37 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/cgal-python/ChangeLog,v 1.4 2010/02/26 22:12:23 ssuominen Exp $
+
+  26 Feb 2010; Samuli Suominen <ssuominen@gentoo.org>
+  cgal-python-0.9.4_beta1.ebuild:
+  Append -frounding-math wrt #307007, thanks to Kamil Kisiel for reporting.
 
   26 Feb 2010; Samuli Suominen <ssuominen@gentoo.org>
   cgal-python-0.9.4_beta1.ebuild,



1.3                  dev-python/cgal-python/cgal-python-0.9.4_beta1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/cgal-python/cgal-python-0.9.4_beta1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/cgal-python/cgal-python-0.9.4_beta1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/cgal-python/cgal-python-0.9.4_beta1.ebuild?r1=1.2&r2=1.3

Index: cgal-python-0.9.4_beta1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/cgal-python/cgal-python-0.9.4_beta1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- cgal-python-0.9.4_beta1.ebuild	26 Feb 2010 00:30:37 -0000	1.2
+++ cgal-python-0.9.4_beta1.ebuild	26 Feb 2010 22:12:23 -0000	1.3
@@ -1,9 +1,9 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/cgal-python/cgal-python-0.9.4_beta1.ebuild,v 1.2 2010/02/26 00:30:37 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/cgal-python/cgal-python-0.9.4_beta1.ebuild,v 1.3 2010/02/26 22:12:23 ssuominen Exp $
 
 EAPI=2
-inherit eutils toolchain-funcs python
+inherit eutils flag-o-matic toolchain-funcs python
 
 MY_P=${P/_/-}
 
@@ -39,6 +39,11 @@
 	done
 }
 
+src_compile() {
+	append-cxxflags -frounding-math
+	emake || die
+}
+
 src_test() {
 	emake -j1 tests || die
 }






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

* [gentoo-commits] gentoo-x86 commit in dev-python/cgal-python: ChangeLog cgal-python-0.9.4_beta1.ebuild
@ 2010-06-16  1:43 Arfrever Frehtes Taifersar Arahesis (arfrever)
  0 siblings, 0 replies; 3+ messages in thread
From: Arfrever Frehtes Taifersar Arahesis (arfrever) @ 2010-06-16  1:43 UTC (permalink / raw
  To: gentoo-commits

arfrever    10/06/16 01:43:15

  Modified:             ChangeLog cgal-python-0.9.4_beta1.ebuild
  Log:
  Delete call to deprecated python_version().
  (Portage version: HEAD/cvs/Linux x86_64)

Revision  Changes    Path
1.5                  dev-python/cgal-python/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cgal-python/ChangeLog?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cgal-python/ChangeLog?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cgal-python/ChangeLog?r1=1.4&r2=1.5

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/cgal-python/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog	26 Feb 2010 22:12:23 -0000	1.4
+++ ChangeLog	16 Jun 2010 01:43:15 -0000	1.5
@@ -1,6 +1,10 @@
 # ChangeLog for dev-python/cgal-python
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/cgal-python/ChangeLog,v 1.4 2010/02/26 22:12:23 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/cgal-python/ChangeLog,v 1.5 2010/06/16 01:43:15 arfrever Exp $
+
+  16 Jun 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
+  cgal-python-0.9.4_beta1.ebuild:
+  Delete call to deprecated python_version().
 
   26 Feb 2010; Samuli Suominen <ssuominen@gentoo.org>
   cgal-python-0.9.4_beta1.ebuild:



1.4                  dev-python/cgal-python/cgal-python-0.9.4_beta1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cgal-python/cgal-python-0.9.4_beta1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cgal-python/cgal-python-0.9.4_beta1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cgal-python/cgal-python-0.9.4_beta1.ebuild?r1=1.3&r2=1.4

Index: cgal-python-0.9.4_beta1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/cgal-python/cgal-python-0.9.4_beta1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- cgal-python-0.9.4_beta1.ebuild	26 Feb 2010 22:12:23 -0000	1.3
+++ cgal-python-0.9.4_beta1.ebuild	16 Jun 2010 01:43:15 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/cgal-python/cgal-python-0.9.4_beta1.ebuild,v 1.3 2010/02/26 22:12:23 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/cgal-python/cgal-python-0.9.4_beta1.ebuild,v 1.4 2010/06/16 01:43:15 arfrever Exp $
 
 EAPI=2
 inherit eutils flag-o-matic toolchain-funcs python
@@ -30,9 +30,8 @@
 			bindings/makefile.inc || die
 	fi
 
-	python_version
 	sed -i \
-		-e "s:-I../.. -O2:-I/usr/include/python${PYVER} -I../..:g" \
+		-e "s:-I../.. -O2:-I$(python_get_includedir) -I../..:g" \
 		bindings/makefile.inc || die
 	for i in $(find bindings -name Makefile); do
 		sed -i -e "s:@g++:@$(tc-getCXX):g" ${i}  || die
@@ -51,7 +50,7 @@
 src_install(){
 	python_need_rebuild
 	emake package || die
-	insinto "$(${python} -c 'from distutils.sysconfig import get_python_lib;print get_python_lib()')"
+	insinto $(python_get_sitedir)
 	doins -r cgal_package/CGAL || die
 	dodoc README.txt CHANGES
 	if use examples; then






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

end of thread, other threads:[~2010-06-16  1:43 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-02-26  0:30 [gentoo-commits] gentoo-x86 commit in dev-python/cgal-python: ChangeLog cgal-python-0.9.4_beta1.ebuild Samuli Suominen (ssuominen)
  -- strict thread matches above, loose matches on Subject: below --
2010-02-26 22:12 Samuli Suominen (ssuominen)
2010-06-16  1:43 Arfrever Frehtes Taifersar Arahesis (arfrever)

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