diff options
author | Patrick Lauer <patrick@gentoo.org> | 2016-02-18 21:07:29 +0100 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2016-02-18 21:07:38 +0100 |
commit | 68cc98b1deec57c746649bca95159eec42ebf950 (patch) | |
tree | 282403ec63b262ff639fb7267a6ecf9a8fcaf882 /dev-python/jsonpointer | |
parent | dev-python/jsonpatch: Bump (diff) | |
download | gentoo-68cc98b1deec57c746649bca95159eec42ebf950.tar.gz gentoo-68cc98b1deec57c746649bca95159eec42ebf950.tar.bz2 gentoo-68cc98b1deec57c746649bca95159eec42ebf950.zip |
dev-python/jsonpointer: Bump
Package-Manager: portage-2.2.27
Diffstat (limited to 'dev-python/jsonpointer')
-rw-r--r-- | dev-python/jsonpointer/Manifest | 1 | ||||
-rw-r--r-- | dev-python/jsonpointer/jsonpointer-1.10.ebuild | 23 |
2 files changed, 24 insertions, 0 deletions
diff --git a/dev-python/jsonpointer/Manifest b/dev-python/jsonpointer/Manifest index e8ca3b2b7ef7..d900395e6bb7 100644 --- a/dev-python/jsonpointer/Manifest +++ b/dev-python/jsonpointer/Manifest @@ -1,2 +1,3 @@ +DIST jsonpointer-1.10.tar.gz 7577 SHA256 9fa5dcac35eefd53e25d6cd4c310d963c9f0b897641772cd6e5e7b89df7ee0b1 SHA512 b2df5f19b14b670825b18f7da4ca50b089beb2ccbb1c69acfc904eed82b5315ad19940b4aaa8f8504c2fc7d477778d65e31f492dd30ee8b5ba95ccfd0eaeb9b1 WHIRLPOOL d333093fd6fd6f3d565200d11e5d727dfb3ac11eb8f029731915fbe47cb9c5ac915df94b77db30deac080047f5e9e7012f1ae023378e91fdacc2d41f12c9b5f2 DIST jsonpointer-1.7.tar.gz 8187 SHA256 46b2016b5e4f2b5cd2edf07c60ca8fe7dd91204ca848f98964be61b3c4760f5e SHA512 26b25f31fb98fe7c7d926dcc492fe7889f2462430f959645e498fc47367d23243fb3b528da7af026827dffb30d7c5fe2ffb31843a8f2c9064647bebb313de9bb WHIRLPOOL 8539c4bb40cb2c1042f76d91e127da31d742ea55f8b2ba51abcc0e2d3319bf2ab2380e3ee2cd4195d8cc563b2d36a1eff56a6e72e2f3a8c171692bb66bfa3558 DIST jsonpointer-1.9.tar.gz 7662 SHA256 39403b47a71aa782de6d80db3b78f8a5f68ad8dfc9e674ca3bb5b32c15ec7308 SHA512 872367c1a75f8022c07a52191d3f9491dd62767f58c4fa2c2fdcd1bf139858f73e7a5ad495943f1cb35b759d7919a807f8bccc052f6c35831e8091b5fda31b40 WHIRLPOOL bfe55984774502e8e91471d00d4d63bb3bf224cc3e677c1d20ee1e060962b7c9962577bbbdaba5c18647d588878820dc1f7b21ad206da019acf79ad9ba289e84 diff --git a/dev-python/jsonpointer/jsonpointer-1.10.ebuild b/dev-python/jsonpointer/jsonpointer-1.10.ebuild new file mode 100644 index 000000000000..0c784a0711d2 --- /dev/null +++ b/dev-python/jsonpointer/jsonpointer-1.10.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="Identify specific nodes in a JSON document (according to draft 08)" +HOMEPAGE="https://github.com/stefankoegl/python-json-pointer https://pypi.python.org/pypi/jsonpointer/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" + +python_test() { + "${PYTHON}" tests.py || die "Tests fail with ${EPYTHON}" +} |