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 AF8FC158089 for ; Sat, 4 Nov 2023 18:03:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 45BE72BC040; Sat, 4 Nov 2023 18:03:29 +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 25B2C2BC040 for ; Sat, 4 Nov 2023 18:03:29 +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 7086F335D2F for ; Sat, 4 Nov 2023 18:03:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 558CD130D for ; Sat, 4 Nov 2023 18:03:24 +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: <1699120989.388e4f55055115f103c6259c2bb9e8fe91408801.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/vdf/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/vdf/Manifest dev-python/vdf/vdf-3.4-r1.ebuild X-VCS-Directories: dev-python/vdf/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 388e4f55055115f103c6259c2bb9e8fe91408801 X-VCS-Branch: master Date: Sat, 4 Nov 2023 18:03:24 +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: 8e40c539-6067-4b54-9a91-5c21686324a7 X-Archives-Hash: 97dde2174898ca9eb75fc089c27b4fe9 commit: 388e4f55055115f103c6259c2bb9e8fe91408801 Author: Michał Górny gentoo org> AuthorDate: Sat Nov 4 15:46:14 2023 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Nov 4 18:03:09 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=388e4f55 dev-python/vdf: Enable py3.12 Signed-off-by: Michał Górny gentoo.org> dev-python/vdf/Manifest | 2 +- dev-python/vdf/vdf-3.4-r1.ebuild | 12 +++++++++--- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/dev-python/vdf/Manifest b/dev-python/vdf/Manifest index 0007d605882a..4662331adb69 100644 --- a/dev-python/vdf/Manifest +++ b/dev-python/vdf/Manifest @@ -1 +1 @@ -DIST vdf-3.4.tar.gz 17082 BLAKE2B f4f65134d5b1b5e52fcbc438b3bfd9000006659d8198e37e377edfda1c6166df0687ce44caf704feffeaa0d23356fffbfce11d467a093e8eb623ccb39a3da9d0 SHA512 a22668039d32cb1ef4660ea187a3a144a32e55e5b02c4c567b850d059a47beac111f9164c67bbe3e7b67d15117efe7b207882465b2353a65b7e0f0c107e88d5c +DIST vdf-3.4.gh.tar.gz 17082 BLAKE2B f4f65134d5b1b5e52fcbc438b3bfd9000006659d8198e37e377edfda1c6166df0687ce44caf704feffeaa0d23356fffbfce11d467a093e8eb623ccb39a3da9d0 SHA512 a22668039d32cb1ef4660ea187a3a144a32e55e5b02c4c567b850d059a47beac111f9164c67bbe3e7b67d15117efe7b207882465b2353a65b7e0f0c107e88d5c diff --git a/dev-python/vdf/vdf-3.4-r1.ebuild b/dev-python/vdf/vdf-3.4-r1.ebuild index ff002f397c5e..6ec9a2844aae 100644 --- a/dev-python/vdf/vdf-3.4-r1.ebuild +++ b/dev-python/vdf/vdf-3.4-r1.ebuild @@ -4,13 +4,19 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..12} pypy3 ) inherit distutils-r1 DESCRIPTION="A module for (de)serialization to and from VDF, Valve's key-value text format" -HOMEPAGE="https://github.com/ValvePython/vdf" -SRC_URI="https://codeload.github.com/ValvePython/${PN}/tar.gz/v${PV} -> ${P}.tar.gz" +HOMEPAGE=" + https://github.com/ValvePython/vdf/ + https://pypi.org/project/vdf/ +" +SRC_URI=" + https://github.com/ValvePython/vdf/archive/v${PV}.tar.gz + -> ${P}.gh.tar.gz +" LICENSE="MIT" SLOT="0"