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 9ECCF1382C5 for ; Sat, 23 Jan 2021 23:30:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C9F83E0874; Sat, 23 Jan 2021 23:30:34 +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 898A7E0870 for ; Sat, 23 Jan 2021 23:30:34 +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 43546340E78 for ; Sat, 23 Jan 2021 23:30:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B85F44A4 for ; Sat, 23 Jan 2021 23:30:31 +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: <1611444627.a977fa7d737a3c7f8d3eb075a84588b1cfb7301d.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/jsonmerge/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/jsonmerge/Manifest dev-python/jsonmerge/jsonmerge-1.8.0.ebuild X-VCS-Directories: dev-python/jsonmerge/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: a977fa7d737a3c7f8d3eb075a84588b1cfb7301d X-VCS-Branch: master Date: Sat, 23 Jan 2021 23:30:31 +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: 45e9b827-1370-44db-a397-ecbd8edc5748 X-Archives-Hash: e7ba8bec6971022ab9bfd3474ae9a454 commit: a977fa7d737a3c7f8d3eb075a84588b1cfb7301d Author: Michał Górny gentoo org> AuthorDate: Sat Jan 23 23:26:02 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Jan 23 23:30:27 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a977fa7d dev-python/jsonmerge: Bump to 1.8.0 Signed-off-by: Michał Górny gentoo.org> dev-python/jsonmerge/Manifest | 1 + dev-python/jsonmerge/jsonmerge-1.8.0.ebuild | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+) diff --git a/dev-python/jsonmerge/Manifest b/dev-python/jsonmerge/Manifest index f14e1048f30..bdedc035128 100644 --- a/dev-python/jsonmerge/Manifest +++ b/dev-python/jsonmerge/Manifest @@ -1 +1,2 @@ DIST jsonmerge-1.6.0.tar.gz 22735 BLAKE2B 92eb9936e982ecbcb963bc88000c32ed884957275ed43fcab5153ea84d49a376b542db77d4413a47f55ff4fa6f7979b12db1187e7d6c335ed2a71d5944f2fce9 SHA512 e75c1915340d29bceded668faf1fd247a902792e58c3a7ee7183ee7b4a2060dcc84d0b91e8d2258fca4383eac32c76f98330f878a9706c2dbbf5c241ee6fa3db +DIST jsonmerge-1.8.0.tar.gz 26978 BLAKE2B e6aec87f6beee5eddc5d3a89afd15c45d8e8f58aafa98b6556805c1f86a4c8d65d1562230ec06181351480b1aaa881aeb5ef22bd8d39d5b7d5d109ce8b76747f SHA512 a19a37e0e56d647aec095b6a67f04573e0ffd988964a24f5722ae90ab03edf65628d03f0dc9242830cb606052a73821f0f1c790d01830bfafcfdb11698967da3 diff --git a/dev-python/jsonmerge/jsonmerge-1.8.0.ebuild b/dev-python/jsonmerge/jsonmerge-1.8.0.ebuild new file mode 100644 index 00000000000..afaa5a49533 --- /dev/null +++ b/dev-python/jsonmerge/jsonmerge-1.8.0.ebuild @@ -0,0 +1,19 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python3_{7..9} ) + +inherit distutils-r1 + +DESCRIPTION="Merge a series of JSON documents" +HOMEPAGE="https://github.com/avian2/jsonmerge/ https://pypi.org/project/jsonmerge/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND="dev-python/jsonschema[${PYTHON_USEDEP}]" + +distutils_enable_tests unittest