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 76639158090 for ; Thu, 19 May 2022 03:58:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 386D0E0849; Thu, 19 May 2022 03:58:10 +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 9F8DAE0849 for ; Thu, 19 May 2022 03:58:08 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B9A3B3416E5 for ; Thu, 19 May 2022 03:58:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 13E5B475 for ; Thu, 19 May 2022 03:58:05 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1652932679.c7f73c1448a1f44da7370a79b3784618cf3b7262.zmedico@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pathvalidate/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pathvalidate/Manifest dev-python/pathvalidate/metadata.xml dev-python/pathvalidate/pathvalidate-2.5.0.ebuild X-VCS-Directories: dev-python/pathvalidate/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: c7f73c1448a1f44da7370a79b3784618cf3b7262 X-VCS-Branch: master Date: Thu, 19 May 2022 03:58:05 +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: cc44e2dc-a0a3-4080-8328-314ea3cfbe9a X-Archives-Hash: 6f3b8553e8c2b84c63ce2e1723155008 commit: c7f73c1448a1f44da7370a79b3784618cf3b7262 Author: Zac Medico gentoo org> AuthorDate: Thu May 19 03:27:57 2022 +0000 Commit: Zac Medico gentoo org> CommitDate: Thu May 19 03:57:59 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7f73c14 dev-python/pathvalidate: initial import Signed-off-by: Zac Medico gentoo.org> dev-python/pathvalidate/Manifest | 1 + dev-python/pathvalidate/metadata.xml | 12 ++++++++++++ dev-python/pathvalidate/pathvalidate-2.5.0.ebuild | 24 +++++++++++++++++++++++ 3 files changed, 37 insertions(+) diff --git a/dev-python/pathvalidate/Manifest b/dev-python/pathvalidate/Manifest new file mode 100644 index 000000000000..0632f30efaaf --- /dev/null +++ b/dev-python/pathvalidate/Manifest @@ -0,0 +1 @@ +DIST pathvalidate-2.5.0.tar.gz 26130 BLAKE2B 122f0331807cf33e30f81409423224d48e5a3ed0836410e62ec804da7cdfc730b06fb1968c5220e7d8e79c3773c7011ec3c416c48286581554b8730d3c72bf61 SHA512 f71d6d532d3f096ec80277245bc69ddfe861f2417d11ac432b08e2e5a8776007f174754b701a6b7e3b3754b8b49c5105dcaf5039234fc5827091b2ad78bf58bd diff --git a/dev-python/pathvalidate/metadata.xml b/dev-python/pathvalidate/metadata.xml new file mode 100644 index 000000000000..f13a1cd9991b --- /dev/null +++ b/dev-python/pathvalidate/metadata.xml @@ -0,0 +1,12 @@ + + + + + zmedico@gentoo.org + + + + pathvalidate + thombashi/pathvalidate + + diff --git a/dev-python/pathvalidate/pathvalidate-2.5.0.ebuild b/dev-python/pathvalidate/pathvalidate-2.5.0.ebuild new file mode 100644 index 000000000000..437b5e23a1e6 --- /dev/null +++ b/dev-python/pathvalidate/pathvalidate-2.5.0.ebuild @@ -0,0 +1,24 @@ +# Copyright 2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} ) + +inherit distutils-r1 + +DESCRIPTION="A Python library to sanitize/validate a string such as filenames/file-paths/etc" +HOMEPAGE="https://github.com/thombashi/pathvalidate" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" +RESTRICT="!test? ( test )" +BDEPEND="test? ( + dev-python/allpairspy[${PYTHON_USEDEP}] + dev-python/tcolorpy[${PYTHON_USEDEP}] ) +" + +distutils_enable_tests pytest