add jsonpickle-1.4.1-r1 from main repo archive (still needed)
This commit is contained in:
parent
48fe8ccfa7
commit
79fc1a0914
@ -24,6 +24,7 @@
|
||||
* update pyatmo-4.2.2
|
||||
* bump hyperion-py-0.7.0
|
||||
* add pillow-7.2.0 from main repo archive (still needed)
|
||||
* add jsonpickle-1.4.1-r1 from main repo archive (still needed)
|
||||
|
||||
2021-01-19
|
||||
* bump google-nest-sdm-0.2.8
|
||||
|
||||
3
dev-python/jsonpickle/Manifest
Normal file
3
dev-python/jsonpickle/Manifest
Normal file
@ -0,0 +1,3 @@
|
||||
DIST jsonpickle-1.4.1.tar.gz 104564 BLAKE2B a3ad6f9c712f39153186b6ccdef515581012ad4ba1251dcb094074f2093eb4b158b9357bdf2e8668073cb21dc3bf6dd2fc3a0058c8597252c558a797432068b9 SHA512 ed6bf3472c59ba907a973c5c6f05de13dbfc75eef103796b8f8a63d388f769527f22667ca8761092d1649ff2caf5a73de0593e370df3e7fcabe06e73b265da35
|
||||
EBUILD jsonpickle-1.4.1-r1.ebuild 1290 BLAKE2B 40850b13753a047e8bfa80939df7733a863c0aaca17efb6c92f7e6449c010448bb12fe8e60e7d09d3df5b48e34f9e9587d010e0f4557bb63b53a500d79bbc6eb SHA512 9545f7bffd34dd158721c952619a406179156f9a354268efd44b71fcd468f91e301705d2806cba70ff85e63369f5dc733198a632b5ff06b91d1da9d5820e2ab4
|
||||
MISC metadata.xml 452 BLAKE2B 30f59a06c12a77a20497b26ffde7f53a767a0913554e8a3d9ee3e173b489e3f3017cf707fe8e0d393b3b12100ddda7668852630e97cffbcb08786bc146c714c5 SHA512 328585b67bc2606665cdd0d999b7b34839636026c0616efee891de83733c156cac86dd4117e690e9a9562bb7e2f64c63f483daa36f8f56067175e598fb6913cd
|
||||
47
dev-python/jsonpickle/jsonpickle-1.4.1-r1.ebuild
Normal file
47
dev-python/jsonpickle/jsonpickle-1.4.1-r1.ebuild
Normal file
@ -0,0 +1,47 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python3_{6..9} )
|
||||
DISTUTILS_USE_SETUPTOOLS=rdepend
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="Python library for serializing any arbitrary object graph into JSON"
|
||||
HOMEPAGE="https://github.com/jsonpickle/jsonpickle/ https://pypi.org/project/jsonpickle/"
|
||||
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 ~arm x86 ~amd64-linux ~x86-linux"
|
||||
IUSE="doc test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
# There are optional json backends serializer/deserializers in addition to those selected here
|
||||
# jsonlib, yajl.
|
||||
RDEPEND="
|
||||
dev-python/simplejson[${PYTHON_USEDEP}]
|
||||
dev-python/feedparser[${PYTHON_USEDEP}]
|
||||
dev-python/ujson[${PYTHON_USEDEP}]
|
||||
"
|
||||
# toml via setuptools_scm[toml]
|
||||
BDEPEND="
|
||||
dev-python/setuptools_scm[${PYTHON_USEDEP}]
|
||||
dev-python/toml[${PYTHON_USEDEP}]"
|
||||
|
||||
distutils_enable_sphinx "docs/source"
|
||||
distutils_enable_tests pytest
|
||||
|
||||
python_prepare_all() {
|
||||
# too many dependencies
|
||||
rm tests/pandas_test.py || die
|
||||
sed -e '/pandas/ d' -i tests/runtests.py || die
|
||||
|
||||
sed -i -e 's:--flake8 --black --cov --cov-append::' pytest.ini || die
|
||||
|
||||
distutils-r1_python_prepare_all
|
||||
}
|
||||
|
||||
python_test() {
|
||||
pytest -vv tests || die "Tests failed with ${EPYTHON}"
|
||||
}
|
||||
15
dev-python/jsonpickle/metadata.xml
Normal file
15
dev-python/jsonpickle/metadata.xml
Normal file
@ -0,0 +1,15 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="project">
|
||||
<email>b@edevau.net</email>
|
||||
<name>Andreas Billmeier</name>
|
||||
</maintainer>
|
||||
<upstream>
|
||||
<remote-id type="pypi">jsonpickle</remote-id>
|
||||
<maintainer status="unknown">
|
||||
<email>davvid@gmail.com</email>
|
||||
<name>David Aguilar</name>
|
||||
</maintainer>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
Loading…
x
Reference in New Issue
Block a user