make mailman python3.9 compatible (including django allauth as an copy from)
This commit is contained in:
parent
cebc96f374
commit
e8fa749e0a
7 changed files with 44 additions and 5 deletions
3
dev-python/django-allauth/Manifest
Normal file
3
dev-python/django-allauth/Manifest
Normal file
|
@ -0,0 +1,3 @@
|
|||
DIST django-allauth-0.42.0.tar.gz 549566 BLAKE2B aa346bcc47b9419776a68c023ab560e5cba0fd97eeaf4cb2f43da4b2c53619c65a3ec9e1313ff3ffa0ed051718d41ccea2d362f56d6bd8dcf4c5a0569ccbb7c9 SHA512 2c31a70dfd3becf0f921b0566204b8b3221b0c85e82cb8a8ad37ab557fc6f302b9c24bfdd6885978157f4ccb9044d1eed9973d066ee59877aee727c60d2a5b46
|
||||
EBUILD django-allauth-0.42.0.ebuild 663 BLAKE2B 792557d0a5b45cd7b712cedbc312df96deb651388205407455ddd6fb637912c588144978eaa0038f3fbec061ba76b51a26ba55eda95b3f69a593f2e633c97694 SHA512 1a08051188196f026a1cfdd73b3f09f3c449cd2d5756bb1597b04554b3816c76645869374ccfecfc1f45fe5c0423e4cc3d9e25105a73a6a1ed3a2eb077f59142
|
||||
MISC metadata.xml 293 BLAKE2B 1f94d47b3f88a08c249d0d9dd6667e195b68ea8f47401ab02c6d5bc41619e5e4eb6877ffe881353c5d2b69fe9d71703a48002e5b5557aeb188ad592f8e2f4d54 SHA512 6d71d8644c96cab3551e98e13ba808a6d97685cf093a8e1c7968ce5e5a4ba3a358428e4b597c438d72be7b98a24714dc6ddd41ea970b6c97e902f9b5de0cdd8c
|
25
dev-python/django-allauth/django-allauth-0.42.0.ebuild
Normal file
25
dev-python/django-allauth/django-allauth-0.42.0.ebuild
Normal file
|
@ -0,0 +1,25 @@
|
|||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python3_{7,8,9} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="Django 3rd party (social) account authentication"
|
||||
HOMEPAGE="https://www.intenct.nl/projects/django-allauth/"
|
||||
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
IUSE=""
|
||||
|
||||
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
|
||||
RDEPEND="dev-python/django[${PYTHON_USEDEP}]
|
||||
dev-python/python3-openid[${PYTHON_USEDEP}]
|
||||
dev-python/requests-oauthlib[${PYTHON_USEDEP}]
|
||||
dev-python/requests[${PYTHON_USEDEP}]"
|
||||
|
||||
DOCS=( README.rst AUTHORS ChangeLog.rst )
|
10
dev-python/django-allauth/metadata.xml
Normal file
10
dev-python/django-allauth/metadata.xml
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>hanno@gentoo.org</email>
|
||||
</maintainer>
|
||||
<upstream>
|
||||
<remote-id type="pypi">django-allauth</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python3_{7,8} )
|
||||
PYTHON_COMPAT=( python3_{7,8,9} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python3_{7,8} )
|
||||
PYTHON_COMPAT=( python3_{7,8,9} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python3_{7,8} )
|
||||
PYTHON_COMPAT=( python3_{7,8,9} )
|
||||
DISTUTILS_USE_SETUPTOOLS=rdepend
|
||||
inherit distutils-r1
|
||||
|
||||
|
@ -28,7 +28,8 @@ RDEPEND="
|
|||
dev-python/flufl-bounce[${PYTHON_USEDEP}]
|
||||
>=dev-python/flufl-i18n-2.0.1[${PYTHON_USEDEP}]
|
||||
>=dev-python/flufl-lock-3.1[${PYTHON_USEDEP}]
|
||||
>=dev-python/importlib_resources-1.5.0[${PYTHON_USEDEP}]
|
||||
$(python_gen_cond_dep 'dev-python/importlib_resources[${PYTHON_USEDEP}]' python3_7)
|
||||
$(python_gen_cond_dep 'dev-python/importlib_resources[${PYTHON_USEDEP}]' python3_8)
|
||||
www-servers/gunicorn[${PYTHON_USEDEP}]
|
||||
dev-python/lazr-config[${PYTHON_USEDEP}]
|
||||
>=dev-python/python-dateutil-2.0[${PYTHON_USEDEP}]
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python3_{7,8} )
|
||||
PYTHON_COMPAT=( python3_{7,8,9} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue