Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pillowfight/
Date: Mon, 02 Nov 2015 11:51:04
Message-Id: 1446464832.85bc7f4d76a8aea208771894c6917f2d2a3610ad.jlec@gentoo
1 commit: 85bc7f4d76a8aea208771894c6917f2d2a3610ad
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Mon Nov 2 08:56:14 2015 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Mon Nov 2 11:47:12 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85bc7f4d
7
8 dev-python/pillowfight: New package written by me
9
10 Package-Manager: portage-2.2.23
11 Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
12
13 dev-python/pillowfight/Manifest | 1 +
14 dev-python/pillowfight/metadata.xml | 5 +++++
15 dev-python/pillowfight/pillowfight-0.2.ebuild | 23 +++++++++++++++++++++++
16 3 files changed, 29 insertions(+)
17
18 diff --git a/dev-python/pillowfight/Manifest b/dev-python/pillowfight/Manifest
19 new file mode 100644
20 index 0000000..5678da7
21 --- /dev/null
22 +++ b/dev-python/pillowfight/Manifest
23 @@ -0,0 +1 @@
24 +DIST pillowfight-0.2.tar.gz 2628 SHA256 15bce1925a3d66940ceb9a33c3c55de8d95462ce136c4d46e8673f2919b401d6 SHA512 2eff2fd0bdf5c02513ddb4838675e7b9f392135ff08a784ca2fedf06c5b96a56af75460559066cc6cded65f3d4da087ac679492b7b1dba23fb557e6ac3565e6e WHIRLPOOL 691e985dd6e8da23d117f1a826a99c1cf80fbe01e4e82be10b1cac1277be292ffb4be233e31c7ea4daf98c1c28af1be7d28a5f43e8535c176b15c7cb180f0e10
25
26 diff --git a/dev-python/pillowfight/metadata.xml b/dev-python/pillowfight/metadata.xml
27 new file mode 100644
28 index 0000000..ee7e8b2
29 --- /dev/null
30 +++ b/dev-python/pillowfight/metadata.xml
31 @@ -0,0 +1,5 @@
32 +<?xml version="1.0" encoding="UTF-8"?>
33 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
34 +<pkgmetadata>
35 + <herd>python</herd>
36 +</pkgmetadata>
37
38 diff --git a/dev-python/pillowfight/pillowfight-0.2.ebuild b/dev-python/pillowfight/pillowfight-0.2.ebuild
39 new file mode 100644
40 index 0000000..7ffeb1c
41 --- /dev/null
42 +++ b/dev-python/pillowfight/pillowfight-0.2.ebuild
43 @@ -0,0 +1,23 @@
44 +# Copyright 1999-2015 Gentoo Foundation
45 +# Distributed under the terms of the GNU General Public License v2
46 +# $Id$
47 +
48 +EAPI=5
49 +
50 +PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy pypy3 )
51 +
52 +inherit distutils-r1
53 +
54 +DESCRIPTION="Eases the transition from PIL to Pillow"
55 +HOMEPAGE="https://pypi.python.org/pypi/pillowfight/ https://github.com/beanbaginc/pillowfight"
56 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
57 +
58 +SLOT="0"
59 +LICENSE="MIT"
60 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
61 +IUSE=""
62 +
63 +RDEPEND=""
64 +DEPEND="${RDEPEND}
65 + dev-python/setuptools[${PYTHON_USEDEP}]
66 +"