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: Thu, 07 Dec 2017 23:15:48
Message-Id: 1512688531.6ef22505bc25ef8a68bef36e38832c7207d7aa68.sping@gentoo
1 commit: 6ef22505bc25ef8a68bef36e38832c7207d7aa68
2 Author: Sebastian Pipping <sping <AT> gentoo <DOT> org>
3 AuthorDate: Thu Dec 7 23:03:59 2017 +0000
4 Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
5 CommitDate: Thu Dec 7 23:15:31 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ef22505
7
8 dev-python/piexif: 1.0.13
9
10 Package-Manager: Portage-2.3.16, Repoman-2.3.6
11
12 dev-python/piexif/Manifest | 3 ++-
13 dev-python/piexif/piexif-1.0.13.ebuild | 26 ++++++++++++++++++++++++++
14 2 files changed, 28 insertions(+), 1 deletion(-)
15
16 diff --git a/dev-python/piexif/Manifest b/dev-python/piexif/Manifest
17 index 7f9676188a5..80993f04a87 100644
18 --- a/dev-python/piexif/Manifest
19 +++ b/dev-python/piexif/Manifest
20 @@ -1 +1,2 @@
21 -DIST piexif-1.0.12.zip 1005725 SHA256 312e01e2113d0885088cf43704d8c7337fdb0144789a59b05ebaf7b24e6ebb95 SHA512 71de13b30d041c2de2136e9299bea96a0446352815de5358863324743aac6a5e187800214edd209dd212108ce9a0b0b4602aee54dd54f8b058228b255b543c63 WHIRLPOOL 6adc52a4551e55b70338fbba6c350864353bdaa55a10f225d3fde086f5232c4a9725a94db04695fd87b46662a91dba253aa3ccfa342b700a2e2974c0792affcb
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
25 diff --git a/dev-python/piexif/piexif-1.0.13.ebuild b/dev-python/piexif/piexif-1.0.13.ebuild
26 new file mode 100644
27 index 00000000000..1f3c4871b82
28 --- /dev/null
29 +++ b/dev-python/piexif/piexif-1.0.13.ebuild
30 @@ -0,0 +1,26 @@
31 +# Copyright 1999-2017 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +
36 +PYTHON_COMPAT=( pypy{,3} python{2_7,3_{4,5,6}} )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Exif manipulation with pure Python"
41 +HOMEPAGE="https://github.com/hMatoba/Piexif
42 + https://pypi.python.org/pypi/piexif"
43 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.zip"
44 +
45 +LICENSE="MIT"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~x86"
48 +IUSE="test"
49 +
50 +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
51 + app-arch/unzip
52 + test? ( dev-python/pillow )"
53 +
54 +python_test() {
55 + "${PYTHON}" setup.py test
56 +}