Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/piexif/
Date: Sat, 31 Dec 2022 13:31:52
Message-Id: 1672493499.2e8686578a159a0c82420a9889b85c9921c9a4f0.mgorny@gentoo
1 commit: 2e8686578a159a0c82420a9889b85c9921c9a4f0
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Dec 31 13:28:41 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Dec 31 13:31:39 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e868657
7
8 dev-python/piexif: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/piexif/piexif-1.1.3-r1.ebuild | 38 --------------------------------
13 1 file changed, 38 deletions(-)
14
15 diff --git a/dev-python/piexif/piexif-1.1.3-r1.ebuild b/dev-python/piexif/piexif-1.1.3-r1.ebuild
16 deleted file mode 100644
17 index 3927fcd5f2b1..000000000000
18 --- a/dev-python/piexif/piexif-1.1.3-r1.ebuild
19 +++ /dev/null
20 @@ -1,38 +0,0 @@
21 -# Copyright 1999-2022 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=7
25 -
26 -PYTHON_COMPAT=( pypy3 python3_{8..10} )
27 -
28 -inherit edos2unix distutils-r1
29 -
30 -DESCRIPTION="Exif manipulation with pure Python"
31 -HOMEPAGE="https://github.com/hMatoba/Piexif
32 - https://pypi.org/project/piexif/"
33 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.zip"
34 -
35 -LICENSE="MIT"
36 -SLOT="0"
37 -KEYWORDS="amd64 ~riscv ~x86"
38 -IUSE="test"
39 -RESTRICT="!test? ( test )"
40 -
41 -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
42 - app-arch/unzip
43 - test? ( dev-python/pillow[jpeg,${PYTHON_USEDEP}] )"
44 -RDEPEND=""
45 -
46 -PATCHES=(
47 - # From https://github.com/hMatoba/Piexif/pull/109
48 - "${FILESDIR}"/${P}-tests-pillow-7.2.0.patch
49 -)
50 -
51 -src_prepare() {
52 - edos2unix tests/s_test.py # to be able to patch it
53 - default
54 -}
55 -
56 -python_test() {
57 - "${PYTHON}" setup.py test || die
58 -}