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/passlib/
Date: Mon, 04 May 2020 11:35:14
Message-Id: 1588592043.d58efeef2756a7ee4ab626e14d51b838a795bc18.mgorny@gentoo
1 commit: d58efeef2756a7ee4ab626e14d51b838a795bc18
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 4 11:34:03 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon May 4 11:34:03 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d58efeef
7
8 dev-python/passlib: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/passlib/Manifest | 1 -
13 dev-python/passlib/passlib-1.7.1-r2.ebuild | 38 ------------------------------
14 2 files changed, 39 deletions(-)
15
16 diff --git a/dev-python/passlib/Manifest b/dev-python/passlib/Manifest
17 index 2dc05f8ad0f..2da76b89308 100644
18 --- a/dev-python/passlib/Manifest
19 +++ b/dev-python/passlib/Manifest
20 @@ -1,2 +1 @@
21 -DIST passlib-1.7.1.tar.gz 645724 BLAKE2B f34e3bbc5a61ff71cc989fa26edb9f992909bfdcc6ca1b094ebc02fc9942eb1db1ea18fc3dd5bb7d9fcecf6b4bd82e93aba07c7ce63ec85452b5d7117a6e1968 SHA512 3d5f069cd4e44e5e87cdabc46845acbdd6c1eeedb7ce1f611aebee87b0f7af19009b6a47a10ec555fd84260b9f5c933c6429e325d30326de3869f05031674168
22 DIST passlib-1.7.2.tar.gz 649654 BLAKE2B 40279113d9ff633cea47222f2d72af0abee78dc52a9b46adf66aaae213594eaae7f245cc80004f85b5055b882741b4bedfd81ee39132db23760d37a34e87ac6a SHA512 1ea0654b177b5ab2e1a7e5c3949642c34805ace6e4e4a0f82fafdb3f374edd99c667906ce598c335b668da049860648d5cbebb3e62d775898d5b0cb8cfc7bf53
23
24 diff --git a/dev-python/passlib/passlib-1.7.1-r2.ebuild b/dev-python/passlib/passlib-1.7.1-r2.ebuild
25 deleted file mode 100644
26 index 2c3f8d8ff2b..00000000000
27 --- a/dev-python/passlib/passlib-1.7.1-r2.ebuild
28 +++ /dev/null
29 @@ -1,38 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -PYTHON_COMPAT=( python{2_7,3_{6,7,8}} )
35 -
36 -inherit distutils-r1
37 -
38 -DESCRIPTION="Password hashing framework supporting over 20 schemes"
39 -HOMEPAGE="https://bitbucket.org/ecollins/passlib/wiki/Home/"
40 -SRC_URI="mirror://pypi/p/${PN}/${P}.tar.gz"
41 -
42 -LICENSE="BSD-2"
43 -KEYWORDS="amd64 ~arm ~arm64 ~hppa ~sparc x86"
44 -SLOT="0"
45 -IUSE="+bcrypt doc +scrypt test +totp"
46 -
47 -RDEPEND="bcrypt? ( dev-python/bcrypt[${PYTHON_USEDEP}] )
48 - totp? ( dev-python/cryptography[${PYTHON_USEDEP}] )
49 - scrypt? ( dev-python/scrypt[${PYTHON_USEDEP}] )"
50 -DEPEND="${RDEPEND}
51 - dev-python/setuptools[${PYTHON_USEDEP}]
52 - test? ( dev-python/nose[${PYTHON_USEDEP}] )"
53 -
54 -PATCHES=(
55 - "${FILESDIR}/passlib-1.7.1-tests.patch"
56 -)
57 -
58 -RESTRICT="!test? ( test )"
59 -
60 -python_test() {
61 - nosetests -v -w "${BUILD_DIR}"/lib || die "Tests fail with ${EPYTHON}"
62 -}
63 -
64 -python_install_all() {
65 - distutils-r1_python_install_all
66 - use doc && dodoc docs/{*.rst,requirements.txt,lib/*.rst}
67 -}