mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-20 22:01:11 +02:00
social-auth-core: v3.3.3 bump
This commit is contained in:
parent
edd94b9d30
commit
334e7356de
7 changed files with 54 additions and 17 deletions
1
dev-python/python3-openid/Manifest
Normal file
1
dev-python/python3-openid/Manifest
Normal file
|
|
@ -0,0 +1 @@
|
|||
DIST python3-openid-3.1.0.tar.gz 299326 BLAKE2B 809e38cb20be9dcbb520a17a99758554f33f6f94b98b3deee4507eac0d8724c370a48c7b267f473e3b31e90593b1ef7702eb5d8adfc908c532ba624139da0b23 SHA512 9c96efd16191ddb6ddb12c4885a2cce523244d04e70f9418144d0124ef142fd7b6578cd2a01e949995d7dedf0b96cbb3b17d1d3a29db5da8934f7fa875ad8e9c
|
||||
8
dev-python/python3-openid/metadata.xml
Normal file
8
dev-python/python3-openid/metadata.xml
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="project">
|
||||
<email>proxy-maint@gentoo.org</email>
|
||||
<name>Proxy Maintainers</name>
|
||||
</maintainer>
|
||||
</pkgmetadata>
|
||||
21
dev-python/python3-openid/python3-openid-3.1.0.ebuild
Normal file
21
dev-python/python3-openid/python3-openid-3.1.0.ebuild
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python3_{6,7} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="Python 3 port of the python-openid library"
|
||||
HOMEPAGE="https://github.com/necaris/python3-openid"
|
||||
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
|
||||
RDEPEND="${PYTHON_DEPS}
|
||||
dev-python/defusedxml[${PYTHON_USEDEP}]"
|
||||
DEPEND="${RDEPEND}
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]"
|
||||
|
|
@ -1 +1 @@
|
|||
DIST social-auth-core-3.2.0.tar.gz 174171 BLAKE2B 7cfb803d2192ed7850c36fa3e6c6f73a7c2c08e3337e610a9b192a6b7042cfd56363a4e86246ed46e7e3a737a190b98f8d43f80c0b23d69efcecfa1505951bda SHA512 5e9e78f5b6a92b7d6dd3b62a224d6b5ec3eb14e687b64528e2b57ff285f07d09637df6669492f1a59cfc453a7724710ab282dc1ccf9274bd98a708ff28130b0f
|
||||
DIST social-auth-core-3.3.3.tar.gz 189098 BLAKE2B e42d17041dbcb2f4b919daf10a483373848f040300904073e586d5220897806a814d5a2f0c9fda659b48c6872b61bb0b2125439f9b6f7be55c757226f0f8e3ad SHA512 2e80fa97c67acb623ef165faa5eb089582a57f16a5cacccfcd756e9f4e525e4f1a919cd6d88ac29de67ca9e15a2727178c7d9aaa5b19450d6f431f95a3127e38
|
||||
|
|
|
|||
11
dev-python/social-auth-core/metadata.xml
Normal file
11
dev-python/social-auth-core/metadata.xml
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="project">
|
||||
<email>proxy-maint@gentoo.org</email>
|
||||
<name>Proxy Maintainers</name>
|
||||
</maintainer>
|
||||
<use>
|
||||
<flag name="saml">Use SAML</flag>
|
||||
</use>
|
||||
</pkgmetadata>
|
||||
|
|
@ -1,10 +1,9 @@
|
|||
# Copyright 1999-2019 Gentoo Foundation
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python2_7 )
|
||||
# python3_{5,6,7} )
|
||||
PYTHON_COMPAT=( python3_{6,7} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
|
|
@ -15,22 +14,17 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
|
|||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE=""
|
||||
IUSE="saml"
|
||||
|
||||
RDEPEND=">=dev-python/requests-2.9.1[${PYTHON_USEDEP}]
|
||||
>=dev-python/oauthlib-1.0.3[${PYTHON_USEDEP}]
|
||||
>=dev-python/requests-oauthlib-0.6.1[${PYTHON_USEDEP}]
|
||||
>=dev-python/six-1.10.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/pyjwt-1.4.0[${PYTHON_USEDEP}]
|
||||
$(python_gen_cond_dep 'dev-python/python-openid[${PYTHON_USEDEP}]' python2_7)"
|
||||
|
||||
# $(python_gen_cond_dep 'dev-python/defusedxml[${PYTHON_USEDEP}]' python3)
|
||||
|
||||
#FIXME:
|
||||
#python2 and saml? python-saml>=2.2.0
|
||||
|
||||
#python3
|
||||
#python3-openid>=3.0.10
|
||||
#saml? python3-saml>=1.2.1
|
||||
|
||||
$(python_gen_cond_dep '
|
||||
dev-python/defusedxml[${PYTHON_USEDEP}]
|
||||
>=dev-python/python3-openid-3.0.10[${PYTHON_USEDEP}]
|
||||
saml? ( >=python3-saml-1.2.1 )
|
||||
' python3)
|
||||
"
|
||||
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
|
||||
|
|
@ -385,6 +385,8 @@ dev-python/django-formtools
|
|||
dev-python/django-simple-captcha
|
||||
dev-python/python-cas-haiwen
|
||||
dev-python/social-auth-core
|
||||
~dev-python/python3-openid-3.1.0
|
||||
~dev-python/python3-saml-1.9.0
|
||||
dev-python/django-webpack-loader
|
||||
dev-python/django-ranged-response
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue