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 3E06915800A for ; Wed, 23 Aug 2023 21:06:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 519312BC01B; Wed, 23 Aug 2023 21:06:06 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 3A9D82BC01A for ; Wed, 23 Aug 2023 21:06:06 +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 3E6C0335D35 for ; Wed, 23 Aug 2023 21:06:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 61B9B1060 for ; Wed, 23 Aug 2023 21:06:03 +0000 (UTC) From: "Marek Szuba" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marek Szuba" Message-ID: <1692824748.f1a95689f5c9e5372b4dcde71f751d95c84d752f.marecki@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/uritools/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/uritools/Manifest dev-python/uritools/metadata.xml dev-python/uritools/uritools-4.0.1.ebuild X-VCS-Directories: dev-python/uritools/ X-VCS-Committer: marecki X-VCS-Committer-Name: Marek Szuba X-VCS-Revision: f1a95689f5c9e5372b4dcde71f751d95c84d752f X-VCS-Branch: master Date: Wed, 23 Aug 2023 21:06:03 +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: c7897d23-34b7-4ead-8548-d2dba985be20 X-Archives-Hash: eddf3f8fcbd226b73c681a3edef88e44 commit: f1a95689f5c9e5372b4dcde71f751d95c84d752f Author: Marek Szuba gentoo org> AuthorDate: Wed Aug 23 12:00:18 2023 +0000 Commit: Marek Szuba gentoo org> CommitDate: Wed Aug 23 21:05:48 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1a95689 dev-python/uritools: new package, add 4.0.1 New second-order dependency of app-admin/ansible-lint. Signed-off-by: Marek Szuba gentoo.org> dev-python/uritools/Manifest | 1 + dev-python/uritools/metadata.xml | 31 +++++++++++++++++++++++++++++++ dev-python/uritools/uritools-4.0.1.ebuild | 24 ++++++++++++++++++++++++ 3 files changed, 56 insertions(+) diff --git a/dev-python/uritools/Manifest b/dev-python/uritools/Manifest new file mode 100644 index 000000000000..6fb35aec4386 --- /dev/null +++ b/dev-python/uritools/Manifest @@ -0,0 +1 @@ +DIST uritools-4.0.1.tar.gz 23524 BLAKE2B ca1d0e739436211838df50b1fe7949c5a43f9bf17ec24cf4b5f5748bcb4a330d677134e568a1683422c80a1cc178bd1f4325df7f0e27ac3af09a025fd95513ac SHA512 d616103a74161ed3f2920d2c6aa75cbfc7425940c46097a7b3701d3db3b8771f012bce17dd595d56154fe7ac00527a6bc989810c2e0beb4556e5caa5720e085e diff --git a/dev-python/uritools/metadata.xml b/dev-python/uritools/metadata.xml new file mode 100644 index 000000000000..b327baf4c3b1 --- /dev/null +++ b/dev-python/uritools/metadata.xml @@ -0,0 +1,31 @@ + + + + + For various reasons, ``urllib.parse`` and its Python 2 predecessor + ``urlparse`` are not compliant with current Internet standards. As + stated in `Lib/urllib/parse.py + <https://github.com/python/cpython/blob/3.8/Lib/urllib/parse.py>`_: + + RFC 3986 is considered the current standard and any future changes + to urlparse module should conform with it. The urlparse module is + currently not entirely compliant with this RFC due to defacto + scenarios for parsing, and for backward compatibility purposes, + some parsing quirks from older RFCs are retained. + + This module aims to provide fully RFC 3986 compliant replacements for + the most commonly used functions found in ``urllib.parse``. It also + includes functions for distinguishing between the different forms of + URIs and URI references, and for conveniently creating URIs from their + individual components. + + + marecki@gentoo.org + Marek Szuba + + + + uritools + tkem/uritools + + diff --git a/dev-python/uritools/uritools-4.0.1.ebuild b/dev-python/uritools/uritools-4.0.1.ebuild new file mode 100644 index 000000000000..3369476d3621 --- /dev/null +++ b/dev-python/uritools/uritools-4.0.1.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +DOCS_BUILDER="sphinx" +PYTHON_COMPAT=( python3_{10..12} ) + +DOCS_DIR="docs" + +inherit distutils-r1 docs pypi + +DESCRIPTION="RFC 3986-compliant URI parsing, classification and composition" +HOMEPAGE=" + https://github.com/tkem/uritools/ + https://pypi.org/project/uritools/ +" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~riscv" + +distutils_enable_tests pytest