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 00CFD1382C5 for ; Mon, 10 May 2021 18:08:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5335CE07A5; Mon, 10 May 2021 18:08:20 +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 364DAE07A7 for ; Mon, 10 May 2021 18:08:20 +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 17E47340A6A for ; Mon, 10 May 2021 18:08:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AA979752 for ; Mon, 10 May 2021 18:08:17 +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: <1620669689.868fa630aaf6ff28be4584c36a5e20fa812bc769.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/libnacl/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/libnacl/Manifest dev-python/libnacl/libnacl-1.6.1.ebuild X-VCS-Directories: dev-python/libnacl/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 868fa630aaf6ff28be4584c36a5e20fa812bc769 X-VCS-Branch: master Date: Mon, 10 May 2021 18:08:17 +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: 82f0668c-5d32-439b-a3af-eb79220a66a6 X-Archives-Hash: 270637b296c9d590b82b1e899eba26e0 commit: 868fa630aaf6ff28be4584c36a5e20fa812bc769 Author: Michał Górny gentoo org> AuthorDate: Mon May 10 07:31:49 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon May 10 18:01:29 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=868fa630 dev-python/libnacl: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/libnacl/Manifest | 1 - dev-python/libnacl/libnacl-1.6.1.ebuild | 22 ---------------------- 2 files changed, 23 deletions(-) diff --git a/dev-python/libnacl/Manifest b/dev-python/libnacl/Manifest index abc9d81df98..dc991fce956 100644 --- a/dev-python/libnacl/Manifest +++ b/dev-python/libnacl/Manifest @@ -1,2 +1 @@ -DIST libnacl-1.6.1.tar.gz 39789 BLAKE2B 7c73f67d4faec8d6e53df21eb3c394d4f36754cd9ad1dfa63ef45aab43bb1832cace7446688b2b29b9923539e00d59f3a78c719b8b8770b2c6c217db19dd2f6d SHA512 90fd9302cdfbe84acfc7dff0ac95eeb05fd1bb346cd8b220613174d5d1ae5f627be06b4d588fd4a939c49a119ca557d68a06d3cbe1c0d409a253fdca96d944ac DIST libnacl-1.7.2.tar.gz 43343 BLAKE2B 4f7d03661e1385033c51821bf673c81ced11a1523b371ec7da42ed9cf75bdaadee1e679059dfae85871530652b5fea80bfb91c19a8a1eefb4ecf1b8661f11e19 SHA512 a4efbf73f73d9493ac365efa5a5bd6481f85ce4c880ad236bbf7478090bdea857e78e33e445c4e467d2a2032040863b835f32f9a942d2f1e467015bd76b0d469 diff --git a/dev-python/libnacl/libnacl-1.6.1.ebuild b/dev-python/libnacl/libnacl-1.6.1.ebuild deleted file mode 100644 index 899ae8a67f6..00000000000 --- a/dev-python/libnacl/libnacl-1.6.1.ebuild +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -PYTHON_COMPAT=(python3_{7,8}) -inherit distutils-r1 - -DESCRIPTION="Python ctypes wrapper for libsodium" -HOMEPAGE="https://libnacl.readthedocs.org/" -SRC_URI="https://github.com/saltstack/libnacl/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="" - -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" -RDEPEND="dev-libs/libsodium" - -python_test() { - ${EPYTHON} tests/runtests.py || die -}