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 2EEF5158087 for ; Sun, 30 Jan 2022 13:09:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4CE492BC089; Sun, 30 Jan 2022 13:09:47 +0000 (UTC) Received: from smtp.gentoo.org (dev.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 561452BC07D for ; Sun, 30 Jan 2022 13:09:46 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 891F13432B2 for ; Sun, 30 Jan 2022 13:09:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6CFAE2C3 for ; Sun, 30 Jan 2022 13:09:42 +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: <1643548172.909cac3a46771de997bae5dbbe027211c0032c5c.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/ssl-fetch/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/ssl-fetch/ssl-fetch-0.4-r1.ebuild dev-python/ssl-fetch/ssl-fetch-9999.ebuild X-VCS-Directories: dev-python/ssl-fetch/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 909cac3a46771de997bae5dbbe027211c0032c5c X-VCS-Branch: master Date: Sun, 30 Jan 2022 13:09:42 +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: d2aa6bc6-a98a-4b77-89f9-e72ea3facb18 X-Archives-Hash: bc9c51cb61ded43db2d6ad4c40fc5f00 commit: 909cac3a46771de997bae5dbbe027211c0032c5c Author: Michał Górny gentoo org> AuthorDate: Sun Jan 30 12:50:05 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Jan 30 13:09:32 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=909cac3a dev-python/ssl-fetch: Switch to PEP 517 build Signed-off-by: Michał Górny gentoo.org> ...{ssl-fetch-9999.ebuild => ssl-fetch-0.4-r1.ebuild} | 19 ++++++++++--------- dev-python/ssl-fetch/ssl-fetch-9999.ebuild | 9 +++++---- 2 files changed, 15 insertions(+), 13 deletions(-) diff --git a/dev-python/ssl-fetch/ssl-fetch-9999.ebuild b/dev-python/ssl-fetch/ssl-fetch-0.4-r1.ebuild similarity index 54% copy from dev-python/ssl-fetch/ssl-fetch-9999.ebuild copy to dev-python/ssl-fetch/ssl-fetch-0.4-r1.ebuild index 74fea3ed7f27..9e9c925e0536 100644 --- a/dev-python/ssl-fetch/ssl-fetch-9999.ebuild +++ b/dev-python/ssl-fetch/ssl-fetch-0.4-r1.ebuild @@ -1,26 +1,27 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 -PYTHON_COMPAT=( python3_{7,8,9} pypy3 ) -DISTUTILS_USE_SETUPTOOLS=no -inherit distutils-r1 git-r3 +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..10} pypy3 ) + +inherit distutils-r1 DESCRIPTION="Small convenience library for fetching files securely" HOMEPAGE="https://github.com/dol-sen/ssl-fetch" -EGIT_REPO_URI="https://github.com/dol-sen/ssl-fetch.git" +SRC_URI="https://dev.gentoo.org/~dolsen/releases/ssl-fetch/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~x64-macos" RDEPEND=">=dev-python/requests-1.2.1[${PYTHON_USEDEP}]" pkg_postinst() { - elog "This is experimental software." + elog "This is beta software." elog "The APIs it installs should be considered unstable" - elog "and are subject to change." + elog "and are subject to change in these early versions." elog elog "Please file any enhancement requests, or bugs" elog "at https://github.com/dol-sen/ssl-fetch/issues" diff --git a/dev-python/ssl-fetch/ssl-fetch-9999.ebuild b/dev-python/ssl-fetch/ssl-fetch-9999.ebuild index 74fea3ed7f27..ed96683472a6 100644 --- a/dev-python/ssl-fetch/ssl-fetch-9999.ebuild +++ b/dev-python/ssl-fetch/ssl-fetch-9999.ebuild @@ -1,10 +1,11 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..10} pypy3 ) -PYTHON_COMPAT=( python3_{7,8,9} pypy3 ) -DISTUTILS_USE_SETUPTOOLS=no inherit distutils-r1 git-r3 DESCRIPTION="Small convenience library for fetching files securely"