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/jwcrypto/
Date: Mon, 04 May 2020 11:21:19
Message-Id: 1588591215.c983bfd8c5336fc093f1df6353e030e1ececf9ea.mgorny@gentoo
1 commit: c983bfd8c5336fc093f1df6353e030e1ececf9ea
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 4 11:20:15 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon May 4 11:20:15 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c983bfd8
7
8 dev-python/jwcrypto: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/jwcrypto/Manifest | 1 -
13 dev-python/jwcrypto/jwcrypto-0.4.2.ebuild | 27 ---------------------------
14 2 files changed, 28 deletions(-)
15
16 diff --git a/dev-python/jwcrypto/Manifest b/dev-python/jwcrypto/Manifest
17 index bcc2a5e6a8c..30b45aaa1da 100644
18 --- a/dev-python/jwcrypto/Manifest
19 +++ b/dev-python/jwcrypto/Manifest
20 @@ -1,2 +1 @@
21 -DIST jwcrypto-0.4.2.tar.gz 74332 BLAKE2B 4f779d00d58b7b17210042e7de943afcd766890e97859c487244899c10ee222326c68b74695b83034c09d00fbd43ad7108a5dcb84e019a8422722893198858e0 SHA512 38994a1274ce3a66d3a6a3e36f83b311b172e260129c94c70ae02e6d62b7a2fbcc07fd4353d3bf45f0c7f40c63322a3f489c8b1bda80c7511ae7a2136a2415dd
22 DIST jwcrypto-0.7.0.tar.gz 80869 BLAKE2B 7b8a6928dff40d4d3e0bd61cfc81362ed5d0abd1001e1273aa12111166ed13e510d9cff935724578c2b7392bc74ffc94b0a733ea23f4a982e6bd8d35b1155ef4 SHA512 1d2b6268a54f3a3d466f7a7f7f0776164f0f35420b026c8ebfba099df530d965697eea85a49a73c44713e38fdb9ec4018cd4813b8e154a18117fc4006aa5578e
23
24 diff --git a/dev-python/jwcrypto/jwcrypto-0.4.2.ebuild b/dev-python/jwcrypto/jwcrypto-0.4.2.ebuild
25 deleted file mode 100644
26 index e001979de9c..00000000000
27 --- a/dev-python/jwcrypto/jwcrypto-0.4.2.ebuild
28 +++ /dev/null
29 @@ -1,27 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -
35 -PYTHON_COMPAT=( python3_6 )
36 -inherit distutils-r1
37 -
38 -DESCRIPTION="Implements JWK,JWS,JWE specifications using python-cryptography"
39 -
40 -HOMEPAGE="https://github.com/latchset/jwcrypto"
41 -SRC_URI="https://github.com/latchset/jwcrypto/archive/v${PV}.tar.gz -> ${P}.tar.gz"
42 -
43 -LICENSE="LGPL-3+"
44 -SLOT="0"
45 -KEYWORDS="~amd64"
46 -IUSE="test"
47 -RESTRICT="!test? ( test )"
48 -
49 -RDEPEND=">=dev-python/cryptography-1.5[${PYTHON_USEDEP}]"
50 -DEPEND="${RDEPEND}
51 - dev-python/setuptools[${PYTHON_USEDEP}]
52 - test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
53 -
54 -python_test() {
55 - py.test -v || die
56 -}