From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 65264138351 for ; Sat, 28 Mar 2020 11:37:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 35207E0DFA; Sat, 28 Mar 2020 11:36:59 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 050C2E0DFA for ; Sat, 28 Mar 2020 11:36:59 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8F23234F9FD for ; Sat, 28 Mar 2020 11:36:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 195A51A4 for ; Sat, 28 Mar 2020 11:36:56 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1585395388.084a86880d23621b526f79a695b35b32a576df31.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/passlib/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/passlib/passlib-1.7.1-r1.ebuild X-VCS-Directories: dev-python/passlib/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 084a86880d23621b526f79a695b35b32a576df31 X-VCS-Branch: master Date: Sat, 28 Mar 2020 11:36:56 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: b3984703-98ad-424f-93a0-1d020d0fb783 X-Archives-Hash: 43e69e8b8b74ad286cd564e1d3627d2a commit: 084a86880d23621b526f79a695b35b32a576df31 Author: Michał Górny gentoo org> AuthorDate: Sat Mar 28 11:28:54 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Mar 28 11:36:28 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=084a8688 dev-python/passlib: Remove redundant versions Signed-off-by: Michał Górny gentoo.org> dev-python/passlib/passlib-1.7.1-r1.ebuild | 33 ------------------------------ 1 file changed, 33 deletions(-) diff --git a/dev-python/passlib/passlib-1.7.1-r1.ebuild b/dev-python/passlib/passlib-1.7.1-r1.ebuild deleted file mode 100644 index b13bb2f8e22..00000000000 --- a/dev-python/passlib/passlib-1.7.1-r1.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -PYTHON_COMPAT=( python{2_7,3_6,3_7} ) - -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 x86" -SLOT="0" -IUSE="+bcrypt doc +scrypt test +totp" -RESTRICT="!test? ( test )" - -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}] )" - -python_test() { - nosetests -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} -}