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 7109415864F for ; Sat, 25 Mar 2023 17:19:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B0AF2E0801; Sat, 25 Mar 2023 17:19:07 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 96A4FE07FA for ; Sat, 25 Mar 2023 17:19:07 +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 D57F3341192 for ; Sat, 25 Mar 2023 17:19:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 23275949 for ; Sat, 25 Mar 2023 17:19:04 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1679764725.f91aaed36266cf6414f28fd7caaead9c6990b4b2.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pytrie/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pytrie/Manifest dev-python/pytrie/pytrie-0.4.0-r1.ebuild X-VCS-Directories: dev-python/pytrie/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: f91aaed36266cf6414f28fd7caaead9c6990b4b2 X-VCS-Branch: master Date: Sat, 25 Mar 2023 17:19:04 +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: a3c1aaaf-6c7f-402b-9933-d88656574ae1 X-Archives-Hash: cc29d4be705c307fa056273815e8f5cd commit: f91aaed36266cf6414f28fd7caaead9c6990b4b2 Author: Michał Górny gentoo org> AuthorDate: Fri Mar 24 13:53:51 2023 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Mar 25 17:18:45 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f91aaed3 dev-python/pytrie: Use pypi.eclass Signed-off-by: Michał Górny gentoo.org> dev-python/pytrie/Manifest | 2 +- dev-python/pytrie/pytrie-0.4.0-r1.ebuild | 8 +++----- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/dev-python/pytrie/Manifest b/dev-python/pytrie/Manifest index c59a83811750..693b96c68c71 100644 --- a/dev-python/pytrie/Manifest +++ b/dev-python/pytrie/Manifest @@ -1 +1 @@ -DIST pytrie-0.4.0.tar.gz 95139 BLAKE2B de57b4c36429c3e2d9ec7cb89e6515fd0a131e890bbfec17797a9a03b932ca2370cf283c67b4a99bb742b275c6f005789af410b875e857d30e6ba9e959403899 SHA512 c951568774c1e35d2b2bd5a52e5368da5ef2ffc83476d60882aa842debcd53c5eb0ed19f497a09f78c6a736ffba57702eda3aa0f3afa74dd0d1e770c17885c74 +DIST PyTrie-0.4.0.tar.gz 95139 BLAKE2B de57b4c36429c3e2d9ec7cb89e6515fd0a131e890bbfec17797a9a03b932ca2370cf283c67b4a99bb742b275c6f005789af410b875e857d30e6ba9e959403899 SHA512 c951568774c1e35d2b2bd5a52e5368da5ef2ffc83476d60882aa842debcd53c5eb0ed19f497a09f78c6a736ffba57702eda3aa0f3afa74dd0d1e770c17885c74 diff --git a/dev-python/pytrie/pytrie-0.4.0-r1.ebuild b/dev-python/pytrie/pytrie-0.4.0-r1.ebuild index c4a81e03273e..468dbd07a186 100644 --- a/dev-python/pytrie/pytrie-0.4.0-r1.ebuild +++ b/dev-python/pytrie/pytrie-0.4.0-r1.ebuild @@ -4,19 +4,17 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools +PYPI_NO_NORMALIZE=1 +PYPI_PN="PyTrie" PYTHON_COMPAT=( python3_{9..11} ) -inherit distutils-r1 +inherit distutils-r1 pypi -MY_PN="PyTrie" -MY_P="${MY_PN}-${PV}" DESCRIPTION="A pure Python implementation of the trie data structure" HOMEPAGE=" https://github.com/gsakkis/pytrie/ https://pypi.org/project/PyTrie/ " -SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz -> ${P}.tar.gz" -S=${WORKDIR}/${MY_P} LICENSE="BSD" SLOT="0"