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 F03221382C5 for ; Fri, 16 Apr 2021 08:30:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 251EDE0809; Fri, 16 Apr 2021 08:30:07 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 10A65E0809 for ; Fri, 16 Apr 2021 08:30:06 +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 72BEC335C07 for ; Fri, 16 Apr 2021 08:30:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D2F2B64C for ; Fri, 16 Apr 2021 08:30:03 +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: <1618561653.0eff7e76578c5e18e7347fbad6638a6f8c99f93e.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/scrypt/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/scrypt/Manifest dev-python/scrypt/scrypt-0.8.18.ebuild X-VCS-Directories: dev-python/scrypt/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 0eff7e76578c5e18e7347fbad6638a6f8c99f93e X-VCS-Branch: master Date: Fri, 16 Apr 2021 08:30:03 +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: e61f5a69-55de-4831-95e9-e7ced0dc28b4 X-Archives-Hash: e7be1c219f1b593f7ae7557f50d6b3cb commit: 0eff7e76578c5e18e7347fbad6638a6f8c99f93e Author: Michał Górny gentoo org> AuthorDate: Fri Apr 16 06:34:18 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Apr 16 08:27:33 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0eff7e76 dev-python/scrypt: Bump to 0.8.18 (NFC) Signed-off-by: Michał Górny gentoo.org> dev-python/scrypt/Manifest | 1 + dev-python/scrypt/scrypt-0.8.18.ebuild | 26 ++++++++++++++++++++++++++ 2 files changed, 27 insertions(+) diff --git a/dev-python/scrypt/Manifest b/dev-python/scrypt/Manifest index 0d6cd20ea78..2f6ed1652e9 100644 --- a/dev-python/scrypt/Manifest +++ b/dev-python/scrypt/Manifest @@ -1 +1,2 @@ DIST scrypt-0.8.16.tar.gz 54205 BLAKE2B ce4f86f8bacb4f12408604822a32c9f63f96a155469cca1d2aa50cf67fc9e9576432f13ef49694a9d7ce21696aedcef27419fc0d3aad67a87d16c3bf8c0f94c4 SHA512 9498637d1354a84021f2c069a919ff157ff189d1385453397a9c43e522de77af9d628a90d649d50e9243abfc0b96efe4e38b615322d83133137bad94d448ef06 +DIST scrypt-0.8.18.tar.gz 56651 BLAKE2B d0e71e0677ab5f159da829eaf8e794fab9fa9290ff3688e525c4f2e9c60fda532d1c302fe4088bd8e88e06e926ef95d06bad145697e8a13e2662eda7027479b7 SHA512 b033203f65dd63c1e915eeff6232c01f806eb01d3ce18e753b6161ae667555095fe775585dd0d4e15ae228f2d4862860093c1a18d5b810b438d032df9fb24d81 diff --git a/dev-python/scrypt/scrypt-0.8.18.ebuild b/dev-python/scrypt/scrypt-0.8.18.ebuild new file mode 100644 index 00000000000..57fbe197e0e --- /dev/null +++ b/dev-python/scrypt/scrypt-0.8.18.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{7,8,9} pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="Bindings for the scrypt key derivation function library" +HOMEPAGE="https://github.com/holgern/py-scrypt/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD-2" +# no functional changes since 0.8.16, so no point in upgrading +KEYWORDS="" +SLOT="0" +IUSE="libressl" + +RDEPEND=" + !libressl? ( dev-libs/openssl:0= ) + libressl? ( dev-libs/libressl:0= ) +" +DEPEND="${RDEPEND}" + +distutils_enable_tests unittest