public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-python/vo: vo-0.7.ebuild ChangeLog
@ 2011-08-02 23:34 Sebastien Fabbro (bicatali)
  0 siblings, 0 replies; 3+ messages in thread
From: Sebastien Fabbro (bicatali) @ 2011-08-02 23:34 UTC (permalink / raw
  To: gentoo-commits

bicatali    11/08/02 23:34:21

  Modified:             ChangeLog
  Added:                vo-0.7.ebuild
  Log:
  Version bump. Re-introduced tests
  
  (Portage version: 2.1.10.9/cvs/Linux x86_64)

Revision  Changes    Path
1.5                  dev-python/vo/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/vo/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog	7 Jan 2011 18:31:44 -0000	1.4
+++ ChangeLog	2 Aug 2011 23:34:21 -0000	1.5
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/vo
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/vo/ChangeLog,v 1.4 2011/01/07 18:31:44 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/vo/ChangeLog,v 1.5 2011/08/02 23:34:21 bicatali Exp $
+
+*vo-0.7 (02 Aug 2011)
+
+  02 Aug 2011; Sébastien Fabbro <bicatali@gentoo.org> +vo-0.7.ebuild:
+  Version bump. Re-introduced tests
 
   10 Sep 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
   vo-0.6.ebuild:



1.1                  dev-python/vo/vo-0.7.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/vo/vo-0.7.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/vo/vo-0.7.ebuild?rev=1.1&content-type=text/plain

Index: vo-0.7.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/vo/vo-0.7.ebuild,v 1.1 2011/08/02 23:34:21 bicatali Exp $

EAPI=3

PYTHON_DEPEND="*:2.5"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="2.4"
DISTUTILS_SRC_TEST="nosetests"

inherit distutils eutils

DESCRIPTION="Python module to read VOTABLE into a Numpy recarray"
HOMEPAGE="https://trac6.assembla.com/astrolib/wiki http://www.scipy.org/AstroLib"
SRC_URI="http://stsdas.stsci.edu/astrolib/${P}.tar.gz"

IUSE="examples"
SLOT="0"
KEYWORDS="~amd64 ~x86"
LICENSE="BSD"

RDEPEND="dev-libs/expat"
DEPEND="${RDEPEND}"

src_prepare() {
	epatch "${FILESDIR}"/${PN}-0.6-expat.patch
}

src_test() {
	cd test
	testing() {
		PYTHONPATH="$(ls -d ${S}/build-${PYTHON_ABI}/lib*)"  \
			"$(PYTHON)"  benchmarks.py || die "test failed with Python ${PYTHON_ABI}"
	}
	python_execute_function testing
}

src_install() {
	distutils_src_install
	if use examples; then
		insinto /usr/share/doc/${PF}/
		doins -r examples || die
	fi
}






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

* [gentoo-commits] gentoo-x86 commit in dev-python/vo: vo-0.7.ebuild ChangeLog
@ 2011-08-04  0:04 Sebastien Fabbro (bicatali)
  0 siblings, 0 replies; 3+ messages in thread
From: Sebastien Fabbro (bicatali) @ 2011-08-04  0:04 UTC (permalink / raw
  To: gentoo-commits

bicatali    11/08/04 00:04:14

  Modified:             vo-0.7.ebuild ChangeLog
  Log:
  added tests
  
  (Portage version: 2.1.10.10/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  dev-python/vo/vo-0.7.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/vo/vo-0.7.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/vo/vo-0.7.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/vo/vo-0.7.ebuild?r1=1.1&r2=1.2

Index: vo-0.7.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/vo/vo-0.7.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- vo-0.7.ebuild	2 Aug 2011 23:34:21 -0000	1.1
+++ vo-0.7.ebuild	4 Aug 2011 00:04:14 -0000	1.2
@@ -1,13 +1,12 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/vo/vo-0.7.ebuild,v 1.1 2011/08/02 23:34:21 bicatali Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/vo/vo-0.7.ebuild,v 1.2 2011/08/04 00:04:14 bicatali Exp $
 
 EAPI=3
 
 PYTHON_DEPEND="*:2.5"
 SUPPORT_PYTHON_ABIS="1"
 RESTRICT_PYTHON_ABIS="2.4"
-DISTUTILS_SRC_TEST="nosetests"
 
 inherit distutils eutils
 
@@ -31,7 +30,7 @@
 	cd test
 	testing() {
 		PYTHONPATH="$(ls -d ${S}/build-${PYTHON_ABI}/lib*)"  \
-			"$(PYTHON)"  benchmarks.py || die "test failed with Python ${PYTHON_ABI}"
+			"$(PYTHON)" benchmarks.py || die "test failed with Python ${PYTHON_ABI}"
 	}
 	python_execute_function testing
 }



1.6                  dev-python/vo/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/vo/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog	2 Aug 2011 23:34:21 -0000	1.5
+++ ChangeLog	4 Aug 2011 00:04:14 -0000	1.6
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/vo
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/vo/ChangeLog,v 1.5 2011/08/02 23:34:21 bicatali Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/vo/ChangeLog,v 1.6 2011/08/04 00:04:14 bicatali Exp $
+
+  04 Aug 2011; Sébastien Fabbro <bicatali@gentoo.org> vo-0.7.ebuild:
+  added tests
 
 *vo-0.7 (02 Aug 2011)
 






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

* [gentoo-commits] gentoo-x86 commit in dev-python/vo: vo-0.7.ebuild ChangeLog
@ 2011-08-08 18:35 Markos Chandras (hwoarang)
  0 siblings, 0 replies; 3+ messages in thread
From: Markos Chandras (hwoarang) @ 2011-08-08 18:35 UTC (permalink / raw
  To: gentoo-commits

hwoarang    11/08/08 18:35:34

  Modified:             vo-0.7.ebuild ChangeLog
  Log:
  Fix dependencies. Avoid breaking strict-aliasing rules. Simplify src_test(). Patch by Arfrever.
  
  (Portage version: 2.2.0_alpha46/cvs/Linux x86_64)

Revision  Changes    Path
1.3                  dev-python/vo/vo-0.7.ebuild

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

Index: vo-0.7.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/vo/vo-0.7.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- vo-0.7.ebuild	4 Aug 2011 00:04:14 -0000	1.2
+++ vo-0.7.ebuild	8 Aug 2011 18:35:34 -0000	1.3
@@ -1,12 +1,12 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/vo/vo-0.7.ebuild,v 1.2 2011/08/04 00:04:14 bicatali Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/vo/vo-0.7.ebuild,v 1.3 2011/08/08 18:35:34 hwoarang Exp $
 
 EAPI=3
 
-PYTHON_DEPEND="*:2.5"
+PYTHON_DEPEND="*:2.6"
 SUPPORT_PYTHON_ABIS="1"
-RESTRICT_PYTHON_ABIS="2.4"
+RESTRICT_PYTHON_ABIS="2.4 2.5 *-jython"
 
 inherit distutils eutils
 
@@ -22,15 +22,17 @@
 RDEPEND="dev-libs/expat"
 DEPEND="${RDEPEND}"
 
+PYTHON_CFLAGS=("2.* + -fno-strict-aliasing")
+
 src_prepare() {
 	epatch "${FILESDIR}"/${PN}-0.6-expat.patch
 }
 
 src_test() {
 	cd test
+
 	testing() {
-		PYTHONPATH="$(ls -d ${S}/build-${PYTHON_ABI}/lib*)"  \
-			"$(PYTHON)" benchmarks.py || die "test failed with Python ${PYTHON_ABI}"
+		PYTHONPATH="$(ls -d ../build-${PYTHON_ABI}/lib.*)" "$(PYTHON)" benchmarks.py
 	}
 	python_execute_function testing
 }



1.8                  dev-python/vo/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/vo/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog	4 Aug 2011 18:40:57 -0000	1.7
+++ ChangeLog	8 Aug 2011 18:35:34 -0000	1.8
@@ -1,6 +1,10 @@
 # ChangeLog for dev-python/vo
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/vo/ChangeLog,v 1.7 2011/08/04 18:40:57 bicatali Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/vo/ChangeLog,v 1.8 2011/08/08 18:35:34 hwoarang Exp $
+
+  08 Aug 2011; Markos Chandras <hwoarang@gentoo.org> vo-0.7.ebuild:
+  Fix dependencies. Avoid breaking strict-aliasing rules. Simplify src_test().
+  Patch by Arfrever.
 
   04 Aug 2011; Sébastien Fabbro <bicatali@gentoo.org> metadata.xml:
   Switched herd to sci-astronomy






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

end of thread, other threads:[~2011-08-08 18:35 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-08-04  0:04 [gentoo-commits] gentoo-x86 commit in dev-python/vo: vo-0.7.ebuild ChangeLog Sebastien Fabbro (bicatali)
  -- strict thread matches above, loose matches on Subject: below --
2011-08-08 18:35 Markos Chandras (hwoarang)
2011-08-02 23:34 Sebastien Fabbro (bicatali)

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