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 BFB081396D9 for ; Thu, 19 Oct 2017 20:22:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 19ACA2BC049; Thu, 19 Oct 2017 20:22:38 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 D30FE2BC049 for ; Thu, 19 Oct 2017 20:22:36 +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 3881333BF1C for ; Thu, 19 Oct 2017 20:22:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EFB68316 for ; Thu, 19 Oct 2017 20:22:33 +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: <1508444548.f21ce9b294121566ad04c1708171950e0956b550.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pysha3/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pysha3/Manifest dev-python/pysha3/metadata.xml dev-python/pysha3/pysha3-1.0.2.ebuild X-VCS-Directories: dev-python/pysha3/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: f21ce9b294121566ad04c1708171950e0956b550 X-VCS-Branch: master Date: Thu, 19 Oct 2017 20:22:33 +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: 46ebf8db-1019-4bda-b8d3-7ec49bf56149 X-Archives-Hash: ed983907966199aae644ac3cb4b8cadf commit: f21ce9b294121566ad04c1708171950e0956b550 Author: Michał Górny gentoo org> AuthorDate: Thu Oct 19 20:18:20 2017 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Oct 19 20:22:28 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f21ce9b2 dev-python/pysha3: New package Add the backport of SHA3 hash functions for Python < 3.6, it is the most lightweight provider of the hash for Portage. dev-python/pysha3/Manifest | 1 + dev-python/pysha3/metadata.xml | 15 +++++++++++++++ dev-python/pysha3/pysha3-1.0.2.ebuild | 22 ++++++++++++++++++++++ 3 files changed, 38 insertions(+) diff --git a/dev-python/pysha3/Manifest b/dev-python/pysha3/Manifest new file mode 100644 index 00000000000..50179c5f7d9 --- /dev/null +++ b/dev-python/pysha3/Manifest @@ -0,0 +1 @@ +DIST pysha3-1.0.2.tar.gz 829192 SHA256 fe988e73f2ce6d947220624f04d467faf05f1bbdbc64b0a201296bb3af92739e SHA512 57476d24b9d399471cf56c8c1413f58dbc863c16d4fe9ebd2cf65df8092e139e2505252605e3fccd68978f5ee3fffdfeeedee6788aab38a54c918a452fc19720 WHIRLPOOL 0de14913b4c02b1c8310432f6a71ed986c6f525c7b15bb6e91d3972a84f5599b13d621b04a4007ea276089cd75d965798a84b11d378e02ab50e1b6d243b62bc0 diff --git a/dev-python/pysha3/metadata.xml b/dev-python/pysha3/metadata.xml new file mode 100644 index 00000000000..410617d33dc --- /dev/null +++ b/dev-python/pysha3/metadata.xml @@ -0,0 +1,15 @@ + + + + + mgorny@gentoo.org + Michał Górny + + + python@gentoo.org + + + tiran/pysha3 + pysha3 + + diff --git a/dev-python/pysha3/pysha3-1.0.2.ebuild b/dev-python/pysha3/pysha3-1.0.2.ebuild new file mode 100644 index 00000000000..2f9172ea785 --- /dev/null +++ b/dev-python/pysha3/pysha3-1.0.2.ebuild @@ -0,0 +1,22 @@ +# 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} ) +inherit distutils-r1 + +DESCRIPTION="SHA-3 (Keccak) for Python 2.7 - 3.5" +HOMEPAGE="https://github.com/tiran/pysha3 https://pypi.python.org/pypi/pysha3" +SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz" + +LICENSE="CC0-1.0 PSF-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" + +python_test() { + esetup.py test +}