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 16405138350 for ; Mon, 4 May 2020 11:39:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 531E3E095F; Mon, 4 May 2020 11:39:12 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 3B823E095F for ; Mon, 4 May 2020 11:39:12 +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 4942834F55F for ; Mon, 4 May 2020 11:39:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 744EC21D for ; Mon, 4 May 2020 11:39:07 +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: <1588592291.3c02339953246fb1721c9e7102d11283ac779584.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyotp/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pyotp/Manifest dev-python/pyotp/pyotp-2.2.6-r1.ebuild X-VCS-Directories: dev-python/pyotp/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 3c02339953246fb1721c9e7102d11283ac779584 X-VCS-Branch: master Date: Mon, 4 May 2020 11:39:07 +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: 43aafc46-b977-4c04-b7bd-6260a5238bd3 X-Archives-Hash: ad0c5a689ae202a25d96d88480e027be commit: 3c02339953246fb1721c9e7102d11283ac779584 Author: Michał Górny gentoo org> AuthorDate: Mon May 4 11:38:11 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon May 4 11:38:11 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c023399 dev-python/pyotp: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/pyotp/Manifest | 1 - dev-python/pyotp/pyotp-2.2.6-r1.ebuild | 22 ---------------------- 2 files changed, 23 deletions(-) diff --git a/dev-python/pyotp/Manifest b/dev-python/pyotp/Manifest index 4ad52547240..6ed3587391a 100644 --- a/dev-python/pyotp/Manifest +++ b/dev-python/pyotp/Manifest @@ -1,2 +1 @@ -DIST pyotp-2.2.6.tar.gz 10602 BLAKE2B 801f48646ff15a039b9295948ed292c3c432f8b0b629d249554259802335b7430a2c82f8c3bee1f54df71b0972ec293d69a2005c35cac120a51cec1a3548b2c1 SHA512 4f962704411ceebff967cf13af5ec5b815da0f82af665a086c4e5d53acc735453d638c65aa2afa40fe546e92d04a9250f6964cb22270a67c9609f8486eb5ba90 DIST pyotp-2.3.0.tar.gz 11672 BLAKE2B a3d8ca5296b5a8a7aa053b0a0556285c19f335cb1dfb4f892d40fe2d79cc52313af7b31c6ee4afc4eb8c1cd8cb8248442bd1a4868e2bb921a552332a0a283a44 SHA512 4a7a4206134e9a370f7f3c3a9b7e755b75a84e30a320084faf91af5607c4262a6aa76d7b8cefaf284e4cf01faea1df4ca92d871644a14ab56f04693b227485cf diff --git a/dev-python/pyotp/pyotp-2.2.6-r1.ebuild b/dev-python/pyotp/pyotp-2.2.6-r1.ebuild deleted file mode 100644 index 1ced362170e..00000000000 --- a/dev-python/pyotp/pyotp-2.2.6-r1.ebuild +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python3_{6,7} ) - -inherit distutils-r1 - -DESCRIPTION="PyOTP is a Python library for generating and verifying one-time passwords." -HOMEPAGE="https://github.com/pyotp/pyotp https://pypi.org/project/pyotp/" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" - -python_test() { - "${EPYTHON}" -m unittest discover -v || die "Testing failed with ${EPYTHON}" -}