Gentoo Archives: gentoo-commits

From: Tim Harder <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyjwt/
Date: Sun, 10 Sep 2017 02:17:12
Message-Id: 1505009806.a85276e11d4688a6ca59352c7ebe3ebe72a86955.radhermit@gentoo
1 commit: a85276e11d4688a6ca59352c7ebe3ebe72a86955
2 Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
3 AuthorDate: Sun Sep 10 02:00:26 2017 +0000
4 Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
5 CommitDate: Sun Sep 10 02:16:46 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a85276e1
7
8 dev-python/pyjwt: version bump to 1.5.3
9
10 dev-python/pyjwt/Manifest | 1 +
11 dev-python/pyjwt/pyjwt-1.5.3.ebuild | 50 +++++++++++++++++++++++++++++++++++++
12 2 files changed, 51 insertions(+)
13
14 diff --git a/dev-python/pyjwt/Manifest b/dev-python/pyjwt/Manifest
15 index 15bf24d3443..18e82dd5a21 100644
16 --- a/dev-python/pyjwt/Manifest
17 +++ b/dev-python/pyjwt/Manifest
18 @@ -1,3 +1,4 @@
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.5.2.tar.gz 72715 SHA256 1179f0bff86463b5308ee5f7aff1c350e1f38139d62a723e16fb2c557d1c795f SHA512 8b9b4e5c96e09a1ec4b2e01aa4b81da217d239dc85eafa6634e6371c9ab19c7a95eabbbb98fd92e02ca7921e6fce771596724dcb44f13be93c9e20f09bbf2192 WHIRLPOOL 5797a2c70ceaa1a7092dec33fc74094453891ca40898da66aac3c28f712ee6560596b6b4b6e80bec699c185c67e566d50239c49a28473c924e74bc85d8a3eca1
22 +DIST PyJWT-1.5.3.tar.gz 73044 SHA256 500be75b17a63f70072416843dc80c8821109030be824f4d14758f114978bae7 SHA512 b25a9f6a04bd072020fcf00bb559b7560902adb79746fb880432c01fa356748238432f53f6b9a21db50ece3e59ed4c45ca3f48ecec0ca3c4095e6a739a5c150c WHIRLPOOL 67ba8da22ffdc62d8f944a20debc8462a0241bbaede565d10b0886b886af41fd56120fd2b0877f7c81edbb08717cc677559a131a54df3d2cf4bce749ed785e30
23
24 diff --git a/dev-python/pyjwt/pyjwt-1.5.3.ebuild b/dev-python/pyjwt/pyjwt-1.5.3.ebuild
25 new file mode 100644
26 index 00000000000..422c20d2efa
27 --- /dev/null
28 +++ b/dev-python/pyjwt/pyjwt-1.5.3.ebuild
29 @@ -0,0 +1,50 @@
30 +# Copyright 1999-2017 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +
35 +PYTHON_COMPAT=( python{2_7,3_{4,5,6}} pypy )
36 +
37 +inherit distutils-r1 eutils
38 +
39 +MY_PN="PyJWT"
40 +
41 +DESCRIPTION="JSON Web Token implementation in Python"
42 +HOMEPAGE="https://github.com/progrium/pyjwt https://pypi.python.org/pypi/PyJWT/"
43 +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
44 +
45 +LICENSE=" MIT"
46 +SLOT="0"
47 +KEYWORDS="amd64 ~arm ~arm64 x86"
48 +IUSE="test"
49 +
50 +RDEPEND=""
51 +DEPEND="
52 + dev-python/setuptools[${PYTHON_USEDEP}]
53 + test? (
54 + >=dev-python/cryptography-1.4.0[${PYTHON_USEDEP}]
55 + dev-python/pytest[${PYTHON_USEDEP}]
56 + dev-python/pytest-cov[${PYTHON_USEDEP}]
57 + dev-python/pytest-runner[${PYTHON_USEDEP}]
58 + )"
59 +
60 +S="${WORKDIR}"/${MY_PN}-${PV}
61 +
62 +python_prepare_all() {
63 + find . -name '__pycache__' -prune -exec rm -rf {} \; || die "Cleaning __pycache__ failed"
64 + find . -name '*.pyc' -exec rm -f {} \; || die "Cleaing *.pyc failed"
65 +
66 + distutils-r1_python_prepare_all
67 +}
68 +
69 +python_test() {
70 + esetup.py test
71 +}
72 +
73 +pkg_postinst() {
74 + elog "Available optional features:"
75 + optfeature "cryptography" dev-python/cryptography
76 + optfeature "flake8" dev-python/flake8
77 +
78 + ewarn "flake8 feature requires 'flake8-import-order' and 'pep8-naming', which are not in portage yet"
79 +}