Gentoo Archives: gentoo-commits

From: Zac Medico <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/jsonpickle/
Date: Mon, 24 Jun 2019 20:57:13
Message-Id: 1561409820.aacd87e8b697e316b3fa66c3bca4075e5a3d66e4.zmedico@gentoo
1 commit: aacd87e8b697e316b3fa66c3bca4075e5a3d66e4
2 Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jun 24 20:35:47 2019 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Mon Jun 24 20:57:00 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aacd87e8
7
8 dev-python/jsonpickle: Bump to version 1.2
9
10 Bug: https://bugs.gentoo.org/688034
11 Package-Manager: Portage-2.3.67, Repoman-2.3.16
12 Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>
13
14 dev-python/jsonpickle/Manifest | 1 +
15 dev-python/jsonpickle/jsonpickle-1.2.ebuild | 49 +++++++++++++++++++++++++++++
16 2 files changed, 50 insertions(+)
17
18 diff --git a/dev-python/jsonpickle/Manifest b/dev-python/jsonpickle/Manifest
19 index 39dfe23fc4b..de068698e2f 100644
20 --- a/dev-python/jsonpickle/Manifest
21 +++ b/dev-python/jsonpickle/Manifest
22 @@ -1 +1,2 @@
23 DIST jsonpickle-0.9.3.tar.gz 60489 BLAKE2B 4767809a3bd5816343e9081bdaf45cdec8dfd1e28b832675e01ae415c1ac081d0a84e2827051520999d11d0dc28a62bdd09285cf384fff0f941d3a571064e2bf SHA512 38de2ab2c15e0e28323a8cc83b0c0b0631f2f678f620e8738fee19c71492f011aa7eec428b859574a0066b9e24a08bde911a283736757964035befe3042f2e06
24 +DIST jsonpickle-1.2.tar.gz 74693 BLAKE2B 65f9c18b8693351995f84815d27f2d86ab65fe7a620cda0d346b88db56de45ff6aa21b7ae941e8820e16e184d9a5ac55d56caf112f3930083e63b50751fe2dd8 SHA512 0a5bfb2e77175c9174ee1783301c613e25fcfa60f07e610206d1e1e34053e90b21b12bc1b1045dd03ff2d4efe5940d85d852800037ca01397994c022f0ffb2c6
25
26 diff --git a/dev-python/jsonpickle/jsonpickle-1.2.ebuild b/dev-python/jsonpickle/jsonpickle-1.2.ebuild
27 new file mode 100644
28 index 00000000000..f4a6601fd81
29 --- /dev/null
30 +++ b/dev-python/jsonpickle/jsonpickle-1.2.ebuild
31 @@ -0,0 +1,49 @@
32 +# Copyright 1999-2019 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +PYTHON_COMPAT=( python2_7 python3_{5,6,7} )
38 +
39 +inherit distutils-r1
40 +
41 +DESCRIPTION="Python library for serializing any arbitrary object graph into JSON"
42 +HOMEPAGE="https://github.com/jsonpickle/jsonpickle/ https://pypi.org/project/jsonpickle/"
43 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
44 +
45 +LICENSE="BSD"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
48 +IUSE="doc test"
49 +
50 +# There are optional json backends serializer/deserializers in addition to those selected here
51 +# jsonlib, yajl.
52 +RDEPEND="dev-python/simplejson[${PYTHON_USEDEP}]
53 + dev-python/feedparser[${PYTHON_USEDEP}]
54 + dev-python/ujson[${PYTHON_USEDEP}]
55 + "
56 +DEPEND="test? ( ${RDEPEND} )
57 + doc? ( dev-python/sphinx[${PYTHON_USEDEP}]
58 + $(python_gen_cond_dep 'dev-python/sphinxtogithub[${PYTHON_USEDEP}]' python2_7) )"
59 +
60 +python_prepare_all() {
61 + # Prevent un-needed d'loading during doc build
62 + sed -e "s/, 'sphinx.ext.intersphinx'//" -i docs/source/conf.py || die
63 + distutils-r1_python_prepare_all
64 +}
65 +
66 +python_compile_all() {
67 + use doc && { python_setup python2_7 && sphinx-build -b html -c docs/source/ docs/source/ docs/source/html || die; }
68 +}
69 +
70 +python_test() {
71 + # An apparent regression in tests
72 + # https://github.com/jsonpickle/jsonpickle/issues/124
73 + einfo "testsuite has optional tests for package demjson"
74 + ${PYTHON} tests/runtests.py || die
75 +}
76 +
77 +python_install_all() {
78 + use doc && local HTML_DOCS=( docs/source/html/. )
79 + distutils-r1_python_install_all
80 +}