add solaredge-local, uplink & uplink-protobuf
This commit is contained in:
4
dev-python/uplink/Manifest
Normal file
4
dev-python/uplink/Manifest
Normal file
@@ -0,0 +1,4 @@
|
||||
AUX uplink-0.9.0-notest.patch 441 BLAKE2B c5b7869e3337b6d02c7ff7735d90eb380f793a7d6531fec751be9e638a31148c9b10693447cfe663e76650c5043049db4c846c54fe6aaed4fc4708e327112b13 SHA512 6cc836088821ac755ad1ac9145b8658e9da89d7fcda95f3529da65a3ee94335d23dc52df60123e2e34ea72d657724aae19e6d52ae1b39729298a2947856891dc
|
||||
DIST uplink-0.9.0.tar.gz 75456 BLAKE2B bcf891319610bd7e4d6a96d2c5f36c3bf7a9040b79d973a7178b7e62044798d0d4f3558e616fb2998296598c62843a762c80594a11c330deaf9e061a782ee4bb SHA512 b1ee01471cc0ae2457b9686edb8be5317926bc0a57d525664bdfffd36de8d076abfdc555498c35c01b560b0b5ead6f1f9e0c91a12b36fc02133de78faa419710
|
||||
EBUILD uplink-0.9.0.ebuild 886 BLAKE2B f4f9cb71ffce5bd01451da03e519ae1783218a59a2d6c166dbc55ef4b7702ff6d3c11cdfad081a73e9dea31dccb7805e930e77375f4c6253193a8c8c4160b5f9 SHA512 ccac85418c20158f3c29e9388243bbcbc93988b72496fe2a284602bcbf09feee268afee6da3c7505f013383514ce02a7f5b93e3d2bf242ae34080bf6584d4dc7
|
||||
MISC metadata.xml 464 BLAKE2B a4fcbe25ece5d0cab2b621bb6949441ff797312fa5cab6203e2e948d7d06abe50f194fcc96fed01557ee6aad9fda7d0b2d2656cfe63a2d9b2f90205190580061 SHA512 500375c87d302f3ecc4a5399aa0868edee4f9ef22b804b5bc86ef16bf6f61e538e269c6b01fed6d7f7f42a42907285a38c391c96bbb71b58efff0165d03fcd8e
|
||||
13
dev-python/uplink/files/uplink-0.9.0-notest.patch
Normal file
13
dev-python/uplink/files/uplink-0.9.0-notest.patch
Normal file
@@ -0,0 +1,13 @@
|
||||
diff --git a/setup.py b/setup.py
|
||||
index 661e5b6..4e60f1e 100644
|
||||
--- a/setup.py
|
||||
+++ b/setup.py
|
||||
@@ -50,7 +50,7 @@ metadata = {
|
||||
"Programming Language :: Python :: Implementation :: PyPy",
|
||||
],
|
||||
"keywords": "http api rest client retrofit",
|
||||
- "packages": find_packages(exclude=("tests",)),
|
||||
+ "packages": find_packages(exclude=("tests*",)),
|
||||
"install_requires": install_requires,
|
||||
"extras_require": extras_require,
|
||||
}
|
||||
16
dev-python/uplink/metadata.xml
Normal file
16
dev-python/uplink/metadata.xml
Normal file
@@ -0,0 +1,16 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer>
|
||||
<email>b@edevau.net</email>
|
||||
<name>Andreas Billmeier</name>
|
||||
</maintainer>
|
||||
<herd>python</herd>
|
||||
<upstream>
|
||||
<remote-id type="pypi">uplink</remote-id>
|
||||
<maintainer status="unknown">
|
||||
<email>raj.pritvi.kumar@gmail.com</email>
|
||||
<name>P. Raj Kumar</name>
|
||||
</maintainer>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
35
dev-python/uplink/uplink-0.9.0.ebuild
Normal file
35
dev-python/uplink/uplink-0.9.0.ebuild
Normal file
@@ -0,0 +1,35 @@
|
||||
# Copyright 1999-2019 Gentoo Authors Andreas Billmeier b (at) edevau.net
|
||||
# Distributed under the terms of the GNU General Public License v3.0
|
||||
|
||||
EAPI="7"
|
||||
|
||||
PYTHON_COMPAT=( python3_{5,6,7} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="A Declarative HTTP Client for Python."
|
||||
HOMEPAGE="https://uplink.readthedocs.io/ https://pypi.org/project/uplink/"
|
||||
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
|
||||
IUSE="test"
|
||||
|
||||
RDEPEND=""
|
||||
DEPEND="${REDEPEND}
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
>=dev-python/requests-2.18.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/six-1.12.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/uritemplate-3.0.0[${PYTHON_USEDEP}]
|
||||
test? (
|
||||
dev-python/nose[${PYTHON_USEDEP}]
|
||||
dev-python/pytest[${PYTHON_USEDEP}]
|
||||
)"
|
||||
|
||||
PATCHES=( "${FILESDIR}"/${P}-notest.patch )
|
||||
|
||||
python_test() {
|
||||
nosetests --verbose || die
|
||||
py.test -v -v || die
|
||||
}
|
||||
Reference in New Issue
Block a user