public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-python/pyface: pyface-4.3.0-r1.ebuild ChangeLog
@ 2013-04-11 16:05 Ian Delaney (idella4)
  0 siblings, 0 replies; 3+ messages in thread
From: Ian Delaney (idella4) @ 2013-04-11 16:05 UTC (permalink / raw
  To: gentoo-commits

idella4     13/04/11 16:05:33

  Modified:             ChangeLog
  Added:                pyface-4.3.0-r1.ebuild
  Log:
  migration to distutils-r1, rm py2.6 support, fixed test phase
  
  (Portage version: 2.1.11.60/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)

Revision  Changes    Path
1.8                  dev-python/pyface/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pyface/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog	3 Apr 2013 07:04:52 -0000	1.7
+++ ChangeLog	11 Apr 2013 16:05:33 -0000	1.8
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/pyface
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pyface/ChangeLog,v 1.7 2013/04/03 07:04:52 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pyface/ChangeLog,v 1.8 2013/04/11 16:05:33 idella4 Exp $
+
+*pyface-4.3.0-r1 (11 Apr 2013)
+
+  11 Apr 2013; Ian Delaney <idella4@gentoo.org> +pyface-4.3.0-r1.ebuild:
+  migration to distutils-r1, rm py2.6 support, fixed test phase
 
 *pyface-4.3.0 (03 Apr 2013)
 



1.1                  dev-python/pyface/pyface-4.3.0-r1.ebuild

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

Index: pyface-4.3.0-r1.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pyface/pyface-4.3.0-r1.ebuild,v 1.1 2013/04/11 16:05:33 idella4 Exp $

EAPI=5

# https://github.com/enthought/pyface/issues/40 confirms only py2.7
PYTHON_COMPAT=( python2_7 )

inherit distutils-r1 virtualx

DESCRIPTION="Enthought Tool Suite: Traits-capable windowing framework"
HOMEPAGE="https://github.com/enthought/pyface http://pypi.python.org/pypi/pyface"
SRC_URI="http://www.enthought.com/repo/ets/${P}.tar.gz"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
IUSE="doc examples test"

RDEPEND=">=dev-python/traits-4.1[${PYTHON_USEDEP}]
		|| ( dev-python/wxpython dev-python/PyQt4 dev-python/pyside )"
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
	doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
	test? (
		${RDEPEND}
		dev-python/traitsui
		media-fonts/font-cursor-misc
		media-fonts/font-misc-misc
	)"

DOCS=( docs/*.txt )

python_compile_all() {
	use doc && emake -C docs html
}

python_test() {
	export ETS_TOOLKIT=qt4
	export QT_API=pyqt
	# set nosetests to ignore tests unpassable by these vars.
	VIRTUALX_COMMAND="nosetests -v -I composite_grid_model_test_case* \
		-I simple_grid_model_test_case* \
		-I test_split_editor_area_pane*" virtualmake
}

python_install_all() {
	find -name "*LICENSE*.txt" -delete
	use doc && dohtml -r docs/build/html/*

	if use examples; then
		insinto /usr/share/doc/${PF}
		doins -r examples
	fi
}





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

* [gentoo-commits] gentoo-x86 commit in dev-python/pyface: pyface-4.3.0-r1.ebuild ChangeLog
@ 2013-04-18 16:18 Ian Delaney (idella4)
  0 siblings, 0 replies; 3+ messages in thread
From: Ian Delaney (idella4) @ 2013-04-18 16:18 UTC (permalink / raw
  To: gentoo-commits

idella4     13/04/18 16:18:54

  Modified:             pyface-4.3.0-r1.ebuild ChangeLog
  Log:
  fix to building docs, corrections to syntax in test phase
  
  (Portage version: 2.1.11.60/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)

Revision  Changes    Path
1.2                  dev-python/pyface/pyface-4.3.0-r1.ebuild

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

Index: pyface-4.3.0-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pyface/pyface-4.3.0-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- pyface-4.3.0-r1.ebuild	11 Apr 2013 16:05:33 -0000	1.1
+++ pyface-4.3.0-r1.ebuild	18 Apr 2013 16:18:54 -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/dev-python/pyface/pyface-4.3.0-r1.ebuild,v 1.1 2013/04/11 16:05:33 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pyface/pyface-4.3.0-r1.ebuild,v 1.2 2013/04/18 16:18:54 idella4 Exp $
 
 EAPI=5
 
@@ -32,16 +32,16 @@
 DOCS=( docs/*.txt )
 
 python_compile_all() {
-	use doc && emake -C docs html
+	use doc && virtualmake -C docs html
 }
 
 python_test() {
 	export ETS_TOOLKIT=qt4
 	export QT_API=pyqt
 	# set nosetests to ignore tests unpassable by these vars.
-	VIRTUALX_COMMAND="nosetests -v -I composite_grid_model_test_case* \
-		-I simple_grid_model_test_case* \
-		-I test_split_editor_area_pane*" virtualmake
+	VIRTUALX_COMMAND="nosetests" virtualmake -v -I 'composite_grid_model_test_case*' \
+		-I 'simple_grid_model_test_case*' \
+		-I 'test_split_editor_area_pane*'
 }
 
 python_install_all() {



1.9                  dev-python/pyface/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pyface/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog	11 Apr 2013 16:05:33 -0000	1.8
+++ ChangeLog	18 Apr 2013 16:18:54 -0000	1.9
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/pyface
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pyface/ChangeLog,v 1.8 2013/04/11 16:05:33 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pyface/ChangeLog,v 1.9 2013/04/18 16:18:54 idella4 Exp $
+
+  18 Apr 2013; Ian Delaney <idella4@gentoo.org> pyface-4.3.0-r1.ebuild:
+  fix to building docs, corrections to syntax in test phase
 
 *pyface-4.3.0-r1 (11 Apr 2013)
 





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

* [gentoo-commits] gentoo-x86 commit in dev-python/pyface: pyface-4.3.0-r1.ebuild ChangeLog
@ 2013-05-14 18:14 Ian Delaney (idella4)
  0 siblings, 0 replies; 3+ messages in thread
From: Ian Delaney (idella4) @ 2013-05-14 18:14 UTC (permalink / raw
  To: gentoo-commits

idella4     13/05/14 18:14:42

  Modified:             pyface-4.3.0-r1.ebuild ChangeLog
  Log:
  update python version deps in dep list
  
  (Portage version: 2.1.11.62/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)

Revision  Changes    Path
1.3                  dev-python/pyface/pyface-4.3.0-r1.ebuild

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

Index: pyface-4.3.0-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pyface/pyface-4.3.0-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- pyface-4.3.0-r1.ebuild	18 Apr 2013 16:18:54 -0000	1.2
+++ pyface-4.3.0-r1.ebuild	14 May 2013 18:14:42 -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/dev-python/pyface/pyface-4.3.0-r1.ebuild,v 1.2 2013/04/18 16:18:54 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pyface/pyface-4.3.0-r1.ebuild,v 1.3 2013/05/14 18:14:42 idella4 Exp $
 
 EAPI=5
 
@@ -19,12 +19,13 @@
 IUSE="doc examples test"
 
 RDEPEND=">=dev-python/traits-4.1[${PYTHON_USEDEP}]
-		|| ( dev-python/wxpython dev-python/PyQt4 dev-python/pyside )"
+		|| ( dev-python/wxpython[${PYTHON_USEDEP}] dev-python/PyQt4 \
+			dev-python/pyside[${PYTHON_USEDEP}] )"
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
 	doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
 	test? (
 		${RDEPEND}
-		dev-python/traitsui
+		dev-python/traitsui[${PYTHON_USEDEP}]
 		media-fonts/font-cursor-misc
 		media-fonts/font-misc-misc
 	)"



1.11                 dev-python/pyface/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pyface/ChangeLog,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- ChangeLog	14 May 2013 12:46:24 -0000	1.10
+++ ChangeLog	14 May 2013 18:14:42 -0000	1.11
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/pyface
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pyface/ChangeLog,v 1.10 2013/05/14 12:46:24 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pyface/ChangeLog,v 1.11 2013/05/14 18:14:42 idella4 Exp $
+
+  14 May 2013; Ian Delaney <idella4@gentoo.org> pyface-4.3.0-r1.ebuild:
+  update python version deps in dep list
 
   14 May 2013; Ian Delaney <idella4@gentoo.org> -pyface-4.0.0.ebuild,
   -pyface-4.1.0.ebuild, -pyface-4.2.0.ebuild:





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

end of thread, other threads:[~2013-05-14 18:14 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-14 18:14 [gentoo-commits] gentoo-x86 commit in dev-python/pyface: pyface-4.3.0-r1.ebuild ChangeLog Ian Delaney (idella4)
  -- strict thread matches above, loose matches on Subject: below --
2013-04-18 16:18 Ian Delaney (idella4)
2013-04-11 16:05 Ian Delaney (idella4)

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