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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A80AF158089 for ; Sun, 24 Sep 2023 14:40:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E86A92BC025; Sun, 24 Sep 2023 14:40:04 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B33662BC025 for ; Sun, 24 Sep 2023 14:40:04 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E7757340961 for ; Sun, 24 Sep 2023 14:40:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 647BA1254 for ; Sun, 24 Sep 2023 14:40:02 +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: <1695566348.c0049630646d86739c53c65dcd7def377a4b8f06.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pynacl/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pynacl/pynacl-1.5.0-r2.ebuild X-VCS-Directories: dev-python/pynacl/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: c0049630646d86739c53c65dcd7def377a4b8f06 X-VCS-Branch: master Date: Sun, 24 Sep 2023 14:40:02 +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: b34fb835-a4be-4fce-a3da-847fdf871993 X-Archives-Hash: 8a4350f9c2e71e7ba245747a9184f9b1 commit: c0049630646d86739c53c65dcd7def377a4b8f06 Author: Michał Górny gentoo org> AuthorDate: Sun Sep 24 14:38:31 2023 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Sep 24 14:39:08 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0049630 dev-python/pynacl: Remove old Closes: https://bugs.gentoo.org/914156 Signed-off-by: Michał Górny gentoo.org> dev-python/pynacl/pynacl-1.5.0-r2.ebuild | 42 -------------------------------- 1 file changed, 42 deletions(-) diff --git a/dev-python/pynacl/pynacl-1.5.0-r2.ebuild b/dev-python/pynacl/pynacl-1.5.0-r2.ebuild deleted file mode 100644 index 62d290ee2beb..000000000000 --- a/dev-python/pynacl/pynacl-1.5.0-r2.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_EXT=1 -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{10..12} ) - -inherit distutils-r1 - -DESCRIPTION="Python binding to the Networking and Cryptography (NaCl) library" -HOMEPAGE=" - https://github.com/pyca/pynacl/ - https://pypi.org/project/PyNaCl/ -" -SRC_URI=" - https://github.com/pyca/${PN}/archive/${PV}.tar.gz - -> ${P}.gh.tar.gz -" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux" - -RDEPEND=" - >=dev-python/cffi-1.4.1[${PYTHON_USEDEP}] - dev-libs/libsodium:0/23 -" -BDEPEND="${RDEPEND} - test? ( - >=dev-python/hypothesis-3.27.0[${PYTHON_USEDEP}] - ) -" - -distutils_enable_tests pytest - -src_compile() { - # For not using the bundled libsodium - local -x SODIUM_INSTALL=system - distutils-r1_src_compile -}