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 1F991138346 for ; Wed, 8 Jan 2020 11:08:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5574AE088F; Wed, 8 Jan 2020 11:08:48 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 38DC2E088F for ; Wed, 8 Jan 2020 11:08:48 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 2976D34DE81 for ; Wed, 8 Jan 2020 11:08:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 10CBB38 for ; Wed, 8 Jan 2020 11:08:45 +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: <1578481710.a74557c993897becf3e1623bb38ec0a5e571e700.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/metadata.xml dev-python/vdf/vdf-3.2.ebuild X-VCS-Directories: dev-python/vdf/ X-VCS-Committer: marecki X-VCS-Committer-Name: Marek Szuba X-VCS-Revision: a74557c993897becf3e1623bb38ec0a5e571e700 X-VCS-Branch: master Date: Wed, 8 Jan 2020 11:08:45 +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: a12ae451-4644-477a-b9fd-630930ceb7d3 X-Archives-Hash: 048c8a63baf303875d60d5ae529498fe commit: a74557c993897becf3e1623bb38ec0a5e571e700 Author: Marek Szuba gentoo org> AuthorDate: Wed Jan 8 11:07:19 2020 +0000 Commit: Marek Szuba gentoo org> CommitDate: Wed Jan 8 11:08:30 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a74557c9 dev-python/vdf: new package Package-Manager: Portage-2.3.79, Repoman-2.3.16 Signed-off-by: Marek Szuba gentoo.org> dev-python/vdf/Manifest | 1 + dev-python/vdf/metadata.xml | 12 ++++++++++++ dev-python/vdf/vdf-3.2.ebuild | 21 +++++++++++++++++++++ 3 files changed, 34 insertions(+) diff --git a/dev-python/vdf/Manifest b/dev-python/vdf/Manifest new file mode 100644 index 00000000000..7227f026bc8 --- /dev/null +++ b/dev-python/vdf/Manifest @@ -0,0 +1 @@ +DIST vdf-3.2.tar.gz 15050 BLAKE2B 62118879607462d9c205ae454f9187bb20267d5eefb3f0cf7efc5b93585b5400d565063dcacceb4dddf489371129bd4710ea2bc09db35a9739add1c4dafa992c SHA512 c9b60f6999c08b2610ea6ad1e6fd9d143ffabd6a93af65fc5ee39d775a6f9a2dccb002f19ce72a1d7de6e53188fb98bd4a0dc4074047b74ca53991294310175f diff --git a/dev-python/vdf/metadata.xml b/dev-python/vdf/metadata.xml new file mode 100644 index 00000000000..4807350e1a8 --- /dev/null +++ b/dev-python/vdf/metadata.xml @@ -0,0 +1,12 @@ + + + + + marecki@gentoo.org + Marek Szuba + + + ValvePython/vdf + vdf + + diff --git a/dev-python/vdf/vdf-3.2.ebuild b/dev-python/vdf/vdf-3.2.ebuild new file mode 100644 index 00000000000..4f55cc99fca --- /dev/null +++ b/dev-python/vdf/vdf-3.2.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7,8} ) + +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" + +BDEPEND="${PYTHON_DEPS} + test? ( dev-python/mock )" + +distutils_enable_tests pytest