public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-python/wxpython: ChangeLog wxpython-2.8.8.1.ebuild
@ 2008-07-25  2:44 Ryan Hill (dirtyepic)
  0 siblings, 0 replies; 7+ messages in thread
From: Ryan Hill (dirtyepic) @ 2008-07-25  2:44 UTC (permalink / raw
  To: gentoo-commits

dirtyepic    08/07/25 02:44:24

  Modified:             ChangeLog
  Added:                wxpython-2.8.8.1.ebuild
  Log:
  Version bump.
  (Portage version: 2.2_rc3/cvs/Linux 2.6.26-rc9 x86_64)

Revision  Changes    Path
1.89                 dev-python/wxpython/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/wxpython/ChangeLog,v
retrieving revision 1.88
retrieving revision 1.89
diff -u -r1.88 -r1.89
--- ChangeLog	29 May 2008 16:40:05 -0000	1.88
+++ ChangeLog	25 Jul 2008 02:44:24 -0000	1.89
@@ -1,6 +1,13 @@
 # ChangeLog for dev-python/wxpython
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/wxpython/ChangeLog,v 1.88 2008/05/29 16:40:05 hawking Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/wxpython/ChangeLog,v 1.89 2008/07/25 02:44:24 dirtyepic Exp $
+
+*wxpython-2.8.8.1 (25 Jul 2008)
+
+  25 Jul 2008; Ryan Hill <dirtyepic@gentoo.org>
+  +files/wxpython-2.8.8.1-musthaveapp.patch,
+  +files/wxpython-2.8.8-wxversion-scripts.patch, +wxpython-2.8.8.1.ebuild:
+  Version bump.
 
   29 May 2008; Ali Polatel <hawking@gentoo.org> wxpython-2.6.4.0-r1.ebuild,
   wxpython-2.8.7.1.ebuild:



1.1                  dev-python/wxpython/wxpython-2.8.8.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/wxpython/wxpython-2.8.8.1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/wxpython/wxpython-2.8.8.1.ebuild?rev=1.1&content-type=text/plain

Index: wxpython-2.8.8.1.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/wxpython/wxpython-2.8.8.1.ebuild,v 1.1 2008/07/25 02:44:24 dirtyepic Exp $

EAPI="1"
WX_GTK_VER="2.8"

inherit alternatives eutils multilib python wxwidgets

# Note, we don't use distutils.eclass because it doesn't seem to play nice with
# need-wxwidgets

MY_P="${P/wxpython-/wxPython-src-}"
DESCRIPTION="A blending of the wxWindows C++ class library with Python"
HOMEPAGE="http://www.wxpython.org/"
SRC_URI="mirror://sourceforge/wxpython/${MY_P}.tar.bz2"

LICENSE="wxWinLL-3"
SLOT="2.8"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="opengl"

# FIXME - change wxGTK back to >=x11-libs/wxGTK-${PV}:2.8
#         before commiting
RDEPEND=">=dev-lang/python-2.1
	>=x11-libs/wxGTK-${PV}:2.8
	>=x11-libs/gtk+-2.4
	>=x11-libs/pango-1.2
	>=dev-libs/glib-2.0
	media-libs/libpng
	media-libs/jpeg
	media-libs/tiff
	opengl? ( >=dev-python/pyopengl-2.0.0.44 )"

DEPEND="${RDEPEND}
	dev-util/pkgconfig"

S="${WORKDIR}/${MY_P}/wxPython/"

src_unpack() {
	unpack ${A}
	cd "${S}"
	sed -i "s:cflags.append('-O3'):pass:" config.py || die "sed failed"

	epatch "${FILESDIR}"/${PN}-2.8.8-wxversion-scripts.patch
	epatch "${FILESDIR}"/${P}-musthaveapp.patch # 2.8.8.1 only
}

src_compile() {
	local mypyconf

	need-wxwidgets unicode
	use opengl && check_wxuse opengl

	mypyconf="${mypyconf} WX_CONFIG=${WX_CONFIG}"
	use opengl \
		&& mypyconf="${mypyconf} BUILD_GLCANVAS=1" \
		|| mypyconf="${mypyconf} BUILD_GLCANVAS=0"

	mypyconf="${mypyconf} WXPORT=gtk2 UNICODE=1"

	python setup.py ${mypyconf} build || die "setup.py build failed"
}

src_install() {
	local mypyconf
	python_version
	local site_pkgs=/usr/$(get_libdir)/python${PYVER}/site-packages

	mypyconf="${mypyconf} WX_CONFIG=${WX_CONFIG}"
	use opengl \
		&& mypyconf="${mypyconf} BUILD_GLCANVAS=1" \
		|| mypyconf="${mypyconf} BUILD_GLCANVAS=0"

	mypyconf="${mypyconf} WXPORT=gtk2 UNICODE=1"

	python setup.py ${mypyconf} install --root="${D}" \
		--install-purelib ${site_pkgs} || die "setup.py install failed"

	# Collision protection.
	for file in "${D}"/usr/bin/* "${D}"/${site_pkgs}/wx{version.*,.pth}; do
		mv "${file}" "${file}-${SLOT}"
	done

	for dir in "${D}"/${site_pkgs}/wx-${SLOT}-gtk2-{ansi,unicode}; do
		if [[ -d ${dir} ]]; then
			cp -R "${D}"/${site_pkgs}/wxaddons/ "${dir}"
			wxaddons_copied=1
		fi
	done

	[[ ${wxaddons_copied} ]] && rm -rf "${D}"/${site_pkgs}/wxaddons/
}

pkg_postinst() {
	local site_pkgs=/usr/$(get_libdir)/python${PYVER}/site-packages

	python_mod_optimize ${site_pkgs}

	alternatives_auto_makesym \
		"${site_pkgs}/wx.pth" "${site_pkgs}/wx.pth-[0-9].[0-9]"
	alternatives_auto_makesym \
		"${site_pkgs}/wxversion.py" "${site_pkgs}/wxversion.py-[0-9].[0-9]"

	echo
	elog "Gentoo uses the Multi-version method for SLOT'ing."
	elog "Developers see this site for instructions on using 2.6 or 2.8"
	elog "with your apps:"
	elog "http://wiki.wxpython.org/index.cgi/MultiVersionInstalls"
	echo
}

pkg_postrm() {
	python_mod_cleanup

	local site_pkgs=/usr/$(get_libdir)/python${PYVER}/site-packages

	alternatives_auto_makesym \
		"${site_pkgs}/wx.pth" "${site_pkgs}/wx.pth-[0-9].[0-9]"
	alternatives_auto_makesym \
		"${site_pkgs}/wxversion.py" "${site_pkgs}/wxversion.py-[0-9].[0-9]"
}






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

* [gentoo-commits] gentoo-x86 commit in dev-python/wxpython: ChangeLog wxpython-2.8.8.1.ebuild
@ 2008-10-02  0:47 Ryan Hill (dirtyepic)
  0 siblings, 0 replies; 7+ messages in thread
From: Ryan Hill (dirtyepic) @ 2008-10-02  0:47 UTC (permalink / raw
  To: gentoo-commits

dirtyepic    08/10/02 00:47:55

  Modified:             ChangeLog wxpython-2.8.8.1.ebuild
  Log:
  Remove old comment.
  (Portage version: 2.2_rc11/cvs/Linux 2.6.26-gentoo-r1 x86_64)

Revision  Changes    Path
1.97                 dev-python/wxpython/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/wxpython/ChangeLog,v
retrieving revision 1.96
retrieving revision 1.97
diff -u -r1.96 -r1.97
--- ChangeLog	30 Sep 2008 11:16:56 -0000	1.96
+++ ChangeLog	2 Oct 2008 00:47:54 -0000	1.97
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/wxpython
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/wxpython/ChangeLog,v 1.96 2008/09/30 11:16:56 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/wxpython/ChangeLog,v 1.97 2008/10/02 00:47:54 dirtyepic Exp $
+
+  02 Oct 2008; Ryan Hill <dirtyepic@gentoo.org> wxpython-2.8.8.1.ebuild:
+  Remove old comment.
 
   30 Sep 2008; Raúl Porcel <armin76@gentoo.org> wxpython-2.6.4.0-r2.ebuild:
   alpha/ia64 stable wrt #238437



1.3                  dev-python/wxpython/wxpython-2.8.8.1.ebuild

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

Index: wxpython-2.8.8.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/wxpython/wxpython-2.8.8.1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- wxpython-2.8.8.1.ebuild	28 Jul 2008 21:43:11 -0000	1.2
+++ wxpython-2.8.8.1.ebuild	2 Oct 2008 00:47:54 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/wxpython/wxpython-2.8.8.1.ebuild,v 1.2 2008/07/28 21:43:11 dirtyepic Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/wxpython/wxpython-2.8.8.1.ebuild,v 1.3 2008/10/02 00:47:54 dirtyepic Exp $
 
 EAPI="1"
 WX_GTK_VER="2.8"
@@ -20,8 +20,6 @@
 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 IUSE="opengl"
 
-# FIXME - change wxGTK back to >=x11-libs/wxGTK-${PV}:2.8
-#         before commiting
 RDEPEND=">=dev-lang/python-2.1
 	>=x11-libs/wxGTK-${PV}:2.8
 	>=x11-libs/gtk+-2.4






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

* [gentoo-commits] gentoo-x86 commit in dev-python/wxpython: ChangeLog wxpython-2.8.8.1.ebuild
@ 2008-10-15 13:19 Ferris McCormick (fmccor)
  0 siblings, 0 replies; 7+ messages in thread
From: Ferris McCormick (fmccor) @ 2008-10-15 13:19 UTC (permalink / raw
  To: gentoo-commits

fmccor      08/10/15 13:19:21

  Modified:             ChangeLog wxpython-2.8.8.1.ebuild
  Log:
  Sparc stable, part of Bug #242088.
  (Portage version: 2.2_rc12/cvs/Linux 2.6.22-gentoo-r9-ail-simulation-sensors x86_64)

Revision  Changes    Path
1.101                dev-python/wxpython/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/wxpython/ChangeLog,v
retrieving revision 1.100
retrieving revision 1.101
diff -u -r1.100 -r1.101
--- ChangeLog	15 Oct 2008 01:39:25 -0000	1.100
+++ ChangeLog	15 Oct 2008 13:19:21 -0000	1.101
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/wxpython
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/wxpython/ChangeLog,v 1.100 2008/10/15 01:39:25 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/wxpython/ChangeLog,v 1.101 2008/10/15 13:19:21 fmccor Exp $
+
+  15 Oct 2008; Ferris McCormick <fmccor@gentoo.org> wxpython-2.8.8.1.ebuild:
+  Sparc stable, part of Bug #242088.
 
   15 Oct 2008; Brent Baude <ranger@gentoo.org> wxpython-2.8.8.1.ebuild:
   Marking wxpython-2.8.8.1 ppc for bug 242088



1.5                  dev-python/wxpython/wxpython-2.8.8.1.ebuild

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

Index: wxpython-2.8.8.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/wxpython/wxpython-2.8.8.1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- wxpython-2.8.8.1.ebuild	15 Oct 2008 01:39:25 -0000	1.4
+++ wxpython-2.8.8.1.ebuild	15 Oct 2008 13:19:21 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/wxpython/wxpython-2.8.8.1.ebuild,v 1.4 2008/10/15 01:39:25 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/wxpython/wxpython-2.8.8.1.ebuild,v 1.5 2008/10/15 13:19:21 fmccor Exp $
 
 EAPI="1"
 WX_GTK_VER="2.8"
@@ -17,7 +17,7 @@
 
 LICENSE="wxWinLL-3"
 SLOT="2.8"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ppc ~ppc64 sparc ~x86"
 IUSE="opengl"
 
 RDEPEND=">=dev-lang/python-2.1






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

* [gentoo-commits] gentoo-x86 commit in dev-python/wxpython: ChangeLog wxpython-2.8.8.1.ebuild
@ 2008-10-15 16:14 Markus Rothe (corsair)
  0 siblings, 0 replies; 7+ messages in thread
From: Markus Rothe (corsair) @ 2008-10-15 16:14 UTC (permalink / raw
  To: gentoo-commits

corsair     08/10/15 16:14:12

  Modified:             ChangeLog wxpython-2.8.8.1.ebuild
  Log:
  Stable on ppc64; bug #242088
  (Portage version: 2.2_rc11/cvs/Linux 2.6.21-gentoo-r4 ppc64)

Revision  Changes    Path
1.102                dev-python/wxpython/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/wxpython/ChangeLog,v
retrieving revision 1.101
retrieving revision 1.102
diff -u -r1.101 -r1.102
--- ChangeLog	15 Oct 2008 13:19:21 -0000	1.101
+++ ChangeLog	15 Oct 2008 16:14:12 -0000	1.102
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/wxpython
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/wxpython/ChangeLog,v 1.101 2008/10/15 13:19:21 fmccor Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/wxpython/ChangeLog,v 1.102 2008/10/15 16:14:12 corsair Exp $
+
+  15 Oct 2008; Markus Rothe <corsair@gentoo.org> wxpython-2.8.8.1.ebuild:
+  Stable on ppc64; bug #242088
 
   15 Oct 2008; Ferris McCormick <fmccor@gentoo.org> wxpython-2.8.8.1.ebuild:
   Sparc stable, part of Bug #242088.



1.6                  dev-python/wxpython/wxpython-2.8.8.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/wxpython/wxpython-2.8.8.1.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/wxpython/wxpython-2.8.8.1.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/wxpython/wxpython-2.8.8.1.ebuild?r1=1.5&r2=1.6

Index: wxpython-2.8.8.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/wxpython/wxpython-2.8.8.1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- wxpython-2.8.8.1.ebuild	15 Oct 2008 13:19:21 -0000	1.5
+++ wxpython-2.8.8.1.ebuild	15 Oct 2008 16:14:12 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/wxpython/wxpython-2.8.8.1.ebuild,v 1.5 2008/10/15 13:19:21 fmccor Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/wxpython/wxpython-2.8.8.1.ebuild,v 1.6 2008/10/15 16:14:12 corsair Exp $
 
 EAPI="1"
 WX_GTK_VER="2.8"
@@ -17,7 +17,7 @@
 
 LICENSE="wxWinLL-3"
 SLOT="2.8"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ppc ~ppc64 sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ppc ppc64 sparc ~x86"
 IUSE="opengl"
 
 RDEPEND=">=dev-lang/python-2.1






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

* [gentoo-commits] gentoo-x86 commit in dev-python/wxpython: ChangeLog wxpython-2.8.8.1.ebuild
@ 2008-10-16 20:04 Markus Meier (maekke)
  0 siblings, 0 replies; 7+ messages in thread
From: Markus Meier (maekke) @ 2008-10-16 20:04 UTC (permalink / raw
  To: gentoo-commits

maekke      08/10/16 20:04:32

  Modified:             ChangeLog wxpython-2.8.8.1.ebuild
  Log:
  amd64/x86 stable, bug #242088
  (Portage version: 2.2_rc12/cvs/Linux 2.6.27 i686)

Revision  Changes    Path
1.103                dev-python/wxpython/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/wxpython/ChangeLog,v
retrieving revision 1.102
retrieving revision 1.103
diff -u -r1.102 -r1.103
--- ChangeLog	15 Oct 2008 16:14:12 -0000	1.102
+++ ChangeLog	16 Oct 2008 20:04:32 -0000	1.103
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/wxpython
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/wxpython/ChangeLog,v 1.102 2008/10/15 16:14:12 corsair Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/wxpython/ChangeLog,v 1.103 2008/10/16 20:04:32 maekke Exp $
+
+  16 Oct 2008; Markus Meier <maekke@gentoo.org> wxpython-2.8.8.1.ebuild:
+  amd64/x86 stable, bug #242088
 
   15 Oct 2008; Markus Rothe <corsair@gentoo.org> wxpython-2.8.8.1.ebuild:
   Stable on ppc64; bug #242088



1.7                  dev-python/wxpython/wxpython-2.8.8.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/wxpython/wxpython-2.8.8.1.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/wxpython/wxpython-2.8.8.1.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/wxpython/wxpython-2.8.8.1.ebuild?r1=1.6&r2=1.7

Index: wxpython-2.8.8.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/wxpython/wxpython-2.8.8.1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- wxpython-2.8.8.1.ebuild	15 Oct 2008 16:14:12 -0000	1.6
+++ wxpython-2.8.8.1.ebuild	16 Oct 2008 20:04:32 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/wxpython/wxpython-2.8.8.1.ebuild,v 1.6 2008/10/15 16:14:12 corsair Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/wxpython/wxpython-2.8.8.1.ebuild,v 1.7 2008/10/16 20:04:32 maekke Exp $
 
 EAPI="1"
 WX_GTK_VER="2.8"
@@ -17,7 +17,7 @@
 
 LICENSE="wxWinLL-3"
 SLOT="2.8"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ppc ppc64 sparc ~x86"
+KEYWORDS="~alpha amd64 ~hppa ~ia64 ppc ppc64 sparc x86"
 IUSE="opengl"
 
 RDEPEND=">=dev-lang/python-2.1






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

* [gentoo-commits] gentoo-x86 commit in dev-python/wxpython: ChangeLog wxpython-2.8.8.1.ebuild
@ 2008-10-18 15:25 Raul Porcel (armin76)
  0 siblings, 0 replies; 7+ messages in thread
From: Raul Porcel (armin76) @ 2008-10-18 15:25 UTC (permalink / raw
  To: gentoo-commits

armin76     08/10/18 15:25:51

  Modified:             ChangeLog wxpython-2.8.8.1.ebuild
  Log:
  alpha/ia64/sparc stable wrt #242088
  (Portage version: 2.2_rc12/cvs/Linux 2.6.25-gentoo-r7 i686)

Revision  Changes    Path
1.104                dev-python/wxpython/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/wxpython/ChangeLog,v
retrieving revision 1.103
retrieving revision 1.104
diff -u -r1.103 -r1.104
--- ChangeLog	16 Oct 2008 20:04:32 -0000	1.103
+++ ChangeLog	18 Oct 2008 15:25:51 -0000	1.104
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/wxpython
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/wxpython/ChangeLog,v 1.103 2008/10/16 20:04:32 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/wxpython/ChangeLog,v 1.104 2008/10/18 15:25:51 armin76 Exp $
+
+  18 Oct 2008; Raúl Porcel <armin76@gentoo.org> wxpython-2.8.8.1.ebuild:
+  alpha/ia64/sparc stable wrt #242088
 
   16 Oct 2008; Markus Meier <maekke@gentoo.org> wxpython-2.8.8.1.ebuild:
   amd64/x86 stable, bug #242088



1.8                  dev-python/wxpython/wxpython-2.8.8.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/wxpython/wxpython-2.8.8.1.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/wxpython/wxpython-2.8.8.1.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/wxpython/wxpython-2.8.8.1.ebuild?r1=1.7&r2=1.8

Index: wxpython-2.8.8.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/wxpython/wxpython-2.8.8.1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- wxpython-2.8.8.1.ebuild	16 Oct 2008 20:04:32 -0000	1.7
+++ wxpython-2.8.8.1.ebuild	18 Oct 2008 15:25:51 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/wxpython/wxpython-2.8.8.1.ebuild,v 1.7 2008/10/16 20:04:32 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/wxpython/wxpython-2.8.8.1.ebuild,v 1.8 2008/10/18 15:25:51 armin76 Exp $
 
 EAPI="1"
 WX_GTK_VER="2.8"
@@ -17,7 +17,7 @@
 
 LICENSE="wxWinLL-3"
 SLOT="2.8"
-KEYWORDS="~alpha amd64 ~hppa ~ia64 ppc ppc64 sparc x86"
+KEYWORDS="alpha amd64 ~hppa ia64 ppc ppc64 sparc x86"
 IUSE="opengl"
 
 RDEPEND=">=dev-lang/python-2.1






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

* [gentoo-commits] gentoo-x86 commit in dev-python/wxpython: ChangeLog wxpython-2.8.8.1.ebuild
@ 2008-10-27 18:52 Jeroen Roovers (jer)
  0 siblings, 0 replies; 7+ messages in thread
From: Jeroen Roovers (jer) @ 2008-10-27 18:52 UTC (permalink / raw
  To: gentoo-commits

jer         08/10/27 18:52:39

  Modified:             ChangeLog wxpython-2.8.8.1.ebuild
  Log:
  Stable for HPPA (bug #242088).
  (Portage version: 2.2_rc12/cvs/Linux 2.6.25-gentoo-r7-JeR i686)

Revision  Changes    Path
1.106                dev-python/wxpython/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/wxpython/ChangeLog,v
retrieving revision 1.105
retrieving revision 1.106
diff -u -r1.105 -r1.106
--- ChangeLog	18 Oct 2008 18:35:18 -0000	1.105
+++ ChangeLog	27 Oct 2008 18:52:39 -0000	1.106
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/wxpython
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/wxpython/ChangeLog,v 1.105 2008/10/18 18:35:18 dirtyepic Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/wxpython/ChangeLog,v 1.106 2008/10/27 18:52:39 jer Exp $
+
+  27 Oct 2008; Jeroen Roovers <jer@gentoo.org> wxpython-2.8.8.1.ebuild:
+  Stable for HPPA (bug #242088).
 
 *wxpython-2.8.9.1-r1 (18 Oct 2008)
 



1.9                  dev-python/wxpython/wxpython-2.8.8.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/wxpython/wxpython-2.8.8.1.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/wxpython/wxpython-2.8.8.1.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/wxpython/wxpython-2.8.8.1.ebuild?r1=1.8&r2=1.9

Index: wxpython-2.8.8.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/wxpython/wxpython-2.8.8.1.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- wxpython-2.8.8.1.ebuild	18 Oct 2008 15:25:51 -0000	1.8
+++ wxpython-2.8.8.1.ebuild	27 Oct 2008 18:52:39 -0000	1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/wxpython/wxpython-2.8.8.1.ebuild,v 1.8 2008/10/18 15:25:51 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/wxpython/wxpython-2.8.8.1.ebuild,v 1.9 2008/10/27 18:52:39 jer Exp $
 
 EAPI="1"
 WX_GTK_VER="2.8"
@@ -17,7 +17,7 @@
 
 LICENSE="wxWinLL-3"
 SLOT="2.8"
-KEYWORDS="alpha amd64 ~hppa ia64 ppc ppc64 sparc x86"
+KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86"
 IUSE="opengl"
 
 RDEPEND=">=dev-lang/python-2.1






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

end of thread, other threads:[~2008-10-27 18:52 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-10-18 15:25 [gentoo-commits] gentoo-x86 commit in dev-python/wxpython: ChangeLog wxpython-2.8.8.1.ebuild Raul Porcel (armin76)
  -- strict thread matches above, loose matches on Subject: below --
2008-10-27 18:52 Jeroen Roovers (jer)
2008-10-16 20:04 Markus Meier (maekke)
2008-10-15 16:14 Markus Rothe (corsair)
2008-10-15 13:19 Ferris McCormick (fmccor)
2008-10-02  0:47 Ryan Hill (dirtyepic)
2008-07-25  2:44 Ryan Hill (dirtyepic)

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