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 2D8E5138334 for ; Tue, 25 Jun 2019 01:35:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A5179E0876; Tue, 25 Jun 2019 01:35:48 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 7A8FBE0876 for ; Tue, 25 Jun 2019 01:35:48 +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 EBC403469AF for ; Tue, 25 Jun 2019 01:35:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 713B3629 for ; Tue, 25 Jun 2019 01:35:44 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1561426421.6a74863a18d198c21f898be378379ca8675e5e96.zmedico@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/jsondiff/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/jsondiff/Manifest dev-python/jsondiff/jsondiff-1.1.2.ebuild dev-python/jsondiff/metadata.xml X-VCS-Directories: dev-python/jsondiff/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 6a74863a18d198c21f898be378379ca8675e5e96 X-VCS-Branch: master Date: Tue, 25 Jun 2019 01:35:44 +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: b97ad5e9-d0a0-4bb5-8f3d-47639623d453 X-Archives-Hash: b61b18f25e1095c36fd54b47356db0ab commit: 6a74863a18d198c21f898be378379ca8675e5e96 Author: Zac Medico sony com> AuthorDate: Wed Jun 19 03:32:15 2019 +0000 Commit: Zac Medico gentoo org> CommitDate: Tue Jun 25 01:33:41 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a74863a dev-python/jsondiff: New package Bug: https://bugs.gentoo.org/688034 Copyright: Sony Interactive Entertainment Inc. Package-Manager: Portage-2.3.67, Repoman-2.3.14 Signed-off-by: Zac Medico gentoo.org> dev-python/jsondiff/Manifest | 1 + dev-python/jsondiff/jsondiff-1.1.2.ebuild | 33 +++++++++++++++++++++++++++++++ dev-python/jsondiff/metadata.xml | 13 ++++++++++++ 3 files changed, 47 insertions(+) diff --git a/dev-python/jsondiff/Manifest b/dev-python/jsondiff/Manifest new file mode 100644 index 00000000000..ec5b32ac77e --- /dev/null +++ b/dev-python/jsondiff/Manifest @@ -0,0 +1 @@ +DIST jsondiff-1.1.2.tar.gz 7803 BLAKE2B cbfcfdb2c6c3bb721b4db43aca1d66649257db2cd9feb9655015e621fcd90c72af087696b9553a10ac89cdaf5f23d8748463e1a13bdb19207e34e12e66629544 SHA512 ca96bb80a6f7a34c8c5bcde74856dc1c4935b3e2979330ecfc33432aff83968e671b2aaf310c77f2c7d431be1ae6e20a960879700ba3c903a09a48b23d4c0288 diff --git a/dev-python/jsondiff/jsondiff-1.1.2.ebuild b/dev-python/jsondiff/jsondiff-1.1.2.ebuild new file mode 100644 index 00000000000..4f246f93099 --- /dev/null +++ b/dev-python/jsondiff/jsondiff-1.1.2.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python2_7 python3_{5,6,7} ) + +inherit distutils-r1 + +DESCRIPTION="Diff JSON and JSON-like structures in Python" +HOMEPAGE="https://github.com/xlwings/jsondiff https://pypi.org/project/jsondiff/" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="" +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" +# tests require nose_random +RESTRICT="test" + +python_prepare_all() { + # Avoid file collision with jsonpatch's jsondiff cli. + sed -e "/'jsondiff=jsondiff.cli:main'/d" -i setup.py || die + distutils-r1_python_prepare_all +} + +python_test() { + esetup.py test || die "tests failed with ${EPYTHON}" +} + +python_install_all() { + distutils-r1_python_install_all +} diff --git a/dev-python/jsondiff/metadata.xml b/dev-python/jsondiff/metadata.xml new file mode 100644 index 00000000000..ff1d5858ae3 --- /dev/null +++ b/dev-python/jsondiff/metadata.xml @@ -0,0 +1,13 @@ + + + + + zmedico@gentoo.org + Zac Medico + + + xlwings/jsondiff + jsondiff + https://github.com/xlwings/jsondiff/issues + +