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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 472BA158004 for ; Sat, 25 Nov 2023 03:59:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6514E2BC019; Sat, 25 Nov 2023 03:59:18 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 182482BC019 for ; Sat, 25 Nov 2023 03:59:18 +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 E923C33BF41 for ; Sat, 25 Nov 2023 03:59:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EDFFB13DC for ; Sat, 25 Nov 2023 03:59:14 +0000 (UTC) From: "Ionen Wolkens" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ionen Wolkens" Message-ID: <1700884744.76ba0a2087cf7bc9e2ae5ff3ca5a556cd99c26be.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/parse/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/parse/Manifest dev-python/parse/parse-1.20.0.ebuild X-VCS-Directories: dev-python/parse/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: 76ba0a2087cf7bc9e2ae5ff3ca5a556cd99c26be X-VCS-Branch: master Date: Sat, 25 Nov 2023 03:59:14 +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: 03c52417-9989-4ec3-a10c-c594ed02207e X-Archives-Hash: ca495521ca2c52e7fd6a4c5ee9b5ebe6 commit: 76ba0a2087cf7bc9e2ae5ff3ca5a556cd99c26be Author: Ionen Wolkens gentoo org> AuthorDate: Sat Nov 25 03:48:41 2023 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Sat Nov 25 03:59:04 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76ba0a20 dev-python/parse: add 1.20.0 Also switch to pypi.eclass + pytest, pypi tarballs now includes them. Signed-off-by: Ionen Wolkens gentoo.org> dev-python/parse/Manifest | 1 + dev-python/parse/parse-1.20.0.ebuild | 17 +++++++++++++++++ 2 files changed, 18 insertions(+) diff --git a/dev-python/parse/Manifest b/dev-python/parse/Manifest index 3c7954b6cf4f..3976ccc8f287 100644 --- a/dev-python/parse/Manifest +++ b/dev-python/parse/Manifest @@ -1 +1,2 @@ DIST parse-1.19.1.gh.tar.gz 26732 BLAKE2B 15a1a11d9ca5c93a07848db4acdae1b9b489e3366f3dcbdcbae06a22b2bc8183fd266106dec5b975be8fd6926ee29d9ee4850db8d8504b8fc489bee82c7f0492 SHA512 f3fd067cbe6f30f0e61297f471dd7eb183d351ca60bf5a4dfd31cf0775988ecea6dfdf3f0ecd23dbe9fb3f8be3f5c1b824af660074589cb3b289658d0af898fa +DIST parse-1.20.0.tar.gz 28871 BLAKE2B a6635641cb780c246053ddd7ecd397e994964086d3e5191356e425bb837b0e1c201c6b4e92755b4c4351589ff9055826964fa9eaac756e98bac90766a4703e06 SHA512 40ba63f62138c2273ec9bb603b7d8f74b471d9b143a49062a0f9979f8d84a7acce9d56ac046d38c6900fe07e9b5b3fdd3de7f2e78708e85234ec56b86410b14a diff --git a/dev-python/parse/parse-1.20.0.ebuild b/dev-python/parse/parse-1.20.0.ebuild new file mode 100644 index 000000000000..f8bf48bd5f04 --- /dev/null +++ b/dev-python/parse/parse-1.20.0.ebuild @@ -0,0 +1,17 @@ +# Copyright 2021-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( pypy3 python3_{10..12} ) +inherit distutils-r1 pypi + +DESCRIPTION="Parse strings using a specification based on the Python format() syntax" +HOMEPAGE="https://github.com/r1chardj0n3s/parse/" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86" + +distutils_enable_tests pytest