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 3417E1382C5 for ; Wed, 3 Mar 2021 08:07:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1C965E088D; Wed, 3 Mar 2021 08:07:24 +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 0363AE088D for ; Wed, 3 Mar 2021 08:07:23 +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 058B334103A for ; Wed, 3 Mar 2021 08:07:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 71D6A579 for ; Wed, 3 Mar 2021 08:07:21 +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: <1614758837.62ff41747fd18b22bb53aad441062771c7173655.mgorny@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.4.ebuild X-VCS-Directories: dev-python/ijson/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 62ff41747fd18b22bb53aad441062771c7173655 X-VCS-Branch: master Date: Wed, 3 Mar 2021 08:07:21 +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: 39ecdfd0-b9b9-4425-b532-13f62acc9e21 X-Archives-Hash: 8301e847c449d370be68315f9a758c3c commit: 62ff41747fd18b22bb53aad441062771c7173655 Author: Michał Górny gentoo org> AuthorDate: Wed Mar 3 07:43:50 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Mar 3 08:07:17 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62ff4174 dev-python/ijson: Bump to 3.1.4 Signed-off-by: Michał Górny gentoo.org> dev-python/ijson/Manifest | 1 + dev-python/ijson/ijson-3.1.4.ebuild | 25 +++++++++++++++++++++++++ 2 files changed, 26 insertions(+) diff --git a/dev-python/ijson/Manifest b/dev-python/ijson/Manifest index 32677cc044d..472d8449681 100644 --- a/dev-python/ijson/Manifest +++ b/dev-python/ijson/Manifest @@ -1 +1,2 @@ DIST ijson-3.1.3.tar.gz 125658 BLAKE2B 3866c89b3dab6f55138b51d52c55a1b2c83e4e26d98e08724cd3d96ccb28a7d2a5fb1889e59f499cfe3b4ee8642933f88fbb18111ac94a8195a97109fbf8a08f SHA512 f4da9e44cc42fac7d9eeb6ba897ba7c3b477e07b4fb6e91abda59a83638d29dc41a845ba9ff5907130657a78ccfb788a6b88d8026f58b2095174e6939e25ef8a +DIST ijson-3.1.4.tar.gz 125725 BLAKE2B 870439690c0b776d04c3023fb910d0f9ff2ca573be728c06802fbbbd5de1d5dcb8e677b778d30cb134d181dfc4ffd53c686af3d57458501d9548ddbdba8bf6d7 SHA512 7e64c4fec84fd6942c83809849eefc1c299c597524c0fe73e2cdc542e113faad8f35cc5219b0bc4e05842ac69d8608089d7cbb2dc006e404c184505392b21baa diff --git a/dev-python/ijson/ijson-3.1.4.ebuild b/dev-python/ijson/ijson-3.1.4.ebuild new file mode 100644 index 00000000000..ec8e59db0f5 --- /dev/null +++ b/dev-python/ijson/ijson-3.1.4.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_{7..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