orjson-2.5.1 removed, too complex to compile in Gentoo

This commit is contained in:
Andreas Billmeier 2020-09-10 22:04:04 +02:00 committed by Andreas Billmeier
parent e492e94f55
commit cb6cf24e13
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 1 additions and 48 deletions

View File

@ -18,6 +18,7 @@
- avoid installation of 'test' package
* thermoworks-smoke-0.1.8: fix https://git.edevau.net/onkelbeh/HomeAssistantRepository/issues/166
* python-tado: fix https://git.edevau.net/onkelbeh/HomeAssistantRepository/issues/158
* orjson-2.5.1 removed, too complex to compile in Gentoo
2020-09-08 homeassistant-0.115.0_beta2
* cleanup PyDispatcher vs pydispatcher

View File

@ -1,3 +0,0 @@
DIST orjson-2.5.1.tar.gz 520776 BLAKE2B bc4b61ed66463aa8d0eb6fa362db2338577ae66c57d229f49dcc15b5bda618790cbeafa8d78083c84440ec97631588400427edf92012c7c917ed8eebf3a2765c SHA512 060a83e3ae73481e3c672eedcc8f917c28a5ad3474de5da581aa19bb7c7f9c8ac7cc72559e9473967b3ceaa1356e4aa86138be79c50b9109727a79df386be53e
EBUILD orjson-2.5.1.ebuild 727 BLAKE2B 6b35c9b669b5ea0f8a4c21bfb19288acda881bbfbdf57316bf6a76bbec5b666ad7a76d7e718cf3b664f56dfe2fc823fc2a516a5cd5ccc4f766e20c1ddba7c494 SHA512 5a35723f731f03c85403d9b7cfeef62d5cd350cd61513fadfb5b8b4b2e81125f5bacdad4cce36dde1848d1a029ccae9ab82ec795772831fc438dbd0de4b4c45f
MISC metadata.xml 473 BLAKE2B 3db9ed92640edc7b626846d64123ed4b0e8942d30e3829eaecee755de6b44ac21a4523eb5dd672732a0722ae09c0e3674f87872f21cc3dfa6f42f3e87461fb62 SHA512 c13a48d8cc5dd59ad53c11b4ddd9e92d2b4f6d6479525a2b02942eddec1d0f33b9aeed6e13c91d4c70e8a6e7145f639f0f0a0957194629a0e889464189642a30

View File

@ -1,15 +0,0 @@
<?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">orjson</remote-id>
<maintainer status="unknown">
<email>ijl &lt;ijl@mailbox.org&gt;</email>
<name>ijl &lt;ijl@mailbox.org&gt;</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -1,30 +0,0 @@
# 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="Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy"
HOMEPAGE="https://github.com/ijl/orjson https://pypi.org/project/orjson/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="|| ( Apache-2.0 MIT )"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=""
DEPEND="${REDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}