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 80D9713835A for ; Thu, 30 Jul 2020 06:19:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B18D5E0AA2; Thu, 30 Jul 2020 06:19:38 +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 94966E0AA2 for ; Thu, 30 Jul 2020 06:19:38 +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 C8C0334F47F for ; Thu, 30 Jul 2020 06:19:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 41FF72F1 for ; Thu, 30 Jul 2020 06:19:34 +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: <1596089126.22879d1b15a9a730b8099f6218bae3d5d81fa719.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.4.0.ebuild X-VCS-Directories: dev-python/pyotp/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 22879d1b15a9a730b8099f6218bae3d5d81fa719 X-VCS-Branch: master Date: Thu, 30 Jul 2020 06:19:34 +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: abe85722-1ad7-4a19-95c0-8ff2bf7744ce X-Archives-Hash: 7203e5c00b3c7c81242114349be8fbf0 commit: 22879d1b15a9a730b8099f6218bae3d5d81fa719 Author: Michał Górny gentoo org> AuthorDate: Thu Jul 30 06:05:26 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Jul 30 06:05:26 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22879d1b dev-python/pyotp: Bump to 2.4.0 Signed-off-by: Michał Górny gentoo.org> dev-python/pyotp/Manifest | 1 + dev-python/pyotp/pyotp-2.4.0.ebuild | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+) diff --git a/dev-python/pyotp/Manifest b/dev-python/pyotp/Manifest index 6ed3587391a..969106969fc 100644 --- a/dev-python/pyotp/Manifest +++ b/dev-python/pyotp/Manifest @@ -1 +1,2 @@ DIST pyotp-2.3.0.tar.gz 11672 BLAKE2B a3d8ca5296b5a8a7aa053b0a0556285c19f335cb1dfb4f892d40fe2d79cc52313af7b31c6ee4afc4eb8c1cd8cb8248442bd1a4868e2bb921a552332a0a283a44 SHA512 4a7a4206134e9a370f7f3c3a9b7e755b75a84e30a320084faf91af5607c4262a6aa76d7b8cefaf284e4cf01faea1df4ca92d871644a14ab56f04693b227485cf +DIST pyotp-2.4.0.tar.gz 14789 BLAKE2B 3c228f0e8271aa0c6692000ae2b2a6407afe015a4a91851509d8878f325277c055e52e3f3385cf0139678406a1e09c0230743e6a09c2d64c291df6b770508d7c SHA512 cb6d49d0b6880c6d7c5ef6337d1f0085609e1b66c693b1a9cf6604334af6456cd67dd0278836211edb91a81b5340cab51499cd47b2013d291c9cc9d59e4f31a5 diff --git a/dev-python/pyotp/pyotp-2.4.0.ebuild b/dev-python/pyotp/pyotp-2.4.0.ebuild new file mode 100644 index 00000000000..5334f2e81f8 --- /dev/null +++ b/dev-python/pyotp/pyotp-2.4.0.ebuild @@ -0,0 +1,18 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7,8} ) + +inherit distutils-r1 + +DESCRIPTION="PyOTP is a Python library for generating and verifying one-time passwords." +HOMEPAGE="https://github.com/pyauth/pyotp https://pypi.org/project/pyotp/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +distutils_enable_tests unittest