summaryrefslogtreecommitdiff
path: root/dev-python/jsonpatch/jsonpatch-1.25.ebuild
diff options
context:
space:
mode:
authorPatrick McLean <patrick.mclean@sony.com>2020-04-02 14:31:55 -0700
committerPatrick McLean <chutzpah@gentoo.org>2020-04-02 14:31:55 -0700
commitc9c40536686e8c8e3c37c742c28040ef853d484e (patch)
tree37417892d98e0ad2c04960d7de47369f37e2a1da /dev-python/jsonpatch/jsonpatch-1.25.ebuild
parent4dd43c0f1c0520ad93b3b836aab06baedf8eb919 (diff)
downloadgentoo-c9c40536686e8c8e3c37c742c28040ef853d484e.tar.gz
gentoo-c9c40536686e8c8e3c37c742c28040ef853d484e.tar.bz2
gentoo-c9c40536686e8c8e3c37c742c28040ef853d484e.zip
dev-python/jsonpatch-1.25: Version bump
Copyright: Sony Interactive Entertainment Inc. Package-Manager: Portage-2.3.96, Repoman-2.3.22 Signed-off-by: Patrick McLean <chutzpah@gentoo.org>
Diffstat (limited to 'dev-python/jsonpatch/jsonpatch-1.25.ebuild')
-rw-r--r--dev-python/jsonpatch/jsonpatch-1.25.ebuild28
1 files changed, 28 insertions, 0 deletions
diff --git a/dev-python/jsonpatch/jsonpatch-1.25.ebuild b/dev-python/jsonpatch/jsonpatch-1.25.ebuild
new file mode 100644
index 000000000000..77592f3ef041
--- /dev/null
+++ b/dev-python/jsonpatch/jsonpatch-1.25.ebuild
@@ -0,0 +1,28 @@
+# 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="Apply JSON-Patches like http://tools.ietf.org/html/draft-pbryan-json-patch-04"
+HOMEPAGE="https://github.com/stefankoegl/python-json-patch"
+SRC_URI="https://github.com/stefankoegl/python-json-patch/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/python-json-patch-${PV}"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="test"
+
+RDEPEND=">=dev-python/jsonpointer-1.9[${PYTHON_USEDEP}]"
+BDEPEND="
+ test? ( ${RDEPEND} )
+"
+RESTRICT="!test? ( test )"
+
+python_test() {
+ "${EPYTHON}" tests.py || die "Tests of tests.py fail with ${EPYTHON}"
+ "${EPYTHON}" ext_tests.py || die "Tests of ext_tests.py fail with ${EPYTHON}"
+}