bump requests-cache-0.4.13 & requests-cache-0.5.0 from main repo
This commit is contained in:
parent
10ce3b3496
commit
3282a5b953
@ -42,6 +42,7 @@
|
||||
* add python-clementine-remote-1.0.1 & python-clementine-remote-1.0.3
|
||||
* add pycfdns-0.0.1
|
||||
* add coinbase-2.1.0
|
||||
* bump requests-cache-0.4.13 & requests-cache-0.5.0 from main repo
|
||||
|
||||
2019-11-21 homeassistant-0.102.0
|
||||
* bump homeassistant-0.102.0
|
||||
|
||||
5
dev-python/requests-cache/Manifest
Normal file
5
dev-python/requests-cache/Manifest
Normal file
@ -0,0 +1,5 @@
|
||||
DIST requests-cache-0.4.13.zip 26631 BLAKE2B 387d990d28310344c4ebdd9520b230b784abfcbd288f02a8c4da41df6f91e122ac54443ac87845cd34f4e4d1be9f2af378cba1e753eb4af7199caa377cda9f91 SHA512 54d814c9c4da1b1fa6f4ec124faee7e74e7ca52bc90ae7c948f19e9cb7657fe2b41f5de6c5fafe259526312d82dc5efd81ad01a741a66baf12ea2a358334f912
|
||||
DIST requests-cache-0.5.0.zip 29330 BLAKE2B 31d20eb3ebc94e18c045aef731f7755c40f81518143133491c03df53099227c44e9e533542e992c6c4f6c7195435fb7429078817e8edd65fce8f7c98e49b678a SHA512 421d124e2bbe5e6d9eac42c25787fa2f447a690db262380f87b982a2b8a039acccadf03c853be7b6f2540c6b8c250def4d41afa30af6639415123676ffdda05f
|
||||
EBUILD requests-cache-0.4.13.ebuild 878 BLAKE2B 20d1cf8b35955404ea5494a273f98f422c4b5f6a6065adec72de75010d7935daf5ba255ac43529c0b447e05a6241093e46d09440018339588ef45c8d97a6b4e9 SHA512 0029e91130068f62cabe8345a3a28007b6c664f20567b377eb91ff894cfc15b705194a7a6a6451fd26ccbafa64bc88a5c33ff6ff365e732c932cd02ff76c95f6
|
||||
EBUILD requests-cache-0.5.0.ebuild 878 BLAKE2B 20d1cf8b35955404ea5494a273f98f422c4b5f6a6065adec72de75010d7935daf5ba255ac43529c0b447e05a6241093e46d09440018339588ef45c8d97a6b4e9 SHA512 0029e91130068f62cabe8345a3a28007b6c664f20567b377eb91ff894cfc15b705194a7a6a6451fd26ccbafa64bc88a5c33ff6ff365e732c932cd02ff76c95f6
|
||||
MISC metadata.xml 444 BLAKE2B 6008ac86bdb3740724aff487116d542902602f70670735ac2219b72db042b1974ffa6b4eab0254e59d16fa0438e022d8b9f675899b0ac181d88d4f82dd78d04e SHA512 0cc1b4cee3f1aecef89eb15ffd1e03a0ff4887f9b87a10ea90b6d11e3f5144b8d8d67dcad8c1dd26df3cea9e07140ed1ec76c4b1587d0db1b0f9c60b6daad41f
|
||||
15
dev-python/requests-cache/metadata.xml
Normal file
15
dev-python/requests-cache/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="person">
|
||||
<email>zx2c4@gentoo.org</email>
|
||||
<name>Jason A. Donenfeld</name>
|
||||
</maintainer>
|
||||
<maintainer type="project">
|
||||
<email>python@gentoo.org</email>
|
||||
<name>Python</name>
|
||||
</maintainer>
|
||||
<upstream>
|
||||
<remote-id type="pypi">requests-cache</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
33
dev-python/requests-cache/requests-cache-0.4.13.ebuild
Normal file
33
dev-python/requests-cache/requests-cache-0.4.13.ebuild
Normal file
@ -0,0 +1,33 @@
|
||||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=5
|
||||
|
||||
PYTHON_COMPAT=( python2_7 python3_{5,6} pypy )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
HOMEPAGE="https://pypi.org/project/requests-cache/"
|
||||
DESCRIPTION="Persistent cache for requests library"
|
||||
SRC_URI="https://github.com/reclosedev/${PN}/archive/v${PV}.tar.gz -> ${P}.zip"
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 x86"
|
||||
IUSE="doc"
|
||||
|
||||
# Portage only has versions of request >= minimum border
|
||||
RDEPEND=">=dev-python/requests-2.6[${PYTHON_USEDEP}]"
|
||||
DEPEND="
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
|
||||
|
||||
# Testsuite excels in tests connecting to the network via local server daemons
|
||||
python_compile_all() {
|
||||
use doc && emake -C docs html
|
||||
}
|
||||
|
||||
python_install_all() {
|
||||
use doc && local HTML_DOCS=( docs/_build/html/. )
|
||||
distutils-r1_python_install_all
|
||||
}
|
||||
33
dev-python/requests-cache/requests-cache-0.5.0.ebuild
Normal file
33
dev-python/requests-cache/requests-cache-0.5.0.ebuild
Normal file
@ -0,0 +1,33 @@
|
||||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=5
|
||||
|
||||
PYTHON_COMPAT=( python2_7 python3_{5,6} pypy )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
HOMEPAGE="https://pypi.org/project/requests-cache/"
|
||||
DESCRIPTION="Persistent cache for requests library"
|
||||
SRC_URI="https://github.com/reclosedev/${PN}/archive/v${PV}.tar.gz -> ${P}.zip"
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 x86"
|
||||
IUSE="doc"
|
||||
|
||||
# Portage only has versions of request >= minimum border
|
||||
RDEPEND=">=dev-python/requests-2.6[${PYTHON_USEDEP}]"
|
||||
DEPEND="
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
|
||||
|
||||
# Testsuite excels in tests connecting to the network via local server daemons
|
||||
python_compile_all() {
|
||||
use doc && emake -C docs html
|
||||
}
|
||||
|
||||
python_install_all() {
|
||||
use doc && local HTML_DOCS=( docs/_build/html/. )
|
||||
distutils-r1_python_install_all
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user