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/pyjwt/
Date: Tue, 02 May 2017 19:16:07
Message-Id: 1493752529.2163a7bfcbf3ff1c694064b1b397f4dc56aef706.mgorny@gentoo
1 commit: 2163a7bfcbf3ff1c694064b1b397f4dc56aef706
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue May 2 18:47:47 2017 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue May 2 19:15:29 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2163a7bf
7
8 dev-python/pyjwt: Clean old versions up
9
10 dev-python/pyjwt/Manifest | 1 -
11 dev-python/pyjwt/pyjwt-1.3.0.ebuild | 48 -------------------------------------
12 2 files changed, 49 deletions(-)
13
14 diff --git a/dev-python/pyjwt/Manifest b/dev-python/pyjwt/Manifest
15 index 58435ec00c1..0a879668525 100644
16 --- a/dev-python/pyjwt/Manifest
17 +++ b/dev-python/pyjwt/Manifest
18 @@ -1,3 +1,2 @@
19 DIST PyJWT-1.4.0.tar.gz 34613 SHA256 e1b2386cfad541445b1d43e480b02ca37ec57259fd1a23e79415b57ba5d8a694 SHA512 1664864c0566dbeb1e35c977d30e746c844605e1ce90becda8771c4ff8a8dbad911075f5a41f445d405552b2d61bbb1e86011564027f68c6c4fcd332cf704ff1 WHIRLPOOL 4ebd7291b9a9676559703794acdaf0dd2bd1033dd649ef8068bca85fa7ef6ab444e834910fa78b16c15cf324dd4a470d9b40ecdccdb5fdaca7568ab096dc9a8e
20 DIST PyJWT-1.5.0.tar.gz 34841 SHA256 fd182b728d13f04c289d9b2623d09256d356c9b4a6778018001454a954d7c54b SHA512 6a811933fc167a5b79a8e0c3cd95154f80e115d50795b4b4593abd95922ff330649b9f6cd8698191c3fb35b27b1b6870702c835eec28306b5349ef8d8d836d04 WHIRLPOOL 1d8a89929ee1e2642fe25054bc15aeaad13eecd283960477f793ad4185b7789c1163f80e6c36597a6593f50cdf9917473c099a706a56423f2d25dee45ab2806a
21 -DIST pyjwt-1.3.0.tar.gz 61828 SHA256 fc230244ec4e4014d6eeae894ac852e820a4c843dc209d4f77e76d564f46ee49 SHA512 2b7ab0702bb71041bb7280e0e51958fb6bfb9b8c70ac99e24c4ce92e6d37d0432f3323634dceb371dd47c6b380687b2df92bb6ae9f4df555e4938a9a2f76e0f3 WHIRLPOOL bc4a0d79d37b60aa018607d715e2dc7e275ade326994df9a4ac7e0e70e37c11c7bec4d70d292bedf6f18be8d7aa09f826b80d14a532fd00c650d417223285daf
22
23 diff --git a/dev-python/pyjwt/pyjwt-1.3.0.ebuild b/dev-python/pyjwt/pyjwt-1.3.0.ebuild
24 deleted file mode 100644
25 index 73412ab2ed3..00000000000
26 --- a/dev-python/pyjwt/pyjwt-1.3.0.ebuild
27 +++ /dev/null
28 @@ -1,48 +0,0 @@
29 -# Copyright 1999-2015 Gentoo Foundation
30 -# Distributed under the terms of the GNU General Public License v2
31 -
32 -EAPI=5
33 -PYTHON_COMPAT=( python{2_7,3_4} pypy )
34 -
35 -inherit eutils distutils-r1
36 -
37 -MY_PN="PyJWT"
38 -
39 -DESCRIPTION="JSON Web Token implementation in Python"
40 -HOMEPAGE="https://github.com/progrium/pyjwt https://pypi.python.org/pypi/PyJWT/"
41 -#SRC_URI="https://github.com/progrium/${P}/archive/${PV}.tar.gz -> ${P}.tar.gz"
42 -SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz"
43 -
44 -LICENSE=" MIT"
45 -SLOT="0"
46 -KEYWORDS="amd64 ~arm x86"
47 -IUSE="test"
48 -
49 -RDEPEND=""
50 -DEPEND="
51 - dev-python/setuptools[${PYTHON_USEDEP}]
52 - dev-python/pytest-runner[${PYTHON_USEDEP}]
53 - test? (
54 - dev-python/pytest[${PYTHON_USEDEP}]
55 - dev-python/pytest-cov[${PYTHON_USEDEP}]
56 - )"
57 -S="${WORKDIR}"/${MY_PN}-${PV}
58 -
59 -python_prepare_all() {
60 - find . -name '__pycache__' -prune -exec rm -rf {} \; || die "Cleaning __pycache__ failed"
61 - find . -name '*.pyc' -exec rm -f {} \; || die "Cleaing *.pyc failed"
62 -
63 - distutils-r1_python_prepare_all
64 -}
65 -
66 -python_test() {
67 - esetup.py test
68 -}
69 -
70 -pkg_postinst() {
71 - elog "Available optional features:"
72 - optfeature "cryptography" dev-python/cryptography
73 - optfeature "flake8" dev-python/flake8
74 -
75 - ewarn "flake8 feature requires 'flake8-import-order' and 'pep8-naming', which are not in portage yet"
76 -}