* [gentoo-commits] gentoo-x86 commit in dev-python/pygobject: pygobject-3.0.2.ebuild ChangeLog
@ 2011-10-23 7:51 Alexandre Rostovtsev (tetromino)
0 siblings, 0 replies; 4+ messages in thread
From: Alexandre Rostovtsev (tetromino) @ 2011-10-23 7:51 UTC (permalink / raw
To: gentoo-commits
tetromino 11/10/23 07:51:53
Modified: ChangeLog
Added: pygobject-3.0.2.ebuild
Log:
Version bump, disable tests that require unreleased gobject-introspection.
(Portage version: 2.2.0_alpha70/cvs/Linux x86_64)
Revision Changes Path
1.127 dev-python/pygobject/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygobject/ChangeLog?rev=1.127&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygobject/ChangeLog?rev=1.127&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygobject/ChangeLog?r1=1.126&r2=1.127
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pygobject/ChangeLog,v
retrieving revision 1.126
retrieving revision 1.127
diff -u -r1.126 -r1.127
--- ChangeLog 19 Oct 2011 01:23:24 -0000 1.126
+++ ChangeLog 23 Oct 2011 07:51:53 -0000 1.127
@@ -1,6 +1,14 @@
# ChangeLog for dev-python/pygobject
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pygobject/ChangeLog,v 1.126 2011/10/19 01:23:24 tetromino Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pygobject/ChangeLog,v 1.127 2011/10/23 07:51:53 tetromino Exp $
+
+*pygobject-3.0.2 (23 Oct 2011)
+
+ 23 Oct 2011; Alexandre Rostovtsev <tetromino@gentoo.org>
+ +pygobject-3.0.2.ebuild, +files/pygobject-3.0.2-disable-new-gi-tests.patch:
+ Version bump. Disable tests that require new regression functions present
+ only in git master of gobject-introspection.
+ Notable features: several important bugfixes, unbreaks gdk-2 support.
*pygobject-3.0.1 (19 Oct 2011)
*pygobject-2.28.6-r50 (19 Oct 2011)
1.1 dev-python/pygobject/pygobject-3.0.2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygobject/pygobject-3.0.2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygobject/pygobject-3.0.2.ebuild?rev=1.1&content-type=text/plain
Index: pygobject-3.0.2.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pygobject/pygobject-3.0.2.ebuild,v 1.1 2011/10/23 07:51:53 tetromino Exp $
EAPI="3"
GCONF_DEBUG="no"
GNOME_TARBALL_SUFFIX="xz"
GNOME2_LA_PUNT="yes"
SUPPORT_PYTHON_ABIS="1"
PYTHON_DEPEND="2:2.6 3:3.1"
RESTRICT_PYTHON_ABIS="2.4 2.5 3.0 *-jython"
# XXX: Is the alternatives stuff needed anymore?
inherit alternatives autotools gnome2 python virtualx
DESCRIPTION="GLib's GObject library bindings for Python"
HOMEPAGE="http://www.pygtk.org/"
LICENSE="LGPL-2.1"
SLOT="3"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="+cairo examples test +threads" # doc
COMMON_DEPEND=">=dev-libs/glib-2.24.0:2
>=dev-libs/gobject-introspection-1.29
virtual/libffi
cairo? ( >=dev-python/pycairo-1.10.0 )"
DEPEND="${COMMON_DEPEND}
test? (
media-fonts/font-cursor-misc
media-fonts/font-misc-misc
>=dev-libs/gobject-introspection-1.29.17 )
>=dev-util/pkgconfig-0.12"
# docs disabled for now per upstream default since they are very out of date
# doc? (
# app-text/docbook-xml-dtd:4.1.2
# dev-libs/libxslt
# >=app-text/docbook-xsl-stylesheets-1.70.1 )
# We now disable introspection support in slot 2 per upstream recommendation
# (see https://bugzilla.gnome.org/show_bug.cgi?id=642048#c9); however,
# older versions of slot 2 installed their own site-packages/gi, and
# slot 3 will collide with them.
RDEPEND="${COMMON_DEPEND}
!<dev-python/pygtk-2.13
!<dev-python/pygobject-2.28.6-r50:2[introspection]"
pkg_setup() {
DOCS="AUTHORS ChangeLog* NEWS README"
# Hard-enable libffi support since both gobject-introspection and
# glib-2.29.x rdepend on it anyway
G2CONF="${G2CONF}
--disable-dependency-tracking
--with-ffi
$(use_enable cairo)
$(use_enable threads thread)"
}
src_prepare() {
gnome2_src_prepare
# Do not build tests if unneeded, bug #226345
epatch "${FILESDIR}/${PN}-2.90.1-make_check.patch"
# Support installation for multiple Python versions, upstream bug #648292
epatch "${FILESDIR}/${PN}-3.0.0-support_multiple_python_versions.patch"
# Disable tests that fail
#epatch "${FILESDIR}/${PN}-2.28.3-disable-failing-tests.patch"
# FIXME: disable tests that require git master of gobject-introspection
epatch "${FILESDIR}/${P}-disable-new-gi-tests.patch"
# disable pyc compiling
ln -sfn $(type -P true) py-compile
eautoreconf
python_copy_sources
}
src_configure() {
python_execute_function -s gnome2_src_configure
}
src_compile() {
python_execute_function -d -s
}
# FIXME: With python multiple ABI support, tests return 1 even when they pass
src_test() {
unset DBUS_SESSION_BUS_ADDRESS
testing() {
XDG_CACHE_HOME="${T}/$(PYTHON --ABI)"
Xemake check PYTHON=$(PYTHON -a)
}
python_execute_function -s testing
}
src_install() {
python_execute_function -s gnome2_src_install
python_clean_installation_image
if use examples; then
insinto /usr/share/doc/${P}
doins -r examples || die "doins failed"
fi
}
pkg_postinst() {
python_mod_optimize gi
}
pkg_postrm() {
python_mod_cleanup gi
}
^ permalink raw reply [flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/pygobject: pygobject-3.0.2.ebuild ChangeLog
@ 2011-11-29 22:20 Alexandre Rostovtsev (tetromino)
0 siblings, 0 replies; 4+ messages in thread
From: Alexandre Rostovtsev (tetromino) @ 2011-11-29 22:20 UTC (permalink / raw
To: gentoo-commits
tetromino 11/11/29 22:20:08
Modified: pygobject-3.0.2.ebuild ChangeLog
Log:
Move to EAPI4.
(Portage version: 2.2.0_alpha79/cvs/Linux x86_64)
Revision Changes Path
1.3 dev-python/pygobject/pygobject-3.0.2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygobject/pygobject-3.0.2.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygobject/pygobject-3.0.2.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygobject/pygobject-3.0.2.ebuild?r1=1.2&r2=1.3
Index: pygobject-3.0.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pygobject/pygobject-3.0.2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- pygobject-3.0.2.ebuild 15 Nov 2011 05:40:32 -0000 1.2
+++ pygobject-3.0.2.ebuild 29 Nov 2011 22:20:08 -0000 1.3
@@ -1,10 +1,9 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pygobject/pygobject-3.0.2.ebuild,v 1.2 2011/11/15 05:40:32 tetromino Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pygobject/pygobject-3.0.2.ebuild,v 1.3 2011/11/29 22:20:08 tetromino Exp $
-EAPI="3"
+EAPI="4"
GCONF_DEBUG="no"
-GNOME_TARBALL_SUFFIX="xz"
GNOME2_LA_PUNT="yes"
SUPPORT_PYTHON_ABIS="1"
PYTHON_DEPEND="2:2.6 3:3.1"
@@ -54,6 +53,8 @@
--with-ffi
$(use_enable cairo)
$(use_enable threads thread)"
+
+ python_pkg_setup
}
src_prepare() {
1.129 dev-python/pygobject/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygobject/ChangeLog?rev=1.129&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygobject/ChangeLog?rev=1.129&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygobject/ChangeLog?r1=1.128&r2=1.129
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pygobject/ChangeLog,v
retrieving revision 1.128
retrieving revision 1.129
diff -u -r1.128 -r1.129
--- ChangeLog 15 Nov 2011 05:40:32 -0000 1.128
+++ ChangeLog 29 Nov 2011 22:20:08 -0000 1.129
@@ -1,6 +1,10 @@
# ChangeLog for dev-python/pygobject
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pygobject/ChangeLog,v 1.128 2011/11/15 05:40:32 tetromino Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pygobject/ChangeLog,v 1.129 2011/11/29 22:20:08 tetromino Exp $
+
+ 29 Nov 2011; Alexandre Rostovtsev <tetromino@gentoo.org>
+ pygobject-3.0.2.ebuild:
+ Move to EAPI4.
15 Nov 2011; Alexandre Rostovtsev <tetromino@gentoo.org>
pygobject-2.26.0-r1.ebuild, pygobject-2.28.6.ebuild,
^ permalink raw reply [flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/pygobject: pygobject-3.0.2.ebuild ChangeLog
@ 2012-01-14 16:43 Markus Meier (maekke)
0 siblings, 0 replies; 4+ messages in thread
From: Markus Meier (maekke) @ 2012-01-14 16:43 UTC (permalink / raw
To: gentoo-commits
maekke 12/01/14 16:43:44
Modified: pygobject-3.0.2.ebuild ChangeLog
Log:
x86 stable, bug #393007
(Portage version: 2.1.10.44/cvs/Linux x86_64)
Revision Changes Path
1.9 dev-python/pygobject/pygobject-3.0.2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygobject/pygobject-3.0.2.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygobject/pygobject-3.0.2.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygobject/pygobject-3.0.2.ebuild?r1=1.8&r2=1.9
Index: pygobject-3.0.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pygobject/pygobject-3.0.2.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- pygobject-3.0.2.ebuild 31 Dec 2011 18:47:31 -0000 1.8
+++ pygobject-3.0.2.ebuild 14 Jan 2012 16:43:44 -0000 1.9
@@ -1,6 +1,6 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pygobject/pygobject-3.0.2.ebuild,v 1.8 2011/12/31 18:47:31 tetromino Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pygobject/pygobject-3.0.2.ebuild,v 1.9 2012/01/14 16:43:44 maekke Exp $
EAPI="4"
GCONF_DEBUG="no"
@@ -17,7 +17,7 @@
LICENSE="LGPL-2.1"
SLOT="3"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="+cairo examples test +threads" # doc
COMMON_DEPEND=">=dev-libs/glib-2.24.0:2
1.140 dev-python/pygobject/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygobject/ChangeLog?rev=1.140&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygobject/ChangeLog?rev=1.140&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygobject/ChangeLog?r1=1.139&r2=1.140
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pygobject/ChangeLog,v
retrieving revision 1.139
retrieving revision 1.140
diff -u -r1.139 -r1.140
--- ChangeLog 31 Dec 2011 21:57:44 -0000 1.139
+++ ChangeLog 14 Jan 2012 16:43:44 -0000 1.140
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/pygobject
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pygobject/ChangeLog,v 1.139 2011/12/31 21:57:44 tetromino Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pygobject/ChangeLog,v 1.140 2012/01/14 16:43:44 maekke Exp $
+
+ 14 Jan 2012; Markus Meier <maekke@gentoo.org> pygobject-3.0.2.ebuild:
+ x86 stable, bug #393007
31 Dec 2011; Alexandre Rostovtsev <tetromino@gentoo.org>
pygobject-2.26.0-r1.ebuild:
^ permalink raw reply [flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/pygobject: pygobject-3.0.2.ebuild ChangeLog
@ 2012-01-18 20:28 Markus Meier (maekke)
0 siblings, 0 replies; 4+ messages in thread
From: Markus Meier (maekke) @ 2012-01-18 20:28 UTC (permalink / raw
To: gentoo-commits
maekke 12/01/18 20:28:09
Modified: pygobject-3.0.2.ebuild ChangeLog
Log:
arm stable, bug #393007
(Portage version: 2.1.10.44/cvs/Linux x86_64)
Revision Changes Path
1.10 dev-python/pygobject/pygobject-3.0.2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygobject/pygobject-3.0.2.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygobject/pygobject-3.0.2.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygobject/pygobject-3.0.2.ebuild?r1=1.9&r2=1.10
Index: pygobject-3.0.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pygobject/pygobject-3.0.2.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- pygobject-3.0.2.ebuild 14 Jan 2012 16:43:44 -0000 1.9
+++ pygobject-3.0.2.ebuild 18 Jan 2012 20:28:09 -0000 1.10
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pygobject/pygobject-3.0.2.ebuild,v 1.9 2012/01/14 16:43:44 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pygobject/pygobject-3.0.2.ebuild,v 1.10 2012/01/18 20:28:09 maekke Exp $
EAPI="4"
GCONF_DEBUG="no"
@@ -17,7 +17,7 @@
LICENSE="LGPL-2.1"
SLOT="3"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="+cairo examples test +threads" # doc
COMMON_DEPEND=">=dev-libs/glib-2.24.0:2
1.142 dev-python/pygobject/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygobject/ChangeLog?rev=1.142&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygobject/ChangeLog?rev=1.142&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygobject/ChangeLog?r1=1.141&r2=1.142
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pygobject/ChangeLog,v
retrieving revision 1.141
retrieving revision 1.142
diff -u -r1.141 -r1.142
--- ChangeLog 14 Jan 2012 16:45:02 -0000 1.141
+++ ChangeLog 18 Jan 2012 20:28:09 -0000 1.142
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/pygobject
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pygobject/ChangeLog,v 1.141 2012/01/14 16:45:02 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pygobject/ChangeLog,v 1.142 2012/01/18 20:28:09 maekke Exp $
+
+ 18 Jan 2012; Markus Meier <maekke@gentoo.org> pygobject-3.0.2.ebuild:
+ arm stable, bug #393007
14 Jan 2012; Markus Meier <maekke@gentoo.org> pygobject-2.28.6-r51.ebuild:
x86 stable, bug #393007
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2012-01-18 20:28 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-01-18 20:28 [gentoo-commits] gentoo-x86 commit in dev-python/pygobject: pygobject-3.0.2.ebuild ChangeLog Markus Meier (maekke)
-- strict thread matches above, loose matches on Subject: below --
2012-01-14 16:43 Markus Meier (maekke)
2011-11-29 22:20 Alexandre Rostovtsev (tetromino)
2011-10-23 7:51 Alexandre Rostovtsev (tetromino)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox