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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 641721382C5 for ; Tue, 30 Jun 2020 15:44:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 97EC3E09FA; Tue, 30 Jun 2020 15:44:36 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7D700E09F0 for ; Tue, 30 Jun 2020 15:44:36 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 40C5C34EFF3 for ; Tue, 30 Jun 2020 15:44:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3D8282C8 for ; Tue, 30 Jun 2020 15:44:33 +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: <1593531730.18c2bd136343e4cc072d2b058d76b5806ba12457.marecki@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.3.ebuild X-VCS-Directories: dev-python/vdf/ X-VCS-Committer: marecki X-VCS-Committer-Name: Marek Szuba X-VCS-Revision: 18c2bd136343e4cc072d2b058d76b5806ba12457 X-VCS-Branch: master Date: Tue, 30 Jun 2020 15:44:33 +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: 7166edd1-fd19-4788-81ab-f44d592dd88f X-Archives-Hash: 259ed2bee93c4821be93673366c347c3 commit: 18c2bd136343e4cc072d2b058d76b5806ba12457 Author: Marek Szuba gentoo org> AuthorDate: Tue Jun 30 15:41:43 2020 +0000 Commit: Marek Szuba gentoo org> CommitDate: Tue Jun 30 15:42:10 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18c2bd13 dev-python/vdf: bump to 3.3 Signed-off-by: Marek Szuba gentoo.org> dev-python/vdf/Manifest | 1 + dev-python/vdf/vdf-3.3.ebuild | 22 ++++++++++++++++++++++ 2 files changed, 23 insertions(+) diff --git a/dev-python/vdf/Manifest b/dev-python/vdf/Manifest index 7227f026bc8..577fe4d4347 100644 --- a/dev-python/vdf/Manifest +++ b/dev-python/vdf/Manifest @@ -1 +1,2 @@ DIST vdf-3.2.tar.gz 15050 BLAKE2B 62118879607462d9c205ae454f9187bb20267d5eefb3f0cf7efc5b93585b5400d565063dcacceb4dddf489371129bd4710ea2bc09db35a9739add1c4dafa992c SHA512 c9b60f6999c08b2610ea6ad1e6fd9d143ffabd6a93af65fc5ee39d775a6f9a2dccb002f19ce72a1d7de6e53188fb98bd4a0dc4074047b74ca53991294310175f +DIST vdf-3.3.tar.gz 15799 BLAKE2B 48e12d6456f776ae7bf3a3dfec3bbe49f6089ce57720f4ab7beec7502604da290018c7af75f7bb58b1d8a25dc44daea7e028f70d75f7eecdaa9277e9f75a6fd0 SHA512 10b944ff88313001cdfd416b04f13daa7350aad75d3f790b6562cd3953fb5adebf7a0b54be24d853d68eb7ef2b8b469569ed37b3aafb0a2f4d0c6caa6816335f diff --git a/dev-python/vdf/vdf-3.3.ebuild b/dev-python/vdf/vdf-3.3.ebuild new file mode 100644 index 00000000000..2c3eaf316de --- /dev/null +++ b/dev-python/vdf/vdf-3.3.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7,8} 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" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +PATCHES=( + "${FILESDIR}"/${PN}-3.2-mock_from_stdlib.patch +) + +distutils_enable_tests pytest