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 B54A113835A for ; Sun, 17 Jan 2021 16:16:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 03D0CE0895; Sun, 17 Jan 2021 16:16:12 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 DCA37E0895 for ; Sun, 17 Jan 2021 16:16:11 +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 04F6E340CAA for ; Sun, 17 Jan 2021 16:16:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1F41B4A1 for ; Sun, 17 Jan 2021 16:16:08 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1610900162.4a50acbea48db2f2423037448322123c9fb8f2e8.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/ijson/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/ijson/Manifest dev-python/ijson/ijson-3.1.3.ebuild X-VCS-Directories: dev-python/ijson/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 4a50acbea48db2f2423037448322123c9fb8f2e8 X-VCS-Branch: master Date: Sun, 17 Jan 2021 16:16:08 +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: e6784a05-5c84-431c-b12f-50c71521a09f X-Archives-Hash: 6945d7fe2b67d6b3781a3c2cdda763b0 commit: 4a50acbea48db2f2423037448322123c9fb8f2e8 Author: Sam James gentoo org> AuthorDate: Sun Jan 17 16:07:11 2021 +0000 Commit: Sam James gentoo org> CommitDate: Sun Jan 17 16:16:02 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a50acbe dev-python/ijson: bump to 3.1.3 Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Sam James gentoo.org> dev-python/ijson/Manifest | 1 + dev-python/ijson/ijson-3.1.3.ebuild | 25 +++++++++++++++++++++++++ 2 files changed, 26 insertions(+) diff --git a/dev-python/ijson/Manifest b/dev-python/ijson/Manifest index ce6063ee004..db0eeed3ed4 100644 --- a/dev-python/ijson/Manifest +++ b/dev-python/ijson/Manifest @@ -1 +1,2 @@ DIST ijson-3.1.1.tar.gz 124875 BLAKE2B 6f20efa076cf9e9a9f22eec65c7658440cc2ddffc2bf88054025f76f2df48e395d1c11a52501a45e7b5301448ce5874fb3e62d9111963f49f976ee68836c39d1 SHA512 c693444ac757c3b6e1f762d4a877a82b11ccaaecc922d34b868d236a78d9cf8f8648cb6d1188f0444caf61a0758f3080d3bfbd79c1ee51114bbd7c0a34bc633e +DIST ijson-3.1.3.tar.gz 125658 BLAKE2B 3866c89b3dab6f55138b51d52c55a1b2c83e4e26d98e08724cd3d96ccb28a7d2a5fb1889e59f499cfe3b4ee8642933f88fbb18111ac94a8195a97109fbf8a08f SHA512 f4da9e44cc42fac7d9eeb6ba897ba7c3b477e07b4fb6e91abda59a83638d29dc41a845ba9ff5907130657a78ccfb788a6b88d8026f58b2095174e6939e25ef8a diff --git a/dev-python/ijson/ijson-3.1.3.ebuild b/dev-python/ijson/ijson-3.1.3.ebuild new file mode 100644 index 00000000000..75895bfd275 --- /dev/null +++ b/dev-python/ijson/ijson-3.1.3.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6..9} pypy3 ) +inherit distutils-r1 + +MY_PV="${PV//_p/.post}" +DESCRIPTION="Iterative JSON parser with a Pythonic interface" +HOMEPAGE=" + https://github.com/ICRAR/ijson + https://pypi.org/project/ijson/ +" +SRC_URI="https://github.com/ICRAR/${PN}/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${PN}-${MY_PV}" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND="dev-libs/yajl" +DEPEND="${RDEPEND}" + +distutils_enable_tests pytest