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 B1507138359 for ; Thu, 3 Sep 2020 05:50:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BBE33E0877; Thu, 3 Sep 2020 05:50:15 +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 A30F2E0877 for ; Thu, 3 Sep 2020 05:50:15 +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 4AFA6340BE3 for ; Thu, 3 Sep 2020 05:50:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C28D2315 for ; Thu, 3 Sep 2020 05:50:03 +0000 (UTC) From: "Andrey Grozin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrey Grozin" Message-ID: <1599112167.2d247cfe357a5769ab964639c1353c28386935eb.grozin@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pycson/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pycson/Manifest dev-python/pycson/pycson-0.8.ebuild X-VCS-Directories: dev-python/pycson/ X-VCS-Committer: grozin X-VCS-Committer-Name: Andrey Grozin X-VCS-Revision: 2d247cfe357a5769ab964639c1353c28386935eb X-VCS-Branch: master Date: Thu, 3 Sep 2020 05:50:03 +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: 9412b53a-459b-4794-bcb1-4a40cfa1b651 X-Archives-Hash: 7ae810a86340a15b935ce0e7a5d363a2 commit: 2d247cfe357a5769ab964639c1353c28386935eb Author: Andrey Grozin gentoo org> AuthorDate: Thu Sep 3 05:49:27 2020 +0000 Commit: Andrey Grozin gentoo org> CommitDate: Thu Sep 3 05:49:27 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d247cfe dev-python/pycson: bump to 0.8, python3_8 added Package-Manager: Portage-3.0.4, Repoman-3.0.1 Signed-off-by: Andrey Grozin gentoo.org> dev-python/pycson/Manifest | 1 + dev-python/pycson/pycson-0.8.ebuild | 13 +++++++++++++ 2 files changed, 14 insertions(+) diff --git a/dev-python/pycson/Manifest b/dev-python/pycson/Manifest index e397377683b..a2bdbd06f71 100644 --- a/dev-python/pycson/Manifest +++ b/dev-python/pycson/Manifest @@ -1 +1,2 @@ DIST pycson-0.7.tar.gz 9970 BLAKE2B 4ea59d558cd668b0ee074d22f19509056f5b39ee35289fb4de9123ff39472121a2cf57cba59888c43275c3a8ead2fdee2355b654aecad4fedbf796b478c02c06 SHA512 e8a48afbdd48d4250891d449c80f99bfc668e128a2784c1b951acd7e217cb66f6e527a7d417be3c5362930d426fc189cd3d0a7f4b2e41df351d2347f44d0e206 +DIST pycson-0.8.tar.gz 10448 BLAKE2B 55e2ec4a447761d6764e9f25cdff534d3dcdf2a0e3bfd9255f02b1a5cd9834e4f4323ba47a1659ea973f995c34519622e36c691bef763ba83c8caf87fbc49f58 SHA512 873f1b0d825ad318ca5c62fccbdd12a8738c8b9ff58b4fe27ea611aa47575e24218b5010f6d6b12f5ebda835c2778dd15472ca5c73b634b3004aa08496f45328 diff --git a/dev-python/pycson/pycson-0.8.ebuild b/dev-python/pycson/pycson-0.8.ebuild new file mode 100644 index 00000000000..92211e1ff6d --- /dev/null +++ b/dev-python/pycson/pycson-0.8.ebuild @@ -0,0 +1,13 @@ +# 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 python parser for the Coffeescript Object Notation (CSON)" +HOMEPAGE="https://github.com/avakar/pycson/" +SRC_URI="https://github.com/avakar/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" +SLOT="0" +LICENSE="MIT" +KEYWORDS="~amd64 ~x86" +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" +RDEPEND="dev-python/speg"