diff options
author | Michał Górny <mgorny@gentoo.org> | 2020-05-04 13:34:03 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2020-05-04 13:34:03 +0200 |
commit | d58efeef2756a7ee4ab626e14d51b838a795bc18 (patch) | |
tree | 85d321f8cd9f9865d86b0b93bef3e428ed735a40 /dev-python/passlib | |
parent | dev-python/parver: Remove old (diff) | |
download | gentoo-d58efeef2756a7ee4ab626e14d51b838a795bc18.tar.gz gentoo-d58efeef2756a7ee4ab626e14d51b838a795bc18.tar.bz2 gentoo-d58efeef2756a7ee4ab626e14d51b838a795bc18.zip |
dev-python/passlib: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/passlib')
-rw-r--r-- | dev-python/passlib/Manifest | 1 | ||||
-rw-r--r-- | dev-python/passlib/passlib-1.7.1-r2.ebuild | 38 |
2 files changed, 0 insertions, 39 deletions
diff --git a/dev-python/passlib/Manifest b/dev-python/passlib/Manifest index 2dc05f8ad0fb..2da76b89308b 100644 --- a/dev-python/passlib/Manifest +++ b/dev-python/passlib/Manifest @@ -1,2 +1 @@ -DIST passlib-1.7.1.tar.gz 645724 BLAKE2B f34e3bbc5a61ff71cc989fa26edb9f992909bfdcc6ca1b094ebc02fc9942eb1db1ea18fc3dd5bb7d9fcecf6b4bd82e93aba07c7ce63ec85452b5d7117a6e1968 SHA512 3d5f069cd4e44e5e87cdabc46845acbdd6c1eeedb7ce1f611aebee87b0f7af19009b6a47a10ec555fd84260b9f5c933c6429e325d30326de3869f05031674168 DIST passlib-1.7.2.tar.gz 649654 BLAKE2B 40279113d9ff633cea47222f2d72af0abee78dc52a9b46adf66aaae213594eaae7f245cc80004f85b5055b882741b4bedfd81ee39132db23760d37a34e87ac6a SHA512 1ea0654b177b5ab2e1a7e5c3949642c34805ace6e4e4a0f82fafdb3f374edd99c667906ce598c335b668da049860648d5cbebb3e62d775898d5b0cb8cfc7bf53 diff --git a/dev-python/passlib/passlib-1.7.1-r2.ebuild b/dev-python/passlib/passlib-1.7.1-r2.ebuild deleted file mode 100644 index 2c3f8d8ff2b7..000000000000 --- a/dev-python/passlib/passlib-1.7.1-r2.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -PYTHON_COMPAT=( python{2_7,3_{6,7,8}} ) - -inherit distutils-r1 - -DESCRIPTION="Password hashing framework supporting over 20 schemes" -HOMEPAGE="https://bitbucket.org/ecollins/passlib/wiki/Home/" -SRC_URI="mirror://pypi/p/${PN}/${P}.tar.gz" - -LICENSE="BSD-2" -KEYWORDS="amd64 ~arm ~arm64 ~hppa ~sparc x86" -SLOT="0" -IUSE="+bcrypt doc +scrypt test +totp" - -RDEPEND="bcrypt? ( dev-python/bcrypt[${PYTHON_USEDEP}] ) - totp? ( dev-python/cryptography[${PYTHON_USEDEP}] ) - scrypt? ( dev-python/scrypt[${PYTHON_USEDEP}] )" -DEPEND="${RDEPEND} - dev-python/setuptools[${PYTHON_USEDEP}] - test? ( dev-python/nose[${PYTHON_USEDEP}] )" - -PATCHES=( - "${FILESDIR}/passlib-1.7.1-tests.patch" -) - -RESTRICT="!test? ( test )" - -python_test() { - nosetests -v -w "${BUILD_DIR}"/lib || die "Tests fail with ${EPYTHON}" -} - -python_install_all() { - distutils-r1_python_install_all - use doc && dodoc docs/{*.rst,requirements.txt,lib/*.rst} -} |