Gentoo Archives: gentoo-commits

From: "Robin H. Johnson (robbat2)" <robbat2@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-geosciences/tilecache: tilecache-2.11-r1.ebuild ChangeLog
Date: Sat, 09 Nov 2013 19:22:04
Message-Id: 20131109192159.A9F6B2004E@flycatcher.gentoo.org
1 robbat2 13/11/09 19:21:59
2
3 Modified: ChangeLog
4 Added: tilecache-2.11-r1.ebuild
5 Log:
6 Bug #471550: Fix PIL usage. Also migrate from dev-python/imaging to virtual/python-imaging and to distutils-r1 & EAPI5.
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.6 sci-geosciences/tilecache/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/tilecache/ChangeLog?rev=1.6&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/tilecache/ChangeLog?rev=1.6&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/tilecache/ChangeLog?r1=1.5&r2=1.6
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-geosciences/tilecache/ChangeLog,v
20 retrieving revision 1.5
21 retrieving revision 1.6
22 diff -p -w -b -B -u -u -r1.5 -r1.6
23 --- ChangeLog 1 Jun 2011 09:53:25 -0000 1.5
24 +++ ChangeLog 9 Nov 2013 19:21:59 -0000 1.6
25 @@ -1,6 +1,13 @@
26 # ChangeLog for sci-geosciences/tilecache
27 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/tilecache/ChangeLog,v 1.5 2011/06/01 09:53:25 scarabeus Exp $
29 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/tilecache/ChangeLog,v 1.6 2013/11/09 19:21:59 robbat2 Exp $
31 +
32 +*tilecache-2.11-r1 (09 Nov 2013)
33 +
34 + 09 Nov 2013; Robin H. Johnson <robbat2@g.o>
35 + +files/tilecache-2.11-pil.patch, +tilecache-2.11-r1.ebuild:
36 + Bug #471550: Fix PIL usage. Also migrate from dev-python/imaging to virtual
37 + /python-imaging and to distutils-r1 & EAPI5.
38
39 *tilecache-2.11 (01 Jun 2011)
40
41
42
43
44 1.1 sci-geosciences/tilecache/tilecache-2.11-r1.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/tilecache/tilecache-2.11-r1.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/tilecache/tilecache-2.11-r1.ebuild?rev=1.1&content-type=text/plain
48
49 Index: tilecache-2.11-r1.ebuild
50 ===================================================================
51 # Copyright 1999-2013 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/sci-geosciences/tilecache/tilecache-2.11-r1.ebuild,v 1.1 2013/11/09 19:21:59 robbat2 Exp $
54
55 EAPI=5
56 PYTHON_COMPAT=( python{2_5,2_6,2_7} )
57
58 inherit distutils-r1
59
60 DESCRIPTION="Web map tile caching system"
61 HOMEPAGE="http://tilecache.org/"
62 SRC_URI="http://${PN}.org/${P}.tar.gz"
63
64 LICENSE="BSD"
65 SLOT="0"
66 KEYWORDS="~amd64 ~x86"
67 IUSE=""
68
69 RDEPEND="virtual/python-imaging
70 dev-python/paste"
71 DEPEND="${RDEPEND}
72 dev-python/setuptools
73 "
74
75 PATCHES=( "${FILESDIR}/tilecache-2.11-pil.patch" )
76
77 src_install() {
78 distutils-r1_src_install "--debian"
79 }
80
81 python_test() {
82 python setup.py test || die "Failed tests"
83 }