commit:     333f1c525745b8b8717d3b83c03a7c3e4c0d2bc5
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Jan  5 22:11:58 2018 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Jan  5 23:19:14 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=333f1c52

dev-python/pyjwt: Clean old up

 dev-python/pyjwt/Manifest           |  3 ---
 dev-python/pyjwt/pyjwt-1.4.0.ebuild | 49 ------------------------------------
 dev-python/pyjwt/pyjwt-1.5.0.ebuild | 50 -------------------------------------
 dev-python/pyjwt/pyjwt-1.5.2.ebuild | 50 -------------------------------------
 4 files changed, 152 deletions(-)

diff --git a/dev-python/pyjwt/Manifest b/dev-python/pyjwt/Manifest
index bad69a7a3d7..9790ed399a7 100644
--- a/dev-python/pyjwt/Manifest
+++ b/dev-python/pyjwt/Manifest
@@ -1,4 +1 @@
-DIST PyJWT-1.4.0.tar.gz 34613 BLAKE2B 
899f39cbfa9827540412aec514b85be18ed89e1b0e41df504afdb51a642a411b98cf2aa9756b798c50a8f5f2be848362a42d8bdec6256eb1b81efb135fb80e17
 SHA512 
1664864c0566dbeb1e35c977d30e746c844605e1ce90becda8771c4ff8a8dbad911075f5a41f445d405552b2d61bbb1e86011564027f68c6c4fcd332cf704ff1
-DIST PyJWT-1.5.0.tar.gz 34841 BLAKE2B 
95f1e136eaeeaa582f09a3dd1c37678d31f0659da306cb0d8ffda8ac407a2932e8e9ee26f58653975a606268f90fd855e0568b4648fc9f04aac79ec909e51698
 SHA512 
6a811933fc167a5b79a8e0c3cd95154f80e115d50795b4b4593abd95922ff330649b9f6cd8698191c3fb35b27b1b6870702c835eec28306b5349ef8d8d836d04
-DIST PyJWT-1.5.2.tar.gz 72715 BLAKE2B 
e33a4face9cae9f15cfb6e6e6420bfb8f9d63d9bfc935df5cbc000fb4d2ac993297522b94a5061349576720ecbcedf2b9a473910c2a8074b8b996fdcb4dd4690
 SHA512 
8b9b4e5c96e09a1ec4b2e01aa4b81da217d239dc85eafa6634e6371c9ab19c7a95eabbbb98fd92e02ca7921e6fce771596724dcb44f13be93c9e20f09bbf2192
 DIST PyJWT-1.5.3.tar.gz 73044 BLAKE2B 
ae2e3caec52ddd768d573e0398bbc355c6eedca238db9b1808ff1d723b9fdee0845cf119d78e561833fe770e5ec39000905cec43a5e96102865f60e204c72c22
 SHA512 
b25a9f6a04bd072020fcf00bb559b7560902adb79746fb880432c01fa356748238432f53f6b9a21db50ece3e59ed4c45ca3f48ecec0ca3c4095e6a739a5c150c

diff --git a/dev-python/pyjwt/pyjwt-1.4.0.ebuild 
b/dev-python/pyjwt/pyjwt-1.4.0.ebuild
deleted file mode 100644
index eb78e8c99f9..00000000000
--- a/dev-python/pyjwt/pyjwt-1.4.0.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python{2_7,3_{4,5}} pypy )
-
-inherit distutils-r1 eutils
-
-MY_PN="PyJWT"
-
-DESCRIPTION="JSON Web Token implementation in Python"
-HOMEPAGE="https://github.com/progrium/pyjwt 
https://pypi.python.org/pypi/PyJWT/";
-SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
-
-LICENSE=" MIT"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 x86"
-IUSE="test"
-
-RDEPEND=""
-DEPEND="
-       dev-python/setuptools[${PYTHON_USEDEP}]
-       dev-python/pytest-runner[${PYTHON_USEDEP}]
-       test? (
-               dev-python/pytest[${PYTHON_USEDEP}]
-               dev-python/pytest-cov[${PYTHON_USEDEP}]
-       )"
-
-S="${WORKDIR}"/${MY_PN}-${PV}
-
-python_prepare_all() {
-       find . -name '__pycache__' -prune -exec rm -rf {} \; || die "Cleaning 
__pycache__ failed"
-       find . -name '*.pyc' -exec rm -f {} \; || die "Cleaing *.pyc failed"
-
-       distutils-r1_python_prepare_all
-}
-
-python_test() {
-       esetup.py test
-}
-
-pkg_postinst() {
-       elog "Available optional features:"
-       optfeature "cryptography" dev-python/cryptography
-       optfeature "flake8" dev-python/flake8
-
-       ewarn "flake8 feature requires 'flake8-import-order' and 'pep8-naming', 
which are not in portage yet"
-}

diff --git a/dev-python/pyjwt/pyjwt-1.5.0.ebuild 
b/dev-python/pyjwt/pyjwt-1.5.0.ebuild
deleted file mode 100644
index b10a65d7c1f..00000000000
--- a/dev-python/pyjwt/pyjwt-1.5.0.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python{2_7,3_{4,5,6}} pypy )
-
-inherit distutils-r1 eutils
-
-MY_PN="PyJWT"
-
-DESCRIPTION="JSON Web Token implementation in Python"
-HOMEPAGE="https://github.com/progrium/pyjwt 
https://pypi.python.org/pypi/PyJWT/";
-SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
-
-LICENSE=" MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
-IUSE="test"
-
-RDEPEND=""
-DEPEND="
-       dev-python/setuptools[${PYTHON_USEDEP}]
-       dev-python/pytest-runner[${PYTHON_USEDEP}]
-       test? (
-               dev-python/cryptography[${PYTHON_USEDEP}]
-               dev-python/pytest[${PYTHON_USEDEP}]
-               dev-python/pytest-cov[${PYTHON_USEDEP}]
-       )"
-
-S="${WORKDIR}"/${MY_PN}-${PV}
-
-python_prepare_all() {
-       find . -name '__pycache__' -prune -exec rm -rf {} \; || die "Cleaning 
__pycache__ failed"
-       find . -name '*.pyc' -exec rm -f {} \; || die "Cleaing *.pyc failed"
-
-       distutils-r1_python_prepare_all
-}
-
-python_test() {
-       esetup.py test
-}
-
-pkg_postinst() {
-       elog "Available optional features:"
-       optfeature "cryptography" dev-python/cryptography
-       optfeature "flake8" dev-python/flake8
-
-       ewarn "flake8 feature requires 'flake8-import-order' and 'pep8-naming', 
which are not in portage yet"
-}

diff --git a/dev-python/pyjwt/pyjwt-1.5.2.ebuild 
b/dev-python/pyjwt/pyjwt-1.5.2.ebuild
deleted file mode 100644
index 1cc2123feb8..00000000000
--- a/dev-python/pyjwt/pyjwt-1.5.2.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python{2_7,3_{4,5,6}} pypy )
-
-inherit distutils-r1 eutils
-
-MY_PN="PyJWT"
-
-DESCRIPTION="JSON Web Token implementation in Python"
-HOMEPAGE="https://github.com/progrium/pyjwt 
https://pypi.python.org/pypi/PyJWT/";
-SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
-
-LICENSE=" MIT"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 x86"
-IUSE="test"
-
-RDEPEND=""
-DEPEND="
-       dev-python/setuptools[${PYTHON_USEDEP}]
-       test? (
-               dev-python/cryptography[${PYTHON_USEDEP}]
-               dev-python/pytest[${PYTHON_USEDEP}]
-               dev-python/pytest-cov[${PYTHON_USEDEP}]
-               dev-python/pytest-runner[${PYTHON_USEDEP}]
-       )"
-
-S="${WORKDIR}"/${MY_PN}-${PV}
-
-python_prepare_all() {
-       find . -name '__pycache__' -prune -exec rm -rf {} \; || die "Cleaning 
__pycache__ failed"
-       find . -name '*.pyc' -exec rm -f {} \; || die "Cleaing *.pyc failed"
-
-       distutils-r1_python_prepare_all
-}
-
-python_test() {
-       esetup.py test
-}
-
-pkg_postinst() {
-       elog "Available optional features:"
-       optfeature "cryptography" dev-python/cryptography
-       optfeature "flake8" dev-python/flake8
-
-       ewarn "flake8 feature requires 'flake8-import-order' and 'pep8-naming', 
which are not in portage yet"
-}

Reply via email to