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 99889158087 for ; Fri, 15 Oct 2021 15:53:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EC533E085A; Fri, 15 Oct 2021 15:53:41 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CF631E085A for ; Fri, 15 Oct 2021 15:53:41 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B2605343031 for ; Fri, 15 Oct 2021 15:53:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1251F164 for ; Fri, 15 Oct 2021 15:53:38 +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: <1634312632.66050f53b4c5f3aa8625d67237f44b892202f49b.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/metadata.xml dev-python/parse/parse-1.19.0.ebuild X-VCS-Directories: dev-python/parse/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: 66050f53b4c5f3aa8625d67237f44b892202f49b X-VCS-Branch: master Date: Fri, 15 Oct 2021 15:53:38 +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: b638907b-70d1-4a4e-be98-663947d99db2 X-Archives-Hash: bbfd333eef91f005e50a3c8847575626 commit: 66050f53b4c5f3aa8625d67237f44b892202f49b Author: Ionen Wolkens gentoo org> AuthorDate: Fri Oct 8 22:47:12 2021 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Fri Oct 15 15:43:52 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66050f53 dev-python/parse: initial 1.19.0 import Signed-off-by: Ionen Wolkens gentoo.org> dev-python/parse/Manifest | 1 + dev-python/parse/metadata.xml | 13 +++++++++++++ dev-python/parse/parse-1.19.0.ebuild | 17 +++++++++++++++++ 3 files changed, 31 insertions(+) diff --git a/dev-python/parse/Manifest b/dev-python/parse/Manifest new file mode 100644 index 00000000000..f2c60871ee7 --- /dev/null +++ b/dev-python/parse/Manifest @@ -0,0 +1 @@ +DIST parse-1.19.0.tar.gz 30884 BLAKE2B 97f0d1fb7f1d2d826f20df592a61bc94e65ea583ba651d4ddf18b3ffb21d977444c2a3a0e75ba9138d2bae48668456d1ac56d50d05d4b8ed7721733f3bda59f2 SHA512 25e183949a78213e699c319f5dcf1b2664ea6cfcfae4b9eb8dcaf1825e55dcb2ce2032f9eb630e962acf2d94588d4f4b8cf340af1075cbab5ab44aed5377ef6f diff --git a/dev-python/parse/metadata.xml b/dev-python/parse/metadata.xml new file mode 100644 index 00000000000..e051d26e9c5 --- /dev/null +++ b/dev-python/parse/metadata.xml @@ -0,0 +1,13 @@ + + + + + ionen@gentoo.org + Ionen Wolkens + + + + r1chardj0n3s/parse + parse + + diff --git a/dev-python/parse/parse-1.19.0.ebuild b/dev-python/parse/parse-1.19.0.ebuild new file mode 100644 index 00000000000..b8fe9b5c2af --- /dev/null +++ b/dev-python/parse/parse-1.19.0.ebuild @@ -0,0 +1,17 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} ) +inherit distutils-r1 + +DESCRIPTION="Parse strings using a specification based on the Python format() syntax" +HOMEPAGE="https://pypi.org/project/parse/" +SRC_URI="mirror://pypi/${P::1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +distutils_enable_tests unittest