add requests-oauth-0.4.1

This commit is contained in:
Andreas Billmeier 2020-08-30 13:29:26 +02:00 committed by Andreas Billmeier
parent 7e24992b75
commit 880bc412a2
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 49 additions and 0 deletions

View File

@ -27,6 +27,7 @@
* update homeassistant-0.114.4, 3 new useflags by request (https://git.edevau.net/onkelbeh/HomeAssistantRepository/issues/20)
* update withings-api-2.1.6
* bump withings-api-2.1.8
* add requests-oauth-0.4.1
2020-08-26

View File

@ -0,0 +1,3 @@
DIST requests-oauth-0.4.1.tar.gz 9955 BLAKE2B a12e5b771a3bee1bd5c69ba82d20d145bf541d55386dbb89393ebc86bc17003c45aa4e9760e530231936af3dfd61b08ee73a31e69e68d5cd311e638d56794135 SHA512 c5cb23d1cc10a16773afd078e92b8eeb2174381c86dfa253ea7671fdf1955d9e59cbe91e05a218549ad8f3bf9924e6eb8df4813144a97679d0104a31987f01cc
EBUILD requests-oauth-0.4.1.ebuild 772 BLAKE2B d4b0150cd640ca27d768253113179ccc3d171c617e39aca03ad2dc63c20b2266255d9c210238877ac2c6e8c950ac03787bf814bcf8f94ba4af9cb1f65749e127 SHA512 1294209b489432388418cb5b0818e5b6ff11f8edf078b05bfe35a9b3d04160c54e690b50a163d5f56ad21778ae44b2c4a30d768079b35064ec22527514b4a8f1
MISC metadata.xml 469 BLAKE2B cd9a69894201ebc522b8166b3702c25b1dd698c5811eade268f796232ff052fb192bbe529d712254933cdc555c23bef4231f5adcf3aae58ed2cc4fba73e75495 SHA512 c802e385081c818b8a56243cf811e411c0a02bc565480d6ed4e45e9a07da49ea7e2d111891135cf2b44d98874d6941530c7fdfde93b74176ae02beb263cf0c87

View 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">requests-oauth</remote-id>
<maintainer status="unknown">
<email>miguel.araujo.perez@gmail.com</email>
<name>Miguel Araujo</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,30 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{7..8} )
inherit distutils-r1
DESCRIPTION="Hook for adding Open Authentication support to Python-requests HTTP library."
HOMEPAGE="http://github.com/maraujop/requests-oauth https://pypi.org/project/requests-oauth/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=">=dev-python/requests-0.12.1[${PYTHON_USEDEP}]"
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
}