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 9A05C1396DA for ; Fri, 20 Oct 2017 23:44:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C83EA2BC007; Fri, 20 Oct 2017 23:44:15 +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 938E42BC007 for ; Fri, 20 Oct 2017 23:44:15 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 AB67533BF0B for ; Fri, 20 Oct 2017 23:44:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 186CC314 for ; Fri, 20 Oct 2017 23:44:13 +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: <1508543047.ad987d5e1cfcf57711f2f5014033e754801689b2.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyblake2/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pyblake2/Manifest dev-python/pyblake2/metadata.xml dev-python/pyblake2/pyblake2-0.9.3.ebuild X-VCS-Directories: dev-python/pyblake2/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: ad987d5e1cfcf57711f2f5014033e754801689b2 X-VCS-Branch: master Date: Fri, 20 Oct 2017 23:44:13 +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: 5b7a6122-bff6-4304-aaed-d26323727b5e X-Archives-Hash: 67cbf1700994638f99ed58ad79b121c4 commit: ad987d5e1cfcf57711f2f5014033e754801689b2 Author: Michał Górny gentoo org> AuthorDate: Fri Oct 20 23:13:50 2017 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Oct 20 23:44:07 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad987d5e dev-python/pyblake2: New package Add a package providing Python extension with BLAKE2, for use as a fallback hash provider in sys-apps/portage. dev-python/pyblake2/Manifest | 1 + dev-python/pyblake2/metadata.xml | 15 +++++++++++++++ dev-python/pyblake2/pyblake2-0.9.3.ebuild | 20 ++++++++++++++++++++ 3 files changed, 36 insertions(+) diff --git a/dev-python/pyblake2/Manifest b/dev-python/pyblake2/Manifest new file mode 100644 index 00000000000..3dd6e516a50 --- /dev/null +++ b/dev-python/pyblake2/Manifest @@ -0,0 +1 @@ +DIST pyblake2-0.9.3.tar.gz 130641 SHA256 626448e1fe1cc01d2197118954bec9f158378577e12686d5b01979f7f0fa2212 SHA512 6336a7f7e79bd3e6ff7f8ff4d279ae170e86f1464b9fa9e7ea7f0dbbac6fcc044caf225111e065f9cd9cdeea0f81fae8d373e1f65be3e418929f53fad063205e WHIRLPOOL 0d8f2aaf35a5eb0ebdedd9219a0ee8b126c93b11ae3e406ef637d8930a34783886b212ce50a33d677b0a19289cd32f40dc3da22a9a9fec108b481268f153d45b diff --git a/dev-python/pyblake2/metadata.xml b/dev-python/pyblake2/metadata.xml new file mode 100644 index 00000000000..98aa90fe67a --- /dev/null +++ b/dev-python/pyblake2/metadata.xml @@ -0,0 +1,15 @@ + + + + + mgorny@gentoo.org + Michał Górny + + + python@gentoo.org + + + dchest/pyblake2 + pyblake2 + + diff --git a/dev-python/pyblake2/pyblake2-0.9.3.ebuild b/dev-python/pyblake2/pyblake2-0.9.3.ebuild new file mode 100644 index 00000000000..37d5457bb6d --- /dev/null +++ b/dev-python/pyblake2/pyblake2-0.9.3.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python{2_7,3_4,3_5} pypy ) +inherit distutils-r1 + +DESCRIPTION="BLAKE2 hash function extension module" +HOMEPAGE="https://github.com/dchest/pyblake2 https://pypi.python.org/pypi/pyblake2" +SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz" + +LICENSE="CC0-1.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +python_test() { + "${EPYTHON}" test/test.py || die "Tests fail with ${EPYTHON}" +}