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 7C984158015 for ; Sat, 30 Dec 2023 15:48:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 732CB2BC056; Sat, 30 Dec 2023 15:48:38 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 550852BC056 for ; Sat, 30 Dec 2023 15:48:38 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 06CE633D3CF for ; Sat, 30 Dec 2023 15:48:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 49A4E14C6 for ; Sat, 30 Dec 2023 15:48:34 +0000 (UTC) From: "David Roman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Roman" Message-ID: <1703815890.1b39b4d4a3fddcde5c540d51d4647c788f1db537.davidroman@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-python/protego/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/protego/Manifest dev-python/protego/protego-0.3.0.ebuild X-VCS-Directories: dev-python/protego/ X-VCS-Committer: davidroman X-VCS-Committer-Name: David Roman X-VCS-Revision: 1b39b4d4a3fddcde5c540d51d4647c788f1db537 X-VCS-Branch: master Date: Sat, 30 Dec 2023 15:48:34 +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: da3e6957-12cc-4cf3-b12b-4ff5c1614fc3 X-Archives-Hash: fadf37534c8ed4f02bf7c358577ecbd0 commit: 1b39b4d4a3fddcde5c540d51d4647c788f1db537 Author: Aisha Tammy aisha cc> AuthorDate: Fri Dec 29 01:52:31 2023 +0000 Commit: David Roman gmail com> CommitDate: Fri Dec 29 02:11:30 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1b39b4d4 dev-python/protego: add 0.3.0 Signed-off-by: Aisha Tammy aisha.cc> dev-python/protego/Manifest | 1 + dev-python/protego/protego-0.3.0.ebuild | 24 ++++++++++++++++++++++++ 2 files changed, 25 insertions(+) diff --git a/dev-python/protego/Manifest b/dev-python/protego/Manifest index ec7f41c27e..45756d3d71 100644 --- a/dev-python/protego/Manifest +++ b/dev-python/protego/Manifest @@ -1 +1,2 @@ DIST protego-0.2.1.tar.gz 3188678 BLAKE2B 2874ffbc7f185946aa4e520ace1c49bea8de9e686ea45b2e70780919f411030d7f3411e8176997c2da2c0d15c8aae563a994acde0c6128deaa26649a138c8e57 SHA512 ef8a8196d8ece577eec90cc2e2cca2899625bd777c18f01c8e72a6130d4c2c13f71fa6e32a3e8e43b749f7556f4e3dbb1662e5e94ae18e6c8a7eef950779be1b +DIST protego-0.3.0.tar.gz 3189825 BLAKE2B 79981352f9916f448416ebfabba2b96eb72ff2ac56065161a4a7e852bbb202e0ec56943ac4276bc808c3cd8f4efb41bbb3b7ab500b674f798024ae7568d99388 SHA512 79f3e20dd33120f67d1790b0faa29762b7f81b03c5f2501bd53be020c59b8dbe6536c952da41df60499344487a2db2f442e0d41510df975f14834724d974b34a diff --git a/dev-python/protego/protego-0.3.0.ebuild b/dev-python/protego/protego-0.3.0.ebuild new file mode 100644 index 0000000000..1513c3585b --- /dev/null +++ b/dev-python/protego/protego-0.3.0.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{10..11} pypy3 ) +DISTUTILS_USE_PEP517=setuptools +inherit distutils-r1 + +DESCRIPTION="Pure-Python robots.txt parser with support for modern conventions" +HOMEPAGE=" + https://scrapy.org/ + https://pypi.org/project/protego/ + https://github.com/scrapy/protego +" +SRC_URI="https://github.com/scrapy/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT=0 +KEYWORDS="~amd64" + +RDEPEND="dev-python/six[${PYTHON_USEDEP}]" + +distutils_enable_tests pytest