Gentoo Archives: gentoo-commits

From: Sebastian Pipping <sping@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/piexif/
Date: Tue, 05 Nov 2019 19:50:21
Message-Id: 1572983328.3690cd8fd6ac781bde9a1942fb2bc459ef2a74c8.sping@gentoo
1 commit: 3690cd8fd6ac781bde9a1942fb2bc459ef2a74c8
2 Author: Sebastian Pipping <sping <AT> gentoo <DOT> org>
3 AuthorDate: Tue Nov 5 19:43:38 2019 +0000
4 Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
5 CommitDate: Tue Nov 5 19:48:48 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3690cd8f
7
8 dev-python/piexif: 1.1.3 + py37 + EAPI 7
9
10 Signed-off-by: Sebastian Pipping <sping <AT> gentoo.org>
11 Package-Manager: Portage-2.3.78, Repoman-2.3.16
12
13 dev-python/piexif/Manifest | 1 +
14 dev-python/piexif/piexif-1.1.3.ebuild | 27 +++++++++++++++++++++++++++
15 2 files changed, 28 insertions(+)
16
17 diff --git a/dev-python/piexif/Manifest b/dev-python/piexif/Manifest
18 index a9a14608082..94d63737b63 100644
19 --- a/dev-python/piexif/Manifest
20 +++ b/dev-python/piexif/Manifest
21 @@ -1,3 +1,4 @@
22 DIST piexif-1.0.12.zip 1005725 BLAKE2B ff370dfea7b2e3b0013c484c586a294ed3b1590f9248104927974b4f7d2b82435da8fb0d8345ac23bd724606e0cefc2594ba9fa49c58d0f4f00219c1a4ed6cce SHA512 71de13b30d041c2de2136e9299bea96a0446352815de5358863324743aac6a5e187800214edd209dd212108ce9a0b0b4602aee54dd54f8b058228b255b543c63
23 DIST piexif-1.0.13.zip 1008345 BLAKE2B f2f1ba520d661bf3f50de41b81ceebdaff8db2d83f76d4202771438d78c30beabf118f5732a5e76a6484fbf2bd850b461a9d1a0b675f12995dd7f3c8bb32e6cf SHA512 4234783a639e777b58eb0b4591a272d7d5e8c116a7a242cf36287e64d15089478c88327a16b4fa75786fc3621a6bf647f6a075fab0708e2d0aed6395f95b92cb
24 DIST piexif-1.1.0b0.zip 1010925 BLAKE2B dd0eb4cd98cd77b639d88181f7f50201928d683285c661d6fce98c2cef92adfa0a809f45c3dbd38d25745fb1c88f21d31d45871b328052043abe4a247940db62 SHA512 6549f2b1f4a36b3455d561109fc9bdfc130f668ffa78af45ddd1c9ab9264af26617f8d9c7072b2e097d3951a931fae3d8b495589d665d972097411299e24d6e4
25 +DIST piexif-1.1.3.zip 1011134 BLAKE2B b27d4419cf545f6205b13c5646dff9fc7b1ce6e5de538f6a7189e6cadb54d301e11cbf0feaed8b073cbf16de95d67c621b68657b35fc0ba2025281ee64be4e51 SHA512 df5f7793c39911af58bbae76cf998e2a7bc820b84dcf9808ee8f6a38f766f824fef28392ef88387e18b10c270c4b27881be310f0368076b6fb65379a11a93270
26
27 diff --git a/dev-python/piexif/piexif-1.1.3.ebuild b/dev-python/piexif/piexif-1.1.3.ebuild
28 new file mode 100644
29 index 00000000000..06056f08986
30 --- /dev/null
31 +++ b/dev-python/piexif/piexif-1.1.3.ebuild
32 @@ -0,0 +1,27 @@
33 +# Copyright 1999-2019 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +PYTHON_COMPAT=( pypy{,3} python{2_7,3_{5,6,7}} )
39 +
40 +inherit distutils-r1
41 +
42 +DESCRIPTION="Exif manipulation with pure Python"
43 +HOMEPAGE="https://github.com/hMatoba/Piexif
44 + https://pypi.org/project/piexif/"
45 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.zip"
46 +
47 +LICENSE="MIT"
48 +SLOT="0"
49 +KEYWORDS="~amd64 ~x86"
50 +IUSE="test"
51 +
52 +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
53 + app-arch/unzip
54 + test? ( dev-python/pillow )"
55 +RDEPEND=""
56 +
57 +python_test() {
58 + "${PYTHON}" setup.py test
59 +}