Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/qrencode-python/files/, media-gfx/qrencode-python/
Date: Sun, 28 May 2017 11:15:06
Message-Id: 1495968655.75a25bb27477b8cae9e246429cca2c32947d0005.pacho@gentoo
1 commit: 75a25bb27477b8cae9e246429cca2c32947d0005
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 28 10:50:55 2017 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sun May 28 10:50:55 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75a25bb2
7
8 media-gfx/qrencode-python: Drop old
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.2
11
12 media-gfx/qrencode-python/Manifest | 1 -
13 .../files/qrencode-python-1.01-PIL.patch | 14 ------------
14 .../qrencode-python/qrencode-python-1.01-r1.ebuild | 26 ----------------------
15 3 files changed, 41 deletions(-)
16
17 diff --git a/media-gfx/qrencode-python/Manifest b/media-gfx/qrencode-python/Manifest
18 index ad69a6dd31f..2916cd14889 100644
19 --- a/media-gfx/qrencode-python/Manifest
20 +++ b/media-gfx/qrencode-python/Manifest
21 @@ -1,2 +1 @@
22 -DIST qrencode-python-1.01.tar.gz 2456 SHA256 fd8cdabd743e2db7a1ad332d4f0fe037e5a7807cb2f1d32da3e39439088bb610 SHA512 fc0514038dc78556335744872ad94d48eb68991118f204a6547f2979d62694441d28c5eb67a8a34a096cd686a9ae10ce5f95753a0e3f676f6ad53b3792f6946c WHIRLPOOL d9a0e833437cf1640d6cfb4f84debef936898d88c0c3f5565499a4ef848be45a5c5b1eeeaf2cc8a098c4898183395db688152154d93314c1db693eaccaa285ce
23 DIST qrencode-python-1.02_pre140921.tar.gz 2084 SHA256 8c3d5d2c5479f10aa1462a9bf95390b78b47043bf56e0f581ed61a3eb9507ccf SHA512 231c61f98f064d282611d14194de7b3c0a18faff0ed856722e39a6cc25f744442d77bd43418aec117c6e39ddd78a6ea770edee8992aa4e3cfce50254ac6526aa WHIRLPOOL 44009c565bff4c330a416653e7c3863a33b25290a71e4a800f920240b11428fa945ae1c854af5f5c9b5d1d508a915f97bfdbd7c15eee791b27628912f0edd452
24
25 diff --git a/media-gfx/qrencode-python/files/qrencode-python-1.01-PIL.patch b/media-gfx/qrencode-python/files/qrencode-python-1.01-PIL.patch
26 deleted file mode 100644
27 index 0f0b2d4912e..00000000000
28 --- a/media-gfx/qrencode-python/files/qrencode-python-1.01-PIL.patch
29 +++ /dev/null
30 @@ -1,14 +0,0 @@
31 - qrencode/__init__.py | 2 +-
32 - 1 file changed, 1 insertion(+), 1 deletion(-)
33 -
34 -diff --git a/qrencode/__init__.py b/qrencode/__init__.py
35 -index 4ca5396..ba0c15e 100644
36 ---- a/qrencode/__init__.py
37 -+++ b/qrencode/__init__.py
38 -@@ -1,5 +1,5 @@
39 - from qr_encode import encode as _encode
40 --import Image
41 -+from PIL import Image
42 -
43 -
44 - QR_ECLEVEL_L = 0
45
46 diff --git a/media-gfx/qrencode-python/qrencode-python-1.01-r1.ebuild b/media-gfx/qrencode-python/qrencode-python-1.01-r1.ebuild
47 deleted file mode 100644
48 index 272d44ff763..00000000000
49 --- a/media-gfx/qrencode-python/qrencode-python-1.01-r1.ebuild
50 +++ /dev/null
51 @@ -1,26 +0,0 @@
52 -# Copyright 1999-2015 Gentoo Foundation
53 -# Distributed under the terms of the GNU General Public License v2
54 -
55 -EAPI=5
56 -
57 -PYTHON_COMPAT=( python2_7 )
58 -
59 -inherit distutils-r1
60 -
61 -DESCRIPTION="A simple wrapper for the C qrencode library"
62 -HOMEPAGE="https://pypi.python.org/pypi/qrencode/ https://github.com/Arachnid/pyqrencode/"
63 -SRC_URI="mirror://pypi/q/qrencode/qrencode-${PV}.tar.gz -> ${P}.tar.gz"
64 -
65 -SLOT="0"
66 -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
67 -LICENSE="Apache-2.0"
68 -IUSE=""
69 -
70 -RDEPEND="
71 - dev-python/pillow[${PYTHON_USEDEP}]
72 - media-gfx/qrencode"
73 -DEPEND="${RDEPEND}"
74 -
75 -S="${WORKDIR}"/qrencode-${PV}
76 -
77 -PATCHES=( "${FILESDIR}"/${P}-PIL.patch )