* [gentoo-commits] gentoo-x86 commit in dev-python/pillow: pillow-2.1.0.ebuild ChangeLog
@ 2013-09-28 19:19 Mike Gilbert (floppym)
0 siblings, 0 replies; 4+ messages in thread
From: Mike Gilbert (floppym) @ 2013-09-28 19:19 UTC (permalink / raw
To: gentoo-commits
floppym 13/09/28 19:19:02
Modified: ChangeLog
Added: pillow-2.1.0.ebuild
Log:
Version bump. Drop failing patches; I don't think they are actually necessary.
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0BBEEA1FEA4843A4)
Revision Changes Path
1.6 dev-python/pillow/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pillow/ChangeLog?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pillow/ChangeLog?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pillow/ChangeLog?r1=1.5&r2=1.6
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pillow/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog 28 Aug 2013 11:15:21 -0000 1.5
+++ ChangeLog 28 Sep 2013 19:19:02 -0000 1.6
@@ -1,6 +1,11 @@
# ChangeLog for dev-python/pillow
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pillow/ChangeLog,v 1.5 2013/08/28 11:15:21 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pillow/ChangeLog,v 1.6 2013/09/28 19:19:02 floppym Exp $
+
+*pillow-2.1.0 (28 Sep 2013)
+
+ 28 Sep 2013; Mike Gilbert <floppym@gentoo.org> +pillow-2.1.0.ebuild:
+ Version bump. Drop failing patches; I don't think they are actually necessary.
28 Aug 2013; Agostino Sarubbo <ago@gentoo.org> pillow-2.0.0-r1.ebuild:
Stable for x86, wrt bug #450086
1.1 dev-python/pillow/pillow-2.1.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pillow/pillow-2.1.0.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pillow/pillow-2.1.0.ebuild?rev=1.1&content-type=text/plain
Index: pillow-2.1.0.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pillow/pillow-2.1.0.ebuild,v 1.1 2013/09/28 19:19:02 floppym Exp $
EAPI=5
PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
PYTHON_REQ_USE='tk?'
inherit distutils-r1 eutils
MY_PN=Pillow
MY_P=${MY_PN}-${PV}
DESCRIPTION="Python Imaging Library (fork)"
HOMEPAGE="https://github.com/python-imaging/Pillow https://pypi.python.org/pypi/Pillow"
SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.zip"
LICENSE="HPND"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
IUSE="doc examples jpeg lcms scanner test tiff tk truetype webp zlib"
RDEPEND="
truetype? ( media-libs/freetype:2= )
jpeg? ( virtual/jpeg )
lcms? ( media-libs/lcms:0= )
scanner? ( media-gfx/sane-backends:0= )
tiff? ( media-libs/tiff:0= )
webp? ( media-libs/libwebp:0= )
zlib? ( sys-libs/zlib:0= )"
DEPEND="${RDEPEND}
app-arch/unzip
dev-python/setuptools[${PYTHON_USEDEP}]
doc? ( dev-python/sphinx )"
RDEPEND+=" !dev-python/imaging"
S="${WORKDIR}/${MY_P}"
# See _render and _clean in Tests/test_imagefont.py
DISTUTILS_IN_SOURCE_BUILD=1
python_prepare_all() {
# Apply patches before executing sed.
local patches=(
"${FILESDIR}/imaging-1.1.7-no-xv.patch"
)
epatch "${patches[@]}"
# Add shebangs.
# https://github.com/python-imaging/Pillow/pull/197
sed -e "1i#!/usr/bin/env python" -i Scripts/*.py || die
# Disable all the stuff we don't want.
local f
for f in jpeg lcms tiff tk webp zlib; do
if ! use ${f}; then
sed -i -e "s:feature.${f} =:& None #:" setup.py || die
fi
done
if ! use truetype; then
sed -i -e 's:feature.freetype =:& None #:' setup.py || die
fi
distutils-r1_python_prepare_all
}
# XXX: split into two ebuilds?
wrap_phase() {
"${@}"
if use scanner; then
cd Sane || die
"${@}"
fi
}
python_compile() {
wrap_phase distutils-r1_python_compile
}
python_compile_all() {
use doc && emake -C docs html
}
python_test() {
"${PYTHON}" selftest.py --installed || die "Tests fail with ${EPYTHON}"
"${PYTHON}" Tests/run.py --installed || die "Tests fail with ${EPYTHON}"
}
python_install() {
python_doheader libImaging/{Imaging.h,ImPlatform.h}
wrap_phase distutils-r1_python_install
}
python_install_all() {
use doc && local HTML_DOCS=( docs/_build/html/. )
use examples && local EXAMPLES=( Scripts/. )
distutils-r1_python_install_all
if use scanner; then
docinto sane
dodoc Sane/{CHANGES,README,sanedoc.txt}
fi
if use examples && use scanner; then
docinto examples/sane
dodoc Sane/demo_*.py
fi
}
^ permalink raw reply [flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/pillow: pillow-2.1.0.ebuild ChangeLog
@ 2013-09-28 19:22 Mike Gilbert (floppym)
0 siblings, 0 replies; 4+ messages in thread
From: Mike Gilbert (floppym) @ 2013-09-28 19:22 UTC (permalink / raw
To: gentoo-commits
floppym 13/09/28 19:22:44
Modified: pillow-2.1.0.ebuild ChangeLog
Log:
Drop obsolete sed command.
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0BBEEA1FEA4843A4)
Revision Changes Path
1.2 dev-python/pillow/pillow-2.1.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pillow/pillow-2.1.0.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pillow/pillow-2.1.0.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pillow/pillow-2.1.0.ebuild?r1=1.1&r2=1.2
Index: pillow-2.1.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pillow/pillow-2.1.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- pillow-2.1.0.ebuild 28 Sep 2013 19:19:02 -0000 1.1
+++ pillow-2.1.0.ebuild 28 Sep 2013 19:22:44 -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/pillow/pillow-2.1.0.ebuild,v 1.1 2013/09/28 19:19:02 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pillow/pillow-2.1.0.ebuild,v 1.2 2013/09/28 19:22:44 floppym Exp $
EAPI=5
PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
@@ -46,10 +46,6 @@
)
epatch "${patches[@]}"
- # Add shebangs.
- # https://github.com/python-imaging/Pillow/pull/197
- sed -e "1i#!/usr/bin/env python" -i Scripts/*.py || die
-
# Disable all the stuff we don't want.
local f
for f in jpeg lcms tiff tk webp zlib; do
1.7 dev-python/pillow/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pillow/ChangeLog?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pillow/ChangeLog?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pillow/ChangeLog?r1=1.6&r2=1.7
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pillow/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog 28 Sep 2013 19:19:02 -0000 1.6
+++ ChangeLog 28 Sep 2013 19:22:44 -0000 1.7
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/pillow
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pillow/ChangeLog,v 1.6 2013/09/28 19:19:02 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pillow/ChangeLog,v 1.7 2013/09/28 19:22:44 floppym Exp $
+
+ 28 Sep 2013; Mike Gilbert <floppym@gentoo.org> pillow-2.1.0.ebuild:
+ Drop obsolete sed command.
*pillow-2.1.0 (28 Sep 2013)
^ permalink raw reply [flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/pillow: pillow-2.1.0.ebuild ChangeLog
@ 2013-10-23 17:40 Agostino Sarubbo (ago)
0 siblings, 0 replies; 4+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-10-23 17:40 UTC (permalink / raw
To: gentoo-commits
ago 13/10/23 17:40:10
Modified: pillow-2.1.0.ebuild ChangeLog
Log:
Stable for ppc64, wrt bug #488048
(Portage version: 2.1.12.2/cvs/Linux ppc64, RepoMan options: --include-arches="ppc64", signed Manifest commit with key 7194459F)
Revision Changes Path
1.3 dev-python/pillow/pillow-2.1.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pillow/pillow-2.1.0.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pillow/pillow-2.1.0.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pillow/pillow-2.1.0.ebuild?r1=1.2&r2=1.3
Index: pillow-2.1.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pillow/pillow-2.1.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- pillow-2.1.0.ebuild 28 Sep 2013 19:22:44 -0000 1.2
+++ pillow-2.1.0.ebuild 23 Oct 2013 17:40:10 -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/pillow/pillow-2.1.0.ebuild,v 1.2 2013/09/28 19:22:44 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pillow/pillow-2.1.0.ebuild,v 1.3 2013/10/23 17:40:10 ago Exp $
EAPI=5
PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
@@ -17,7 +17,7 @@
LICENSE="HPND"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
IUSE="doc examples jpeg lcms scanner test tiff tk truetype webp zlib"
RDEPEND="
1.11 dev-python/pillow/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pillow/ChangeLog?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pillow/ChangeLog?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pillow/ChangeLog?r1=1.10&r2=1.11
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pillow/ChangeLog,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- ChangeLog 22 Oct 2013 08:57:15 -0000 1.10
+++ ChangeLog 23 Oct 2013 17:40:10 -0000 1.11
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/pillow
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pillow/ChangeLog,v 1.10 2013/10/22 08:57:15 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pillow/ChangeLog,v 1.11 2013/10/23 17:40:10 ago Exp $
+
+ 23 Oct 2013; Agostino Sarubbo <ago@gentoo.org> pillow-2.1.0.ebuild:
+ Stable for ppc64, wrt bug #488048
22 Oct 2013; Agostino Sarubbo <ago@gentoo.org> pillow-2.0.0-r1.ebuild:
Stable for ppc, wrt bug #488048
^ permalink raw reply [flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/pillow: pillow-2.1.0.ebuild ChangeLog
@ 2013-12-02 17:09 Mike Gilbert (floppym)
0 siblings, 0 replies; 4+ messages in thread
From: Mike Gilbert (floppym) @ 2013-12-02 17:09 UTC (permalink / raw
To: gentoo-commits
floppym 13/12/02 17:09:11
Modified: pillow-2.1.0.ebuild ChangeLog
Log:
Drop unused test flag from IUSE.
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0BBEEA1FEA4843A4)
Revision Changes Path
1.4 dev-python/pillow/pillow-2.1.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pillow/pillow-2.1.0.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pillow/pillow-2.1.0.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pillow/pillow-2.1.0.ebuild?r1=1.3&r2=1.4
Index: pillow-2.1.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pillow/pillow-2.1.0.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- pillow-2.1.0.ebuild 23 Oct 2013 17:40:10 -0000 1.3
+++ pillow-2.1.0.ebuild 2 Dec 2013 17:09:11 -0000 1.4
@@ -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/pillow/pillow-2.1.0.ebuild,v 1.3 2013/10/23 17:40:10 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pillow/pillow-2.1.0.ebuild,v 1.4 2013/12/02 17:09:11 floppym Exp $
EAPI=5
PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
@@ -18,7 +18,7 @@
LICENSE="HPND"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
-IUSE="doc examples jpeg lcms scanner test tiff tk truetype webp zlib"
+IUSE="doc examples jpeg lcms scanner tiff tk truetype webp zlib"
RDEPEND="
truetype? ( media-libs/freetype:2= )
1.12 dev-python/pillow/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pillow/ChangeLog?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pillow/ChangeLog?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pillow/ChangeLog?r1=1.11&r2=1.12
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pillow/ChangeLog,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- ChangeLog 23 Oct 2013 17:40:10 -0000 1.11
+++ ChangeLog 2 Dec 2013 17:09:11 -0000 1.12
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/pillow
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pillow/ChangeLog,v 1.11 2013/10/23 17:40:10 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pillow/ChangeLog,v 1.12 2013/12/02 17:09:11 floppym Exp $
+
+ 02 Dec 2013; Mike Gilbert <floppym@gentoo.org> pillow-2.1.0.ebuild:
+ Drop unused test flag from IUSE.
23 Oct 2013; Agostino Sarubbo <ago@gentoo.org> pillow-2.1.0.ebuild:
Stable for ppc64, wrt bug #488048
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2013-12-02 17:09 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-02 17:09 [gentoo-commits] gentoo-x86 commit in dev-python/pillow: pillow-2.1.0.ebuild ChangeLog Mike Gilbert (floppym)
-- strict thread matches above, loose matches on Subject: below --
2013-10-23 17:40 Agostino Sarubbo (ago)
2013-09-28 19:22 Mike Gilbert (floppym)
2013-09-28 19:19 Mike Gilbert (floppym)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox