This commit is contained in:
Alarig Le Lay 2024-06-02 08:07:31 +02:00
parent c4b78d2ea3
commit 97c2c26ba1
Signed by: alarig
GPG Key ID: 7AFE62C6DF8BCDEC
264 changed files with 1066 additions and 481 deletions

View File

@ -0,0 +1 @@
DIST live-build_20210407.tar.xz 374604 BLAKE2B 5c34efad3fa8568175614bbcb67d39687fea1357368ad604a7dde8cca1b478768abbc9c66cfd519bc59f516747c3dfb866b97a01404ab3ac28905eef596a5cf9 SHA512 5a7a7b7843290909093ce5827ae81f60047f661dc08bb761ae6cac7ae3dfd79d695175c281d651c26538a06c51abb9b9cc0c72cc704e6e083d7b53b13f6fcdd6

View File

@ -0,0 +1,82 @@
--- live-build/Makefile 2022-06-13 19:21:33.158185611 +0200
+++ live-build/Makefile 2022-06-13 19:23:40.925897928 +0200
@@ -39,27 +39,27 @@
install:
# Installing shared data
- mkdir -p $(DESTDIR)/usr/share/live/build
- cp -r data functions $(DESTDIR)/usr/share/live/build
- sed -e 's/.*(\(.*\)).*/\1/; s/^[0-9]://; q' debian/changelog >$(DESTDIR)/usr/share/live/build/VERSION
- cp -r share/* $(DESTDIR)/usr/share/live/build
+ mkdir -p $(DESTDIR)/$(datadir)/live/build
+ cp -r data functions $(DESTDIR)/$(datadir)/live/build
+ sed -e 's/.*(\(.*\)).*/\1/; s/^[0-9]://; q' debian/changelog >$(DESTDIR)/$(datadir)/live/build/VERSION
+ cp -r share/* $(DESTDIR)/$(datadir)/live/build
# Installing executables
- mkdir -p $(DESTDIR)/usr/bin
- cp -a frontend/* $(DESTDIR)/usr/bin
+ mkdir -p $(DESTDIR)/$(bindir)
+ cp -a frontend/* $(DESTDIR)/$(bindir)
- mkdir -p $(DESTDIR)/usr/lib/live
- cp -a scripts/* $(DESTDIR)/usr/lib/live
+ mkdir -p $(DESTDIR)/$(libdir)
+ cp -a scripts/* $(DESTDIR)/$(libdir)
# Installing documentation
- mkdir -p $(DESTDIR)/usr/share/doc/live-build
- cp -r COPYING examples $(DESTDIR)/usr/share/doc/live-build
+ mkdir -p $(DESTDIR)/$(docdir)
+ cp -r COPYING examples $(DESTDIR)/$(docdir)
# Installing manpages
for MANPAGE in manpages/en/*; \
do \
SECTION="$$(basename $${MANPAGE} | awk -F. '{ print $$2 }')"; \
- install -D -m 0644 $${MANPAGE} $(DESTDIR)/usr/share/man/man$${SECTION}/$$(basename $${MANPAGE}); \
+ install -D -m 0644 $${MANPAGE} $(DESTDIR)/$(mandir)/man$${SECTION}/$$(basename $${MANPAGE}); \
done
for LANGUAGE in $(LANGUAGES); \
@@ -67,26 +67,26 @@
for MANPAGE in manpages/$${LANGUAGE}/*; \
do \
SECTION="$$(basename $${MANPAGE} | awk -F. '{ print $$3 }')"; \
- install -D -m 0644 $${MANPAGE} $(DESTDIR)/usr/share/man/$${LANGUAGE}/man$${SECTION}/$$(basename $${MANPAGE} .$${LANGUAGE}.$${SECTION}).$${SECTION}; \
+ install -D -m 0644 $${MANPAGE} $(DESTDIR)/$(mandir)/$${LANGUAGE}/man$${SECTION}/$$(basename $${MANPAGE} .$${LANGUAGE}.$${SECTION}).$${SECTION}; \
done; \
done
uninstall:
# Uninstalling shared data
- rm -rf $(DESTDIR)/usr/share/live/build
- rmdir --ignore-fail-on-non-empty $(DESTDIR)/usr/share/live > /dev/null 2>&1 || true
+ rm -rf $(DESTDIR)/$(datadir)/live/build
+ rmdir --ignore-fail-on-non-empty $(DESTDIR)/$(datadir)/live > /dev/null 2>&1 || true
# Uninstalling executables
- rm -f $(DESTDIR)/usr/bin/lb $(DESTDIR)/usr/bin/live-build
+ rm -f $(DESTDIR)/$(bindir)/lb $(DESTDIR)/$(bindir)/live-build
# Uninstalling documentation
- rm -rf $(DESTDIR)/usr/share/doc/live-build
+ rm -rf $(DESTDIR)/$(docdir)
# Uninstalling manpages
for MANPAGE in manpages/en/*; \
do \
SECTION="$$(basename $${MANPAGE} | awk -F. '{ print $$2 }')"; \
- rm -f $(DESTDIR)/usr/share/man/man$${SECTION}/$$(basename $${MANPAGE} .en.$${SECTION}).$${SECTION}; \
+ rm -f $(DESTDIR)/$(mandir)/man$${SECTION}/$$(basename $${MANPAGE} .en.$${SECTION}).$${SECTION}; \
done
for LANGUAGE in $(LANGUAGES); \
@@ -94,7 +94,7 @@
for MANPAGE in manpages/$${LANGUAGE}/*; \
do \
SECTION="$$(basename $${MANPAGE} | awk -F. '{ print $$3 }')"; \
- rm -f $(DESTDIR)/usr/share/man/$${LANGUAGE}/man$${SECTION}/$$(basename $${MANPAGE} .$${LANGUAGE}.$${SECTION}).$${SECTION}; \
+ rm -f $(DESTDIR)/$(mandir)/$${LANGUAGE}/man$${SECTION}/$$(basename $${MANPAGE} .$${LANGUAGE}.$${SECTION}).$${SECTION}; \
done; \
done

View File

@ -0,0 +1,34 @@
# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="Debian live system build components"
HOMEPAGE="https://wiki.debian.org/DebianLive"
SRC_URI="mirror://debian/pool/main/l/${PN}/${PN}_${PV}.tar.xz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64"
DEPEND="dev-util/debootstrap"
RDEPEND="${DEPEND}"
BDEPEND=""
S="${WORKDIR}/${PN}"
PATCHES=(
"${FILESDIR}"/Makefile.patch
)
src_prepare() {
default_src_prepare
export bindir="${EPREFIX}"/usr/bin
export datadir="${EPREFIX}"/usr/share
export docdir="${EPREFIX}"/usr/share/doc/${PF}
export libdir="$(get_libdir)/${PN}"
export mandir="${EPREFIX}"/usr/share/man
sed -i "s|usr/lib/live|${libdir}|g" "${S}"/frontend/lb || die
}

View File

@ -0,0 +1 @@
DIST dmidecode-0.9.0.tar.gz 2630 BLAKE2B 309cbfe286821f215e82d50132d48a590d992e9c6c25f3b90a5da66046a6692b2814abba264730d63535ed686ced768f6b1eed45bc8eedc0cb4cc00c63eb402b SHA512 4077cdfbbf937a5970a739d444143d976cef78b1beda8b50cad17d407e2d63d7d37eff0f63e467e16da27101e23a469f3e14323ccb61f333ea819dc9abe7f5db

View File

@ -0,0 +1,21 @@
# Copyright 2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{10..11} )
inherit distutils-r1 pypi
DESCRIPTION="dmidecode py"
HOMEPAGE="
https://pypi.org/project/dmidecode/
"
SRC_URI="$(pypi_sdist_url)"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND=""
BDEPEND=""

View File

@ -0,0 +1 @@
DIST py_dmidecode-0.1.1.tar.gz 7660 BLAKE2B 9327a494bc654627e87e7e49e9c4b6dc94e8c2938c3faa12054a0dfa26c1bb7b3af8460b2e71f04be9e3f70876238cc19da36cee53f51e61e5175b9b32479b92 SHA512 1f620863606703d500daed0e62e47fc1990bed39f210e657cc12f437e4c16a970a1edc26537100e51882be303c604cc2bdb61e8a425d52e40fb65594e61dde4b

View File

@ -0,0 +1,32 @@
# Copyright 2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=poetry
PYTHON_COMPAT=( python3_{10..11} )
inherit distutils-r1 pypi
DESCRIPTION="python library to parse the output of dmidecode"
HOMEPAGE="
https://pypi.org/project/py-dmidecode/
https://github.com/zaibon/py-dmidecode
"
SRC_URI="$(pypi_sdist_url)"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="
dev-python/click[${PYTHON_USEDEP}]
dev-python/mypy_extensions[${PYTHON_USEDEP}]
dev-python/packaging[${PYTHON_USEDEP}]
dev-python/pathspec[${PYTHON_USEDEP}]
dev-python/platformdirs[${PYTHON_USEDEP}]
dev-python/tomli[${PYTHON_USEDEP}]
dev-python/typing-extensions[${PYTHON_USEDEP}]
"
BDEPEND=""
distutils_enable_tests pytest

View File

@ -4,5 +4,5 @@ EAPI=7
INHERIT=acct-group
KEYWORDS=~amd64 ~x86
SLOT=0
_eclasses_=user-info 9951b1a0e4f026d16c33a001fd2d5cdf acct-group 1ba28b31fccef7f4ff1cebfad243a633
_eclasses_=user-info 9951b1a0e4f026d16c33a001fd2d5cdf acct-group 8c6e16e1203a4a4114b121c04ee5e474
_md5_=17e7bcd01acf76a2637af53b76f8cf38

View File

@ -4,5 +4,5 @@ EAPI=8
INHERIT=acct-group
KEYWORDS=~amd64 ~x86
SLOT=0
_eclasses_=user-info 9951b1a0e4f026d16c33a001fd2d5cdf acct-group 1ba28b31fccef7f4ff1cebfad243a633
_eclasses_=user-info 9951b1a0e4f026d16c33a001fd2d5cdf acct-group 8c6e16e1203a4a4114b121c04ee5e474
_md5_=cd34e0f0b4575ad83d8f29db0adce162

View File

@ -4,5 +4,5 @@ EAPI=7
INHERIT=acct-group
KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris
SLOT=0
_eclasses_=user-info 9951b1a0e4f026d16c33a001fd2d5cdf acct-group 1ba28b31fccef7f4ff1cebfad243a633
_eclasses_=user-info 9951b1a0e4f026d16c33a001fd2d5cdf acct-group 8c6e16e1203a4a4114b121c04ee5e474
_md5_=dd8450bef072b5b1073c7f14f2afc978

View File

@ -4,5 +4,5 @@ EAPI=7
INHERIT=acct-group
KEYWORDS=amd64 arm64 x86
SLOT=0
_eclasses_=user-info 9951b1a0e4f026d16c33a001fd2d5cdf acct-group 1ba28b31fccef7f4ff1cebfad243a633
_eclasses_=user-info 9951b1a0e4f026d16c33a001fd2d5cdf acct-group 8c6e16e1203a4a4114b121c04ee5e474
_md5_=114bfb2e1d69315fb89448cfb0119056

View File

@ -4,5 +4,5 @@ EAPI=7
INHERIT=acct-group
KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris
SLOT=0
_eclasses_=user-info 9951b1a0e4f026d16c33a001fd2d5cdf acct-group 1ba28b31fccef7f4ff1cebfad243a633
_eclasses_=user-info 9951b1a0e4f026d16c33a001fd2d5cdf acct-group 8c6e16e1203a4a4114b121c04ee5e474
_md5_=dd8450bef072b5b1073c7f14f2afc978

View File

@ -4,5 +4,5 @@ EAPI=7
INHERIT=acct-group
KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris
SLOT=0
_eclasses_=user-info 9951b1a0e4f026d16c33a001fd2d5cdf acct-group 1ba28b31fccef7f4ff1cebfad243a633
_eclasses_=user-info 9951b1a0e4f026d16c33a001fd2d5cdf acct-group 8c6e16e1203a4a4114b121c04ee5e474
_md5_=cfcbec076d69603211dbe679925e0d24

View File

@ -4,5 +4,5 @@ EAPI=7
INHERIT=acct-group
KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris
SLOT=0
_eclasses_=user-info 9951b1a0e4f026d16c33a001fd2d5cdf acct-group 1ba28b31fccef7f4ff1cebfad243a633
_eclasses_=user-info 9951b1a0e4f026d16c33a001fd2d5cdf acct-group 8c6e16e1203a4a4114b121c04ee5e474
_md5_=e22ec16d0b44df387e0587bd6e4d8b30

View File

@ -4,5 +4,5 @@ EAPI=7
INHERIT=acct-group
KEYWORDS=~amd64 ~x86
SLOT=0
_eclasses_=user-info 9951b1a0e4f026d16c33a001fd2d5cdf acct-group 1ba28b31fccef7f4ff1cebfad243a633
_eclasses_=user-info 9951b1a0e4f026d16c33a001fd2d5cdf acct-group 8c6e16e1203a4a4114b121c04ee5e474
_md5_=dbf48339fd931c3602d80c9268f7f263

View File

@ -4,5 +4,5 @@ EAPI=7
INHERIT=acct-group
KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris
SLOT=0
_eclasses_=user-info 9951b1a0e4f026d16c33a001fd2d5cdf acct-group 1ba28b31fccef7f4ff1cebfad243a633
_eclasses_=user-info 9951b1a0e4f026d16c33a001fd2d5cdf acct-group 8c6e16e1203a4a4114b121c04ee5e474
_md5_=dd8450bef072b5b1073c7f14f2afc978

View File

@ -5,5 +5,5 @@ INHERIT=acct-user
KEYWORDS=~amd64 ~x86
RDEPEND=acct-group/_bgpd
SLOT=0
_eclasses_=user-info 9951b1a0e4f026d16c33a001fd2d5cdf acct-user fd6725fcc11ecffded6fe9228b8e3448
_eclasses_=user-info 9951b1a0e4f026d16c33a001fd2d5cdf acct-user bab50e8bac8e1df6a32a6b9e2fb19a64
_md5_=d4dce79d12f7fe3f3e592efdd7bb8ae0

View File

@ -5,5 +5,5 @@ INHERIT=acct-user
KEYWORDS=~amd64 ~x86
RDEPEND=acct-group/_rpki-client
SLOT=0
_eclasses_=user-info 9951b1a0e4f026d16c33a001fd2d5cdf acct-user 485d9a6aa1311a8ca9da380d8a8c6c76
_eclasses_=user-info 9951b1a0e4f026d16c33a001fd2d5cdf acct-user bab50e8bac8e1df6a32a6b9e2fb19a64
_md5_=3aae02f3bf25d5648354beb648da1e56

View File

@ -5,5 +5,5 @@ INHERIT=acct-user
KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris
RDEPEND=acct-group/as-stats
SLOT=0
_eclasses_=user-info 9951b1a0e4f026d16c33a001fd2d5cdf acct-user fd6725fcc11ecffded6fe9228b8e3448
_eclasses_=user-info 9951b1a0e4f026d16c33a001fd2d5cdf acct-user bab50e8bac8e1df6a32a6b9e2fb19a64
_md5_=4b74095ea9dec307ae854f6ea25c0686

View File

@ -5,5 +5,5 @@ INHERIT=acct-user
KEYWORDS=amd64 arm64 x86
RDEPEND=acct-group/bird
SLOT=0
_eclasses_=user-info 9951b1a0e4f026d16c33a001fd2d5cdf acct-user fd6725fcc11ecffded6fe9228b8e3448
_eclasses_=user-info 9951b1a0e4f026d16c33a001fd2d5cdf acct-user bab50e8bac8e1df6a32a6b9e2fb19a64
_md5_=24a376ad25eeda7b1fd8ebe3aa294849

View File

@ -5,5 +5,5 @@ INHERIT=acct-user
KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris
RDEPEND=acct-group/factorio
SLOT=0
_eclasses_=user-info 9951b1a0e4f026d16c33a001fd2d5cdf acct-user 485d9a6aa1311a8ca9da380d8a8c6c76
_eclasses_=user-info 9951b1a0e4f026d16c33a001fd2d5cdf acct-user bab50e8bac8e1df6a32a6b9e2fb19a64
_md5_=09c18d5a4834dd3ae754c5446be36e83

View File

@ -5,5 +5,5 @@ INHERIT=acct-user
KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris
RDEPEND=acct-group/fort
SLOT=0
_eclasses_=user-info 9951b1a0e4f026d16c33a001fd2d5cdf acct-user fd6725fcc11ecffded6fe9228b8e3448
_eclasses_=user-info 9951b1a0e4f026d16c33a001fd2d5cdf acct-user bab50e8bac8e1df6a32a6b9e2fb19a64
_md5_=4fe5ba419bd707c850aa4f4d84aa15a9

View File

@ -5,5 +5,5 @@ INHERIT=acct-user
KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris
RDEPEND=acct-group/rancid
SLOT=0
_eclasses_=user-info 9951b1a0e4f026d16c33a001fd2d5cdf acct-user fd6725fcc11ecffded6fe9228b8e3448
_eclasses_=user-info 9951b1a0e4f026d16c33a001fd2d5cdf acct-user bab50e8bac8e1df6a32a6b9e2fb19a64
_md5_=c284c431269b01eedcd0054f5fabb95f

View File

@ -5,5 +5,5 @@ INHERIT=acct-user
KEYWORDS=~amd64 ~x86
RDEPEND=acct-group/routinator
SLOT=0
_eclasses_=user-info 9951b1a0e4f026d16c33a001fd2d5cdf acct-user fd6725fcc11ecffded6fe9228b8e3448
_eclasses_=user-info 9951b1a0e4f026d16c33a001fd2d5cdf acct-user bab50e8bac8e1df6a32a6b9e2fb19a64
_md5_=a063b5621e0dda38bdb3b3514e7f7432

View File

@ -5,5 +5,5 @@ INHERIT=acct-user
KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris
RDEPEND=acct-group/vintagestory
SLOT=0
_eclasses_=user-info 9951b1a0e4f026d16c33a001fd2d5cdf acct-user fd6725fcc11ecffded6fe9228b8e3448
_eclasses_=user-info 9951b1a0e4f026d16c33a001fd2d5cdf acct-user bab50e8bac8e1df6a32a6b9e2fb19a64
_md5_=b8c9350ff962708da1583429f24d9473

View File

@ -1,4 +1,4 @@
BDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) >=dev-python/setuptools-67.8.0-r1[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
BDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) >=dev-python/setuptools-69.0.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
DEFINED_PHASES=compile configure install prepare test
DEPEND=dev-libs/openssl dev-python/IPy[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/click[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pyyaml[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/requests[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-vcs/git net-misc/openssh
DESCRIPTION=Command line interface to Gandi.net products using the public API
@ -12,5 +12,5 @@ RDEPEND=dev-libs/openssl dev-python/IPy[python_targets_python3_10(-)?,python_tar
REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 )
SLOT=0
SRC_URI=https://github.com/Gandi/gandi.cli/archive/refs/tags/1.6.tar.gz -> gandi.cli-1.6.tar.gz
_eclasses_=toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic baa4d385108ac87993edac956a916a36 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild 30dbf3c5a31db09a19f31ad0a68f2405 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 39e7a84b06eff4efd9f2e0c3d1668b98 python-utils-r1 f6221c2f55e5e832be9919fe1711f33b python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 d05609532b134be7c4ae2514f4c7d06e
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic d309b9713dfc18e754cba88d3ba69653 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild d67e78a235f541871c7dfe4cf7931489 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 8b220bbce5c119fb1d4d5c2f5588f3ea python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 5400d21736d8621562bf93be4fa98eec
_md5_=f36b0c4ae07336458dbca7ba33873a46

View File

@ -1,4 +1,4 @@
BDEPEND=sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7
BDEPEND=>=app-portage/elt-patches-20240116 sys-devel/gnuconfig || ( >=dev-build/automake-1.16.5:1.16 ) || ( >=dev-build/autoconf-2.72-r1:2.72 >=dev-build/autoconf-2.71-r6:2.71 ) >=dev-build/libtool-2.4.7-r3
DEFINED_PHASES=install prepare
DEPEND=dev-libs/libevent dev-libs/msgpack dev-libs/openssl:0= net-libs/libssh[server] sys-libs/libutempter sys-libs/ncurses sys-libs/zlib
DESCRIPTION=tmate SSH server
@ -10,5 +10,5 @@ LICENSE=MIT
RDEPEND=dev-libs/libevent dev-libs/msgpack dev-libs/openssl:0= net-libs/libssh[server] sys-libs/libutempter sys-libs/ncurses sys-libs/zlib
SLOT=0
SRC_URI=https://github.com/tmate-io/tmate-ssh-server/archive/refs/tags/2.3.0.tar.gz
_eclasses_=gnuconfig b6b3e92f8b8c996400074b5f61a59256 toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 libtool 9d3a9a889a6fa62ae794f817c156491b autotools 6ae9a4347149b19a112caa1182d03bde
_eclasses_=gnuconfig a397adda6984a4c423e28ac274c1ba98 toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 libtool 5f49a16f67f81bdf873e3d1f10b10001 autotools dc70c1dc473b68317fc4a86f5fbfc57d
_md5_=2b9775d9fe5a926a6632a3281fb35278

View File

@ -1,4 +1,4 @@
BDEPEND=>=dev-lang/go-1.18 app-arch/unzip >=dev-vcs/git-1.8.2.1[curl]
BDEPEND=>=dev-lang/go-1.20:= app-arch/unzip >=dev-vcs/git-1.8.2.1[curl]
DEFINED_PHASES=compile install unpack
DESCRIPTION=Command line application to convert HTML to GMI
EAPI=7
@ -9,5 +9,5 @@ PROPERTIES=live
RESTRICT=strip
SLOT=0
SRC_URI=mirror://goproxy//github.com/!luke!emmet/html2gemini/@v/v0.0.0-20201115160957-70fb785e5e75.zip -> github.com%2F!luke!emmet%2Fhtml2gemini%2F@v%2Fv0.0.0-20201115160957-70fb785e5e75.zip mirror://goproxy//github.com/!luke!emmet/html2gemini/@v/v0.0.0-20201115160957-70fb785e5e75.mod -> github.com%2F!luke!emmet%2Fhtml2gemini%2F@v%2Fv0.0.0-20201115160957-70fb785e5e75.mod mirror://goproxy//github.com/!luke!emmet/html2gemini/@v/v0.0.0-20201115162526-e63bbe688236.zip -> github.com%2F!luke!emmet%2Fhtml2gemini%2F@v%2Fv0.0.0-20201115162526-e63bbe688236.zip mirror://goproxy//github.com/!luke!emmet/html2gemini/@v/v0.0.0-20201115162526-e63bbe688236.mod -> github.com%2F!luke!emmet%2Fhtml2gemini%2F@v%2Fv0.0.0-20201115162526-e63bbe688236.mod mirror://goproxy//github.com/mattn/go-runewidth/@v/v0.0.7.zip -> github.com%2Fmattn%2Fgo-runewidth%2F@v%2Fv0.0.7.zip mirror://goproxy//github.com/mattn/go-runewidth/@v/v0.0.7.mod -> github.com%2Fmattn%2Fgo-runewidth%2F@v%2Fv0.0.7.mod mirror://goproxy//github.com/olekukonko/tablewriter/@v/v0.0.4.zip -> github.com%2Folekukonko%2Ftablewriter%2F@v%2Fv0.0.4.zip mirror://goproxy//github.com/olekukonko/tablewriter/@v/v0.0.4.mod -> github.com%2Folekukonko%2Ftablewriter%2F@v%2Fv0.0.4.mod mirror://goproxy//github.com/spf13/pflag/@v/v1.0.5.zip -> github.com%2Fspf13%2Fpflag%2F@v%2Fv1.0.5.zip mirror://goproxy//github.com/spf13/pflag/@v/v1.0.5.mod -> github.com%2Fspf13%2Fpflag%2F@v%2Fv1.0.5.mod mirror://goproxy//github.com/ssor/bom/@v/v0.0.0-20170718123548-6386211fdfcf.zip -> github.com%2Fssor%2Fbom%2F@v%2Fv0.0.0-20170718123548-6386211fdfcf.zip mirror://goproxy//github.com/ssor/bom/@v/v0.0.0-20170718123548-6386211fdfcf.mod -> github.com%2Fssor%2Fbom%2F@v%2Fv0.0.0-20170718123548-6386211fdfcf.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190308221718-c2843e01d9a2.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190308221718-c2843e01d9a2.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20200622213623-75b288015ac9.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200622213623-75b288015ac9.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190404232315-eb5bcb51f2a3.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190404232315-eb5bcb51f2a3.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20200822124328-c89045814202.zip -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20200822124328-c89045814202.zip mirror://goproxy//golang.org/x/net/@v/v0.0.0-20200822124328-c89045814202.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20200822124328-c89045814202.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190215142949-d0b11bdaac8a.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190215142949-d0b11bdaac8a.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190412213103-97732733099d.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190412213103-97732733099d.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200323222414-85ca7c5b95cd.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200323222414-85ca7c5b95cd.mod mirror://goproxy//golang.org/x/text/@v/v0.3.0.mod -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.0.mod
_eclasses_=multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 go-module 8624eede24936fd7666e5298e5332f22 git-r3 2358a7b20091609e24bd3a83b3ac5991
_eclasses_=multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic d309b9713dfc18e754cba88d3ba69653 go-env dbefaac6fd7019213514bccd65949d9a go-module 83fd3ed1657cfc316c93d6a37018290d git-r3 fbb2889c81f3a05910c1524db69425c1
_md5_=8810143be59ae3f6327e64917af5cebe

View File

@ -1,4 +1,4 @@
BDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) >=dev-python/setuptools-67.8.0-r1[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
BDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) >=dev-python/setuptools-69.0.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
DEFINED_PHASES=compile configure install prepare test
DEPEND=app-i18n/unicode-data
DESCRIPTION=display unicode character properties
@ -12,5 +12,5 @@ RDEPEND=app-i18n/unicode-data python_targets_python3_10? ( dev-lang/python:3.10
REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 )
SLOT=0
SRC_URI=mirror://debian/pool/main/u/unicode/unicode_2.9.orig.tar.gz
_eclasses_=toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic baa4d385108ac87993edac956a916a36 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild 30dbf3c5a31db09a19f31ad0a68f2405 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 39e7a84b06eff4efd9f2e0c3d1668b98 python-utils-r1 f6221c2f55e5e832be9919fe1711f33b python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 d05609532b134be7c4ae2514f4c7d06e
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic d309b9713dfc18e754cba88d3ba69653 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild d67e78a235f541871c7dfe4cf7931489 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 8b220bbce5c119fb1d4d5c2f5588f3ea python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 5400d21736d8621562bf93be4fa98eec
_md5_=eb69ce6f01ac6b53b2e48835dd310822

View File

@ -1,4 +1,4 @@
BDEPEND=virtual/libudev virtual/pkgconfig >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5
BDEPEND=virtual/libudev virtual/pkgconfig app-alternatives/ninja >=dev-build/cmake-3.20.5
DEFINED_PHASES=compile configure install prepare test
DEPEND=net-libs/bctoolbox[test?]
DESCRIPTION=Language recognition library by Belledonne Communications
@ -12,5 +12,5 @@ RDEPEND=net-libs/bctoolbox[test?]
RESTRICT=test
SLOT=0
SRC_URI=https://gitlab.linphone.org/BC/public/belr/-/archive/5.1.3/belr-5.1.3.tar.gz
_eclasses_=toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic baa4d385108ac87993edac956a916a36 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 39e7a84b06eff4efd9f2e0c3d1668b98 xdg-utils baea6080dd821f5562d715887954c9d3 cmake 0f2e0c197fad0312f3c4765c9cf36271
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic d309b9713dfc18e754cba88d3ba69653 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 xdg-utils baea6080dd821f5562d715887954c9d3 cmake c7c9a62d6232cac66d4ea32d575c3e7c
_md5_=c87948870a7028de0a6eca034521b664

View File

@ -9,5 +9,5 @@ KEYWORDS=~amd64 ~x86
LICENSE=MIT
SLOT=0
SRC_URI=https://git.codesynthesis.com/cgit/libcutl/libcutl/snapshot/8653eff.tar.gz -> libcutl-1.11.0_p20210806.tar.gz
_eclasses_=multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 vcs-snapshot eab6d8533446763c2e9777d8bbd1594e
_eclasses_=multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 vcs-snapshot eab6d8533446763c2e9777d8bbd1594e
_md5_=bcceaeca456893cfe677a3ead953f918

View File

@ -11,5 +11,5 @@ LICENSE=GPL-2
RDEPEND=dev-cpp/libcutl dev-libs/boost:= dev-libs/xerces-c
SLOT=0
SRC_URI=https://git.codesynthesis.com/cgit/libxsd-frontend/libxsd-frontend/snapshot/1cc4abe.tar.gz -> libxsd-frontend-2.0.0_p20211005.tar.gz
_eclasses_=multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 vcs-snapshot eab6d8533446763c2e9777d8bbd1594e
_eclasses_=multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 vcs-snapshot eab6d8533446763c2e9777d8bbd1594e
_md5_=a848004f484a586a9915c217c141c62b

View File

@ -11,5 +11,5 @@ LICENSE=GPL-2
RDEPEND=dev-libs/xerces-c dev-libs/boost:= dev-cpp/libcutl dev-cpp/libxsd-frontend zlib? ( sys-libs/zlib:= )
SLOT=0
SRC_URI=https://git.codesynthesis.com/cgit/xsd/xsd/snapshot/4a6e690.tar.gz -> xsd-4.0.0_p20210722.tar.gz
_eclasses_=multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 vcs-snapshot eab6d8533446763c2e9777d8bbd1594e
_eclasses_=multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 vcs-snapshot eab6d8533446763c2e9777d8bbd1594e
_md5_=d7d29e04ea1af9eb38ff70c7984cb962

View File

@ -1,4 +1,4 @@
BDEPEND=>=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5
BDEPEND=app-alternatives/ninja >=dev-build/cmake-3.20.5
DEFINED_PHASES=compile configure install prepare test
DEPEND=dev-libs/boost:= firebird? ( dev-db/firebird ) mysql? ( dev-db/mysql-connector-c:0= ) odbc? ( dev-db/unixODBC ) oracle? ( dev-db/oracle-instantclient:= ) postgres? ( dev-db/postgresql:= ) sqlite? ( dev-db/sqlite:3 )
DESCRIPTION=Database access library for C++
@ -12,5 +12,5 @@ RDEPEND=dev-libs/boost:= firebird? ( dev-db/firebird ) mysql? ( dev-db/mysql-con
RESTRICT=!test? ( test )
SLOT=0
SRC_URI=https://github.com/SOCI/soci/archive/v4.0.3.tar.gz -> soci-4.0.3.tar.gz
_eclasses_=toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic baa4d385108ac87993edac956a916a36 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 39e7a84b06eff4efd9f2e0c3d1668b98 xdg-utils baea6080dd821f5562d715887954c9d3 cmake 0f2e0c197fad0312f3c4765c9cf36271
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic d309b9713dfc18e754cba88d3ba69653 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 xdg-utils baea6080dd821f5562d715887954c9d3 cmake c7c9a62d6232cac66d4ea32d575c3e7c
_md5_=279775cff118e6abce18e014a6724241

View File

@ -1,4 +1,4 @@
BDEPEND=>=dev-lang/go-1.10 >=dev-lang/go-1.18 app-arch/unzip
BDEPEND=>=dev-lang/go-1.10 >=dev-lang/go-1.20:= app-arch/unzip
DEFINED_PHASES=compile install unpack
DESCRIPTION=DNS library in Go
EAPI=7
@ -9,5 +9,5 @@ LICENSE=BSD
RESTRICT=strip strip
SLOT=0
SRC_URI=https://github.com/miekg/dns/archive/v1.1.31.tar.gz -> dns-1.1.31.tar.gz mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190308221718-c2843e01d9a2.zip -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190308221718-c2843e01d9a2.zip mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190308221718-c2843e01d9a2.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190308221718-c2843e01d9a2.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20191011191535-87dc89f01550.zip -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20191011191535-87dc89f01550.zip mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20191011191535-87dc89f01550.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20191011191535-87dc89f01550.mod mirror://goproxy//golang.org/x/mod/@v/v0.1.1-0.20191105210325-c90efee705ee.zip -> golang.org%2Fx%2Fmod%2F@v%2Fv0.1.1-0.20191105210325-c90efee705ee.zip mirror://goproxy//golang.org/x/mod/@v/v0.1.1-0.20191105210325-c90efee705ee.mod -> golang.org%2Fx%2Fmod%2F@v%2Fv0.1.1-0.20191105210325-c90efee705ee.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190404232315-eb5bcb51f2a3.zip -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190404232315-eb5bcb51f2a3.zip mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190404232315-eb5bcb51f2a3.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190404232315-eb5bcb51f2a3.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190620200207-3b0461eec859.zip -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190620200207-3b0461eec859.zip mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190620200207-3b0461eec859.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190620200207-3b0461eec859.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190923162816-aa69164e4478.zip -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190923162816-aa69164e4478.zip mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190923162816-aa69164e4478.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190923162816-aa69164e4478.mod mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20190423024810-112230192c58.zip -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20190423024810-112230192c58.zip mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20190423024810-112230192c58.mod -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20190423024810-112230192c58.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190215142949-d0b11bdaac8a.zip -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190215142949-d0b11bdaac8a.zip mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190215142949-d0b11bdaac8a.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190215142949-d0b11bdaac8a.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190412213103-97732733099d.zip -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190412213103-97732733099d.zip mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190412213103-97732733099d.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190412213103-97732733099d.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190924154521-2837fb4f24fe.zip -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190924154521-2837fb4f24fe.zip mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190924154521-2837fb4f24fe.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190924154521-2837fb4f24fe.mod mirror://goproxy//golang.org/x/text/@v/v0.3.0.zip -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.0.zip mirror://goproxy//golang.org/x/text/@v/v0.3.0.mod -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.0.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191216052735-49a3e744a425.zip -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191216052735-49a3e744a425.zip mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191216052735-49a3e744a425.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191216052735-49a3e744a425.mod mirror://goproxy//golang.org/x/xerrors/@v/v0.0.0-20191011141410-1b5146add898.zip -> golang.org%2Fx%2Fxerrors%2F@v%2Fv0.0.0-20191011141410-1b5146add898.zip mirror://goproxy//golang.org/x/xerrors/@v/v0.0.0-20191011141410-1b5146add898.mod -> golang.org%2Fx%2Fxerrors%2F@v%2Fv0.0.0-20191011141410-1b5146add898.mod
_eclasses_=golang-base 9f0e420ab37bc55a318d74bab3aae891 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 go-module 8624eede24936fd7666e5298e5332f22
_eclasses_=golang-base 9f0e420ab37bc55a318d74bab3aae891 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic d309b9713dfc18e754cba88d3ba69653 go-env dbefaac6fd7019213514bccd65949d9a go-module 83fd3ed1657cfc316c93d6a37018290d
_md5_=53699a8b8f8724a956a5f57346a29551

View File

@ -1,4 +1,4 @@
BDEPEND=virtual/pkgconfig >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5
BDEPEND=virtual/pkgconfig app-alternatives/ninja >=dev-build/cmake-3.20.5
DEFINED_PHASES=compile configure install prepare test
DEPEND=dev-cpp/belr net-libs/bctoolbox[test?]
DESCRIPTION=VCard standard format manipulation library
@ -12,5 +12,5 @@ RDEPEND=dev-cpp/belr net-libs/bctoolbox[test?]
RESTRICT=!test? ( test )
SLOT=0
SRC_URI=https://gitlab.linphone.org/BC/public/belcard/-/archive/5.1.3/belcard-5.1.3.tar.gz
_eclasses_=toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic baa4d385108ac87993edac956a916a36 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 39e7a84b06eff4efd9f2e0c3d1668b98 xdg-utils baea6080dd821f5562d715887954c9d3 cmake 0f2e0c197fad0312f3c4765c9cf36271
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic d309b9713dfc18e754cba88d3ba69653 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 xdg-utils baea6080dd821f5562d715887954c9d3 cmake c7c9a62d6232cac66d4ea32d575c3e7c
_md5_=e7b85418733e62b50450c586bbe0e355

View File

@ -1,4 +1,4 @@
BDEPEND=virtual/pkgconfig >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5
BDEPEND=virtual/pkgconfig app-alternatives/ninja >=dev-build/cmake-3.20.5
DEFINED_PHASES=compile configure install prepare test
DEPEND=net-libs/bctoolbox[test?] sys-libs/zlib:= zeroconf? ( net-dns/avahi[mdnsresponder-compat] )
DESCRIPTION=SIP (RFC3261) implementation
@ -13,5 +13,5 @@ RDEPEND=net-libs/bctoolbox[test?] sys-libs/zlib:= zeroconf? ( net-dns/avahi[mdns
RESTRICT=!test? ( test )
SLOT=0
SRC_URI=https://gitlab.linphone.org/BC/public/belle-sip/-/archive/5.1.3/belle-sip-5.1.3.tar.gz
_eclasses_=toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic baa4d385108ac87993edac956a916a36 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 39e7a84b06eff4efd9f2e0c3d1668b98 xdg-utils baea6080dd821f5562d715887954c9d3 cmake 0f2e0c197fad0312f3c4765c9cf36271
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic d309b9713dfc18e754cba88d3ba69653 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 xdg-utils baea6080dd821f5562d715887954c9d3 cmake c7c9a62d6232cac66d4ea32d575c3e7c
_md5_=50fa04b4d61d93c5d6a5a6147b234048

View File

@ -1,4 +1,4 @@
BDEPEND=virtual/pkgconfig doc? ( app-doc/doxygen ) test? ( dev-libs/belle-sip ) >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5
BDEPEND=virtual/pkgconfig doc? ( app-doc/doxygen ) test? ( dev-libs/belle-sip ) app-alternatives/ninja >=dev-build/cmake-3.20.5
DEFINED_PHASES=compile configure install prepare test
DEPEND=dev-db/soci[sqlite] net-libs/bctoolbox[test?]
DESCRIPTION=C++ library implementing Open Whisper System Signal protocol
@ -12,5 +12,5 @@ RDEPEND=dev-db/soci[sqlite] net-libs/bctoolbox[test?]
RESTRICT=test
SLOT=0
SRC_URI=https://gitlab.linphone.org/BC/public/lime/-/archive/5.0.70/lime-5.0.70.tar.gz
_eclasses_=toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic baa4d385108ac87993edac956a916a36 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 39e7a84b06eff4efd9f2e0c3d1668b98 xdg-utils baea6080dd821f5562d715887954c9d3 cmake 0f2e0c197fad0312f3c4765c9cf36271
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic d309b9713dfc18e754cba88d3ba69653 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 xdg-utils baea6080dd821f5562d715887954c9d3 cmake c7c9a62d6232cac66d4ea32d575c3e7c
_md5_=8330a4f1186fdfde4e57257aa8f34a0e

View File

@ -1,4 +1,4 @@
BDEPEND=>=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5
BDEPEND=app-alternatives/ninja >=dev-build/cmake-3.20.5
DEFINED_PHASES=compile configure install prepare test
DESCRIPTION=Implementation of the olm and megolm cryptographic ratchets
EAPI=7
@ -9,5 +9,5 @@ KEYWORDS=~amd64
LICENSE=Apache-2.0
SLOT=0
SRC_URI=https://gitlab.matrix.org/matrix-org/olm/-/archive/3.1.4/olm-3.1.4.tar.bz2
_eclasses_=toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic baa4d385108ac87993edac956a916a36 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 39e7a84b06eff4efd9f2e0c3d1668b98 xdg-utils baea6080dd821f5562d715887954c9d3 cmake 0f2e0c197fad0312f3c4765c9cf36271
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic d309b9713dfc18e754cba88d3ba69653 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 xdg-utils baea6080dd821f5562d715887954c9d3 cmake c7c9a62d6232cac66d4ea32d575c3e7c
_md5_=0d444576f83e76286a9ed3efbe1b8a11

View File

@ -1,4 +1,4 @@
BDEPEND=>=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5
BDEPEND=app-alternatives/ninja >=dev-build/cmake-3.20.5
DEFINED_PHASES=compile configure install prepare test
DEPEND=dbus? ( dev-qt/qtdbus ) network? ( dev-qt/qtnetwork ) dev-qt/qtcore:5
DESCRIPTION=C++ Coroutine library for Qt5 and Qt6
@ -12,5 +12,5 @@ RDEPEND=dbus? ( dev-qt/qtdbus ) network? ( dev-qt/qtnetwork ) dev-qt/qtcore:5
RESTRICT=test
SLOT=0
SRC_URI=https://github.com/danvratil/qcoro/archive/refs/tags/v0.4.0.tar.gz -> qcoro-0.4.0.tar.gz
_eclasses_=toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic baa4d385108ac87993edac956a916a36 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 39e7a84b06eff4efd9f2e0c3d1668b98 xdg-utils baea6080dd821f5562d715887954c9d3 cmake 0f2e0c197fad0312f3c4765c9cf36271
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic d309b9713dfc18e754cba88d3ba69653 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 xdg-utils baea6080dd821f5562d715887954c9d3 cmake c7c9a62d6232cac66d4ea32d575c3e7c
_md5_=2accb40beb2a9957f71f5cce94e76c73

View File

@ -1,4 +1,4 @@
BDEPEND=virtual/pkgconfig doc? ( app-doc/doxygen ) sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7
BDEPEND=virtual/pkgconfig doc? ( app-doc/doxygen ) >=app-portage/elt-patches-20240116 sys-devel/gnuconfig || ( >=dev-build/automake-1.16.5:1.16 ) || ( >=dev-build/autoconf-2.72-r1:2.72 >=dev-build/autoconf-2.71-r6:2.71 ) >=dev-build/libtool-2.4.7-r3
DEFINED_PHASES=compile configure install prepare
DEPEND=dev-libs/libgcrypt:= net-libs/gnutls:=
DESCRIPTION=Portable C++ runtime for threads and sockets
@ -11,5 +11,5 @@ LICENSE=LGPL-3
RDEPEND=dev-libs/libgcrypt:= net-libs/gnutls:=
SLOT=0/8
SRC_URI=mirror://gnu/commoncpp/ucommon-7.0.0.tar.gz
_eclasses_=gnuconfig b6b3e92f8b8c996400074b5f61a59256 toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 libtool 9d3a9a889a6fa62ae794f817c156491b autotools 6ae9a4347149b19a112caa1182d03bde flag-o-matic baa4d385108ac87993edac956a916a36
_eclasses_=gnuconfig a397adda6984a4c423e28ac274c1ba98 toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 libtool 5f49a16f67f81bdf873e3d1f10b10001 autotools dc70c1dc473b68317fc4a86f5fbfc57d flag-o-matic d309b9713dfc18e754cba88d3ba69653
_md5_=6e0f968d8bbc0bae400f11a5f74f88cc

View File

@ -1,14 +1,15 @@
BDEPEND=dev-lang/perl
BDEPEND=|| ( >=dev-lang/perl-5.38.2-r3[perl_features_debug=,perl_features_ithreads=,perl_features_quadmath=] <dev-lang/perl-5.38.2-r3 )
DEFINED_PHASES=compile configure install prepare test
DEPEND=dev-lang/perl
DEPEND=|| ( >=dev-lang/perl-5.38.2-r3[perl_features_debug=,perl_features_ithreads=,perl_features_quadmath=] <dev-lang/perl-5.38.2-r3 )
DESCRIPTION=provides a C API for XS modules to hook into the execution of perl opcodes
EAPI=7
HOMEPAGE=https://metacpan.org/release/B-Hooks-OP-PPAddr
INHERIT=perl-module
IUSE=perl_features_debug perl_features_ithreads perl_features_quadmath
KEYWORDS=~amd64 ~x86
LICENSE=|| ( Artistic GPL-1+ )
RDEPEND=dev-lang/perl:=
RDEPEND=|| ( >=dev-lang/perl-5.38.2-r3[perl_features_debug=,perl_features_ithreads=,perl_features_quadmath=] <dev-lang/perl-5.38.2-r3 ) dev-lang/perl:=
SLOT=0
SRC_URI=mirror://cpan/authors/id/E/ET/ETHER/B-Hooks-OP-PPAddr-0.06.tar.gz
_eclasses_=multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe perl-functions c3fca037246e877693badea0df3b0ef8 toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 perl-module 4e37e1004a0a27e41bb7025c0b974676
_eclasses_=multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe perl-functions c3fca037246e877693badea0df3b0ef8 toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 perl-module 07f7f317d867e5d5aa30fdeb6e873138
_md5_=9b7826a465085eacac8ef2cb11f2406f

View File

@ -1,14 +1,15 @@
BDEPEND=dev-lang/perl
BDEPEND=|| ( >=dev-lang/perl-5.38.2-r3[perl_features_debug=,perl_features_ithreads=,perl_features_quadmath=] <dev-lang/perl-5.38.2-r3 )
DEFINED_PHASES=compile configure install prepare test unpack
DEPEND=dev-lang/perl
DEPEND=|| ( >=dev-lang/perl-5.38.2-r3[perl_features_debug=,perl_features_ithreads=,perl_features_quadmath=] <dev-lang/perl-5.38.2-r3 )
DESCRIPTION=Perl lib for IXP-Manager
EAPI=7
HOMEPAGE=https://github.com/inex/IXP-Manager/tree/master/tools/perl-lib/IXPManager
INHERIT=perl-module
IUSE=perl_features_debug perl_features_ithreads perl_features_quadmath
KEYWORDS=~amd64 ~x86
LICENSE=GPL-2
RDEPEND=dev-lang/perl:=
RDEPEND=|| ( >=dev-lang/perl-5.38.2-r3[perl_features_debug=,perl_features_ithreads=,perl_features_quadmath=] <dev-lang/perl-5.38.2-r3 ) dev-lang/perl:=
SLOT=0
SRC_URI=https://github.com/inex/IXP-Manager/archive/refs/tags/v5.8.0.tar.gz -> IXPManager-5.8.0.tar.gz
_eclasses_=multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe perl-functions c3fca037246e877693badea0df3b0ef8 toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 perl-module 4e37e1004a0a27e41bb7025c0b974676
_eclasses_=multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe perl-functions c3fca037246e877693badea0df3b0ef8 toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 perl-module 07f7f317d867e5d5aa30fdeb6e873138
_md5_=a20ec3b09b71387cc788e42e50d23af3

View File

@ -1,14 +1,15 @@
BDEPEND=dev-lang/perl
BDEPEND=|| ( >=dev-lang/perl-5.38.2-r3[perl_features_debug=,perl_features_ithreads=,perl_features_quadmath=] <dev-lang/perl-5.38.2-r3 )
DEFINED_PHASES=compile configure install prepare test
DEPEND=virtual/perl-Carp dev-perl/Class-Load dev-perl/namespace-autoclean dev-perl/Sub-Exporter dev-lang/perl
DEPEND=virtual/perl-Carp dev-perl/Class-Load dev-perl/namespace-autoclean dev-perl/Sub-Exporter || ( >=dev-lang/perl-5.38.2-r3[perl_features_debug=,perl_features_ithreads=,perl_features_quadmath=] <dev-lang/perl-5.38.2-r3 )
DESCRIPTION=Automatically apply roles at object creation time
EAPI=7
HOMEPAGE=https://metacpan.org/release/MooseX-Traits
INHERIT=perl-module
IUSE=perl_features_debug perl_features_ithreads perl_features_quadmath
KEYWORDS=~amd64 ~x86
LICENSE=|| ( Artistic GPL-1+ )
RDEPEND=virtual/perl-Carp dev-perl/Class-Load dev-perl/namespace-autoclean dev-perl/Sub-Exporter dev-lang/perl:=
RDEPEND=virtual/perl-Carp dev-perl/Class-Load dev-perl/namespace-autoclean dev-perl/Sub-Exporter || ( >=dev-lang/perl-5.38.2-r3[perl_features_debug=,perl_features_ithreads=,perl_features_quadmath=] <dev-lang/perl-5.38.2-r3 ) dev-lang/perl:=
SLOT=0
SRC_URI=mirror://cpan/authors/id/E/ET/ETHER/MooseX-Traits-0.13.tar.gz
_eclasses_=multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe perl-functions c3fca037246e877693badea0df3b0ef8 toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 perl-module 4e37e1004a0a27e41bb7025c0b974676
_eclasses_=multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe perl-functions c3fca037246e877693badea0df3b0ef8 toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 perl-module 07f7f317d867e5d5aa30fdeb6e873138
_md5_=72ada073e150259674cd156020ae048f

View File

@ -1,14 +1,15 @@
BDEPEND=dev-lang/perl
BDEPEND=|| ( >=dev-lang/perl-5.38.2-r3[perl_features_debug=,perl_features_ithreads=,perl_features_quadmath=] <dev-lang/perl-5.38.2-r3 )
DEFINED_PHASES=compile configure install prepare test
DEPEND=dev-lang/perl
DEPEND=|| ( >=dev-lang/perl-5.38.2-r3[perl_features_debug=,perl_features_ithreads=,perl_features_quadmath=] <dev-lang/perl-5.38.2-r3 )
DESCRIPTION=The sFlow module provides a mechanism to parse and decode sFlow datagrams
EAPI=7
HOMEPAGE=https://metacpan.org/release/Net-sFlow
INHERIT=perl-module
IUSE=perl_features_debug perl_features_ithreads perl_features_quadmath
KEYWORDS=~amd64 ~x86
LICENSE=|| ( Artistic GPL-1+ )
RDEPEND=dev-lang/perl:=
RDEPEND=|| ( >=dev-lang/perl-5.38.2-r3[perl_features_debug=,perl_features_ithreads=,perl_features_quadmath=] <dev-lang/perl-5.38.2-r3 ) dev-lang/perl:=
SLOT=0
SRC_URI=mirror://cpan/authors/id/E/EL/ELISA/Net-sFlow-0.11.tar.gz
_eclasses_=multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe perl-functions c3fca037246e877693badea0df3b0ef8 toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 perl-module 4e37e1004a0a27e41bb7025c0b974676
_eclasses_=multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe perl-functions c3fca037246e877693badea0df3b0ef8 toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 perl-module 07f7f317d867e5d5aa30fdeb6e873138
_md5_=63ec5fa064edc0478c7f59be1dbd0eb2

View File

@ -1,14 +1,15 @@
BDEPEND=dev-lang/perl
BDEPEND=|| ( >=dev-lang/perl-5.38.2-r3[perl_features_debug=,perl_features_ithreads=,perl_features_quadmath=] <dev-lang/perl-5.38.2-r3 )
DEFINED_PHASES=compile configure install prepare test
DEPEND=dev-perl/Class-Load dev-perl/List-MoreUtils dev-perl/Moose dev-perl/MooseX-Types dev-perl/namespace-clean dev-perl/PPI dev-lang/perl
DEPEND=dev-perl/Class-Load dev-perl/List-MoreUtils dev-perl/Moose dev-perl/MooseX-Types dev-perl/namespace-clean dev-perl/PPI || ( >=dev-lang/perl-5.38.2-r3[perl_features_debug=,perl_features_ithreads=,perl_features_quadmath=] <dev-lang/perl-5.38.2-r3 )
DESCRIPTION=Perl6 like method signature parser
EAPI=7
HOMEPAGE=https://metacpan.org/release/Parse-Method-Signatures
INHERIT=perl-module
IUSE=perl_features_debug perl_features_ithreads perl_features_quadmath
KEYWORDS=~amd64 ~x86
LICENSE=|| ( Artistic GPL-1+ )
RDEPEND=dev-perl/Class-Load dev-perl/List-MoreUtils dev-perl/Moose dev-perl/MooseX-Types dev-perl/namespace-clean dev-perl/PPI dev-lang/perl:=
RDEPEND=dev-perl/Class-Load dev-perl/List-MoreUtils dev-perl/Moose dev-perl/MooseX-Types dev-perl/namespace-clean dev-perl/PPI || ( >=dev-lang/perl-5.38.2-r3[perl_features_debug=,perl_features_ithreads=,perl_features_quadmath=] <dev-lang/perl-5.38.2-r3 ) dev-lang/perl:=
SLOT=0
SRC_URI=mirror://cpan/authors/id/K/KE/KENTNL/Parse-Method-Signatures-1.003019.tar.gz
_eclasses_=multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe perl-functions c3fca037246e877693badea0df3b0ef8 toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 perl-module 4e37e1004a0a27e41bb7025c0b974676
_eclasses_=multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe perl-functions c3fca037246e877693badea0df3b0ef8 toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 perl-module 07f7f317d867e5d5aa30fdeb6e873138
_md5_=80b3731a7618949aa30ad141ae643b0e

View File

@ -1,16 +1,16 @@
BDEPEND=dev-lang/perl test? ( >=virtual/perl-Test-Simple-1 )
BDEPEND=|| ( >=dev-lang/perl-5.38.2-r3[perl_features_debug=,perl_features_ithreads=,perl_features_quadmath=] <dev-lang/perl-5.38.2-r3 ) test? ( >=virtual/perl-Test-Simple-1 )
DEFINED_PHASES=compile configure install prepare test
DEPEND=dev-perl/Module-Build dev-perl/Class-Accessor dev-perl/IO-String dev-perl/Sort-Key-OID dev-perl/List-MoreUtils dev-lang/perl
DEPEND=dev-perl/Module-Build dev-perl/Class-Accessor dev-perl/IO-String dev-perl/Sort-Key-OID dev-perl/List-MoreUtils || ( >=dev-lang/perl-5.38.2-r3[perl_features_debug=,perl_features_ithreads=,perl_features_quadmath=] <dev-lang/perl-5.38.2-r3 )
DESCRIPTION=Framework to write Net-SNMP extensions using pass or pass_persist mechanisms.
EAPI=8
HOMEPAGE=https://metacpan.org/pod/SNMP::Extension::PassPersist
INHERIT=perl-module
IUSE=test
IUSE=perl_features_debug perl_features_ithreads perl_features_quadmath test
KEYWORDS=~amd64 ~x86
LICENSE=|| ( Artistic GPL-1+ )
RDEPEND=dev-lang/perl:=
RDEPEND=|| ( >=dev-lang/perl-5.38.2-r3[perl_features_debug=,perl_features_ithreads=,perl_features_quadmath=] <dev-lang/perl-5.38.2-r3 ) dev-lang/perl:=
RESTRICT=!test? ( test )
SLOT=0
SRC_URI=mirror://cpan/authors/id/S/SA/SAPER/SNMP-Extension-PassPersist-0.07.tar.gz
_eclasses_=multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe perl-functions c3fca037246e877693badea0df3b0ef8 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 perl-module 4e37e1004a0a27e41bb7025c0b974676
_eclasses_=multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe perl-functions c3fca037246e877693badea0df3b0ef8 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 perl-module 07f7f317d867e5d5aa30fdeb6e873138
_md5_=d751f5f77b18e343715c396bcbf420ee

View File

@ -1,16 +1,16 @@
BDEPEND=dev-lang/perl test? ( >=virtual/perl-Test-Simple-1 )
BDEPEND=|| ( >=dev-lang/perl-5.38.2-r3[perl_features_debug=,perl_features_ithreads=,perl_features_quadmath=] <dev-lang/perl-5.38.2-r3 ) test? ( >=virtual/perl-Test-Simple-1 )
DEFINED_PHASES=compile configure install prepare test
DEPEND=dev-perl/Sort-Key dev-lang/perl
DEPEND=dev-perl/Sort-Key || ( >=dev-lang/perl-5.38.2-r3[perl_features_debug=,perl_features_ithreads=,perl_features_quadmath=] <dev-lang/perl-5.38.2-r3 )
DESCRIPTION=Module extending the Sort::Key modules family to sort OID values.
EAPI=8
HOMEPAGE=https://metacpan.org/pod/Sort::Key::OID
INHERIT=perl-module
IUSE=test
IUSE=perl_features_debug perl_features_ithreads perl_features_quadmath test
KEYWORDS=~amd64 ~x86
LICENSE=|| ( Artistic GPL-1+ )
RDEPEND=dev-lang/perl:=
RDEPEND=|| ( >=dev-lang/perl-5.38.2-r3[perl_features_debug=,perl_features_ithreads=,perl_features_quadmath=] <dev-lang/perl-5.38.2-r3 ) dev-lang/perl:=
RESTRICT=!test? ( test )
SLOT=0
SRC_URI=mirror://cpan/authors/id/S/SA/SALVA/Sort-Key-OID-0.05.tar.gz
_eclasses_=multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe perl-functions c3fca037246e877693badea0df3b0ef8 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 perl-module 4e37e1004a0a27e41bb7025c0b974676
_eclasses_=multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe perl-functions c3fca037246e877693badea0df3b0ef8 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 perl-module 07f7f317d867e5d5aa30fdeb6e873138
_md5_=33a6841ce6e2e3309f2d51fc5bacf0c1

View File

@ -1,14 +1,15 @@
BDEPEND=dev-lang/perl
BDEPEND=|| ( >=dev-lang/perl-5.38.2-r3[perl_features_debug=,perl_features_ithreads=,perl_features_quadmath=] <dev-lang/perl-5.38.2-r3 )
DEFINED_PHASES=compile configure install prepare test
DEPEND=dev-perl/Devel-Declare dev-perl/Test-Exception dev-perl/B-Hooks-OP-PPAddr dev-perl/Module-Install dev-perl/Sub-Name dev-perl/Parse-Method-Signatures dev-perl/Scope-Upper dev-perl/Sub-Exporter dev-perl/Variable-Magic virtual/perl-XSLoader dev-lang/perl
DEPEND=dev-perl/Devel-Declare dev-perl/Test-Exception dev-perl/B-Hooks-OP-PPAddr dev-perl/Module-Install dev-perl/Sub-Name dev-perl/Parse-Method-Signatures dev-perl/Scope-Upper dev-perl/Sub-Exporter dev-perl/Variable-Magic virtual/perl-XSLoader || ( >=dev-lang/perl-5.38.2-r3[perl_features_debug=,perl_features_ithreads=,perl_features_quadmath=] <dev-lang/perl-5.38.2-r3 )
DESCRIPTION=provide a nicer syntax and method to catch errors in Perl
EAPI=7
HOMEPAGE=https://metacpan.org/release/TryCatch
INHERIT=perl-module
IUSE=perl_features_debug perl_features_ithreads perl_features_quadmath
KEYWORDS=~amd64 ~x86
LICENSE=|| ( Artistic GPL-1+ )
RDEPEND=dev-perl/Devel-Declare dev-perl/Test-Exception dev-perl/B-Hooks-OP-PPAddr dev-perl/Module-Install dev-perl/Sub-Name dev-perl/Parse-Method-Signatures dev-perl/Scope-Upper dev-perl/Sub-Exporter dev-perl/Variable-Magic virtual/perl-XSLoader dev-lang/perl:=
RDEPEND=dev-perl/Devel-Declare dev-perl/Test-Exception dev-perl/B-Hooks-OP-PPAddr dev-perl/Module-Install dev-perl/Sub-Name dev-perl/Parse-Method-Signatures dev-perl/Scope-Upper dev-perl/Sub-Exporter dev-perl/Variable-Magic virtual/perl-XSLoader || ( >=dev-lang/perl-5.38.2-r3[perl_features_debug=,perl_features_ithreads=,perl_features_quadmath=] <dev-lang/perl-5.38.2-r3 ) dev-lang/perl:=
SLOT=0
SRC_URI=mirror://cpan/authors/id/A/AS/ASH/TryCatch-1.003002.tar.gz
_eclasses_=multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe perl-functions c3fca037246e877693badea0df3b0ef8 toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 perl-module 4e37e1004a0a27e41bb7025c0b974676
_eclasses_=multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe perl-functions c3fca037246e877693badea0df3b0ef8 toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 perl-module 07f7f317d867e5d5aa30fdeb6e873138
_md5_=cdb6507276989db3701026546b5cd1b7

View File

@ -1,13 +1,14 @@
BDEPEND=dev-lang/perl >=dev-vcs/git-1.8.2.1[curl]
BDEPEND=|| ( >=dev-lang/perl-5.38.2-r3[perl_features_debug=,perl_features_ithreads=,perl_features_quadmath=] <dev-lang/perl-5.38.2-r3 ) >=dev-vcs/git-1.8.2.1[curl]
DEFINED_PHASES=compile configure install prepare test unpack
DEPEND=dev-perl/JSON-XS dev-perl/Net-Patricia dev-lang/perl
DEPEND=dev-perl/JSON-XS dev-perl/Net-Patricia || ( >=dev-lang/perl-5.38.2-r3[perl_features_debug=,perl_features_ithreads=,perl_features_quadmath=] <dev-lang/perl-5.38.2-r3 )
DESCRIPTION=IP to ASN mapping
EAPI=7
HOMEPAGE=https://metacpan.org/release/ip2as
INHERIT=perl-module git-r3
IUSE=perl_features_debug perl_features_ithreads perl_features_quadmath
LICENSE=|| ( Artistic GPL-1+ )
PROPERTIES=live
RDEPEND=dev-perl/JSON-XS dev-perl/Net-Patricia dev-lang/perl:=
RDEPEND=dev-perl/JSON-XS dev-perl/Net-Patricia || ( >=dev-lang/perl-5.38.2-r3[perl_features_debug=,perl_features_ithreads=,perl_features_quadmath=] <dev-lang/perl-5.38.2-r3 ) dev-lang/perl:=
SLOT=0
_eclasses_=multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe perl-functions c3fca037246e877693badea0df3b0ef8 toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 perl-module 4e37e1004a0a27e41bb7025c0b974676 git-r3 2358a7b20091609e24bd3a83b3ac5991
_eclasses_=multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe perl-functions c3fca037246e877693badea0df3b0ef8 toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 perl-module 07f7f317d867e5d5aa30fdeb6e873138 git-r3 fbb2889c81f3a05910c1524db69425c1
_md5_=94669c732ac29ad7f989773bba2ded56

View File

@ -1,4 +1,4 @@
BDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) >=dev-python/gpep517-15[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/setuptools-67.8.0-r1[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
BDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) >=dev-python/gpep517-15[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/setuptools-69.0.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
DEFINED_PHASES=compile configure install prepare test
DESCRIPTION=Reactive Extensions (Rx) for Python
EAPI=8
@ -11,5 +11,5 @@ RDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_pytho
REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 )
SLOT=0
SRC_URI=mirror://pypi/R/Rx/Rx-1.6.3.tar.gz
_eclasses_=toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic baa4d385108ac87993edac956a916a36 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild 30dbf3c5a31db09a19f31ad0a68f2405 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 39e7a84b06eff4efd9f2e0c3d1668b98 python-utils-r1 f6221c2f55e5e832be9919fe1711f33b python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 d05609532b134be7c4ae2514f4c7d06e
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic d309b9713dfc18e754cba88d3ba69653 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild d67e78a235f541871c7dfe4cf7931489 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 8b220bbce5c119fb1d4d5c2f5588f3ea python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 5400d21736d8621562bf93be4fa98eec
_md5_=8ffcc23acf8f8785359b8f4f93ba83f4

View File

@ -1,4 +1,4 @@
BDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) >=dev-python/setuptools-67.8.0-r1[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
BDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) >=dev-python/setuptools-69.0.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
DEFINED_PHASES=compile configure install prepare test
DESCRIPTION=actdiag generate activity-diagram image file from spec-text file.
EAPI=8
@ -11,5 +11,5 @@ RDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_pytho
REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 )
SLOT=0
SRC_URI=mirror://pypi/a/actdiag/actdiag-3.0.0.tar.gz
_eclasses_=toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic baa4d385108ac87993edac956a916a36 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild 30dbf3c5a31db09a19f31ad0a68f2405 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 39e7a84b06eff4efd9f2e0c3d1668b98 python-utils-r1 f6221c2f55e5e832be9919fe1711f33b python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 d05609532b134be7c4ae2514f4c7d06e
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic d309b9713dfc18e754cba88d3ba69653 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild d67e78a235f541871c7dfe4cf7931489 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 8b220bbce5c119fb1d4d5c2f5588f3ea python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 5400d21736d8621562bf93be4fa98eec
_md5_=eff6aea5f4d33153105b98ede0b8e2d8

View File

@ -1,4 +1,4 @@
BDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) >=dev-python/gpep517-15[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/setuptools-67.8.0-r1[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
BDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) >=dev-python/gpep517-15[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/setuptools-69.0.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
DEFINED_PHASES=compile configure install prepare test
DESCRIPTION=Advanced Enumerations (compatible with Python's stdlib Enum)
EAPI=8
@ -11,5 +11,5 @@ RDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_pytho
REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 )
SLOT=0
SRC_URI=mirror://pypi/a/aenum/aenum-3.1.12.tar.gz
_eclasses_=toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic baa4d385108ac87993edac956a916a36 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild 30dbf3c5a31db09a19f31ad0a68f2405 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 39e7a84b06eff4efd9f2e0c3d1668b98 python-utils-r1 f6221c2f55e5e832be9919fe1711f33b python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 d05609532b134be7c4ae2514f4c7d06e
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic d309b9713dfc18e754cba88d3ba69653 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild d67e78a235f541871c7dfe4cf7931489 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 8b220bbce5c119fb1d4d5c2f5588f3ea python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 5400d21736d8621562bf93be4fa98eec
_md5_=9ffae6d09863f44a3b4fadb226aabb82

View File

@ -1,4 +1,4 @@
BDEPEND=test? ( >=dev-python/pytest-6[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pytest-mock[python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) test? ( dev-python/atpublic[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/attrs[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pytest-7.3.1[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 ) >=dev-python/setuptools-67.8.0-r1[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
BDEPEND=test? ( >=dev-python/pytest-6[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pytest-mock[python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) test? ( dev-python/atpublic[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/attrs[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pytest-7.4.4[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 ) >=dev-python/setuptools-69.0.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
DEFINED_PHASES=compile configure install prepare test
DESCRIPTION=asyncio based SMTP server
EAPI=7
@ -7,10 +7,10 @@ INHERIT=distutils-r1
IUSE=test python_targets_python3_10 python_targets_python3_11
KEYWORDS=~amd64 ~x86
LICENSE=Apache-2.0
RDEPEND=dev-python/atpublic[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/attrs[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 ) >=dev-python/setuptools-67.8.0-r1[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
RDEPEND=dev-python/atpublic[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/attrs[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 ) >=dev-python/setuptools-69.0.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 )
RESTRICT=!test? ( test )
SLOT=0
SRC_URI=mirror://pypi/a/aiosmtpd/aiosmtpd-1.4.4.tar.gz
_eclasses_=toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic baa4d385108ac87993edac956a916a36 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild 30dbf3c5a31db09a19f31ad0a68f2405 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 39e7a84b06eff4efd9f2e0c3d1668b98 eapi8-dosym 5ac4857ad078256d939c44f7c64197a9 python-utils-r1 f6221c2f55e5e832be9919fe1711f33b python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 d05609532b134be7c4ae2514f4c7d06e
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic d309b9713dfc18e754cba88d3ba69653 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild d67e78a235f541871c7dfe4cf7931489 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 eapi8-dosym 5ac4857ad078256d939c44f7c64197a9 python-utils-r1 8b220bbce5c119fb1d4d5c2f5588f3ea python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 5400d21736d8621562bf93be4fa98eec
_md5_=eff42f7de1cab6a22296c30ab45cf6c1

View File

@ -1,4 +1,4 @@
BDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) >=dev-python/setuptools-67.8.0-r1[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
BDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) >=dev-python/setuptools-69.0.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
DEFINED_PHASES=compile configure install prepare test
DEPEND=>=dev-python/six-1.9.0
DESCRIPTION=Powerful and Lightweight Python Tree Data Structure
@ -12,5 +12,5 @@ RDEPEND=>=dev-python/six-1.9.0 python_targets_python3_10? ( dev-lang/python:3.10
REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 )
SLOT=0
SRC_URI=mirror://pypi/a/anytree/anytree-2.8.0.tar.gz
_eclasses_=toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic baa4d385108ac87993edac956a916a36 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild 30dbf3c5a31db09a19f31ad0a68f2405 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 39e7a84b06eff4efd9f2e0c3d1668b98 eapi8-dosym 5ac4857ad078256d939c44f7c64197a9 python-utils-r1 f6221c2f55e5e832be9919fe1711f33b python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 d05609532b134be7c4ae2514f4c7d06e
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic d309b9713dfc18e754cba88d3ba69653 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild d67e78a235f541871c7dfe4cf7931489 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 eapi8-dosym 5ac4857ad078256d939c44f7c64197a9 python-utils-r1 8b220bbce5c119fb1d4d5c2f5588f3ea python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 5400d21736d8621562bf93be4fa98eec
_md5_=27c434755a99de8271da441f33df74f0

View File

@ -1,4 +1,4 @@
BDEPEND=test? ( >=dev-python/authres-1.0.1[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/dkimpy[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/dnspython[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/publicsuffix-2.20190205[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pytest-7.3.1[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 ) >=dev-python/gpep517-15[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/setuptools-67.8.0-r1[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
BDEPEND=test? ( >=dev-python/authres-1.0.1[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/dkimpy[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/dnspython[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/publicsuffix-2.20190205[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pytest-7.4.4[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 ) >=dev-python/gpep517-15[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/setuptools-69.0.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
DEFINED_PHASES=compile configure install prepare test
DESCRIPTION=A library wrapping email authentication header verification and generation
EAPI=8
@ -12,5 +12,5 @@ REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 )
RESTRICT=!test? ( test )
SLOT=0
SRC_URI=mirror://pypi/a/authheaders/authheaders-0.15.2.tar.gz
_eclasses_=toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic baa4d385108ac87993edac956a916a36 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild 30dbf3c5a31db09a19f31ad0a68f2405 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 39e7a84b06eff4efd9f2e0c3d1668b98 python-utils-r1 f6221c2f55e5e832be9919fe1711f33b python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 d05609532b134be7c4ae2514f4c7d06e
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic d309b9713dfc18e754cba88d3ba69653 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild d67e78a235f541871c7dfe4cf7931489 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 8b220bbce5c119fb1d4d5c2f5588f3ea python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 5400d21736d8621562bf93be4fa98eec
_md5_=c18b00dbd96a37ba672ea5886d4899b2

View File

@ -1,4 +1,4 @@
BDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) >=dev-python/setuptools-67.8.0-r1[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
BDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) >=dev-python/setuptools-69.0.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
DEFINED_PHASES=compile configure install postinst prepare test
DESCRIPTION=Generate block-diagram image from text
EAPI=8
@ -7,9 +7,9 @@ INHERIT=distutils-r1 optfeature pypi
IUSE=python_targets_python3_10 python_targets_python3_11
KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86
LICENSE=Apache-2.0
RDEPEND=>=dev-python/funcparserlib-1.0.0_alpha0[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pillow-3.0.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/webcolors[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 ) >=dev-python/setuptools-67.8.0-r1[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
RDEPEND=>=dev-python/funcparserlib-1.0.0_alpha0[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pillow-3.0.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/webcolors[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 ) >=dev-python/setuptools-69.0.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 )
SLOT=0
SRC_URI=https://files.pythonhosted.org/packages/source/b/blockdiag/blockdiag-3.0.0.tar.gz
_eclasses_=toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic baa4d385108ac87993edac956a916a36 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild 30dbf3c5a31db09a19f31ad0a68f2405 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 39e7a84b06eff4efd9f2e0c3d1668b98 python-utils-r1 f6221c2f55e5e832be9919fe1711f33b python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 d05609532b134be7c4ae2514f4c7d06e optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 pypi 2eecb475512bc76e5ea9192a681b9e6b
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic d309b9713dfc18e754cba88d3ba69653 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild d67e78a235f541871c7dfe4cf7931489 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 8b220bbce5c119fb1d4d5c2f5588f3ea python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 5400d21736d8621562bf93be4fa98eec optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 pypi 2eecb475512bc76e5ea9192a681b9e6b
_md5_=536599f4e440756edf77b2a3f6beb658

View File

@ -1,4 +1,4 @@
BDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) >=dev-python/setuptools-67.8.0-r1[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
BDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) >=dev-python/setuptools-69.0.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
DEFINED_PHASES=compile configure install prepare test
DESCRIPTION=Configuration file validation and generation
EAPI=7
@ -12,5 +12,5 @@ REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 )
RESTRICT=!test? ( test )
SLOT=0
SRC_URI=mirror://pypi/c/cfu/cfu-1.5.0.tar.gz
_eclasses_=toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic baa4d385108ac87993edac956a916a36 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild 30dbf3c5a31db09a19f31ad0a68f2405 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 39e7a84b06eff4efd9f2e0c3d1668b98 eapi8-dosym 5ac4857ad078256d939c44f7c64197a9 python-utils-r1 f6221c2f55e5e832be9919fe1711f33b python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 d05609532b134be7c4ae2514f4c7d06e
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic d309b9713dfc18e754cba88d3ba69653 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild d67e78a235f541871c7dfe4cf7931489 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 eapi8-dosym 5ac4857ad078256d939c44f7c64197a9 python-utils-r1 8b220bbce5c119fb1d4d5c2f5588f3ea python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 5400d21736d8621562bf93be4fa98eec
_md5_=044c4d6e857578bd9e661818aa28c8c7

View File

@ -1,4 +1,4 @@
BDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-python/setuptools-67.8.0-r1[python_targets_python3_10(-)?]
BDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-python/setuptools-69.0.3[python_targets_python3_10(-)?]
DEFINED_PHASES=compile configure install prepare test
DESCRIPTION=Platform agnostic command and shell execution tool
EAPI=8
@ -11,5 +11,5 @@ RDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 )
REQUIRED_USE=|| ( python_targets_python3_10 )
SLOT=0
SRC_URI=mirror://pypi/c/command_runner/command_runner-1.3.0.tar.gz
_eclasses_=toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic baa4d385108ac87993edac956a916a36 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild 30dbf3c5a31db09a19f31ad0a68f2405 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 39e7a84b06eff4efd9f2e0c3d1668b98 python-utils-r1 f6221c2f55e5e832be9919fe1711f33b python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 d05609532b134be7c4ae2514f4c7d06e
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic d309b9713dfc18e754cba88d3ba69653 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild d67e78a235f541871c7dfe4cf7931489 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 8b220bbce5c119fb1d4d5c2f5588f3ea python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 5400d21736d8621562bf93be4fa98eec
_md5_=ba9a78f97fafed952a408d30db90c1a7

View File

@ -1,4 +1,4 @@
BDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-python/setuptools-67.8.0-r1[python_targets_python3_10(-)?]
BDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-python/setuptools-69.0.3[python_targets_python3_10(-)?]
DEFINED_PHASES=compile configure install prepare test
DESCRIPTION=Configuration file validation and generation
EAPI=8
@ -11,5 +11,5 @@ RDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 )
REQUIRED_USE=|| ( python_targets_python3_10 )
SLOT=0
SRC_URI=mirror://pypi/c/confu/confu-1.8.0.tar.gz
_eclasses_=toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic baa4d385108ac87993edac956a916a36 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild 30dbf3c5a31db09a19f31ad0a68f2405 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 39e7a84b06eff4efd9f2e0c3d1668b98 python-utils-r1 f6221c2f55e5e832be9919fe1711f33b python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 d05609532b134be7c4ae2514f4c7d06e
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic d309b9713dfc18e754cba88d3ba69653 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild d67e78a235f541871c7dfe4cf7931489 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 8b220bbce5c119fb1d4d5c2f5588f3ea python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 5400d21736d8621562bf93be4fa98eec
_md5_=c2dd9f3916508a5d38a4fc1fd04f4c14

View File

@ -1,4 +1,4 @@
BDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) >=dev-python/setuptools-67.8.0-r1[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
BDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) >=dev-python/setuptools-69.0.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
DEFINED_PHASES=compile configure install prepare test
DEPEND=dev-python/setuptools
DESCRIPTION=Client for the whois.cymru.com service
@ -12,5 +12,5 @@ RDEPEND=dev-python/setuptools python_targets_python3_10? ( dev-lang/python:3.10
REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 )
SLOT=0
SRC_URI=mirror://pypi/c/cymruwhois/cymruwhois-1.6.tar.gz
_eclasses_=toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic baa4d385108ac87993edac956a916a36 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild 30dbf3c5a31db09a19f31ad0a68f2405 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 39e7a84b06eff4efd9f2e0c3d1668b98 python-utils-r1 f6221c2f55e5e832be9919fe1711f33b python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 d05609532b134be7c4ae2514f4c7d06e
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic d309b9713dfc18e754cba88d3ba69653 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild d67e78a235f541871c7dfe4cf7931489 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 8b220bbce5c119fb1d4d5c2f5588f3ea python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 5400d21736d8621562bf93be4fa98eec
_md5_=f2c89b006c260372194a9d9c1a7d3506

View File

@ -1,4 +1,4 @@
BDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) >=dev-python/gpep517-15[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/setuptools-67.8.0-r1[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
BDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) >=dev-python/gpep517-15[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/setuptools-69.0.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
DEFINED_PHASES=compile configure install prepare test
DESCRIPTION=Deep Difference and Search of any Python object/data
EAPI=8
@ -11,5 +11,5 @@ RDEPEND=>=dev-python/ordered-set-4.1.0[python_targets_python3_10(-)?,python_targ
REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 )
SLOT=0
SRC_URI=mirror://pypi/d/deepdiff/deepdiff-5.8.1.tar.gz
_eclasses_=toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic baa4d385108ac87993edac956a916a36 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild 30dbf3c5a31db09a19f31ad0a68f2405 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 39e7a84b06eff4efd9f2e0c3d1668b98 python-utils-r1 f6221c2f55e5e832be9919fe1711f33b python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 d05609532b134be7c4ae2514f4c7d06e
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic d309b9713dfc18e754cba88d3ba69653 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild d67e78a235f541871c7dfe4cf7931489 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 8b220bbce5c119fb1d4d5c2f5588f3ea python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 5400d21736d8621562bf93be4fa98eec
_md5_=dc10e48ae5643b39915c94035066802a

View File

@ -1,4 +1,4 @@
BDEPEND=test? ( python_targets_python3_10? ( dev-lang/python:3.10[sqlite] ) >=dev-python/asgiref-3.3.4[python_targets_python3_10(-)?] dev-python/pytz[python_targets_python3_10(-)?] >=dev-python/sqlparse-0.2.2[python_targets_python3_10(-)?] dev-python/docutils[python_targets_python3_10(-)?] dev-python/jinja[python_targets_python3_10(-)?] dev-python/numpy[python_targets_python3_10(-)?] dev-python/pillow[webp,python_targets_python3_10(-)?] dev-python/pyyaml[python_targets_python3_10(-)?] dev-python/selenium[python_targets_python3_10(-)?] dev-python/tblib[python_targets_python3_10(-)?] sys-devel/gettext !!<dev-python/ipython-7.21.0-r1 !!=dev-python/ipython-7.22.0-r0 ) verify-sig? ( >=sec-keys/openpgp-keys-django-20201201 ) doc? ( >=dev-python/sphinx-5.3.0 ) python_targets_python3_10? ( dev-lang/python:3.10[sqlite?,threads(+)] ) >=dev-python/gpep517-15[python_targets_python3_10(-)?] >=dev-python/setuptools-67.8.0-r1[python_targets_python3_10(-)?] verify-sig? ( app-crypt/gnupg >=app-portage/gemato-16 )
BDEPEND=test? ( python_targets_python3_10? ( dev-lang/python:3.10[sqlite] ) >=dev-python/asgiref-3.3.4[python_targets_python3_10(-)?] dev-python/pytz[python_targets_python3_10(-)?] >=dev-python/sqlparse-0.2.2[python_targets_python3_10(-)?] dev-python/docutils[python_targets_python3_10(-)?] dev-python/jinja[python_targets_python3_10(-)?] dev-python/numpy[python_targets_python3_10(-)?] dev-python/pillow[webp,python_targets_python3_10(-)?] dev-python/pyyaml[python_targets_python3_10(-)?] dev-python/selenium[python_targets_python3_10(-)?] dev-python/tblib[python_targets_python3_10(-)?] sys-devel/gettext !!<dev-python/ipython-7.21.0-r1 !!=dev-python/ipython-7.22.0-r0 ) verify-sig? ( >=sec-keys/openpgp-keys-django-20201201 ) doc? ( >=dev-python/sphinx-7.2.6 ) python_targets_python3_10? ( dev-lang/python:3.10[sqlite?,threads(+)] ) >=dev-python/gpep517-15[python_targets_python3_10(-)?] >=dev-python/setuptools-69.0.3[python_targets_python3_10(-)?] verify-sig? ( app-crypt/gnupg >=app-portage/gemato-20 )
DEFINED_PHASES=compile configure install postinst prepare test unpack
DESCRIPTION=High-level Python web framework
EAPI=8
@ -12,5 +12,5 @@ REQUIRED_USE=|| ( python_targets_python3_10 )
RESTRICT=!test? ( test )
SLOT=0
SRC_URI=https://media.djangoproject.com/releases/3.2/Django-3.2.9.tar.gz verify-sig? ( https://media.djangoproject.com/pgp/Django-3.2.9.checksum.txt )
_eclasses_=toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff flag-o-matic baa4d385108ac87993edac956a916a36 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild 30dbf3c5a31db09a19f31ad0a68f2405 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 39e7a84b06eff4efd9f2e0c3d1668b98 python-utils-r1 f6221c2f55e5e832be9919fe1711f33b python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 d05609532b134be7c4ae2514f4c7d06e optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 verify-sig 798e0173d334021f14ba78a786c37059
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff flag-o-matic d309b9713dfc18e754cba88d3ba69653 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild d67e78a235f541871c7dfe4cf7931489 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 8b220bbce5c119fb1d4d5c2f5588f3ea python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 5400d21736d8621562bf93be4fa98eec optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 verify-sig a79ba011daaf532d71a219182474d150
_md5_=35d698daeb7cd996a2c66a791f611676

View File

@ -1,4 +1,4 @@
BDEPEND=test? ( dev-python/django[python_targets_python3_10(-)?] dev-python/pyjwt[python_targets_python3_10(-)?] dev-python/python3-openid[python_targets_python3_10(-)?] dev-python/requests-oauthlib[python_targets_python3_10(-)?] dev-python/requests[python_targets_python3_10(-)?] dev-python/cryptography[python_targets_python3_10(-)?] ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-python/gpep517-15[python_targets_python3_10(-)?] >=dev-python/setuptools-67.8.0-r1[python_targets_python3_10(-)?]
BDEPEND=test? ( dev-python/django[python_targets_python3_10(-)?] dev-python/pyjwt[python_targets_python3_10(-)?] dev-python/python3-openid[python_targets_python3_10(-)?] dev-python/requests-oauthlib[python_targets_python3_10(-)?] dev-python/requests[python_targets_python3_10(-)?] dev-python/cryptography[python_targets_python3_10(-)?] ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-python/gpep517-15[python_targets_python3_10(-)?] >=dev-python/setuptools-69.0.3[python_targets_python3_10(-)?]
DEFINED_PHASES=compile configure install prepare test
DESCRIPTION=Django 3rd party (social) account authentication
EAPI=8
@ -12,5 +12,5 @@ REQUIRED_USE=|| ( python_targets_python3_10 )
RESTRICT=!test? ( test )
SLOT=0
SRC_URI=mirror://pypi/d/django-allauth/django-allauth-0.50.0.tar.gz
_eclasses_=toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic baa4d385108ac87993edac956a916a36 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild 30dbf3c5a31db09a19f31ad0a68f2405 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 39e7a84b06eff4efd9f2e0c3d1668b98 python-utils-r1 f6221c2f55e5e832be9919fe1711f33b python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 d05609532b134be7c4ae2514f4c7d06e
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic d309b9713dfc18e754cba88d3ba69653 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild d67e78a235f541871c7dfe4cf7931489 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 8b220bbce5c119fb1d4d5c2f5588f3ea python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 5400d21736d8621562bf93be4fa98eec
_md5_=b62472fab6074cf421183f88b335bd31

View File

@ -1,4 +1,4 @@
BDEPEND=test? ( dev-python/cryptography[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/django[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pyjwt[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/python3-openid[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/requests-oauthlib[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/requests[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 ) >=dev-python/gpep517-15[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/setuptools-67.8.0-r1[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
BDEPEND=test? ( dev-python/cryptography[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/django[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pyjwt[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/python3-openid[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/requests-oauthlib[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/requests[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 ) >=dev-python/gpep517-15[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/setuptools-69.0.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
DEFINED_PHASES=compile configure install prepare test
DESCRIPTION=Django 3rd party (social) account authentication
EAPI=8
@ -12,5 +12,5 @@ REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 )
RESTRICT=!test? ( test )
SLOT=0
SRC_URI=mirror://pypi/d/django-allauth/django-allauth-0.53.1.tar.gz
_eclasses_=toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic baa4d385108ac87993edac956a916a36 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild 30dbf3c5a31db09a19f31ad0a68f2405 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 39e7a84b06eff4efd9f2e0c3d1668b98 python-utils-r1 f6221c2f55e5e832be9919fe1711f33b python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 d05609532b134be7c4ae2514f4c7d06e
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic d309b9713dfc18e754cba88d3ba69653 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild d67e78a235f541871c7dfe4cf7931489 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 8b220bbce5c119fb1d4d5c2f5588f3ea python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 5400d21736d8621562bf93be4fa98eec
_md5_=0043d57532466b2774c2f3f8f98e3db0

View File

@ -1,4 +1,4 @@
BDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) >=dev-python/gpep517-15[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/setuptools-67.8.0-r1[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
BDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) >=dev-python/gpep517-15[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/setuptools-69.0.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
DEFINED_PHASES=compile configure install prepare test
DESCRIPTION=A helper class for handling configuration defaults of packaged apps gracefully
EAPI=8
@ -11,5 +11,5 @@ RDEPEND=dev-python/django[python_targets_python3_10(-)?,python_targets_python3_1
REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 )
SLOT=0
SRC_URI=mirror://pypi/d/django-appconf/django-appconf-1.0.5.tar.gz
_eclasses_=toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic baa4d385108ac87993edac956a916a36 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild 30dbf3c5a31db09a19f31ad0a68f2405 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 39e7a84b06eff4efd9f2e0c3d1668b98 python-utils-r1 f6221c2f55e5e832be9919fe1711f33b python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 d05609532b134be7c4ae2514f4c7d06e
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic d309b9713dfc18e754cba88d3ba69653 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild d67e78a235f541871c7dfe4cf7931489 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 8b220bbce5c119fb1d4d5c2f5588f3ea python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 5400d21736d8621562bf93be4fa98eec
_md5_=41007e6eaa9666b883462e2c4092efd7

View File

@ -1,4 +1,4 @@
BDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) >=dev-python/setuptools-67.8.0-r1[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
BDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) >=dev-python/setuptools-69.0.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
DEFINED_PHASES=compile configure install prepare test
DESCRIPTION=Compresses linked and inline JavaScript or CSS into single cached files
EAPI=7
@ -12,5 +12,5 @@ REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 )
RESTRICT=test
SLOT=0
SRC_URI=mirror://pypi/d/django_compressor/django_compressor-4.3.1.tar.gz
_eclasses_=toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic baa4d385108ac87993edac956a916a36 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild 30dbf3c5a31db09a19f31ad0a68f2405 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 39e7a84b06eff4efd9f2e0c3d1668b98 eapi8-dosym 5ac4857ad078256d939c44f7c64197a9 python-utils-r1 f6221c2f55e5e832be9919fe1711f33b python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 d05609532b134be7c4ae2514f4c7d06e
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic d309b9713dfc18e754cba88d3ba69653 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild d67e78a235f541871c7dfe4cf7931489 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 eapi8-dosym 5ac4857ad078256d939c44f7c64197a9 python-utils-r1 8b220bbce5c119fb1d4d5c2f5588f3ea python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 5400d21736d8621562bf93be4fa98eec
_md5_=82aa401b5d907600e546acdc54378fe4

View File

@ -1,4 +1,4 @@
BDEPEND=test? ( dev-python/pytest-django[python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) test? ( >=dev-python/django-2.2[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pytest-7.3.1[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 ) >=dev-python/gpep517-15[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/setuptools-67.8.0-r1[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
BDEPEND=test? ( dev-python/pytest-django[python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) test? ( >=dev-python/django-2.2[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pytest-7.4.4[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 ) >=dev-python/gpep517-15[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/setuptools-69.0.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
DEFINED_PHASES=compile configure install prepare test
DESCRIPTION=Django App that adds CORS (Cross-Origin Resource Sharing) headers to responses
EAPI=8
@ -12,5 +12,5 @@ REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 )
RESTRICT=!test? ( test )
SLOT=0
SRC_URI=https://github.com/adamchainz/django-cors-headers/archive/3.13.0.tar.gz -> django-cors-headers-3.13.0.gh.tar.gz
_eclasses_=toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic baa4d385108ac87993edac956a916a36 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild 30dbf3c5a31db09a19f31ad0a68f2405 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 39e7a84b06eff4efd9f2e0c3d1668b98 python-utils-r1 f6221c2f55e5e832be9919fe1711f33b python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 d05609532b134be7c4ae2514f4c7d06e
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic d309b9713dfc18e754cba88d3ba69653 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild d67e78a235f541871c7dfe4cf7931489 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 8b220bbce5c119fb1d4d5c2f5588f3ea python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 5400d21736d8621562bf93be4fa98eec
_md5_=6205bbf6a3000c20df5f7fb4f1dbbe78

View File

@ -1,4 +1,4 @@
BDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-python/setuptools-67.8.0-r1[python_targets_python3_10(-)?]
BDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-python/setuptools-69.0.3[python_targets_python3_10(-)?]
DEFINED_PHASES=compile configure install prepare test
DEPEND=>=dev-python/cryptography-2.0[python_targets_python3_10(-)?] >=dev-python/django-3.0[python_targets_python3_10(-)?]
DESCRIPTION=Easily encrypt data in Django
@ -12,5 +12,5 @@ RDEPEND=>=dev-python/cryptography-2.0[python_targets_python3_10(-)?] >=dev-pytho
REQUIRED_USE=|| ( python_targets_python3_10 )
SLOT=0
SRC_URI=mirror://pypi/d/django-cryptography/django-cryptography-1.0.tar.gz
_eclasses_=toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic baa4d385108ac87993edac956a916a36 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild 30dbf3c5a31db09a19f31ad0a68f2405 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 39e7a84b06eff4efd9f2e0c3d1668b98 eapi8-dosym 5ac4857ad078256d939c44f7c64197a9 python-utils-r1 f6221c2f55e5e832be9919fe1711f33b python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 d05609532b134be7c4ae2514f4c7d06e
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic d309b9713dfc18e754cba88d3ba69653 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild d67e78a235f541871c7dfe4cf7931489 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 eapi8-dosym 5ac4857ad078256d939c44f7c64197a9 python-utils-r1 8b220bbce5c119fb1d4d5c2f5588f3ea python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 5400d21736d8621562bf93be4fa98eec
_md5_=3581dae82a08bc7e2bd0b1ca3354645d

View File

@ -1,4 +1,4 @@
BDEPEND=doc? ( || ( ( dev-lang/python:3.11 >=dev-python/sphinx-5.3.0[python_targets_python3_11(-)] ) ( dev-lang/python:3.10 >=dev-python/sphinx-5.3.0[python_targets_python3_10(-)] ) ) ) python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) >=dev-python/setuptools-67.8.0-r1[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
BDEPEND=doc? ( || ( ( dev-lang/python:3.11 >=dev-python/sphinx-7.2.6[python_targets_python3_11(-)] ) ( dev-lang/python:3.10 >=dev-python/sphinx-7.2.6[python_targets_python3_10(-)] ) ) ) python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) >=dev-python/setuptools-69.0.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
DEFINED_PHASES=compile configure install prepare test
DEPEND=test? ( python_targets_python3_10? ( dev-lang/python:3.10[sqlite] ) python_targets_python3_11? ( dev-lang/python:3.11[sqlite] ) dev-python/django[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/sqlparse[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/jinja[python_targets_python3_10(-)?,python_targets_python3_11(-)?] )
DESCRIPTION=A configurable set of panels that display debug information
@ -13,5 +13,5 @@ REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 )
RESTRICT=!test? ( test )
SLOT=0
SRC_URI=https://github.com/jazzband/django-debug-toolbar/archive/3.2.2.tar.gz -> django-debug-toolbar-3.2.2.tar.gz
_eclasses_=toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic baa4d385108ac87993edac956a916a36 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild 30dbf3c5a31db09a19f31ad0a68f2405 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 39e7a84b06eff4efd9f2e0c3d1668b98 eapi8-dosym 5ac4857ad078256d939c44f7c64197a9 python-utils-r1 f6221c2f55e5e832be9919fe1711f33b python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 d05609532b134be7c4ae2514f4c7d06e
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic d309b9713dfc18e754cba88d3ba69653 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild d67e78a235f541871c7dfe4cf7931489 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 eapi8-dosym 5ac4857ad078256d939c44f7c64197a9 python-utils-r1 8b220bbce5c119fb1d4d5c2f5588f3ea python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 5400d21736d8621562bf93be4fa98eec
_md5_=c3aa854ebdcdb7dcbeb204a83aa99e18

View File

@ -1,4 +1,4 @@
BDEPEND=test? ( python_targets_python3_10? ( dev-lang/python:3.10[sqlite] ) >=dev-python/django-3.3[python_targets_python3_10(-)?] >=dev-python/sqlparse-0.2.0[python_targets_python3_10(-)?] ) doc? ( || ( ( dev-lang/python:3.10 >=dev-python/sphinx-5.3.0[python_targets_python3_10(-)] ) ) ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-python/gpep517-15[python_targets_python3_10(-)?] >=dev-python/setuptools-67.8.0-r1[python_targets_python3_10(-)?]
BDEPEND=test? ( python_targets_python3_10? ( dev-lang/python:3.10[sqlite] ) >=dev-python/django-3.3[python_targets_python3_10(-)?] >=dev-python/sqlparse-0.2.0[python_targets_python3_10(-)?] ) doc? ( || ( ( dev-lang/python:3.10 >=dev-python/sphinx-7.2.6[python_targets_python3_10(-)] ) ) ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-python/gpep517-15[python_targets_python3_10(-)?] >=dev-python/setuptools-69.0.3[python_targets_python3_10(-)?]
DEFINED_PHASES=compile configure install prepare test
DESCRIPTION=A configurable set of panels that display debug information
EAPI=8
@ -12,5 +12,5 @@ REQUIRED_USE=|| ( python_targets_python3_10 )
RESTRICT=!test? ( test )
SLOT=0
SRC_URI=https://github.com/jazzband/django-debug-toolbar/archive/3.4.tar.gz -> django-debug-toolbar-3.4.tar.gz
_eclasses_=toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic baa4d385108ac87993edac956a916a36 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild 30dbf3c5a31db09a19f31ad0a68f2405 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 39e7a84b06eff4efd9f2e0c3d1668b98 python-utils-r1 f6221c2f55e5e832be9919fe1711f33b python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 d05609532b134be7c4ae2514f4c7d06e
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic d309b9713dfc18e754cba88d3ba69653 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild d67e78a235f541871c7dfe4cf7931489 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 8b220bbce5c119fb1d4d5c2f5588f3ea python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 5400d21736d8621562bf93be4fa98eec
_md5_=4b0eff0f84a4fd7dc5edbc1fae5c7baa

View File

@ -1,4 +1,4 @@
BDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) >=dev-python/setuptools-67.8.0-r1[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
BDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) >=dev-python/setuptools-69.0.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
DEFINED_PHASES=compile configure install prepare test
DEPEND=dev-python/setuptools[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
DESCRIPTION=A collection of custom extensions for the Django Framework
@ -12,5 +12,5 @@ RDEPEND=dev-python/django[python_targets_python3_10(-)?,python_targets_python3_1
REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 )
SLOT=0
SRC_URI=mirror://pypi/d/django-extensions/django-extensions-3.2.1.tar.gz
_eclasses_=toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic baa4d385108ac87993edac956a916a36 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild 30dbf3c5a31db09a19f31ad0a68f2405 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 39e7a84b06eff4efd9f2e0c3d1668b98 eapi8-dosym 5ac4857ad078256d939c44f7c64197a9 python-utils-r1 f6221c2f55e5e832be9919fe1711f33b python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 d05609532b134be7c4ae2514f4c7d06e
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic d309b9713dfc18e754cba88d3ba69653 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild d67e78a235f541871c7dfe4cf7931489 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 eapi8-dosym 5ac4857ad078256d939c44f7c64197a9 python-utils-r1 8b220bbce5c119fb1d4d5c2f5588f3ea python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 5400d21736d8621562bf93be4fa98eec
_md5_=f2487644d1d8baabf91fce9969ff3ad0

View File

@ -1,4 +1,4 @@
BDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) >=dev-python/setuptools-67.8.0-r1[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
BDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) >=dev-python/setuptools-69.0.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
DEFINED_PHASES=compile configure install prepare test
DEPEND=>=dev-python/django-2.2[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/graphene-django-2.0.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/django-debug-toolbar-3.1[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
DESCRIPTION=Django Debug Toolbar for GraphiQL IDE
@ -12,5 +12,5 @@ RDEPEND=>=dev-python/django-2.2[python_targets_python3_10(-)?,python_targets_pyt
REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 )
SLOT=0
SRC_URI=mirror://pypi/d/django-graphiql-debug-toolbar/django-graphiql-debug-toolbar-0.2.0.tar.gz
_eclasses_=toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic baa4d385108ac87993edac956a916a36 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild 30dbf3c5a31db09a19f31ad0a68f2405 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 39e7a84b06eff4efd9f2e0c3d1668b98 python-utils-r1 f6221c2f55e5e832be9919fe1711f33b python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 d05609532b134be7c4ae2514f4c7d06e
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic d309b9713dfc18e754cba88d3ba69653 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild d67e78a235f541871c7dfe4cf7931489 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 8b220bbce5c119fb1d4d5c2f5588f3ea python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 5400d21736d8621562bf93be4fa98eec
_md5_=3f17a3fb97886bfa25459d948a56659a

View File

@ -1,4 +1,4 @@
BDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) >=dev-python/setuptools-67.8.0-r1[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
BDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) >=dev-python/setuptools-69.0.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
DEFINED_PHASES=compile configure install prepare test
DEPEND=dev-python/setuptools[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
DESCRIPTION=Essential Gravatar support for Django
@ -12,5 +12,5 @@ RDEPEND=dev-python/django[python_targets_python3_10(-)?,python_targets_python3_1
REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 )
SLOT=0
SRC_URI=mirror://pypi/d/django-gravatar2/django-gravatar2-1.4.4.tar.gz
_eclasses_=toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic baa4d385108ac87993edac956a916a36 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild 30dbf3c5a31db09a19f31ad0a68f2405 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 39e7a84b06eff4efd9f2e0c3d1668b98 eapi8-dosym 5ac4857ad078256d939c44f7c64197a9 python-utils-r1 f6221c2f55e5e832be9919fe1711f33b python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 d05609532b134be7c4ae2514f4c7d06e
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic d309b9713dfc18e754cba88d3ba69653 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild d67e78a235f541871c7dfe4cf7931489 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 eapi8-dosym 5ac4857ad078256d939c44f7c64197a9 python-utils-r1 8b220bbce5c119fb1d4d5c2f5588f3ea python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 5400d21736d8621562bf93be4fa98eec
_md5_=737fe6ff7d3490ac1f608e57135b65e4

View File

@ -1,4 +1,4 @@
BDEPEND=doc? ( >=dev-python/sphinx-5.3.0 ) python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) >=dev-python/gpep517-15[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/setuptools-67.8.0-r1[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
BDEPEND=doc? ( >=dev-python/sphinx-7.2.6 ) python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) >=dev-python/gpep517-15[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/setuptools-69.0.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
DEFINED_PHASES=compile configure install prepare test
DESCRIPTION=Pluggable search for Django
EAPI=8
@ -12,5 +12,5 @@ REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 )
RESTRICT=test
SLOT=0
SRC_URI=mirror://pypi/d/django-haystack/django-haystack-3.2.1.tar.gz
_eclasses_=toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic baa4d385108ac87993edac956a916a36 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild 30dbf3c5a31db09a19f31ad0a68f2405 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 39e7a84b06eff4efd9f2e0c3d1668b98 python-utils-r1 f6221c2f55e5e832be9919fe1711f33b python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 d05609532b134be7c4ae2514f4c7d06e
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic d309b9713dfc18e754cba88d3ba69653 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild d67e78a235f541871c7dfe4cf7931489 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 8b220bbce5c119fb1d4d5c2f5588f3ea python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 5400d21736d8621562bf93be4fa98eec
_md5_=42fa46e815f841e7b2ba4806780b9d7e

View File

@ -1,4 +1,4 @@
BDEPEND=test? ( >=dev-python/django-2.2[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 ) >=dev-python/gpep517-15[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/setuptools-67.8.0-r1[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
BDEPEND=test? ( >=dev-python/django-2.2[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 ) >=dev-python/gpep517-15[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/setuptools-69.0.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
DEFINED_PHASES=compile configure install prepare test
DESCRIPTION=script tag with additional attributes for django.forms.Media
EAPI=8
@ -12,5 +12,5 @@ REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 )
RESTRICT=!test? ( test )
SLOT=0
SRC_URI=https://github.com/matthiask/django-js-asset/archive/2.0.tar.gz -> django-js-asset-2.0.gh.tar.gz
_eclasses_=toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic baa4d385108ac87993edac956a916a36 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild 30dbf3c5a31db09a19f31ad0a68f2405 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 39e7a84b06eff4efd9f2e0c3d1668b98 python-utils-r1 f6221c2f55e5e832be9919fe1711f33b python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 d05609532b134be7c4ae2514f4c7d06e
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic d309b9713dfc18e754cba88d3ba69653 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild d67e78a235f541871c7dfe4cf7931489 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 8b220bbce5c119fb1d4d5c2f5588f3ea python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 5400d21736d8621562bf93be4fa98eec
_md5_=1e6c066ad92ce4e66c80997ec525723f

View File

@ -1,4 +1,4 @@
BDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) >=dev-python/setuptools-67.8.0-r1[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
BDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) >=dev-python/setuptools-69.0.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
DEFINED_PHASES=compile configure install prepare test
DESCRIPTION=utilities for modified preorder tree traversal and trees of model instances
EAPI=8
@ -11,5 +11,5 @@ RDEPEND=>=dev-python/django-1.11[python_targets_python3_10(-)?,python_targets_py
REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 )
SLOT=0
SRC_URI=https://github.com/django-mptt/django-mptt/archive/0.13.4.tar.gz -> django-mptt-0.13.4.gh.tar.gz
_eclasses_=toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic baa4d385108ac87993edac956a916a36 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild 30dbf3c5a31db09a19f31ad0a68f2405 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 39e7a84b06eff4efd9f2e0c3d1668b98 python-utils-r1 f6221c2f55e5e832be9919fe1711f33b python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 d05609532b134be7c4ae2514f4c7d06e
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic d309b9713dfc18e754cba88d3ba69653 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild d67e78a235f541871c7dfe4cf7931489 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 8b220bbce5c119fb1d4d5c2f5588f3ea python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 5400d21736d8621562bf93be4fa98eec
_md5_=9cdc658b87099c6b50b49c70cf3315cc

View File

@ -1,4 +1,4 @@
BDEPEND=test? ( dev-python/six[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pytest-7.3.1[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 ) >=dev-python/gpep517-15[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/setuptools-67.8.0-r1[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
BDEPEND=test? ( dev-python/six[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pytest-7.4.4[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 ) >=dev-python/gpep517-15[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/setuptools-69.0.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
DEFINED_PHASES=compile configure install prepare test
DESCRIPTION=PostgreSQL locking context managers and functions for Django
EAPI=8
@ -12,5 +12,5 @@ REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 )
RESTRICT=test !test? ( test )
SLOT=0
SRC_URI=mirror://pypi/d/django-pglocks/django-pglocks-1.0.4.tar.gz
_eclasses_=toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic baa4d385108ac87993edac956a916a36 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild 30dbf3c5a31db09a19f31ad0a68f2405 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 39e7a84b06eff4efd9f2e0c3d1668b98 python-utils-r1 f6221c2f55e5e832be9919fe1711f33b python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 d05609532b134be7c4ae2514f4c7d06e
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic d309b9713dfc18e754cba88d3ba69653 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild d67e78a235f541871c7dfe4cf7931489 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 8b220bbce5c119fb1d4d5c2f5588f3ea python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 5400d21736d8621562bf93be4fa98eec
_md5_=3591502681fef093ed834ab1aaeab6e6

View File

@ -1,4 +1,4 @@
BDEPEND=test? ( python_targets_python3_10? ( dev-python/unittest-or-fail[python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_python3_11? ( dev-python/unittest-or-fail[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 ) >=dev-python/setuptools-67.8.0-r1[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
BDEPEND=test? ( python_targets_python3_10? ( dev-python/unittest-or-fail[python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_python3_11? ( dev-python/unittest-or-fail[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 ) >=dev-python/setuptools-69.0.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
DEFINED_PHASES=compile configure install prepare test
DEPEND=dev-python/django[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
DESCRIPTION=Pickled object field for Django
@ -13,5 +13,5 @@ REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 )
RESTRICT=!test? ( test )
SLOT=0
SRC_URI=mirror://pypi/d/django-picklefield/django-picklefield-3.1.tar.gz
_eclasses_=toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic baa4d385108ac87993edac956a916a36 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild 30dbf3c5a31db09a19f31ad0a68f2405 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 39e7a84b06eff4efd9f2e0c3d1668b98 python-utils-r1 f6221c2f55e5e832be9919fe1711f33b python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 d05609532b134be7c4ae2514f4c7d06e
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic d309b9713dfc18e754cba88d3ba69653 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild d67e78a235f541871c7dfe4cf7931489 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 8b220bbce5c119fb1d4d5c2f5588f3ea python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 5400d21736d8621562bf93be4fa98eec
_md5_=b0e6ddfe6707de8b0d8b1c18f53dd5ce

View File

@ -1,4 +1,4 @@
BDEPEND=test? ( dev-python/django[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/prometheus_client-0.7[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pytest-7.3.1[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 ) >=dev-python/setuptools-67.8.0-r1[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
BDEPEND=test? ( dev-python/django[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/prometheus_client-0.7[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pytest-7.4.4[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 ) >=dev-python/setuptools-69.0.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
DEFINED_PHASES=compile configure install prepare test
DESCRIPTION=Library to export Django metrics for Prometheus
EAPI=8
@ -12,5 +12,5 @@ REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 )
RESTRICT=!test? ( test )
SLOT=0
SRC_URI=mirror://pypi/d/django-prometheus/django-prometheus-2.2.0.tar.gz
_eclasses_=toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic baa4d385108ac87993edac956a916a36 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild 30dbf3c5a31db09a19f31ad0a68f2405 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 39e7a84b06eff4efd9f2e0c3d1668b98 python-utils-r1 f6221c2f55e5e832be9919fe1711f33b python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 d05609532b134be7c4ae2514f4c7d06e
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic d309b9713dfc18e754cba88d3ba69653 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild d67e78a235f541871c7dfe4cf7931489 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 8b220bbce5c119fb1d4d5c2f5588f3ea python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 5400d21736d8621562bf93be4fa98eec
_md5_=affe622edad7b68fd03a25ea2bcd5125

View File

@ -1,4 +1,4 @@
BDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) >=dev-python/setuptools-67.8.0-r1[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
BDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) >=dev-python/setuptools-69.0.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
DEFINED_PHASES=compile configure install prepare test
DEPEND=dev-python/setuptools[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
DESCRIPTION=A multiprocessing distributed task queue for Django
@ -12,5 +12,5 @@ RDEPEND=dev-python/django[python_targets_python3_10(-)?,python_targets_python3_1
REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 )
SLOT=0
SRC_URI=mirror://pypi/d/django-q/django-q-1.3.9.tar.gz
_eclasses_=toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic baa4d385108ac87993edac956a916a36 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild 30dbf3c5a31db09a19f31ad0a68f2405 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 39e7a84b06eff4efd9f2e0c3d1668b98 eapi8-dosym 5ac4857ad078256d939c44f7c64197a9 python-utils-r1 f6221c2f55e5e832be9919fe1711f33b python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 d05609532b134be7c4ae2514f4c7d06e
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic d309b9713dfc18e754cba88d3ba69653 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild d67e78a235f541871c7dfe4cf7931489 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 eapi8-dosym 5ac4857ad078256d939c44f7c64197a9 python-utils-r1 8b220bbce5c119fb1d4d5c2f5588f3ea python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 5400d21736d8621562bf93be4fa98eec
_md5_=2529dcf3901fca866ddbc08b67beadd2

View File

@ -1,4 +1,4 @@
BDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) >=dev-python/gpep517-15[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/setuptools-67.8.0-r1[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
BDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) >=dev-python/gpep517-15[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/setuptools-69.0.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
DEFINED_PHASES=compile configure install prepare test
DEPEND=>=dev-python/django-2.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/rq-1.2[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/redis-3[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
DESCRIPTION=A simple app that provides django integration for RQ (Redis Queue)
@ -12,5 +12,5 @@ RDEPEND=>=dev-python/django-2.0[python_targets_python3_10(-)?,python_targets_pyt
REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 )
SLOT=0
SRC_URI=https://github.com/rq/django-rq/archive/refs/tags/v2.5.1.tar.gz -> django-rq-2.5.1.tar.gz
_eclasses_=toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic baa4d385108ac87993edac956a916a36 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild 30dbf3c5a31db09a19f31ad0a68f2405 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 39e7a84b06eff4efd9f2e0c3d1668b98 python-utils-r1 f6221c2f55e5e832be9919fe1711f33b python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 d05609532b134be7c4ae2514f4c7d06e
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic d309b9713dfc18e754cba88d3ba69653 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild d67e78a235f541871c7dfe4cf7931489 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 8b220bbce5c119fb1d4d5c2f5588f3ea python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 5400d21736d8621562bf93be4fa98eec
_md5_=af487d0a5b55154f811cf19e9331a8be

View File

@ -1,4 +1,4 @@
BDEPEND=test? ( dev-python/coreapi[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/coreschema[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pytest-django[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pyyaml[python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) test? ( >=dev-python/django-3.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pytz[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pytest-7.3.1[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 ) >=dev-python/gpep517-15[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/setuptools-67.8.0-r1[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
BDEPEND=test? ( dev-python/coreapi[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/coreschema[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pytest-django[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pyyaml[python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) test? ( >=dev-python/django-3.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pytz[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pytest-7.4.4[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 ) >=dev-python/gpep517-15[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/setuptools-69.0.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
DEFINED_PHASES=compile configure install prepare test
DESCRIPTION=Web APIs with django made easy
EAPI=8
@ -12,5 +12,5 @@ REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 )
RESTRICT=!test? ( test )
SLOT=0
SRC_URI=https://github.com/encode/django-rest-framework/archive/3.12.4.tar.gz -> django-rest-framework-3.12.4.gh.tar.gz
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic 78cf3cc2d5572fddf5e5e10c70f7c81a out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild d67e78a235f541871c7dfe4cf7931489 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 042f4cc53680245bf99a84669b94155a python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 b9318b5e40104e608d7e4582121fb561
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic d309b9713dfc18e754cba88d3ba69653 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild d67e78a235f541871c7dfe4cf7931489 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 8b220bbce5c119fb1d4d5c2f5588f3ea python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 5400d21736d8621562bf93be4fa98eec
_md5_=ab10e192591347dc2da118d1b8a77dbf

View File

@ -1,4 +1,4 @@
BDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) >=dev-python/gpep517-15[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/setuptools-67.8.0-r1[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
BDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) >=dev-python/gpep517-15[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/setuptools-69.0.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
DEFINED_PHASES=compile configure install prepare test
DESCRIPTION=dmidecode py
EAPI=8
@ -11,5 +11,5 @@ RDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_pytho
REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 )
SLOT=0
SRC_URI=https://files.pythonhosted.org/packages/source/d/dmidecode/dmidecode-0.9.0.tar.gz
_eclasses_=toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic baa4d385108ac87993edac956a916a36 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild 30dbf3c5a31db09a19f31ad0a68f2405 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 39e7a84b06eff4efd9f2e0c3d1668b98 python-utils-r1 f6221c2f55e5e832be9919fe1711f33b python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 d05609532b134be7c4ae2514f4c7d06e pypi 2eecb475512bc76e5ea9192a681b9e6b
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic d309b9713dfc18e754cba88d3ba69653 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild d67e78a235f541871c7dfe4cf7931489 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 8b220bbce5c119fb1d4d5c2f5588f3ea python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 5400d21736d8621562bf93be4fa98eec pypi 2eecb475512bc76e5ea9192a681b9e6b
_md5_=086267a112face7584b2b552a85bf95b

View File

@ -1,4 +1,4 @@
BDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) >=dev-python/gpep517-15[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/setuptools-67.8.0-r1[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
BDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) >=dev-python/gpep517-15[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/setuptools-69.0.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
DEFINED_PHASES=compile configure install prepare test
DESCRIPTION=Automated generation of real Swagger schemas from Django code
EAPI=8
@ -11,5 +11,5 @@ RDEPEND=>=dev-python/coreapi-2.3.3[python_targets_python3_10(-)?,python_targets_
REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 )
SLOT=0
SRC_URI=https://github.com/axnsan12/drf-yasg/archive/refs/tags/1.20.0.tar.gz -> drf-yasg-1.20.0.tar.gz
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic 78cf3cc2d5572fddf5e5e10c70f7c81a out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild d67e78a235f541871c7dfe4cf7931489 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 042f4cc53680245bf99a84669b94155a python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 b9318b5e40104e608d7e4582121fb561
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic d309b9713dfc18e754cba88d3ba69653 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild d67e78a235f541871c7dfe4cf7931489 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 8b220bbce5c119fb1d4d5c2f5588f3ea python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 5400d21736d8621562bf93be4fa98eec
_md5_=16e20b909b74510c911fe6beef817998

View File

@ -1,4 +1,4 @@
BDEPEND=~net-analyzer/dublin-traceroute-0.4.2 dev-libs/jsoncpp net-libs/libpcap net-libs/libtins python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) >=dev-python/setuptools-67.8.0-r1[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
BDEPEND=~net-analyzer/dublin-traceroute-0.4.2 dev-libs/jsoncpp net-libs/libpcap net-libs/libtins python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) >=dev-python/setuptools-69.0.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
DEFINED_PHASES=compile configure install prepare test
DESCRIPTION=Python bindings for Dublin Traceroute
EAPI=8
@ -11,5 +11,5 @@ RDEPEND=analysis? ( dev-python/pandas[python_targets_python3_10(-)?,python_targe
REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 )
SLOT=0
SRC_URI=mirror://pypi/d/dublintraceroute/dublintraceroute-0.4.2.tar.gz
_eclasses_=toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic baa4d385108ac87993edac956a916a36 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild 30dbf3c5a31db09a19f31ad0a68f2405 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 39e7a84b06eff4efd9f2e0c3d1668b98 python-utils-r1 f6221c2f55e5e832be9919fe1711f33b python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 d05609532b134be7c4ae2514f4c7d06e
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic d309b9713dfc18e754cba88d3ba69653 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild d67e78a235f541871c7dfe4cf7931489 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 8b220bbce5c119fb1d4d5c2f5588f3ea python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 5400d21736d8621562bf93be4fa98eec
_md5_=507fd83b79626602c6ecfcc189e98f0e

View File

@ -1,4 +1,4 @@
BDEPEND=test? ( >=dev-python/requests-2.0.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?] <dev-python/requests-3.0.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/aiohttp[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/mock[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/numpy[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pandas[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/python-dateutil[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pyyaml-5.4[python_targets_python3_10(-)?,python_targets_python3_11(-)?] virtual/jre:* async? ( dev-python/pytest-asyncio[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/unasync[python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) ) doc? ( || ( ( dev-lang/python:3.11 >=dev-python/sphinx-5.3.0[python_targets_python3_11(-)] dev-python/sphinx_rtd_theme[python_targets_python3_11(-)] ) ( dev-lang/python:3.10 >=dev-python/sphinx-5.3.0[python_targets_python3_10(-)] dev-python/sphinx_rtd_theme[python_targets_python3_10(-)] ) ) ) test? ( dev-python/certifi[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/urllib3-1.26.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?] <dev-python/urllib3-2.0.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?] async? ( >=dev-python/aiohttp-3[python_targets_python3_10(-)?,python_targets_python3_11(-)?] <dev-python/aiohttp-4[python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) >=dev-python/pytest-7.3.1[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 ) >=dev-python/setuptools-67.8.0-r1[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
BDEPEND=test? ( >=dev-python/requests-2.0.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?] <dev-python/requests-3.0.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/aiohttp[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/mock[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/numpy[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pandas[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/python-dateutil[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pyyaml-5.4[python_targets_python3_10(-)?,python_targets_python3_11(-)?] virtual/jre:* async? ( dev-python/pytest-asyncio[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/unasync[python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) ) doc? ( || ( ( dev-lang/python:3.11 >=dev-python/sphinx-7.2.6[python_targets_python3_11(-)] dev-python/sphinx_rtd_theme[python_targets_python3_11(-)] ) ( dev-lang/python:3.10 >=dev-python/sphinx-7.2.6[python_targets_python3_10(-)] dev-python/sphinx_rtd_theme[python_targets_python3_10(-)] ) ) ) test? ( dev-python/certifi[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/urllib3-1.26.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?] <dev-python/urllib3-2.0.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?] async? ( >=dev-python/aiohttp-3[python_targets_python3_10(-)?,python_targets_python3_11(-)?] <dev-python/aiohttp-4[python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) >=dev-python/pytest-7.4.4[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 ) >=dev-python/setuptools-69.0.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
DEFINED_PHASES=compile configure install prepare test
DESCRIPTION=Official Python low-level client for Elasticsearch
EAPI=8
@ -13,5 +13,5 @@ REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 )
RESTRICT=test !test? ( test )
SLOT=0
SRC_URI=https://github.com/elastic/elasticsearch-py/archive/v7.17.6.tar.gz -> elasticsearch-py-7.17.6.gh.tar.gz test? ( https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.17.6-no-jdk-linux-x86_64.tar.gz )
_eclasses_=toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic baa4d385108ac87993edac956a916a36 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild 30dbf3c5a31db09a19f31ad0a68f2405 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 39e7a84b06eff4efd9f2e0c3d1668b98 python-utils-r1 f6221c2f55e5e832be9919fe1711f33b python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 d05609532b134be7c4ae2514f4c7d06e
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic d309b9713dfc18e754cba88d3ba69653 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild d67e78a235f541871c7dfe4cf7931489 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 8b220bbce5c119fb1d4d5c2f5588f3ea python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 5400d21736d8621562bf93be4fa98eec
_md5_=2bf3ec801f5320e8d9b67645e22d0f2b

View File

@ -1,4 +1,4 @@
BDEPEND=dev-python/cython[python_targets_python3_10(-)?,python_targets_python3_11(-)?] test? ( dev-python/aiofiles[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/cbor2[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/httpx[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/msgpack[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pytest-asyncio[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pyyaml[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/uvicorn[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/websockets[python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) test? ( >=dev-python/pytest-7.3.1[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 ) >=dev-python/gpep517-15[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/setuptools-67.8.0-r1[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
BDEPEND=dev-python/cython[python_targets_python3_10(-)?,python_targets_python3_11(-)?] test? ( dev-python/aiofiles[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/cbor2[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/httpx[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/msgpack[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pytest-asyncio[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pyyaml[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/uvicorn[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/websockets[python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) test? ( >=dev-python/pytest-7.4.4[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 ) >=dev-python/gpep517-15[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/setuptools-69.0.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
DEFINED_PHASES=compile configure install prepare test
DESCRIPTION=A supersonic micro-framework for building cloud APIs
EAPI=8
@ -12,5 +12,5 @@ REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 )
RESTRICT=!test? ( test )
SLOT=0
SRC_URI=https://github.com/falconry/falcon/archive/3.1.1.tar.gz -> falcon-3.1.1.tar.gz
_eclasses_=toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic baa4d385108ac87993edac956a916a36 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild 30dbf3c5a31db09a19f31ad0a68f2405 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 39e7a84b06eff4efd9f2e0c3d1668b98 python-utils-r1 f6221c2f55e5e832be9919fe1711f33b python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 d05609532b134be7c4ae2514f4c7d06e
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic d309b9713dfc18e754cba88d3ba69653 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild d67e78a235f541871c7dfe4cf7931489 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 8b220bbce5c119fb1d4d5c2f5588f3ea python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 5400d21736d8621562bf93be4fa98eec
_md5_=0a743ba944699d4b9cf38a31e78eb4af

View File

@ -1,4 +1,4 @@
BDEPEND=test? ( dev-python/atpublic[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/zope-interface[python_targets_python3_10(-)?,python_targets_python3_11(-)?] python_targets_python3_10? ( dev-python/unittest-or-fail[python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_python3_11? ( dev-python/unittest-or-fail[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 ) >=dev-python/setuptools-67.8.0-r1[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
BDEPEND=test? ( dev-python/atpublic[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/zope-interface[python_targets_python3_10(-)?,python_targets_python3_11(-)?] python_targets_python3_10? ( dev-python/unittest-or-fail[python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_python3_11? ( dev-python/unittest-or-fail[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 ) >=dev-python/setuptools-69.0.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
DEFINED_PHASES=compile configure install prepare test
DESCRIPTION=Email bounce detectors
EAPI=8
@ -12,5 +12,5 @@ REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 )
RESTRICT=!test? ( test )
SLOT=0
SRC_URI=mirror://pypi/f/flufl.bounce/flufl.bounce-4.0.tar.gz
_eclasses_=toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic baa4d385108ac87993edac956a916a36 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild 30dbf3c5a31db09a19f31ad0a68f2405 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 39e7a84b06eff4efd9f2e0c3d1668b98 python-utils-r1 f6221c2f55e5e832be9919fe1711f33b python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 d05609532b134be7c4ae2514f4c7d06e
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic d309b9713dfc18e754cba88d3ba69653 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild d67e78a235f541871c7dfe4cf7931489 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 8b220bbce5c119fb1d4d5c2f5588f3ea python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 5400d21736d8621562bf93be4fa98eec
_md5_=23dd817f9d090372b7d11c0c0a1b56e7

View File

@ -1,16 +0,0 @@
BDEPEND=test? ( dev-python/sybil[python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) test? ( dev-python/atpublic[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pytest-7.3.1[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 ) >=dev-python/gpep517-15[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pdm-pep517-1.1.4[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
DEFINED_PHASES=compile configure install prepare test
DESCRIPTION=A high level API for Python internationalization
EAPI=8
HOMEPAGE=https://gitlab.com/warsaw/flufl.i18n
INHERIT=distutils-r1
IUSE=test python_targets_python3_10 python_targets_python3_11
KEYWORDS=~amd64 ~x86
LICENSE=Apache-2.0
RDEPEND=dev-python/atpublic[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 )
RESTRICT=!test? ( test )
SLOT=0
SRC_URI=mirror://pypi/f/flufl.i18n/flufl.i18n-4.1.1.tar.gz
_eclasses_=toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic baa4d385108ac87993edac956a916a36 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild 30dbf3c5a31db09a19f31ad0a68f2405 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 39e7a84b06eff4efd9f2e0c3d1668b98 python-utils-r1 f6221c2f55e5e832be9919fe1711f33b python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 d05609532b134be7c4ae2514f4c7d06e
_md5_=5c921131f8fa1e048548e1bb4b079e1b

View File

@ -1,4 +1,4 @@
BDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) >=dev-python/setuptools-67.8.0-r1[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
BDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) >=dev-python/setuptools-69.0.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
DEFINED_PHASES=compile configure install prepare test
DESCRIPTION=Small collection of test tool plugins
EAPI=8
@ -11,5 +11,5 @@ RDEPEND=dev-python/nose2[python_targets_python3_10(-)?,python_targets_python3_11
REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 )
SLOT=0
SRC_URI=mirror://pypi/f/flufl.testing/flufl.testing-0.8.tar.gz
_eclasses_=toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic baa4d385108ac87993edac956a916a36 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild 30dbf3c5a31db09a19f31ad0a68f2405 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 39e7a84b06eff4efd9f2e0c3d1668b98 python-utils-r1 f6221c2f55e5e832be9919fe1711f33b python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 d05609532b134be7c4ae2514f4c7d06e
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic d309b9713dfc18e754cba88d3ba69653 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild d67e78a235f541871c7dfe4cf7931489 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 8b220bbce5c119fb1d4d5c2f5588f3ea python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 5400d21736d8621562bf93be4fa98eec
_md5_=8ed6cd48386127c2477be958efab3c81

View File

@ -1,4 +1,4 @@
BDEPEND=doc? ( app-arch/unzip ) test? ( dev-python/iso8601[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/promise[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pytest-asyncio[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pytest-benchmark[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pytest-mock[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pytz[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/snapshottest[python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) test? ( dev-python/aniso8601[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/graphql-core[python_targets_python3_10(-)?,python_targets_python3_11(-)?] <dev-python/graphql-core-3 dev-python/graphql-relay[python_targets_python3_10(-)?,python_targets_python3_11(-)?] <dev-python/graphql-relay-3 >=dev-python/pytest-7.3.1[python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) doc? ( || ( ( dev-lang/python:3.11 >=dev-python/sphinx-5.3.0[python_targets_python3_11(-)] ) ( dev-lang/python:3.10 >=dev-python/sphinx-5.3.0[python_targets_python3_10(-)] ) ) ) python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) >=dev-python/setuptools-67.8.0-r1[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
BDEPEND=doc? ( app-arch/unzip ) test? ( dev-python/iso8601[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/promise[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pytest-asyncio[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pytest-benchmark[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pytest-mock[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pytz[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/snapshottest[python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) test? ( dev-python/aniso8601[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/graphql-core[python_targets_python3_10(-)?,python_targets_python3_11(-)?] <dev-python/graphql-core-3 dev-python/graphql-relay[python_targets_python3_10(-)?,python_targets_python3_11(-)?] <dev-python/graphql-relay-3 >=dev-python/pytest-7.4.4[python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) doc? ( || ( ( dev-lang/python:3.11 >=dev-python/sphinx-7.2.6[python_targets_python3_11(-)] ) ( dev-lang/python:3.10 >=dev-python/sphinx-7.2.6[python_targets_python3_10(-)] ) ) ) python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) >=dev-python/setuptools-69.0.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
DEFINED_PHASES=compile configure install prepare test unpack
DESCRIPTION=GraphQL Framework for Python
EAPI=8
@ -12,5 +12,5 @@ REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 )
RESTRICT=!test? ( test )
SLOT=0
SRC_URI=https://github.com/graphql-python/graphene/archive/v2.1.9.tar.gz -> graphene-2.1.9.tar.gz doc? ( https://graphene-python.org/sphinx_graphene_theme.zip -> sphinx-graphene-2.1.9.zip )
_eclasses_=toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic baa4d385108ac87993edac956a916a36 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild 30dbf3c5a31db09a19f31ad0a68f2405 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 39e7a84b06eff4efd9f2e0c3d1668b98 python-utils-r1 f6221c2f55e5e832be9919fe1711f33b python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 d05609532b134be7c4ae2514f4c7d06e
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic d309b9713dfc18e754cba88d3ba69653 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild d67e78a235f541871c7dfe4cf7931489 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 8b220bbce5c119fb1d4d5c2f5588f3ea python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 5400d21736d8621562bf93be4fa98eec
_md5_=cc9689fdee101f5d19a9f5e8869596c8

View File

@ -1,4 +1,4 @@
BDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) >=dev-python/setuptools-67.8.0-r1[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
BDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) >=dev-python/setuptools-69.0.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
DEFINED_PHASES=compile configure install prepare test
DEPEND=<dev-python/graphene-3 <dev-python/graphql-core-3 >=dev-python/django-2.2[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/djangorestframework-3.6.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?] <dev-python/djangorestframework-3.14.0 >=dev-python/graphene-2.1.9[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/graphql-core-2[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/promise-2.1[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/text-unidecode[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
DESCRIPTION=Graphene Django integration
@ -12,5 +12,5 @@ RDEPEND=<dev-python/graphene-3 <dev-python/graphql-core-3 >=dev-python/django-2.
REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 )
SLOT=0
SRC_URI=https://files.pythonhosted.org/packages/source/g/graphene-django/graphene-django-2.15.0.tar.gz
_eclasses_=toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic baa4d385108ac87993edac956a916a36 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild 30dbf3c5a31db09a19f31ad0a68f2405 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 39e7a84b06eff4efd9f2e0c3d1668b98 python-utils-r1 f6221c2f55e5e832be9919fe1711f33b python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 d05609532b134be7c4ae2514f4c7d06e pypi 2eecb475512bc76e5ea9192a681b9e6b
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic d309b9713dfc18e754cba88d3ba69653 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild d67e78a235f541871c7dfe4cf7931489 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 8b220bbce5c119fb1d4d5c2f5588f3ea python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 5400d21736d8621562bf93be4fa98eec pypi 2eecb475512bc76e5ea9192a681b9e6b
_md5_=77d03bf00c80bf0ffebed9fc964b1d58

View File

@ -1,4 +1,4 @@
BDEPEND=test? ( dev-python/pytest-asyncio[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pytest-describe[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pytest-benchmark[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pytest-timeout[python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) test? ( >=dev-python/Rx-1.6[python_targets_python3_10(-)?,python_targets_python3_11(-)?] <dev-python/Rx-2 >=dev-python/pytest-7.3.1[python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) doc? ( || ( ( dev-lang/python:3.11 >=dev-python/sphinx-5.3.0[python_targets_python3_11(-)] dev-python/sphinx_rtd_theme[python_targets_python3_11(-)] ) ( dev-lang/python:3.10 >=dev-python/sphinx-5.3.0[python_targets_python3_10(-)] dev-python/sphinx_rtd_theme[python_targets_python3_10(-)] ) ) ) python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) >=dev-python/setuptools-67.8.0-r1[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
BDEPEND=test? ( dev-python/pytest-asyncio[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pytest-describe[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pytest-benchmark[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pytest-timeout[python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) test? ( >=dev-python/Rx-1.6[python_targets_python3_10(-)?,python_targets_python3_11(-)?] <dev-python/Rx-2 >=dev-python/pytest-7.4.4[python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) doc? ( || ( ( dev-lang/python:3.11 >=dev-python/sphinx-7.2.6[python_targets_python3_11(-)] dev-python/sphinx_rtd_theme[python_targets_python3_11(-)] ) ( dev-lang/python:3.10 >=dev-python/sphinx-7.2.6[python_targets_python3_10(-)] dev-python/sphinx_rtd_theme[python_targets_python3_10(-)] ) ) ) python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) >=dev-python/setuptools-69.0.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
DEFINED_PHASES=compile configure install prepare test
DESCRIPTION=GraphQL for Python
EAPI=8
@ -12,5 +12,5 @@ REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 )
RESTRICT=!test? ( test )
SLOT=0
SRC_URI=mirror://pypi/g/graphql-core/graphql-core-2.3.2.tar.gz
_eclasses_=toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic baa4d385108ac87993edac956a916a36 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild 30dbf3c5a31db09a19f31ad0a68f2405 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 39e7a84b06eff4efd9f2e0c3d1668b98 python-utils-r1 f6221c2f55e5e832be9919fe1711f33b python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 d05609532b134be7c4ae2514f4c7d06e
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic d309b9713dfc18e754cba88d3ba69653 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild d67e78a235f541871c7dfe4cf7931489 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 8b220bbce5c119fb1d4d5c2f5588f3ea python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 5400d21736d8621562bf93be4fa98eec
_md5_=7e43970548833b17c5f7ffc52410681d

View File

@ -1,4 +1,4 @@
BDEPEND=test? ( dev-python/pytest-asyncio[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pytest-describe[python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) test? ( dev-python/graphql-core[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pytest-7.3.1[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 ) >=dev-python/setuptools-67.8.0-r1[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
BDEPEND=test? ( dev-python/pytest-asyncio[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pytest-describe[python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) test? ( dev-python/graphql-core[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pytest-7.4.4[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 ) >=dev-python/setuptools-69.0.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
DEFINED_PHASES=compile configure install prepare test
DESCRIPTION=Relay library for graphql-core-next
EAPI=8
@ -12,5 +12,5 @@ REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 )
RESTRICT=!test? ( test )
SLOT=0
SRC_URI=https://files.pythonhosted.org/packages/source/g/graphql-relay/graphql-relay-2.0.1.tar.gz
_eclasses_=toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic baa4d385108ac87993edac956a916a36 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild 30dbf3c5a31db09a19f31ad0a68f2405 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 39e7a84b06eff4efd9f2e0c3d1668b98 python-utils-r1 f6221c2f55e5e832be9919fe1711f33b python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 d05609532b134be7c4ae2514f4c7d06e pypi 2eecb475512bc76e5ea9192a681b9e6b
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic d309b9713dfc18e754cba88d3ba69653 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild d67e78a235f541871c7dfe4cf7931489 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 8b220bbce5c119fb1d4d5c2f5588f3ea python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 5400d21736d8621562bf93be4fa98eec pypi 2eecb475512bc76e5ea9192a681b9e6b
_md5_=f11af0f7a635988f2fdaa7d4a94b60a3

View File

@ -1,4 +1,4 @@
BDEPEND=>=dev-python/setuptools_scm-3.3.1[python_targets_python3_10(-)?] test? ( dev-python/aspectlib[python_targets_python3_10(-)?] dev-python/ipdb[python_targets_python3_10(-)?] dev-python/manhole[python_targets_python3_10(-)?] dev-python/process-tests[python_targets_python3_10(-)?] dev-python/pytest-benchmark[python_targets_python3_10(-)?] dev-python/six[python_targets_python3_10(-)?] dev-python/toml[python_targets_python3_10(-)?] ) test? ( >=dev-python/pytest-7.3.1[python_targets_python3_10(-)?] ) doc? ( || ( ( dev-lang/python:3.10 >=dev-python/sphinx-5.3.0[python_targets_python3_10(-)] >=dev-python/sphinx-py3doc-enhanced-theme-2.3.2[python_targets_python3_10(-)] ) ) ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-python/gpep517-15[python_targets_python3_10(-)?] >=dev-python/setuptools-67.8.0-r1[python_targets_python3_10(-)?]
BDEPEND=>=dev-python/setuptools_scm-3.3.1[python_targets_python3_10(-)?] test? ( dev-python/aspectlib[python_targets_python3_10(-)?] dev-python/ipdb[python_targets_python3_10(-)?] dev-python/manhole[python_targets_python3_10(-)?] dev-python/process-tests[python_targets_python3_10(-)?] dev-python/pytest-benchmark[python_targets_python3_10(-)?] dev-python/six[python_targets_python3_10(-)?] dev-python/toml[python_targets_python3_10(-)?] ) test? ( >=dev-python/pytest-7.4.4[python_targets_python3_10(-)?] ) doc? ( || ( ( dev-lang/python:3.10 >=dev-python/sphinx-7.2.6[python_targets_python3_10(-)] >=dev-python/sphinx-py3doc-enhanced-theme-2.3.2[python_targets_python3_10(-)] ) ) ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-python/gpep517-15[python_targets_python3_10(-)?] >=dev-python/setuptools-69.0.3[python_targets_python3_10(-)?]
DEFINED_PHASES=compile configure install prepare test unpack
DEPEND=dev-python/cython[python_targets_python3_10(-)?]
DESCRIPTION=Hunter is a flexible code tracing toolkit
@ -13,5 +13,5 @@ REQUIRED_USE=|| ( python_targets_python3_10 )
RESTRICT=!test? ( test )
SLOT=0
SRC_URI=https://github.com/ionelmc/python-hunter/archive/v3.4.3.tar.gz -> hunter-3.4.3.gh.tar.gz
_eclasses_=toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic baa4d385108ac87993edac956a916a36 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild 30dbf3c5a31db09a19f31ad0a68f2405 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 39e7a84b06eff4efd9f2e0c3d1668b98 python-utils-r1 f6221c2f55e5e832be9919fe1711f33b python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 d05609532b134be7c4ae2514f4c7d06e
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic d309b9713dfc18e754cba88d3ba69653 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild d67e78a235f541871c7dfe4cf7931489 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 8b220bbce5c119fb1d4d5c2f5588f3ea python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 5400d21736d8621562bf93be4fa98eec
_md5_=bee219b04d239664e8ddd32571f9e269

View File

@ -1,4 +1,4 @@
BDEPEND=dev-python/cython[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/setuptools_scm-3.3.1[python_targets_python3_10(-)?,python_targets_python3_11(-)?] test? ( dev-python/aspectlib[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/ipdb[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/manhole[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/process-tests[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pytest-benchmark[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/six[python_targets_python3_10(-)?,python_targets_python3_11(-)?] sys-devel/gdb ) test? ( >=dev-python/pytest-7.3.1[python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) doc? ( || ( ( dev-lang/python:3.11 >=dev-python/sphinx-5.3.0[python_targets_python3_11(-)] >=dev-python/sphinx-py3doc-enhanced-theme-2.3.2[python_targets_python3_11(-)] ) ( dev-lang/python:3.10 >=dev-python/sphinx-5.3.0[python_targets_python3_10(-)] >=dev-python/sphinx-py3doc-enhanced-theme-2.3.2[python_targets_python3_10(-)] ) ) ) python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) >=dev-python/gpep517-15[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/setuptools-67.8.0-r1[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
BDEPEND=dev-python/cython[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/setuptools_scm-3.3.1[python_targets_python3_10(-)?,python_targets_python3_11(-)?] test? ( dev-python/aspectlib[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/ipdb[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/manhole[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/process-tests[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pytest-benchmark[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/six[python_targets_python3_10(-)?,python_targets_python3_11(-)?] sys-devel/gdb ) test? ( >=dev-python/pytest-7.4.4[python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) doc? ( || ( ( dev-lang/python:3.11 >=dev-python/sphinx-7.2.6[python_targets_python3_11(-)] >=dev-python/sphinx-py3doc-enhanced-theme-2.3.2[python_targets_python3_11(-)] ) ( dev-lang/python:3.10 >=dev-python/sphinx-7.2.6[python_targets_python3_10(-)] >=dev-python/sphinx-py3doc-enhanced-theme-2.3.2[python_targets_python3_10(-)] ) ) ) python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) >=dev-python/gpep517-15[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/setuptools-69.0.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
DEFINED_PHASES=compile configure install prepare test unpack
DESCRIPTION=Hunter is a flexible code tracing toolkit
EAPI=8
@ -12,5 +12,5 @@ REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 )
RESTRICT=!test? ( test )
SLOT=0
SRC_URI=https://github.com/ionelmc/python-hunter/archive/v3.5.1.tar.gz -> hunter-3.5.1.gh.tar.gz
_eclasses_=toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic baa4d385108ac87993edac956a916a36 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild 30dbf3c5a31db09a19f31ad0a68f2405 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 39e7a84b06eff4efd9f2e0c3d1668b98 python-utils-r1 f6221c2f55e5e832be9919fe1711f33b python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 d05609532b134be7c4ae2514f4c7d06e
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic d309b9713dfc18e754cba88d3ba69653 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild d67e78a235f541871c7dfe4cf7931489 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 8b220bbce5c119fb1d4d5c2f5588f3ea python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 5400d21736d8621562bf93be4fa98eec
_md5_=ad5e8f231a30664e5c9f5ae98a280dee

View File

@ -1,4 +1,4 @@
BDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) >=dev-python/setuptools-67.8.0-r1[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
BDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) >=dev-python/setuptools-69.0.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
DEFINED_PHASES=compile configure install prepare test
DEPEND=dev-python/jinja[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/arrow[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
DESCRIPTION=Jinja2 Extension for Raise Error
@ -12,5 +12,5 @@ RDEPEND=dev-python/jinja[python_targets_python3_10(-)?,python_targets_python3_11
REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 )
SLOT=0
SRC_URI=mirror://pypi/j/jinja2_error/jinja2_error-0.1.0.tar.gz
_eclasses_=toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic baa4d385108ac87993edac956a916a36 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild 30dbf3c5a31db09a19f31ad0a68f2405 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 39e7a84b06eff4efd9f2e0c3d1668b98 python-utils-r1 f6221c2f55e5e832be9919fe1711f33b python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 d05609532b134be7c4ae2514f4c7d06e
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic d309b9713dfc18e754cba88d3ba69653 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild d67e78a235f541871c7dfe4cf7931489 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 8b220bbce5c119fb1d4d5c2f5588f3ea python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 5400d21736d8621562bf93be4fa98eec
_md5_=47b5d17da61bc787c2eea8bfbeb7fe64

View File

@ -1,4 +1,4 @@
BDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) >=dev-python/setuptools-67.8.0-r1[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
BDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) >=dev-python/setuptools-69.0.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
DEFINED_PHASES=compile configure install prepare test
DEPEND=>=dev-python/lxml-3.2.4[python_targets_python3_10(-)?,python_targets_python3_11(-)?] ~dev-python/ncclient-0.6.13[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/paramiko-1.15.2[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/scp-0.7.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/jinja-2.7.1[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pyyaml-5.1[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/netaddr[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/six[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pyserial[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/yamlordereddictloader[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pyparsing[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/transitions[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
DESCRIPTION=Junos 'EZ' automation for non-programmers
@ -12,5 +12,5 @@ RDEPEND=>=dev-python/lxml-3.2.4[python_targets_python3_10(-)?,python_targets_pyt
REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 )
SLOT=0
SRC_URI=mirror://pypi/j/junos-eznc/junos-eznc-2.6.6.tar.gz
_eclasses_=toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic baa4d385108ac87993edac956a916a36 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild 30dbf3c5a31db09a19f31ad0a68f2405 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 39e7a84b06eff4efd9f2e0c3d1668b98 python-utils-r1 f6221c2f55e5e832be9919fe1711f33b python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 d05609532b134be7c4ae2514f4c7d06e
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic d309b9713dfc18e754cba88d3ba69653 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild d67e78a235f541871c7dfe4cf7931489 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 8b220bbce5c119fb1d4d5c2f5588f3ea python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 5400d21736d8621562bf93be4fa98eec
_md5_=79cbd8302fa8d7cca9f0a884ed71f1f8

View File

@ -1,4 +1,4 @@
BDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) >=dev-python/setuptools-67.8.0-r1[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
BDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) >=dev-python/setuptools-69.0.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
DEFINED_PHASES=compile configure install prepare test
DEPEND=>=dev-python/lxml-3.2.4[python_targets_python3_10(-)?,python_targets_python3_11(-)?] ~dev-python/ncclient-0.6.13[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/paramiko-1.15.2[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/scp-0.7.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/jinja-2.7.1[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pyyaml-5.1[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/netaddr[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/six[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pyserial[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/yamlordereddictloader[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pyparsing[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/transitions[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
DESCRIPTION=Junos 'EZ' automation for non-programmers
@ -12,5 +12,5 @@ RDEPEND=>=dev-python/lxml-3.2.4[python_targets_python3_10(-)?,python_targets_pyt
REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 )
SLOT=0
SRC_URI=mirror://pypi/j/junos-eznc/junos-eznc-2.6.7.tar.gz
_eclasses_=toolchain-funcs edeef89edaf21d30225d31702ab117ac multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic baa4d385108ac87993edac956a916a36 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild 30dbf3c5a31db09a19f31ad0a68f2405 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 39e7a84b06eff4efd9f2e0c3d1668b98 python-utils-r1 f6221c2f55e5e832be9919fe1711f33b python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 d05609532b134be7c4ae2514f4c7d06e
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic d309b9713dfc18e754cba88d3ba69653 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild d67e78a235f541871c7dfe4cf7931489 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 8b220bbce5c119fb1d4d5c2f5588f3ea python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 5400d21736d8621562bf93be4fa98eec
_md5_=79cbd8302fa8d7cca9f0a884ed71f1f8

Some files were not shown because too many files have changed in this diff Show More