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 050F7138334 for ; Wed, 6 Jun 2018 16:41:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D85F3E0BC5; Wed, 6 Jun 2018 16:41:52 +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 93D2BE0BC5 for ; Wed, 6 Jun 2018 16:41:52 +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 0E5F7335C8C for ; Wed, 6 Jun 2018 16:41:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 55F7B2BE for ; Wed, 6 Jun 2018 16:41:48 +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: <1528303299.0478e1a65c7f60581a4a2bc333d37951631bff61.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/metadata.xml dev-python/pyotp/pyotp-2.2.6.ebuild X-VCS-Directories: dev-python/pyotp/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 0478e1a65c7f60581a4a2bc333d37951631bff61 X-VCS-Branch: master Date: Wed, 6 Jun 2018 16:41:48 +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-Archives-Salt: c571d481-b872-454e-9b7f-75714ae4c5a3 X-Archives-Hash: eb1744f7d4e3a2d2c203a103add98dbf commit: 0478e1a65c7f60581a4a2bc333d37951631bff61 Author: Oleksandr Trotsenko gmail com> AuthorDate: Fri May 18 22:12:55 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Jun 6 16:41:39 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0478e1a6 dev-python/pyotp: Introducing new package Introducing the package into Gentoo repository. Closes: https://bugs.gentoo.org/655082 Closes: https://github.com/gentoo/gentoo/pull/8282 Package-Manager: Portage-2.3.33, Repoman-2.3.9 dev-python/pyotp/Manifest | 1 + dev-python/pyotp/metadata.xml | 12 ++++++++++++ dev-python/pyotp/pyotp-2.2.6.ebuild | 22 ++++++++++++++++++++++ 3 files changed, 35 insertions(+) diff --git a/dev-python/pyotp/Manifest b/dev-python/pyotp/Manifest new file mode 100644 index 00000000000..a6f46cb48b2 --- /dev/null +++ b/dev-python/pyotp/Manifest @@ -0,0 +1 @@ +DIST pyotp-2.2.6.tar.gz 10602 BLAKE2B 801f48646ff15a039b9295948ed292c3c432f8b0b629d249554259802335b7430a2c82f8c3bee1f54df71b0972ec293d69a2005c35cac120a51cec1a3548b2c1 SHA512 4f962704411ceebff967cf13af5ec5b815da0f82af665a086c4e5d53acc735453d638c65aa2afa40fe546e92d04a9250f6964cb22270a67c9609f8486eb5ba90 diff --git a/dev-python/pyotp/metadata.xml b/dev-python/pyotp/metadata.xml new file mode 100644 index 00000000000..e7214b7e32c --- /dev/null +++ b/dev-python/pyotp/metadata.xml @@ -0,0 +1,12 @@ + + + + + oleksandr.trotsenko@gmail.com + Oleksandr Trotsenko + + + proxy-maint@gentoo.org + Proxy Maintainers + + diff --git a/dev-python/pyotp/pyotp-2.2.6.ebuild b/dev-python/pyotp/pyotp-2.2.6.ebuild new file mode 100644 index 00000000000..e6c97cdb665 --- /dev/null +++ b/dev-python/pyotp/pyotp-2.2.6.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python2_7 python3_{4,5,6} ) + +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}" +}