Compare commits
5 commits
ea9b7d7446
...
205e29c99d
Author | SHA1 | Date | |
---|---|---|---|
Alarig Le Lay | 205e29c99d | ||
Alarig Le Lay | ec0d25ce97 | ||
Alarig Le Lay | be3d8bafef | ||
Alarig Le Lay | 58b2aab079 | ||
Alarig Le Lay | c87d16f1f2 |
1
dev-python/cmarkgfm/Manifest
Normal file
1
dev-python/cmarkgfm/Manifest
Normal file
|
@ -0,0 +1 @@
|
||||||
|
DIST cmarkgfm-2022.10.27.gh.tar.gz 11855 BLAKE2B 550c61f07908a919abc43bd8b8bb751cec7d8963cb3e8d725ce14597388754aa1dfcf141d6fc88ababfe9b981be0d36b495931afef5da3806b17bddde377fc29 SHA512 18a6a0a993c2663c6f6f19ac5ff51bf715a359ca415c6abad6a49d6cf8e749acfbe122a680122185da0ecf3cb5337876c316863c1f456744e6067f5947589c27
|
32
dev-python/cmarkgfm/cmarkgfm-2022.10.27.ebuild
Normal file
32
dev-python/cmarkgfm/cmarkgfm-2022.10.27.ebuild
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
# Copyright 1999-2024 Gentoo Authors
|
||||||
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
|
||||||
|
EAPI=8
|
||||||
|
|
||||||
|
PYTHON_COMPAT=( python3_{10..11} pypy3 )
|
||||||
|
DISTUTILS_USE_PEP517=setuptools
|
||||||
|
|
||||||
|
inherit distutils-r1 edos2unix
|
||||||
|
|
||||||
|
DESCRIPTION="Python bindings for GitHub's cmark"
|
||||||
|
HOMEPAGE="https://github.com/theacodes/cmarkgfm"
|
||||||
|
SRC_URI="https://github.com/theacodes/cmarkgfm/archive/refs/tags/${PV}.tar.gz -> ${P}.gh.tar.gz"
|
||||||
|
|
||||||
|
LICENSE="MIT"
|
||||||
|
SLOT="0"
|
||||||
|
KEYWORDS="~amd64"
|
||||||
|
|
||||||
|
RDEPEND="
|
||||||
|
app-text/cmark-gfm
|
||||||
|
$(python_gen_cond_dep 'dev-python/cffi[${PYTHON_USEDEP}]' 'python*')
|
||||||
|
"
|
||||||
|
DEPEND="${RDEPEND}"
|
||||||
|
|
||||||
|
PATCHES=( "${FILESDIR}/${PN}-0.6.0-use-system-cmark-gfm.patch" )
|
||||||
|
|
||||||
|
src_prepare() {
|
||||||
|
edos2unix src/cmarkgfm/build_cmark.py
|
||||||
|
default
|
||||||
|
}
|
||||||
|
|
||||||
|
distutils_enable_tests pytest
|
|
@ -0,0 +1,47 @@
|
||||||
|
--- a/src/cmarkgfm/build_cmark.py
|
||||||
|
+++ b/src/cmarkgfm/build_cmark.py
|
||||||
|
@@ -8,12 +8,8 @@
|
||||||
|
import cffi
|
||||||
|
|
||||||
|
|
||||||
|
-# Get the directory for the cmark source files. It's under the package root
|
||||||
|
-# as /third_party/cmark/src
|
||||||
|
HERE = os.path.dirname(os.path.abspath(__file__))
|
||||||
|
PACKAGE_ROOT = os.path.abspath(os.path.join(HERE, '../../'))
|
||||||
|
-SRC_DIR = os.path.join(PACKAGE_ROOT, 'third_party/cmark/src')
|
||||||
|
-EXTENSIONS_SRC_DIR = os.path.join(PACKAGE_ROOT, 'third_party/cmark/extensions')
|
||||||
|
UNIX_GENERATED_SRC_DIR = os.path.join(PACKAGE_ROOT, 'generated', 'unix')
|
||||||
|
WIN_GENERATED_SRC_DIR = os.path.join(PACKAGE_ROOT, 'generated', 'windows')
|
||||||
|
|
||||||
|
@@ -27,20 +23,6 @@
|
||||||
|
CMARK_MODULE_H = fh.read()
|
||||||
|
|
||||||
|
|
||||||
|
-def _get_sources(dir, exclude=set()):
|
||||||
|
- sources = glob.iglob(os.path.join(dir, '*.c'))
|
||||||
|
- return sorted([
|
||||||
|
- os.path.relpath(path, start=PACKAGE_ROOT)
|
||||||
|
- for path in
|
||||||
|
- sources
|
||||||
|
- if os.path.basename(path) not in exclude
|
||||||
|
- ])
|
||||||
|
-
|
||||||
|
-
|
||||||
|
-SOURCES = _get_sources(SRC_DIR, exclude=set(['main.c']))
|
||||||
|
-SOURCES.extend(_get_sources(EXTENSIONS_SRC_DIR))
|
||||||
|
-
|
||||||
|
-
|
||||||
|
def _compiler_type():
|
||||||
|
"""
|
||||||
|
Gets the compiler type from distutils. On Windows with MSVC it will be
|
||||||
|
@@ -76,8 +58,8 @@
|
||||||
|
ffibuilder.set_source(
|
||||||
|
'cmarkgfm._cmark',
|
||||||
|
CMARK_MODULE_H,
|
||||||
|
- sources=SOURCES,
|
||||||
|
- include_dirs=[SRC_DIR, EXTENSIONS_SRC_DIR, GENERATED_SRC_DIR],
|
||||||
|
+ include_dirs=[GENERATED_SRC_DIR],
|
||||||
|
+ libraries=["cmark-gfm", "cmark-gfm-extensions"],
|
||||||
|
extra_compile_args=EXTRA_COMPILE_ARGS
|
||||||
|
)
|
||||||
|
|
13
dev-python/cmarkgfm/metadata.xml
Normal file
13
dev-python/cmarkgfm/metadata.xml
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
|
||||||
|
<pkgmetadata>
|
||||||
|
<maintainer type="person">
|
||||||
|
<email>lssndrbarbieri@gmail.com</email>
|
||||||
|
<name>Alessandro Barbieri</name>
|
||||||
|
</maintainer>
|
||||||
|
<upstream>
|
||||||
|
<bugs-to>https://github.com/theacodes/cmarkgfm/issues</bugs-to>
|
||||||
|
<remote-id type="github">theacodes/cmarkgfm</remote-id>
|
||||||
|
<remote-id type="pypi">cmarkgfm</remote-id>
|
||||||
|
</upstream>
|
||||||
|
</pkgmetadata>
|
1
dev-python/social-auth-app-django/Manifest
Normal file
1
dev-python/social-auth-app-django/Manifest
Normal file
|
@ -0,0 +1 @@
|
||||||
|
DIST social-app-django-5.0.0.tar.gz 27352 BLAKE2B d5fd35b1e5f9bcfcb450b82a1bdddf59c2148e79455873dfb1f6310c0abba307664278814798af72dd5b923916b618401f81b57fbf625bbd00b732919a41d877 SHA512 86de9c392e1f942709c44ab6aa1151cb236432837319309f966efa64c2bf558e23a3e9241c5e4e923d0bd7cee077a1096a34b417b57ac4c84501a6b17f328af6
|
21
dev-python/social-auth-app-django/metadata.xml
Normal file
21
dev-python/social-auth-app-django/metadata.xml
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||||
|
<pkgmetadata>
|
||||||
|
<maintainer type="person">
|
||||||
|
<email>spiderx@spiderx.dp.ua</email>
|
||||||
|
<name>Vladimir Pavljuchenkov</name>
|
||||||
|
</maintainer>
|
||||||
|
<maintainer type="project">
|
||||||
|
<email>proxy-maint@gentoo.org</email>
|
||||||
|
<name>Proxy Maintainers</name>
|
||||||
|
</maintainer>
|
||||||
|
<longdescription lang="en">
|
||||||
|
This is the Django component of the python-social-auth ecosystem,
|
||||||
|
it implements the needed functionality to integrate social-auth-core
|
||||||
|
in a Django based project.
|
||||||
|
</longdescription>
|
||||||
|
<upstream>
|
||||||
|
<remote-id type="github">python-social-auth/social-app-django</remote-id>
|
||||||
|
<remote-id type="pypi">social-auth-app-django</remote-id>
|
||||||
|
</upstream>
|
||||||
|
</pkgmetadata>
|
|
@ -0,0 +1,29 @@
|
||||||
|
# Copyright 1999-2022 Gentoo Authors
|
||||||
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
|
||||||
|
EAPI=8
|
||||||
|
|
||||||
|
DISTUTILS_USE_PEP517=setuptools
|
||||||
|
PYTHON_COMPAT=( python3_{10..12} )
|
||||||
|
|
||||||
|
inherit distutils-r1
|
||||||
|
|
||||||
|
MY_PN="${PN//-auth/}"
|
||||||
|
MY_P="${MY_PN}-${PV}"
|
||||||
|
|
||||||
|
DESCRIPTION="Python Social Auth - Application - Django"
|
||||||
|
HOMEPAGE="https://github.com/python-social-auth/social-app-django"
|
||||||
|
SRC_URI="https://github.com/python-social-auth/${MY_PN}/archive/${PV}.tar.gz -> ${MY_P}.tar.gz"
|
||||||
|
|
||||||
|
S="${WORKDIR}/${MY_P}"
|
||||||
|
LICENSE="BSD"
|
||||||
|
SLOT="0"
|
||||||
|
KEYWORDS="~amd64"
|
||||||
|
|
||||||
|
RDEPEND="dev-python/social-auth-core[${PYTHON_USEDEP}]"
|
||||||
|
|
||||||
|
distutils_enable_tests pytest
|
||||||
|
|
||||||
|
python_test() {
|
||||||
|
"${PYTHON}" manage.py test -v2 || die "tests failed with ${EPYTHON}"
|
||||||
|
}
|
1
dev-python/social-auth-core/Manifest
Normal file
1
dev-python/social-auth-core/Manifest
Normal file
|
@ -0,0 +1 @@
|
||||||
|
DIST social-core-4.2.0.tar.gz 193508 BLAKE2B 17aad9b12b49176bdd958995240121f66c664da97c2b8a53405fc067ee27174fc9c7ba504ef6026981c7d4286a8796f3ff05a2e2ebae8d038aa81d20e3c8234c SHA512 17fc36dfca6aabce9dbf622f6b2e6ce4eb1577d4df7b4a2b85a67b1131a5a2970b5a0ac4462bf5600ef62419da5e262955b2a2e00ec9bd222a7c2700f6199f64
|
21
dev-python/social-auth-core/metadata.xml
Normal file
21
dev-python/social-auth-core/metadata.xml
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||||
|
<pkgmetadata>
|
||||||
|
<maintainer type="person">
|
||||||
|
<email>spiderx@spiderx.dp.ua</email>
|
||||||
|
<name>Vladimir Pavljuchenkov</name>
|
||||||
|
</maintainer>
|
||||||
|
<maintainer type="project">
|
||||||
|
<email>proxy-maint@gentoo.org</email>
|
||||||
|
<name>Proxy Maintainers</name>
|
||||||
|
</maintainer>
|
||||||
|
<longdescription lang="en">
|
||||||
|
Python Social Auth is an easy to setup social authentication and
|
||||||
|
registration mechanism with support for several frameworks and
|
||||||
|
auth providers.
|
||||||
|
</longdescription>
|
||||||
|
<upstream>
|
||||||
|
<remote-id type="github">python-social-auth/social-core</remote-id>
|
||||||
|
<remote-id type="pypi">social-auth-core</remote-id>
|
||||||
|
</upstream>
|
||||||
|
</pkgmetadata>
|
60
dev-python/social-auth-core/social-auth-core-4.2.0.ebuild
Normal file
60
dev-python/social-auth-core/social-auth-core-4.2.0.ebuild
Normal file
|
@ -0,0 +1,60 @@
|
||||||
|
# Copyright 1999-2022 Gentoo Authors
|
||||||
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
|
||||||
|
EAPI=8
|
||||||
|
|
||||||
|
DISTUTILS_USE_PEP517=setuptools
|
||||||
|
PYTHON_COMPAT=( python3_{10..12} )
|
||||||
|
|
||||||
|
inherit distutils-r1 optfeature
|
||||||
|
|
||||||
|
MY_PN="${PN//-auth/}"
|
||||||
|
MY_P="${MY_PN}-${PV}"
|
||||||
|
|
||||||
|
DESCRIPTION="Python Social Auth - Core"
|
||||||
|
HOMEPAGE="https://github.com/python-social-auth/social-core"
|
||||||
|
SRC_URI="https://github.com/python-social-auth/${MY_PN}/archive/${PV}.tar.gz -> ${MY_P}.tar.gz"
|
||||||
|
|
||||||
|
S="${WORKDIR}/${MY_P}"
|
||||||
|
LICENSE="BSD"
|
||||||
|
SLOT="0"
|
||||||
|
KEYWORDS="~amd64"
|
||||||
|
|
||||||
|
RDEPEND="dev-python/cryptography[${PYTHON_USEDEP}]
|
||||||
|
dev-python/defusedxml[${PYTHON_USEDEP}]
|
||||||
|
dev-python/oauthlib[${PYTHON_USEDEP}]
|
||||||
|
dev-python/pyjwt[${PYTHON_USEDEP}]
|
||||||
|
dev-python/python3-openid[${PYTHON_USEDEP}]
|
||||||
|
dev-python/requests[${PYTHON_USEDEP}]
|
||||||
|
dev-python/requests-oauthlib[${PYTHON_USEDEP}]"
|
||||||
|
BDEPEND="test? ( dev-python/httpretty[${PYTHON_USEDEP}]
|
||||||
|
dev-python/python-jose[${PYTHON_USEDEP}]
|
||||||
|
dev-python/python3-saml[${PYTHON_USEDEP}] )"
|
||||||
|
|
||||||
|
distutils_enable_tests pytest
|
||||||
|
|
||||||
|
EPYTEST_DESELECT=(
|
||||||
|
# need network / credentials
|
||||||
|
social_core/tests/backends/test_livejournal.py::LiveJournalOpenIdTest::test_login
|
||||||
|
social_core/tests/backends/test_livejournal.py::LiveJournalOpenIdTest::test_partial_pipeline
|
||||||
|
social_core/tests/backends/test_ngpvan.py::NGPVANActionIDOpenIDTest::test_association_uid
|
||||||
|
social_core/tests/backends/test_ngpvan.py::NGPVANActionIDOpenIDTest::test_extra_data_phone
|
||||||
|
social_core/tests/backends/test_ngpvan.py::NGPVANActionIDOpenIDTest::test_login
|
||||||
|
social_core/tests/backends/test_ngpvan.py::NGPVANActionIDOpenIDTest::test_partial_pipeline
|
||||||
|
social_core/tests/backends/test_ngpvan.py::NGPVANActionIDOpenIDTest::test_user_data
|
||||||
|
social_core/tests/backends/test_steam.py::SteamOpenIdTest::test_login
|
||||||
|
social_core/tests/backends/test_steam.py::SteamOpenIdTest::test_partial_pipeline
|
||||||
|
social_core/tests/backends/test_ngpvan.py::NGPVANActionIDOpenIDTest::test_setup_request
|
||||||
|
social_core/tests/backends/test_steam.py::SteamOpenIdMissingSteamIdTest::test_login
|
||||||
|
social_core/tests/backends/test_steam.py::SteamOpenIdMissingSteamIdTest::test_partial_pipeline
|
||||||
|
)
|
||||||
|
|
||||||
|
python_install_all() {
|
||||||
|
distutils-r1_python_install_all
|
||||||
|
find "${ED}" -type d -name "tests" -exec rm -rv {} + || die "tests removing failed"
|
||||||
|
}
|
||||||
|
|
||||||
|
pkg_postinst() {
|
||||||
|
optfeature "integration with OpenID Connect" dev-python/python-jose
|
||||||
|
optfeature "integration with SAML" dev-python/python3-saml dev-python/lxml
|
||||||
|
}
|
17
metadata/md5-cache/dev-python/cmarkgfm-2022.10.27
Normal file
17
metadata/md5-cache/dev-python/cmarkgfm-2022.10.27
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
BDEPEND=test? ( app-text/cmark-gfm python_targets_python3_10? ( dev-python/cffi[python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_python3_11? ( dev-python/cffi[python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) >=dev-python/pytest-7.4.4[python_targets_pypy3(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_pypy3? ( dev-python/pypy3:= ) python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) >=dev-python/gpep517-15[python_targets_pypy3(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/setuptools-69.0.3[python_targets_pypy3(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?]
|
||||||
|
DEFINED_PHASES=compile configure install prepare test
|
||||||
|
DEPEND=app-text/cmark-gfm python_targets_python3_10? ( dev-python/cffi[python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_python3_11? ( dev-python/cffi[python_targets_python3_10(-)?,python_targets_python3_11(-)?] )
|
||||||
|
DESCRIPTION=Python bindings for GitHub's cmark
|
||||||
|
EAPI=8
|
||||||
|
HOMEPAGE=https://github.com/theacodes/cmarkgfm
|
||||||
|
INHERIT=distutils-r1 edos2unix
|
||||||
|
IUSE=test python_targets_pypy3 python_targets_python3_10 python_targets_python3_11
|
||||||
|
KEYWORDS=~amd64
|
||||||
|
LICENSE=MIT
|
||||||
|
RDEPEND=app-text/cmark-gfm python_targets_python3_10? ( dev-python/cffi[python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_python3_11? ( dev-python/cffi[python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_pypy3? ( dev-python/pypy3:= ) python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 )
|
||||||
|
REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_10 python_targets_python3_11 )
|
||||||
|
RESTRICT=!test? ( test )
|
||||||
|
SLOT=0
|
||||||
|
SRC_URI=https://github.com/theacodes/cmarkgfm/archive/refs/tags/2022.10.27.tar.gz -> cmarkgfm-2022.10.27.gh.tar.gz
|
||||||
|
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic e503ea5acc20410237ba33ec3f7c857d out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild d67e78a235f541871c7dfe4cf7931489 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 8b220bbce5c119fb1d4d5c2f5588f3ea python-r1 428f5c53276c2adc06a89108fc2f9f46 distutils-r1 ac3ce68c875c9b392338dcd64f7feb73 edos2unix 33e347e171066657f91f8b0c72ec8773
|
||||||
|
_md5_=ef224e37adff7cc602a1399edfd0e4d2
|
16
metadata/md5-cache/dev-python/social-auth-app-django-5.0.0
Normal file
16
metadata/md5-cache/dev-python/social-auth-app-django-5.0.0
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
BDEPEND=test? ( dev-python/social-auth-core[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?] >=dev-python/pytest-7.4.4[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?] ) python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) >=dev-python/gpep517-15[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?] >=dev-python/setuptools-69.0.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?]
|
||||||
|
DEFINED_PHASES=compile configure install prepare test
|
||||||
|
DESCRIPTION=Python Social Auth - Application - Django
|
||||||
|
EAPI=8
|
||||||
|
HOMEPAGE=https://github.com/python-social-auth/social-app-django
|
||||||
|
INHERIT=distutils-r1
|
||||||
|
IUSE=test python_targets_python3_10 python_targets_python3_11 python_targets_python3_12
|
||||||
|
KEYWORDS=~amd64
|
||||||
|
LICENSE=BSD
|
||||||
|
RDEPEND=dev-python/social-auth-core[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?] python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 )
|
||||||
|
REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 )
|
||||||
|
RESTRICT=!test? ( test )
|
||||||
|
SLOT=0
|
||||||
|
SRC_URI=https://github.com/python-social-auth/social-app-django/archive/5.0.0.tar.gz -> social-app-django-5.0.0.tar.gz
|
||||||
|
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic e503ea5acc20410237ba33ec3f7c857d out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild d67e78a235f541871c7dfe4cf7931489 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 8b220bbce5c119fb1d4d5c2f5588f3ea python-r1 428f5c53276c2adc06a89108fc2f9f46 distutils-r1 ac3ce68c875c9b392338dcd64f7feb73
|
||||||
|
_md5_=f9eb88a21f0cb5c59079716d97bffc18
|
16
metadata/md5-cache/dev-python/social-auth-core-4.2.0
Normal file
16
metadata/md5-cache/dev-python/social-auth-core-4.2.0
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
BDEPEND=test? ( dev-python/httpretty[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?] dev-python/python-jose[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?] dev-python/python3-saml[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?] ) test? ( dev-python/cryptography[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?] dev-python/defusedxml[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?] dev-python/oauthlib[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?] dev-python/pyjwt[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?] dev-python/python3-openid[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?] dev-python/requests[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?] dev-python/requests-oauthlib[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?] >=dev-python/pytest-7.4.4[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?] ) python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) >=dev-python/gpep517-15[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?] >=dev-python/setuptools-69.0.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?]
|
||||||
|
DEFINED_PHASES=compile configure install postinst prepare test
|
||||||
|
DESCRIPTION=Python Social Auth - Core
|
||||||
|
EAPI=8
|
||||||
|
HOMEPAGE=https://github.com/python-social-auth/social-core
|
||||||
|
INHERIT=distutils-r1 optfeature
|
||||||
|
IUSE=test python_targets_python3_10 python_targets_python3_11 python_targets_python3_12
|
||||||
|
KEYWORDS=~amd64
|
||||||
|
LICENSE=BSD
|
||||||
|
RDEPEND=dev-python/cryptography[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?] dev-python/defusedxml[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?] dev-python/oauthlib[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?] dev-python/pyjwt[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?] dev-python/python3-openid[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?] dev-python/requests[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?] dev-python/requests-oauthlib[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?] python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 )
|
||||||
|
REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 )
|
||||||
|
RESTRICT=!test? ( test )
|
||||||
|
SLOT=0
|
||||||
|
SRC_URI=https://github.com/python-social-auth/social-core/archive/4.2.0.tar.gz -> social-core-4.2.0.tar.gz
|
||||||
|
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic e503ea5acc20410237ba33ec3f7c857d out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild d67e78a235f541871c7dfe4cf7931489 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 8b220bbce5c119fb1d4d5c2f5588f3ea python-r1 428f5c53276c2adc06a89108fc2f9f46 distutils-r1 ac3ce68c875c9b392338dcd64f7feb73 optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54
|
||||||
|
_md5_=1ee70615f65fcf90cbfa790332038b2c
|
|
@ -3,13 +3,13 @@ DEFINED_PHASES=compile configure install prepare test
|
||||||
DESCRIPTION=Django project that contains default and url settings for Mailman3 Web Interface
|
DESCRIPTION=Django project that contains default and url settings for Mailman3 Web Interface
|
||||||
EAPI=7
|
EAPI=7
|
||||||
HOMEPAGE=https://pypi.org/project/mailman-web/
|
HOMEPAGE=https://pypi.org/project/mailman-web/
|
||||||
INHERIT=distutils-r1
|
INHERIT=distutils-r1 pypi
|
||||||
IUSE=mysql python_targets_python3_10 python_targets_python3_11
|
IUSE=mysql python_targets_python3_10 python_targets_python3_11
|
||||||
KEYWORDS=~amd64
|
KEYWORDS=~amd64
|
||||||
LICENSE=MIT
|
LICENSE=MIT
|
||||||
RDEPEND=mysql? ( dev-python/mysqlclient[python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) dev-python/cmarkgfm[python_targets_python3_10(-)?,python_targets_python3_11(-)?] net-mail/django-mailman3[python_targets_python3_10(-)?,python_targets_python3_11(-)?] net-mail/HyperKitty[python_targets_python3_10(-)?,python_targets_python3_11(-)?] net-mail/postorius[python_targets_python3_10(-)?,python_targets_python3_11(-)?] python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 )
|
RDEPEND=mysql? ( dev-python/mysqlclient[python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) dev-python/cmarkgfm[python_targets_python3_10(-)?,python_targets_python3_11(-)?] net-mail/django-mailman3[python_targets_python3_10(-)?,python_targets_python3_11(-)?] net-mail/HyperKitty[python_targets_python3_10(-)?,python_targets_python3_11(-)?] net-mail/postorius[python_targets_python3_10(-)?,python_targets_python3_11(-)?] python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 )
|
||||||
REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 )
|
REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 )
|
||||||
SLOT=0
|
SLOT=0
|
||||||
SRC_URI=mirror://pypi/m/mailman-web/mailman-web-0.0.6.tar.gz
|
SRC_URI=https://files.pythonhosted.org/packages/source/m/mailman-web/mailman-web-0.0.6.tar.gz
|
||||||
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic e503ea5acc20410237ba33ec3f7c857d out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild d67e78a235f541871c7dfe4cf7931489 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 eapi8-dosym 5ac4857ad078256d939c44f7c64197a9 python-utils-r1 8b220bbce5c119fb1d4d5c2f5588f3ea python-r1 428f5c53276c2adc06a89108fc2f9f46 distutils-r1 ac3ce68c875c9b392338dcd64f7feb73
|
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic e503ea5acc20410237ba33ec3f7c857d out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild d67e78a235f541871c7dfe4cf7931489 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 eapi8-dosym 5ac4857ad078256d939c44f7c64197a9 python-utils-r1 8b220bbce5c119fb1d4d5c2f5588f3ea python-r1 428f5c53276c2adc06a89108fc2f9f46 distutils-r1 ac3ce68c875c9b392338dcd64f7feb73 pypi 2eecb475512bc76e5ea9192a681b9e6b
|
||||||
_md5_=9507e66a5d84a5bbc56e02abc1333dc0
|
_md5_=53790b82d48f5abd4c32f6d034fcc79d
|
||||||
|
|
|
@ -7,9 +7,9 @@ INHERIT=distutils-r1 pypi
|
||||||
IUSE=mysql python_targets_python3_10 python_targets_python3_11 python_targets_python3_12
|
IUSE=mysql python_targets_python3_10 python_targets_python3_11 python_targets_python3_12
|
||||||
KEYWORDS=~amd64
|
KEYWORDS=~amd64
|
||||||
LICENSE=MIT
|
LICENSE=MIT
|
||||||
RDEPEND=dev-python/django[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?] dev-python/whoosh[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?] net-mail/HyperKitty[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?] net-mail/postorius[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?] python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 )
|
RDEPEND=>=dev-python/django-4.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?] <dev-python/django-4.3 dev-python/whoosh[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?] net-mail/HyperKitty[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?] net-mail/postorius[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?] python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 )
|
||||||
REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 )
|
REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 )
|
||||||
SLOT=0
|
SLOT=0
|
||||||
SRC_URI=https://files.pythonhosted.org/packages/source/m/mailman-web/mailman_web-0.0.9.tar.gz
|
SRC_URI=https://files.pythonhosted.org/packages/source/m/mailman-web/mailman_web-0.0.9.tar.gz
|
||||||
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic e503ea5acc20410237ba33ec3f7c857d out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild d67e78a235f541871c7dfe4cf7931489 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 8b220bbce5c119fb1d4d5c2f5588f3ea python-r1 428f5c53276c2adc06a89108fc2f9f46 distutils-r1 ac3ce68c875c9b392338dcd64f7feb73 pypi 2eecb475512bc76e5ea9192a681b9e6b
|
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic e503ea5acc20410237ba33ec3f7c857d out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild d67e78a235f541871c7dfe4cf7931489 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 8b220bbce5c119fb1d4d5c2f5588f3ea python-r1 428f5c53276c2adc06a89108fc2f9f46 distutils-r1 ac3ce68c875c9b392338dcd64f7feb73 pypi 2eecb475512bc76e5ea9192a681b9e6b
|
||||||
_md5_=188cdb6c98142e96b22122837ec6da60
|
_md5_=ed039386cc6315c595f4fd6818a054e0
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
DEFINED_PHASES=install postinst setup
|
DEFINED_PHASES=install postinst setup
|
||||||
DEPEND=acct-group/netbox acct-user/netbox python_single_target_python3_11? ( dev-lang/python:3.11 ) python_single_target_python3_12? ( dev-lang/python:3.12 ) python_single_target_python3_11? ( >=dev-python/django-3.2.12[python_targets_python3_11(-)] <dev-python/django-4[python_targets_python3_11(-)] >=dev-python/django-cors-headers-3.11.0[python_targets_python3_11(-)] >=dev-python/django-debug-toolbar-3.2.4[python_targets_python3_11(-)] >=dev-python/django-filter-21.1[python_targets_python3_11(-)] >=dev-python/django-graphiql-debug-toolbar-0.2.0[python_targets_python3_11(-)] >=dev-python/django-mptt-0.13.4[python_targets_python3_11(-)] >=dev-python/django-pglocks-1.0.4[python_targets_python3_11(-)] >=dev-python/django-prometheus-2.2.0[python_targets_python3_11(-)] >=dev-python/django-redis-5.2.0[python_targets_python3_11(-)] >=dev-python/django-rq-2.5.1[python_targets_python3_11(-)] >=dev-python/django-tables2-2.4.1[python_targets_python3_11(-)] >=dev-python/django-taggit-2.1.0[python_targets_python3_11(-)] >=dev-python/django-timezone-field-5.0[python_targets_python3_11(-)] >=dev-python/djangorestframework-3.12.4[python_targets_python3_11(-)] >=dev-python/drf-yasg-1.20.0[python_targets_python3_11(-),validation] >=dev-python/graphene-django-2.15.0[python_targets_python3_11(-)] >=www-servers/gunicorn-20.1.0[python_targets_python3_11(-)] >=dev-python/jinja-3.0.3[python_targets_python3_11(-)] >=dev-python/markdown-3.3.6[python_targets_python3_11(-)] >=dev-python/markdown-include-0.6.0[python_targets_python3_11(-)] >=dev-python/mkdocs-material-8.2.8[python_targets_python3_11(-)] >=dev-python/netaddr-0.8.0[python_targets_python3_11(-)] >=dev-python/pillow-9.0.1[python_targets_python3_11(-)] dev-python/psycopg:2[python_targets_python3_11(-)] >=dev-python/pyyaml-6.0[python_targets_python3_11(-)] >=dev-python/svgwrite-1.4.2[python_targets_python3_11(-)] >=dev-python/tablib-3.2.0[python_targets_python3_11(-)] >=dev-python/tzdata-2021.5[python_targets_python3_11(-)] >=dev-python/jsonschema-3.2.0[python_targets_python3_11(-)] ldap? ( >=dev-python/django-auth-ldap-4.1.0[python_targets_python3_11(-)] ) ) python_single_target_python3_12? ( >=dev-python/django-3.2.12[python_targets_python3_12(-)] <dev-python/django-4[python_targets_python3_12(-)] >=dev-python/django-cors-headers-3.11.0[python_targets_python3_12(-)] >=dev-python/django-debug-toolbar-3.2.4[python_targets_python3_12(-)] >=dev-python/django-filter-21.1[python_targets_python3_12(-)] >=dev-python/django-graphiql-debug-toolbar-0.2.0[python_targets_python3_12(-)] >=dev-python/django-mptt-0.13.4[python_targets_python3_12(-)] >=dev-python/django-pglocks-1.0.4[python_targets_python3_12(-)] >=dev-python/django-prometheus-2.2.0[python_targets_python3_12(-)] >=dev-python/django-redis-5.2.0[python_targets_python3_12(-)] >=dev-python/django-rq-2.5.1[python_targets_python3_12(-)] >=dev-python/django-tables2-2.4.1[python_targets_python3_12(-)] >=dev-python/django-taggit-2.1.0[python_targets_python3_12(-)] >=dev-python/django-timezone-field-5.0[python_targets_python3_12(-)] >=dev-python/djangorestframework-3.12.4[python_targets_python3_12(-)] >=dev-python/drf-yasg-1.20.0[python_targets_python3_12(-),validation] >=dev-python/graphene-django-2.15.0[python_targets_python3_12(-)] >=www-servers/gunicorn-20.1.0[python_targets_python3_12(-)] >=dev-python/jinja-3.0.3[python_targets_python3_12(-)] >=dev-python/markdown-3.3.6[python_targets_python3_12(-)] >=dev-python/markdown-include-0.6.0[python_targets_python3_12(-)] >=dev-python/mkdocs-material-8.2.8[python_targets_python3_12(-)] >=dev-python/netaddr-0.8.0[python_targets_python3_12(-)] >=dev-python/pillow-9.0.1[python_targets_python3_12(-)] dev-python/psycopg:2[python_targets_python3_12(-)] >=dev-python/pyyaml-6.0[python_targets_python3_12(-)] >=dev-python/svgwrite-1.4.2[python_targets_python3_12(-)] >=dev-python/tablib-3.2.0[python_targets_python3_12(-)] >=dev-python/tzdata-2021.5[python_targets_python3_12(-)] >=dev-python/jsonschema-3.2.0[python_targets_python3_12(-)] ldap? ( >=dev-python/django-auth-ldap-4.1.0[python_targets_python3_12(-)] ) )
|
DEPEND=acct-group/netbox acct-user/netbox python_single_target_python3_11? ( dev-lang/python:3.11 ) python_single_target_python3_12? ( dev-lang/python:3.12 ) python_single_target_python3_11? ( >=dev-python/django-3.2.12[python_targets_python3_11(-)] <dev-python/django-4[python_targets_python3_11(-)] >=dev-python/django-cors-headers-3.11.0[python_targets_python3_11(-)] >=dev-python/django-debug-toolbar-3.2.4[python_targets_python3_11(-)] >=dev-python/django-filter-21.1[python_targets_python3_11(-)] >=dev-python/django-graphiql-debug-toolbar-0.2.0[python_targets_python3_11(-)] >=dev-python/django-mptt-0.13.4[python_targets_python3_11(-)] >=dev-python/django-pglocks-1.0.4[python_targets_python3_11(-)] >=dev-python/django-prometheus-2.2.0[python_targets_python3_11(-)] >=dev-python/django-redis-5.2.0[python_targets_python3_11(-)] >=dev-python/django-rq-2.5.1[python_targets_python3_11(-)] >=dev-python/django-tables2-2.4.1[python_targets_python3_11(-)] >=dev-python/django-taggit-2.1.0[python_targets_python3_11(-)] >=dev-python/django-timezone-field-5.0[python_targets_python3_11(-)] >=dev-python/djangorestframework-3.12.4[python_targets_python3_11(-)] >=dev-python/drf-yasg-1.20.0[python_targets_python3_11(-),validation] >=dev-python/graphene-django-2.15.0[python_targets_python3_11(-)] >=www-servers/gunicorn-20.1.0[python_targets_python3_11(-)] >=dev-python/jinja-3.0.3[python_targets_python3_11(-)] >=dev-python/markdown-3.3.6[python_targets_python3_11(-)] >=dev-python/markdown-include-0.6.0[python_targets_python3_11(-)] >=dev-python/mkdocs-material-8.2.8[python_targets_python3_11(-)] >=dev-python/netaddr-0.8.0[python_targets_python3_11(-)] >=dev-python/pillow-9.0.1[python_targets_python3_11(-)] dev-python/psycopg:2[python_targets_python3_11(-)] >=dev-python/pyyaml-6.0[python_targets_python3_11(-)] >=dev-python/svgwrite-1.4.2[python_targets_python3_11(-)] >=dev-python/tablib-3.2.0[python_targets_python3_11(-)] >=dev-python/tzdata-2021.5[python_targets_python3_11(-)] >=dev-python/jsonschema-3.2.0[python_targets_python3_11(-)] ldap? ( >=dev-python/django-auth-ldap-4.1.0[python_targets_python3_11(-)] ) dev-python/social-auth-app-django[python_targets_python3_11(-)] ) python_single_target_python3_12? ( >=dev-python/django-3.2.12[python_targets_python3_12(-)] <dev-python/django-4[python_targets_python3_12(-)] >=dev-python/django-cors-headers-3.11.0[python_targets_python3_12(-)] >=dev-python/django-debug-toolbar-3.2.4[python_targets_python3_12(-)] >=dev-python/django-filter-21.1[python_targets_python3_12(-)] >=dev-python/django-graphiql-debug-toolbar-0.2.0[python_targets_python3_12(-)] >=dev-python/django-mptt-0.13.4[python_targets_python3_12(-)] >=dev-python/django-pglocks-1.0.4[python_targets_python3_12(-)] >=dev-python/django-prometheus-2.2.0[python_targets_python3_12(-)] >=dev-python/django-redis-5.2.0[python_targets_python3_12(-)] >=dev-python/django-rq-2.5.1[python_targets_python3_12(-)] >=dev-python/django-tables2-2.4.1[python_targets_python3_12(-)] >=dev-python/django-taggit-2.1.0[python_targets_python3_12(-)] >=dev-python/django-timezone-field-5.0[python_targets_python3_12(-)] >=dev-python/djangorestframework-3.12.4[python_targets_python3_12(-)] >=dev-python/drf-yasg-1.20.0[python_targets_python3_12(-),validation] >=dev-python/graphene-django-2.15.0[python_targets_python3_12(-)] >=www-servers/gunicorn-20.1.0[python_targets_python3_12(-)] >=dev-python/jinja-3.0.3[python_targets_python3_12(-)] >=dev-python/markdown-3.3.6[python_targets_python3_12(-)] >=dev-python/markdown-include-0.6.0[python_targets_python3_12(-)] >=dev-python/mkdocs-material-8.2.8[python_targets_python3_12(-)] >=dev-python/netaddr-0.8.0[python_targets_python3_12(-)] >=dev-python/pillow-9.0.1[python_targets_python3_12(-)] dev-python/psycopg:2[python_targets_python3_12(-)] >=dev-python/pyyaml-6.0[python_targets_python3_12(-)] >=dev-python/svgwrite-1.4.2[python_targets_python3_12(-)] >=dev-python/tablib-3.2.0[python_targets_python3_12(-)] >=dev-python/tzdata-2021.5[python_targets_python3_12(-)] >=dev-python/jsonschema-3.2.0[python_targets_python3_12(-)] ldap? ( >=dev-python/django-auth-ldap-4.1.0[python_targets_python3_12(-)] ) dev-python/social-auth-app-django[python_targets_python3_12(-)] )
|
||||||
DESCRIPTION=IP address and data center infrastructure management tool
|
DESCRIPTION=IP address and data center infrastructure management tool
|
||||||
EAPI=8
|
EAPI=8
|
||||||
HOMEPAGE=https://github.com/netbox-community/netbox
|
HOMEPAGE=https://github.com/netbox-community/netbox
|
||||||
|
@ -7,9 +7,9 @@ INHERIT=python-single-r1 readme.gentoo-r1
|
||||||
IUSE=ldap python_single_target_python3_11 python_single_target_python3_12
|
IUSE=ldap python_single_target_python3_11 python_single_target_python3_12
|
||||||
KEYWORDS=~amd64
|
KEYWORDS=~amd64
|
||||||
LICENSE=Apache-2.0
|
LICENSE=Apache-2.0
|
||||||
RDEPEND=acct-group/netbox acct-user/netbox python_single_target_python3_11? ( dev-lang/python:3.11 ) python_single_target_python3_12? ( dev-lang/python:3.12 ) python_single_target_python3_11? ( >=dev-python/django-3.2.12[python_targets_python3_11(-)] <dev-python/django-4[python_targets_python3_11(-)] >=dev-python/django-cors-headers-3.11.0[python_targets_python3_11(-)] >=dev-python/django-debug-toolbar-3.2.4[python_targets_python3_11(-)] >=dev-python/django-filter-21.1[python_targets_python3_11(-)] >=dev-python/django-graphiql-debug-toolbar-0.2.0[python_targets_python3_11(-)] >=dev-python/django-mptt-0.13.4[python_targets_python3_11(-)] >=dev-python/django-pglocks-1.0.4[python_targets_python3_11(-)] >=dev-python/django-prometheus-2.2.0[python_targets_python3_11(-)] >=dev-python/django-redis-5.2.0[python_targets_python3_11(-)] >=dev-python/django-rq-2.5.1[python_targets_python3_11(-)] >=dev-python/django-tables2-2.4.1[python_targets_python3_11(-)] >=dev-python/django-taggit-2.1.0[python_targets_python3_11(-)] >=dev-python/django-timezone-field-5.0[python_targets_python3_11(-)] >=dev-python/djangorestframework-3.12.4[python_targets_python3_11(-)] >=dev-python/drf-yasg-1.20.0[python_targets_python3_11(-),validation] >=dev-python/graphene-django-2.15.0[python_targets_python3_11(-)] >=www-servers/gunicorn-20.1.0[python_targets_python3_11(-)] >=dev-python/jinja-3.0.3[python_targets_python3_11(-)] >=dev-python/markdown-3.3.6[python_targets_python3_11(-)] >=dev-python/markdown-include-0.6.0[python_targets_python3_11(-)] >=dev-python/mkdocs-material-8.2.8[python_targets_python3_11(-)] >=dev-python/netaddr-0.8.0[python_targets_python3_11(-)] >=dev-python/pillow-9.0.1[python_targets_python3_11(-)] dev-python/psycopg:2[python_targets_python3_11(-)] >=dev-python/pyyaml-6.0[python_targets_python3_11(-)] >=dev-python/svgwrite-1.4.2[python_targets_python3_11(-)] >=dev-python/tablib-3.2.0[python_targets_python3_11(-)] >=dev-python/tzdata-2021.5[python_targets_python3_11(-)] >=dev-python/jsonschema-3.2.0[python_targets_python3_11(-)] ldap? ( >=dev-python/django-auth-ldap-4.1.0[python_targets_python3_11(-)] ) ) python_single_target_python3_12? ( >=dev-python/django-3.2.12[python_targets_python3_12(-)] <dev-python/django-4[python_targets_python3_12(-)] >=dev-python/django-cors-headers-3.11.0[python_targets_python3_12(-)] >=dev-python/django-debug-toolbar-3.2.4[python_targets_python3_12(-)] >=dev-python/django-filter-21.1[python_targets_python3_12(-)] >=dev-python/django-graphiql-debug-toolbar-0.2.0[python_targets_python3_12(-)] >=dev-python/django-mptt-0.13.4[python_targets_python3_12(-)] >=dev-python/django-pglocks-1.0.4[python_targets_python3_12(-)] >=dev-python/django-prometheus-2.2.0[python_targets_python3_12(-)] >=dev-python/django-redis-5.2.0[python_targets_python3_12(-)] >=dev-python/django-rq-2.5.1[python_targets_python3_12(-)] >=dev-python/django-tables2-2.4.1[python_targets_python3_12(-)] >=dev-python/django-taggit-2.1.0[python_targets_python3_12(-)] >=dev-python/django-timezone-field-5.0[python_targets_python3_12(-)] >=dev-python/djangorestframework-3.12.4[python_targets_python3_12(-)] >=dev-python/drf-yasg-1.20.0[python_targets_python3_12(-),validation] >=dev-python/graphene-django-2.15.0[python_targets_python3_12(-)] >=www-servers/gunicorn-20.1.0[python_targets_python3_12(-)] >=dev-python/jinja-3.0.3[python_targets_python3_12(-)] >=dev-python/markdown-3.3.6[python_targets_python3_12(-)] >=dev-python/markdown-include-0.6.0[python_targets_python3_12(-)] >=dev-python/mkdocs-material-8.2.8[python_targets_python3_12(-)] >=dev-python/netaddr-0.8.0[python_targets_python3_12(-)] >=dev-python/pillow-9.0.1[python_targets_python3_12(-)] dev-python/psycopg:2[python_targets_python3_12(-)] >=dev-python/pyyaml-6.0[python_targets_python3_12(-)] >=dev-python/svgwrite-1.4.2[python_targets_python3_12(-)] >=dev-python/tablib-3.2.0[python_targets_python3_12(-)] >=dev-python/tzdata-2021.5[python_targets_python3_12(-)] >=dev-python/jsonschema-3.2.0[python_targets_python3_12(-)] ldap? ( >=dev-python/django-auth-ldap-4.1.0[python_targets_python3_12(-)] ) )
|
RDEPEND=acct-group/netbox acct-user/netbox python_single_target_python3_11? ( dev-lang/python:3.11 ) python_single_target_python3_12? ( dev-lang/python:3.12 ) python_single_target_python3_11? ( >=dev-python/django-3.2.12[python_targets_python3_11(-)] <dev-python/django-4[python_targets_python3_11(-)] >=dev-python/django-cors-headers-3.11.0[python_targets_python3_11(-)] >=dev-python/django-debug-toolbar-3.2.4[python_targets_python3_11(-)] >=dev-python/django-filter-21.1[python_targets_python3_11(-)] >=dev-python/django-graphiql-debug-toolbar-0.2.0[python_targets_python3_11(-)] >=dev-python/django-mptt-0.13.4[python_targets_python3_11(-)] >=dev-python/django-pglocks-1.0.4[python_targets_python3_11(-)] >=dev-python/django-prometheus-2.2.0[python_targets_python3_11(-)] >=dev-python/django-redis-5.2.0[python_targets_python3_11(-)] >=dev-python/django-rq-2.5.1[python_targets_python3_11(-)] >=dev-python/django-tables2-2.4.1[python_targets_python3_11(-)] >=dev-python/django-taggit-2.1.0[python_targets_python3_11(-)] >=dev-python/django-timezone-field-5.0[python_targets_python3_11(-)] >=dev-python/djangorestframework-3.12.4[python_targets_python3_11(-)] >=dev-python/drf-yasg-1.20.0[python_targets_python3_11(-),validation] >=dev-python/graphene-django-2.15.0[python_targets_python3_11(-)] >=www-servers/gunicorn-20.1.0[python_targets_python3_11(-)] >=dev-python/jinja-3.0.3[python_targets_python3_11(-)] >=dev-python/markdown-3.3.6[python_targets_python3_11(-)] >=dev-python/markdown-include-0.6.0[python_targets_python3_11(-)] >=dev-python/mkdocs-material-8.2.8[python_targets_python3_11(-)] >=dev-python/netaddr-0.8.0[python_targets_python3_11(-)] >=dev-python/pillow-9.0.1[python_targets_python3_11(-)] dev-python/psycopg:2[python_targets_python3_11(-)] >=dev-python/pyyaml-6.0[python_targets_python3_11(-)] >=dev-python/svgwrite-1.4.2[python_targets_python3_11(-)] >=dev-python/tablib-3.2.0[python_targets_python3_11(-)] >=dev-python/tzdata-2021.5[python_targets_python3_11(-)] >=dev-python/jsonschema-3.2.0[python_targets_python3_11(-)] ldap? ( >=dev-python/django-auth-ldap-4.1.0[python_targets_python3_11(-)] ) dev-python/social-auth-app-django[python_targets_python3_11(-)] ) python_single_target_python3_12? ( >=dev-python/django-3.2.12[python_targets_python3_12(-)] <dev-python/django-4[python_targets_python3_12(-)] >=dev-python/django-cors-headers-3.11.0[python_targets_python3_12(-)] >=dev-python/django-debug-toolbar-3.2.4[python_targets_python3_12(-)] >=dev-python/django-filter-21.1[python_targets_python3_12(-)] >=dev-python/django-graphiql-debug-toolbar-0.2.0[python_targets_python3_12(-)] >=dev-python/django-mptt-0.13.4[python_targets_python3_12(-)] >=dev-python/django-pglocks-1.0.4[python_targets_python3_12(-)] >=dev-python/django-prometheus-2.2.0[python_targets_python3_12(-)] >=dev-python/django-redis-5.2.0[python_targets_python3_12(-)] >=dev-python/django-rq-2.5.1[python_targets_python3_12(-)] >=dev-python/django-tables2-2.4.1[python_targets_python3_12(-)] >=dev-python/django-taggit-2.1.0[python_targets_python3_12(-)] >=dev-python/django-timezone-field-5.0[python_targets_python3_12(-)] >=dev-python/djangorestframework-3.12.4[python_targets_python3_12(-)] >=dev-python/drf-yasg-1.20.0[python_targets_python3_12(-),validation] >=dev-python/graphene-django-2.15.0[python_targets_python3_12(-)] >=www-servers/gunicorn-20.1.0[python_targets_python3_12(-)] >=dev-python/jinja-3.0.3[python_targets_python3_12(-)] >=dev-python/markdown-3.3.6[python_targets_python3_12(-)] >=dev-python/markdown-include-0.6.0[python_targets_python3_12(-)] >=dev-python/mkdocs-material-8.2.8[python_targets_python3_12(-)] >=dev-python/netaddr-0.8.0[python_targets_python3_12(-)] >=dev-python/pillow-9.0.1[python_targets_python3_12(-)] dev-python/psycopg:2[python_targets_python3_12(-)] >=dev-python/pyyaml-6.0[python_targets_python3_12(-)] >=dev-python/svgwrite-1.4.2[python_targets_python3_12(-)] >=dev-python/tablib-3.2.0[python_targets_python3_12(-)] >=dev-python/tzdata-2021.5[python_targets_python3_12(-)] >=dev-python/jsonschema-3.2.0[python_targets_python3_12(-)] ldap? ( >=dev-python/django-auth-ldap-4.1.0[python_targets_python3_12(-)] ) dev-python/social-auth-app-django[python_targets_python3_12(-)] )
|
||||||
REQUIRED_USE=^^ ( python_single_target_python3_11 python_single_target_python3_12 )
|
REQUIRED_USE=^^ ( python_single_target_python3_11 python_single_target_python3_12 )
|
||||||
SLOT=0
|
SLOT=0
|
||||||
SRC_URI=https://github.com/netbox-community/netbox/archive/v3.1.11.tar.gz -> netbox-3.1.11.tar.gz
|
SRC_URI=https://github.com/netbox-community/netbox/archive/v3.1.11.tar.gz -> netbox-3.1.11.tar.gz
|
||||||
_eclasses_=multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 python-utils-r1 8b220bbce5c119fb1d4d5c2f5588f3ea python-single-r1 75118e916668a74c660a13b0ecb22562 readme.gentoo-r1 b8c7a61664027641d79dcfc04bd366f4
|
_eclasses_=multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 python-utils-r1 8b220bbce5c119fb1d4d5c2f5588f3ea python-single-r1 75118e916668a74c660a13b0ecb22562 readme.gentoo-r1 b8c7a61664027641d79dcfc04bd366f4
|
||||||
_md5_=31aa29572d9930d8f8f629ad7bb41b62
|
_md5_=50190c82802cf318c9d776a5a5988289
|
||||||
|
|
|
@ -4,18 +4,17 @@
|
||||||
EAPI=7
|
EAPI=7
|
||||||
|
|
||||||
PYTHON_COMPAT=( python3_{9..11} )
|
PYTHON_COMPAT=( python3_{9..11} )
|
||||||
inherit distutils-r1
|
inherit distutils-r1 pypi
|
||||||
|
|
||||||
DESCRIPTION="Django project that contains default and url settings for Mailman3 Web Interface"
|
DESCRIPTION="Django project that contains default and url settings for Mailman3 Web Interface"
|
||||||
HOMEPAGE="https://pypi.org/project/mailman-web/"
|
HOMEPAGE="https://pypi.org/project/mailman-web/"
|
||||||
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
|
SRC_URI="$(pypi_sdist_url --no-normalize ${MY_PN})"
|
||||||
|
|
||||||
LICENSE="MIT"
|
LICENSE="MIT"
|
||||||
SLOT="0"
|
SLOT="0"
|
||||||
KEYWORDS="~amd64"
|
KEYWORDS="~amd64"
|
||||||
IUSE="mysql"
|
IUSE="mysql"
|
||||||
|
|
||||||
DEPEND=""
|
|
||||||
RDEPEND="
|
RDEPEND="
|
||||||
mysql? ( dev-python/mysqlclient[${PYTHON_USEDEP}] )
|
mysql? ( dev-python/mysqlclient[${PYTHON_USEDEP}] )
|
||||||
dev-python/cmarkgfm[${PYTHON_USEDEP}]
|
dev-python/cmarkgfm[${PYTHON_USEDEP}]
|
||||||
|
@ -23,4 +22,3 @@ RDEPEND="
|
||||||
net-mail/HyperKitty[${PYTHON_USEDEP}]
|
net-mail/HyperKitty[${PYTHON_USEDEP}]
|
||||||
net-mail/postorius[${PYTHON_USEDEP}]
|
net-mail/postorius[${PYTHON_USEDEP}]
|
||||||
"
|
"
|
||||||
BDEPEND=""
|
|
||||||
|
|
|
@ -16,7 +16,8 @@ KEYWORDS="~amd64"
|
||||||
IUSE="mysql"
|
IUSE="mysql"
|
||||||
|
|
||||||
RDEPEND="
|
RDEPEND="
|
||||||
dev-python/django[${PYTHON_USEDEP}]
|
>=dev-python/django-4.0[${PYTHON_USEDEP}]
|
||||||
|
<dev-python/django-4.3
|
||||||
dev-python/whoosh[${PYTHON_USEDEP}]
|
dev-python/whoosh[${PYTHON_USEDEP}]
|
||||||
net-mail/HyperKitty[${PYTHON_USEDEP}]
|
net-mail/HyperKitty[${PYTHON_USEDEP}]
|
||||||
net-mail/postorius[${PYTHON_USEDEP}]
|
net-mail/postorius[${PYTHON_USEDEP}]
|
||||||
|
|
|
@ -51,6 +51,7 @@ RDEPEND="
|
||||||
>=dev-python/tzdata-2021.5[${PYTHON_USEDEP}]
|
>=dev-python/tzdata-2021.5[${PYTHON_USEDEP}]
|
||||||
>=dev-python/jsonschema-3.2.0[${PYTHON_USEDEP}]
|
>=dev-python/jsonschema-3.2.0[${PYTHON_USEDEP}]
|
||||||
ldap? ( >=dev-python/django-auth-ldap-4.1.0[${PYTHON_USEDEP}] )
|
ldap? ( >=dev-python/django-auth-ldap-4.1.0[${PYTHON_USEDEP}] )
|
||||||
|
dev-python/social-auth-app-django[${PYTHON_USEDEP}]
|
||||||
')"
|
')"
|
||||||
DEPEND="${RDEPEND}"
|
DEPEND="${RDEPEND}"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue