Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/jsonpickle/
Date: Mon, 04 May 2020 11:13:07
Message-Id: 1588590725.b80ba225c227c80df2a80fd379963b52d360c30f.mgorny@gentoo
1 commit: b80ba225c227c80df2a80fd379963b52d360c30f
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 4 11:12:05 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon May 4 11:12:05 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b80ba225
7
8 dev-python/jsonpickle: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/jsonpickle/Manifest | 1 -
13 dev-python/jsonpickle/jsonpickle-1.2.ebuild | 49 -----------------------------
14 2 files changed, 50 deletions(-)
15
16 diff --git a/dev-python/jsonpickle/Manifest b/dev-python/jsonpickle/Manifest
17 index 70ab6e0495f..ed9e81bb414 100644
18 --- a/dev-python/jsonpickle/Manifest
19 +++ b/dev-python/jsonpickle/Manifest
20 @@ -1,3 +1,2 @@
21 -DIST jsonpickle-1.2.tar.gz 74693 BLAKE2B 65f9c18b8693351995f84815d27f2d86ab65fe7a620cda0d346b88db56de45ff6aa21b7ae941e8820e16e184d9a5ac55d56caf112f3930083e63b50751fe2dd8 SHA512 0a5bfb2e77175c9174ee1783301c613e25fcfa60f07e610206d1e1e34053e90b21b12bc1b1045dd03ff2d4efe5940d85d852800037ca01397994c022f0ffb2c6
22 DIST jsonpickle-1.3.tar.gz 76571 BLAKE2B 797ac90d1aacb620d9917bd2a34dbc960739b29f64d7bc003c934333fc0d836657a4907a965725248b2f9489876ae251440eab3888112f158c28f19e33efe036 SHA512 5e7faa32f4fd2da88d9cfea8c0355121ece12aa1b4434845e6bd679718f433e5c27835b405f833a31d69d09d7a6ae6c3d5e4bf1f6dc9c50c7ff1690cf82271b0
23 DIST jsonpickle-1.4.1.tar.gz 104564 BLAKE2B a3ad6f9c712f39153186b6ccdef515581012ad4ba1251dcb094074f2093eb4b158b9357bdf2e8668073cb21dc3bf6dd2fc3a0058c8597252c558a797432068b9 SHA512 ed6bf3472c59ba907a973c5c6f05de13dbfc75eef103796b8f8a63d388f769527f22667ca8761092d1649ff2caf5a73de0593e370df3e7fcabe06e73b265da35
24
25 diff --git a/dev-python/jsonpickle/jsonpickle-1.2.ebuild b/dev-python/jsonpickle/jsonpickle-1.2.ebuild
26 deleted file mode 100644
27 index f27e26fe631..00000000000
28 --- a/dev-python/jsonpickle/jsonpickle-1.2.ebuild
29 +++ /dev/null
30 @@ -1,49 +0,0 @@
31 -# Copyright 1999-2020 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -PYTHON_COMPAT=( python3_{6,7} )
37 -
38 -inherit distutils-r1
39 -
40 -DESCRIPTION="Python library for serializing any arbitrary object graph into JSON"
41 -HOMEPAGE="https://github.com/jsonpickle/jsonpickle/ https://pypi.org/project/jsonpickle/"
42 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
43 -
44 -LICENSE="BSD"
45 -SLOT="0"
46 -KEYWORDS="amd64 ~arm x86 ~amd64-linux ~x86-linux"
47 -IUSE="doc test"
48 -RESTRICT="!test? ( 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 -
59 -python_prepare_all() {
60 - # Prevent un-needed d'loading during doc build
61 - sed -e "s/, 'sphinx.ext.intersphinx'//" -i docs/source/conf.py || die
62 - distutils-r1_python_prepare_all
63 -}
64 -
65 -python_compile_all() {
66 - use doc && { python_setup python2_7 && sphinx-build -b html -c docs/source/ docs/source/ docs/source/html || die; }
67 -}
68 -
69 -python_test() {
70 - # An apparent regression in tests
71 - # https://github.com/jsonpickle/jsonpickle/issues/124
72 - einfo "testsuite has optional tests for package demjson"
73 - ${PYTHON} tests/runtests.py || die
74 -}
75 -
76 -python_install_all() {
77 - use doc && local HTML_DOCS=( docs/source/html/. )
78 - distutils-r1_python_install_all
79 -}