diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2009-10-16 22:23:44 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2009-10-16 22:23:44 +0000 |
commit | 1e7109669843cc91f20bd79cd2bb25a1b636700e (patch) | |
tree | d454bc4a8fd84aca8647a886c8b38909e01f14d5 /dev-python/pyfltk | |
parent | x86 stable, bug #281427 (diff) | |
download | gentoo-2-1e7109669843cc91f20bd79cd2bb25a1b636700e.tar.gz gentoo-2-1e7109669843cc91f20bd79cd2bb25a1b636700e.tar.bz2 gentoo-2-1e7109669843cc91f20bd79cd2bb25a1b636700e.zip |
Removed older version, closing #285198
(Portage version: 2.2_rc46/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/pyfltk')
-rw-r--r-- | dev-python/pyfltk/ChangeLog | 6 | ||||
-rw-r--r-- | dev-python/pyfltk/files/pyfltk-1.1.2-python25.patch | 33 | ||||
-rw-r--r-- | dev-python/pyfltk/pyfltk-1.1.2.ebuild | 56 |
3 files changed, 5 insertions, 90 deletions
diff --git a/dev-python/pyfltk/ChangeLog b/dev-python/pyfltk/ChangeLog index ab5046aa0259..991c6dbe0997 100644 --- a/dev-python/pyfltk/ChangeLog +++ b/dev-python/pyfltk/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-python/pyfltk # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyfltk/ChangeLog,v 1.15 2009/10/16 21:51:06 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyfltk/ChangeLog,v 1.16 2009/10/16 22:23:44 bicatali Exp $ + + 16 Oct 2009; Sébastien Fabbro <bicatali@gentoo.org> -pyfltk-1.1.2.ebuild, + -files/pyfltk-1.1.2-python25.patch: + Removed older version, closing #285198 16 Oct 2009; Markus Meier <maekke@gentoo.org> pyfltk-1.1.4.ebuild: amd64 stable, bug #284976 diff --git a/dev-python/pyfltk/files/pyfltk-1.1.2-python25.patch b/dev-python/pyfltk/files/pyfltk-1.1.2-python25.patch deleted file mode 100644 index 0d0232fd7841..000000000000 --- a/dev-python/pyfltk/files/pyfltk-1.1.2-python25.patch +++ /dev/null @@ -1,33 +0,0 @@ ---- swig/Fl_Bitmap.i.orig 2007-12-09 15:34:18.633043673 +0000 -+++ swig/Fl_Bitmap.i 2007-12-09 15:34:56.675211572 +0000 -@@ -13,7 +13,7 @@ - - %typemap(in) const uchar *bits { - /* Check if the input support the buffer protocol */ -- int size_buffer; -+ Py_ssize_t size_buffer; - const void * buffer; - int failure = PyObject_AsReadBuffer($input,&buffer,&size_buffer); - if (!failure) { ---- swig/fl_draw.i.orig 2007-12-09 15:34:37.166099811 +0000 -+++ swig/fl_draw.i 2007-12-09 15:35:15.200267255 +0000 -@@ -9,7 +9,7 @@ - - %typemap(in) const uchar * { - /* Check if the input support the buffer protocol */ -- int size_buffer; -+ Py_ssize_t size_buffer; - const void * buffer; - int failure = PyObject_AsReadBuffer($input,&buffer,&size_buffer); - if (!failure) { ---- swig/Fl_Image.i.orig 2007-12-09 15:34:30.577724361 +0000 -+++ swig/Fl_Image.i 2007-12-09 15:35:30.549141938 +0000 -@@ -23,7 +23,7 @@ - - %typemap(in) const uchar *bits { - /* Check if the input support the buffer protocol */ -- int size_buffer; -+ Py_ssize_t size_buffer; - const void * buffer; - int failure = PyObject_AsReadBuffer($input,&buffer,&size_buffer); - if (!failure) { diff --git a/dev-python/pyfltk/pyfltk-1.1.2.ebuild b/dev-python/pyfltk/pyfltk-1.1.2.ebuild deleted file mode 100644 index 8de66e8b35de..000000000000 --- a/dev-python/pyfltk/pyfltk-1.1.2.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyfltk/pyfltk-1.1.2.ebuild,v 1.6 2008/11/14 17:42:09 coldwind Exp $ - -EAPI=1 - -inherit eutils distutils - -MY_P=pyFltk-${PV} - -DESCRIPTION="Python interface to Fltk library" -HOMEPAGE="http://pyfltk.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz - doc? ( http://junk.mikeasoft.com/pyfltkmanual.pdf )" - -LICENSE="LGPL-2" -SLOT="0" -KEYWORDS="amd64 ppc x86" -IUSE="doc opengl" - -DEPEND=">=dev-lang/swig-1.3.29 - >=x11-libs/fltk-1.1.7:1.1" - -RDEPEND=">=x11-libs/fltk-1.1.7:1.1" - -S="${WORKDIR}/${MY_P}" - -DOCS="CHANGES" - -src_unpack() { - unpack ${A} - cd "${S}" - distutils_python_version - [[ "${PYVER}" == 2.5 ]] && epatch "${FILESDIR}"/${P}-python25.patch - # move docs because the swig stuff will remove them - use doc && cp -r fltk fltk.docs -} - -src_compile() { - cd python - rm -f fltk* - ${python} MakeSwig.py || die "swigging wrappers failed" - cd "${S}" - distutils_src_compile \ - $(use opengl || echo "--disable-gl") -} - -src_install() { - distutils_src_install --install-data /usr/share/doc/${PF} - if use doc; then - insinto /usr/share/doc/${PF} - doins "${DISTDIR}"/pyfltkmanual.pdf || die - dohtml fltk.docs/docs/* || die - doins -r fltk.docs/test || die - fi -} |