diff --git a/Manifest.files.gz b/Manifest.files.gz index a2aea34beeb5..0ab81b4891e8 100644 Binary files a/Manifest.files.gz and b/Manifest.files.gz differ diff --git a/app-accessibility/Manifest.gz b/app-accessibility/Manifest.gz index bc3215b4845d..687bf3aaca30 100644 Binary files a/app-accessibility/Manifest.gz and b/app-accessibility/Manifest.gz differ diff --git a/app-accessibility/mbrola/files/mbrola-3.3-Makefile.patch b/app-accessibility/mbrola/files/mbrola-3.3-Makefile.patch new file mode 100644 index 000000000000..291735c69be5 --- /dev/null +++ b/app-accessibility/mbrola/files/mbrola-3.3-Makefile.patch @@ -0,0 +1,87 @@ +diff --git a/Makefile b/Makefile +index 47cf410..ac3eac5 100644 +--- a/Makefile ++++ b/Makefile +@@ -3,14 +3,20 @@ + # Mbrola Speech Synthesize Makefile ( tune the #define and type "make" ) + VERSION=3.3 + ++# set CC ++CC = gcc ++ + # To test strict C ANSI compliance +-CC = gcc -ansi -pedantic ++ANSIFLAGS = -ansi -pedantic + LIB= -lm + + # This allow you to write commands like "make PURE=purify demo1" + # or "make PURE=quantify lib2" + CCPURE = $(PURE) $(CC) + ++# To test strict C ANSI compliance ++CFLAGS += $(ANSIFLAGS) ++ + ######################## + # Machine specific #define, uncomment as needed + # If your OS is not here, may be it provides some __linux or __sunos +@@ -33,7 +39,7 @@ CFLAGS += -DLITTLE_ENDIAN + # GENERAL FLAGS FOR GCC + + # Optimized code +-CFLAGS += -O6 ++#CFLAGS += -O6 + + # Debug mode with gdb + #CFLAGS += -g +@@ -128,7 +134,7 @@ BINOBJS = $(BINSRCS:%.c=Bin/Standalone/%.o) + PROJ = mbrola + + $(PROJ): install_dir $(BINOBJS) +- $(CCPURE) $(CFLAGS) -o $(MBRDIR)/$(PROJ) $(BINOBJS) $(LIB) ++ $(CCPURE) $(CFLAGS) $(LDFLAGS) -o $(MBRDIR)/$(PROJ) $(BINOBJS) $(LIB) + + clean: + \rm -f $(MBRDIR)/$(PROJ) $(PROJ).a core demo* TAGS $(BIN)/lib*.o $(BINOBJS) +@@ -147,7 +153,7 @@ net: + \rm -f *~ */*~ + + $(BINDIR)/%.o: %.c +- $(CCPURE) $(CFLAGS) -o $@ -c $< ++ $(CCPURE) $(CPPFLAGS) $(CFLAGS) -o $@ -c $< + + # to create the compilation directory, if necessary + install_dir: +@@ -156,25 +162,25 @@ install_dir: + fi + + lib1 : LibOneChannel/lib1.c +- $(CCPURE) $(CFLAGS) -o Bin/LibOneChannel/lib1.o -c LibOneChannel/lib1.c ++ $(CCPURE) $(CPPFLAGS) $(CFLAGS) -o Bin/LibOneChannel/lib1.o -c LibOneChannel/lib1.c + + demo1: install_dir lib1 LibOneChannel/demo1.c +- $(CCPURE) $(CFLAGS) -c -o Bin/LibOneChannel/demo1.o LibOneChannel/demo1.c +- $(CCPURE) $(CFLAGS) -o demo1 Bin/LibOneChannel/demo1.o Bin/LibOneChannel/lib1.o $(LIB) ++ $(CCPURE) $(CPPFLAGS) $(CFLAGS) -c -o Bin/LibOneChannel/demo1.o LibOneChannel/demo1.c ++ $(CCPURE) $(CFLAGS) $(LDFLAGS) -o demo1 Bin/LibOneChannel/demo1.o Bin/LibOneChannel/lib1.o $(LIB) + + # END_WWW + + demo1b: install_dir lib1 LibOneChannel/demo1b.c +- $(CCPURE) $(CFLAGS) -c -o Bin/LibOneChannel/demo1b.o LibOneChannel/demo1b.c +- $(CCPURE) $(CFLAGS) -o demo1b Bin/LibOneChannel/demo1b.o Bin/LibOneChannel/lib1.o $(LIB) ++ $(CCPURE) $(CPPFLAGS) $(CFLAGS) -c -o Bin/LibOneChannel/demo1b.o LibOneChannel/demo1b.c ++ $(CCPURE) $(CFLAGS) $(LDFLAGS) -o demo1b Bin/LibOneChannel/demo1b.o Bin/LibOneChannel/lib1.o $(LIB) + + + lib2 : LibMultiChannel/lib2.c +- $(CCPURE) $(CFLAGS) -o Bin/LibMultiChannel/lib2.o -c LibMultiChannel/lib2.c ++ $(CCPURE) $(CPPFLAGS) $(CFLAGS) -o Bin/LibMultiChannel/lib2.o -c LibMultiChannel/lib2.c + + demo2: install_dir lib2 LibMultiChannel/demo2.c +- $(CCPURE) $(CFLAGS) -c -o Bin/LibMultiChannel/demo2.o LibMultiChannel/demo2.c +- $(CCPURE) $(CFLAGS) -o demo2 Bin/LibMultiChannel/demo2.o Bin/LibMultiChannel/lib2.o $(LIB) ++ $(CCPURE) $(CPPFLAGS) $(CFLAGS) -c -o Bin/LibMultiChannel/demo2.o LibMultiChannel/demo2.c ++ $(CCPURE) $(CFLAGS) $(LDFLAGS) -o demo2 Bin/LibMultiChannel/demo2.o Bin/LibMultiChannel/lib2.o $(LIB) + # END_COMM + + # Check the integrity of the new Mbrola version by comparing the output diff --git a/app-accessibility/mbrola/mbrola-3.3.ebuild b/app-accessibility/mbrola/mbrola-3.3-r1.ebuild similarity index 84% rename from app-accessibility/mbrola/mbrola-3.3.ebuild rename to app-accessibility/mbrola/mbrola-3.3-r1.ebuild index 0f924894d20f..4d2b0e0161a9 100644 --- a/app-accessibility/mbrola/mbrola-3.3.ebuild +++ b/app-accessibility/mbrola/mbrola-3.3-r1.ebuild @@ -2,6 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 +inherit toolchain-funcs DESCRIPTION="Speech synthesizer based on the concatenation of diphones" HOMEPAGE="https://github.com/numediart/MBROLA" @@ -15,8 +16,12 @@ RDEPEND="app-accessibility/mbrola-voices" S="${WORKDIR}/MBROLA-${PV}" +PATCHES=( + "${FILESDIR}"/${P}-Makefile.patch +) + src_compile() { - emake -j1 EXT_CFLAGS="${CFLAGS}" + emake -j1 CC="$(tc-getCC)" } src_install() { diff --git a/app-admin/Manifest.gz b/app-admin/Manifest.gz index 9ecb1a993d7f..2901f23db6cd 100644 Binary files a/app-admin/Manifest.gz and b/app-admin/Manifest.gz differ diff --git a/app-admin/awscli/Manifest b/app-admin/awscli/Manifest index 62712b97db85..1fe7d2139aa4 100644 --- a/app-admin/awscli/Manifest +++ b/app-admin/awscli/Manifest @@ -1,4 +1,5 @@ DIST awscli-1.19.104.tar.gz 2024567 BLAKE2B 82662ffe6a05dd329210ff84962e1ad37ece63a8f964c3c6bb293f53fea3af151bb088150260b3b279730871b7e962f2c580385b21a56a8bc2f86b437fab92d4 SHA512 444e533219e23b5151bab29d2d65deb8de9008b883b08ae553dd322b3f4e96d3836fedabc7be0393303ea146a0b8ad8220d4f4de458bca00303dc0798e543840 DIST awscli-1.19.105.tar.gz 2024530 BLAKE2B 8d05c41aa76338f30edf8640923250fa3d3954e942243552338837ec163f987c583573269d94a63f47f48fbb0beab4c6265e9197b465563374e4afb45ae20843 SHA512 73207ca67d490df705022844e6d025d051a276698204fcf82171e0075f5db2c347de0634cffc48fbd210314d66fd79c61d4129003ddbd6db698adc710fbb2068 DIST awscli-1.19.106.tar.gz 2025184 BLAKE2B ee1006df7feef7ca3dcae3625a5e318dd1d5ed70a3c0c30fffd431fa41713f1932d2750edd2fd251513eaa631f93c6c9d4ab2e0bb052f246b5b13e48c355646a SHA512 404b7d14622f1250f3cc5ea290dd796fb99aeb141101ca55bb672375d09fb4fccb67c2d926f0a3f7e5efc4c48022197a0de20e59590d4758e5fe0975c63f2bb5 +DIST awscli-1.19.107.tar.gz 2025880 BLAKE2B bbb307072a63a9722496aaae52c2f9fbc2743b8a4fdc2fffdb2b4e9b6be9013868a2130211ef9ab427bc2180ad1d19209fd6411d8cde26a5f02db7f3c643297b SHA512 69ebd9f3397230a7c49ef551258b38e8c66b370f70a8e050fa9c721dd5ebca3a9e0da70c2804417eba4e68bd7620fa2d2802d007369e5cd0bee49bfc512b7853 DIST awscli-1.19.97.tar.gz 2020143 BLAKE2B 2dac6f59a04a958b09e0f8b7d056583015762df78ed1349b55c6301d3189e1100bd8ab98445ded3ccc0ddbf1148ddf0475086704f123b0db1ccfd1cacb6b4680 SHA512 4e4e0f34ba02819232427f7571a4b10d22b167788d758c9ac43749607ea7a4c498259fcc5c69fb32d66faffc535a5b3045006168b64506f2b0f9fbbaa804e387 diff --git a/app-admin/awscli/awscli-1.19.107.ebuild b/app-admin/awscli/awscli-1.19.107.ebuild new file mode 100644 index 000000000000..ff429f8d3a3e --- /dev/null +++ b/app-admin/awscli/awscli-1.19.107.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +PYTHON_COMPAT=( python3_{8..10} ) + +inherit bash-completion-r1 distutils-r1 + +DESCRIPTION="Universal Command Line Environment for AWS" +HOMEPAGE="https://pypi.org/project/awscli/" +#SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" +SRC_URI="https://github.com/aws/aws-cli/archive/${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/aws-cli-${PV}" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86" + +# botocore is x.(y+1).z +BOTOCORE_PV="$(ver_cut 1).$(( $(ver_cut 2) + 1)).$(ver_cut 3-)" +RDEPEND=" + >=dev-python/botocore-${BOTOCORE_PV}[${PYTHON_USEDEP}] + dev-python/colorama[${PYTHON_USEDEP}] + dev-python/docutils[${PYTHON_USEDEP}] + dev-python/rsa[${PYTHON_USEDEP}] + >=dev-python/s3transfer-0.4.0[${PYTHON_USEDEP}] + dev-python/pyyaml[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + dev-python/mock[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests --install nose + +PATCHES=( + "${FILESDIR}"/awscli-1.19.47-py39.patch +) + +python_test() { + distutils_install_for_testing + # integration tests require AWS credentials and Internet access + nosetests -v tests/{functional,unit} || + die "Tests failed for ${EPYTHON}" +} + +python_install_all() { + newbashcomp bin/aws_bash_completer aws + + insinto /usr/share/zsh/site-functions + newins bin/aws_zsh_completer.sh _aws + + distutils-r1_python_install_all + + rm "${ED}"/usr/bin/{aws.cmd,aws_bash_completer,aws_zsh_completer.sh} || die +} diff --git a/app-admin/mcelog/Manifest b/app-admin/mcelog/Manifest index d571bce6ee0d..3d2d8851297d 100644 --- a/app-admin/mcelog/Manifest +++ b/app-admin/mcelog/Manifest @@ -1 +1,2 @@ DIST mcelog-175.tar.gz 315350 BLAKE2B a324af0f4961fb0f6f2af1b198e07a34c24fb5874edd550ca9bdfe452d84cf48d9565530a290a3cdba51eb4ad57f3bbe3d3c9b2beb6d3411195d6dccdb9dfd64 SHA512 992789817a3963a3f118121149bf9b217609f54d85a71c2adb671728cf04777ccb062033df68793afff5fb6a0080b50b4e6fa89cbcd0970d92ca4246155ea13a +DIST mcelog-177.tar.gz 315474 BLAKE2B 8c6920b01ba836460067f322a17e5a69c2a9a447127ae583ddd151f3cd290aca039a63e95601789cd71c4ef75d4213e39918e08b600aeda3e06bb800119209c5 SHA512 b73d103c7b326e6aa2cb22a05b7df29e24f5b8f9e564a9d2d05627e0af80ee581d62b422e35a68cf3e43a3e1aaf905cccb08a65286c9f77c8c8c2ac41e880fbf diff --git a/app-admin/mcelog/mcelog-177.ebuild b/app-admin/mcelog/mcelog-177.ebuild new file mode 100644 index 000000000000..0fceee0d5f22 --- /dev/null +++ b/app-admin/mcelog/mcelog-177.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit linux-info systemd toolchain-funcs + +DESCRIPTION="A tool to log and decode Machine Check Exceptions" +HOMEPAGE="http://mcelog.org/" +SRC_URI="https://github.com/andikleen/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="selinux" + +RDEPEND="selinux? ( sec-policy/selinux-mcelog )" + +# TODO: add mce-inject to the tree to support test phase +RESTRICT="test" + +pkg_pretend() { + if [[ ${MERGE_TYPE} != buildonly ]]; then + local CONFIG_CHECK="~X86_MCE" + kernel_is -ge 4 12 && CONFIG_CHECK+=" ~X86_MCELOG_LEGACY" + check_extra_config + fi +} + +src_prepare() { + eapply "${FILESDIR}"/${PN}-0.8_pre1-timestamp-${PN}.patch \ + "${FILESDIR}"/${PN}-129-debugflags.patch + eapply_user + tc-export CC +} + +src_install() { + default + + insinto /etc/cron.daily + newins ${PN}.cron ${PN} + + insinto /etc/logrotate.d/ + newins ${PN}.logrotate ${PN} + + newinitd "${FILESDIR}"/${PN}.init-r1 ${PN} + systemd_dounit ${PN}.service + + dodoc *.pdf +} + +pkg_postinst() { + einfo "The default configuration set is now installed in /etc/${PN}" + einfo "you might want to edit those files." + einfo + einfo "A sample cronjob is installed into /etc/cron.daily" + einfo "without executable bit (system service is the preferred method now)" +} diff --git a/app-admin/spectre-meltdown-checker/spectre-meltdown-checker-0.44.ebuild b/app-admin/spectre-meltdown-checker/spectre-meltdown-checker-0.44.ebuild index d438a074e47d..899c7e4ecc8a 100644 --- a/app-admin/spectre-meltdown-checker/spectre-meltdown-checker-0.44.ebuild +++ b/app-admin/spectre-meltdown-checker/spectre-meltdown-checker-0.44.ebuild @@ -8,7 +8,7 @@ if [[ ${PV} == *9999 ]]; then EGIT_REPO_URI="https://github.com/speed47/spectre-meltdown-checker.git" else SRC_URI="https://github.com/speed47/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="amd64 arm ~arm64 x86" + KEYWORDS="amd64 arm arm64 x86" fi DESCRIPTION="Spectre & Meltdown vulnerability/mitigation checker for Linux" diff --git a/app-arch/Manifest.gz b/app-arch/Manifest.gz index 941a426260a5..dd81a5687e78 100644 Binary files a/app-arch/Manifest.gz and b/app-arch/Manifest.gz differ diff --git a/app-arch/unrar/unrar-6.0.7.ebuild b/app-arch/unrar/unrar-6.0.7.ebuild index 7c0cedb86ad4..a50618234035 100644 --- a/app-arch/unrar/unrar-6.0.7.ebuild +++ b/app-arch/unrar/unrar-6.0.7.ebuild @@ -14,7 +14,7 @@ SRC_URI="https://www.rarlab.com/rar/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz" LICENSE="unRAR" # subslot = soname version SLOT="0/6" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x86-solaris" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x86-solaris" RDEPEND="!<=app-arch/unrar-gpl-0.0.1_p20080417" diff --git a/app-misc/Manifest.gz b/app-misc/Manifest.gz index 264202c73ba8..067bb833b3e2 100644 Binary files a/app-misc/Manifest.gz and b/app-misc/Manifest.gz differ diff --git a/app-misc/recoll/Manifest b/app-misc/recoll/Manifest index a3d25c09741a..d8e4862941d1 100644 --- a/app-misc/recoll/Manifest +++ b/app-misc/recoll/Manifest @@ -1,3 +1,4 @@ DIST recoll-1.27.12.tar.gz 3184471 BLAKE2B 60bcdee44259fa7f8b9decb9258ca0dae4edbf0cee1e8b1353cb59418503f0fcea9b439ecd6352500ff5b4cccfae08fc2a3f7f786fbd096cf18fd21fb809705b SHA512 3701dff056b8200f3b3c1bb2acaa69356c0def00959a0b74c14e1d500bd9e05fc81d82ce8b7db59d7e5b85617a8a7197700031aab65b31e005a4fedeaff59e97 DIST recoll-1.28.5.tar.gz 3261816 BLAKE2B 6bf9daab0f97ee6fdb4033197d3fa3f4296b2df8a57566195fca3bf170fec621c27e7da00a1a5a8493fbbadca103a0db7b8c3051abe95d5c2aedb7c289c050a5 SHA512 df4c7a5e624933ccc7ce257a767a4621728a4dbcdd5b551b47845ed0fcffdd5a6f7f617a466404c5e8d8b62c81e57986e1f21e01d643899755623a2dc597d712 DIST recoll-1.29.2.tar.gz 3871580 BLAKE2B ae6ef5628dfac67a192a3d133d5b5d8ddec079ac79be2e8aa7e744669ed0478cb41628a0ed46b4ff2364823f367815b1eb4bca0a6e4b56a9e12d4f78c6842473 SHA512 c87fc054a0c34f1b6bcc10a4f2c84268a51df02b8ba84634c51f9396befe5b2b84fc93d363876158c9d117a164613e91d9c63b228fec5e0e07d234c97c4680c5 +DIST recoll-1.31.0.tar.gz 3679099 BLAKE2B 6d02c0e0487ff02957ffc3c824152a14307e5a9ebfd472ffb84d047ce37f170ff7738b0d15ccfd6582840d22d19aa6e509ca50b98fd88d1a3730e58304cdb4b1 SHA512 1a740cdabab158737461ab8f097ece79844e1f0b64285871217049c0619df400d99db18eac8942e1986def555c5ab8364f3320eb403d150b061126cbc3be2116 diff --git a/app-misc/recoll/recoll-1.31.0.ebuild b/app-misc/recoll/recoll-1.31.0.ebuild new file mode 100644 index 000000000000..cfe0f694851f --- /dev/null +++ b/app-misc/recoll/recoll-1.31.0.ebuild @@ -0,0 +1,131 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{8..10} ) + +inherit linux-info optfeature python-single-r1 qmake-utils + +DESCRIPTION="Personal full text search package" +HOMEPAGE="https://www.lesbonscomptes.com/recoll/" +SRC_URI="https://www.lesbonscomptes.com/recoll/${P}.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +IUSE="camelcase chm +inotify qt5 session +spell webengine" +REQUIRED_USE=" + session? ( inotify ) + webengine? ( qt5 ) + ${PYTHON_REQUIRED_USE} +" + +DEPEND=" + dev-libs/xapian:= + sys-libs/zlib:= + virtual/libiconv + chm? ( + dev-libs/chmlib + dev-python/pychm + ) + qt5? ( + dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtprintsupport:5 + webengine? ( dev-qt/qtwebengine:5[widgets] ) + ) + session? ( + inotify? ( + x11-libs/libSM + x11-libs/libICE + x11-libs/libX11 + ) + ) + spell? ( app-text/aspell ) + ${PYTHON_DEPS} +" + +BDEPEND=" + qt5? ( dev-qt/linguist-tools:5 ) +" + +RDEPEND=" + ${DEPEND} + app-arch/unzip +" + +pkg_pretend() { + if has_version " ${i} - done - - find . -type f -print0 | xargs -0 sed -i "s:\".*/SamplesConfig.xml:\"${EPREFIX}/usr/share/${PN}/SamplesConfig.xml:" || die -} - -src_compile() { - emake -C "${S}/Platform/Linux/Build" \ - CC="$(tc-getCC)" \ - CXX="$(tc-getCXX)" \ - GLUT_SUPPORTED="$(usex opengl 1 0)" \ - $(usex java "" ALL_JAVA_PROJS="") \ - $(usex java "" JAVA_SAMPLES="") \ - ALL_MONO_PROJS="" \ - MONO_SAMPLES="" \ - MONO_FORMS_SAMPLES="" - - if use doc ; then - cd "${S}/Source/DoxyGen" - doxygen || die - fi -} - -src_install() { - dolib.so "${S}/Platform/Linux/Bin/"*Release/*.so - - insinto /usr/include/openni - doins -r Include/* - - dobin "${S}/Platform/Linux/Bin/"*Release/{ni*,Ni*,Sample-*} - - if use java ; then - java-pkg_dojar "${S}/Platform/Linux/Bin/"*Release/*.jar - echo "java -jar ${JAVA_PKG_JARDEST}/org.openni.Samples.SimpleViewer.jar" > org.openni.Samples.SimpleViewer - dobin org.openni.Samples.SimpleViewer - fi - - insinto /usr/share/${PN} - doins Data/* - - dodoc Documentation/OpenNI_UserGuide.pdf CHANGES NOTICE README - - if use doc ; then - dohtml -r "${S}/Source/DoxyGen/html/"* - dodoc Source/DoxyGen/Text/*.txt - fi - - keepdir /var/lib/ni -} - -pkg_postinst() { - if [ "${ROOT:-/}" = "/" ] ; then - for i in "${EROOR}/usr/$(get_libdir)"/libnim*.so ; do - einfo "Registering module ${i}" - niReg -r "${i}" - done - fi -} diff --git a/dev-libs/OpenNI/OpenNI-9999.ebuild b/dev-libs/OpenNI/OpenNI-9999.ebuild index aef879f68ea5..0febb7dba0b7 100644 --- a/dev-libs/OpenNI/OpenNI-9999.ebuild +++ b/dev-libs/OpenNI/OpenNI-9999.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=7 SCM="" if [ "${PV#9999}" != "${PV}" ] ; then @@ -9,7 +9,7 @@ if [ "${PV#9999}" != "${PV}" ] ; then EGIT_REPO_URI="https://github.com/OpenNI/OpenNI" fi -inherit ${SCM} toolchain-funcs epatch multilib java-pkg-opt-2 +inherit ${SCM} toolchain-funcs multilib java-pkg-opt-2 if [ "${PV#9999}" != "${PV}" ] ; then SRC_URI="" @@ -31,18 +31,21 @@ RDEPEND=" virtual/jpeg:0 dev-libs/tinyxml opengl? ( media-libs/freeglut !dev-libs/OpenNI2[opengl] ) - java? ( >=virtual/jre-1.5 ) + java? ( virtual/jre:1.8 ) " DEPEND="${RDEPEND} doc? ( app-doc/doxygen ) - java? ( >=virtual/jdk-1.5 )" + java? ( virtual/jdk:1.8 )" + +PATCHES=( + "${FILESDIR}/tinyxml.patch" + "${FILESDIR}/jpeg.patch" + "${FILESDIR}/soname.patch" + "${FILESDIR}/${PN}-1.5.7.10-gcc6.patch" +) src_prepare() { - epatch \ - "${FILESDIR}/tinyxml.patch" \ - "${FILESDIR}/jpeg.patch" \ - "${FILESDIR}/soname.patch" \ - "${FILESDIR}/${PN}-1.5.7.10-gcc6.patch" + default rm -rf External/{LibJPEG,TinyXml} for i in Platform/Linux/Build/Common/Platform.* Externals/PSCommon/Linux/Build/Platform.* ; do @@ -89,7 +92,8 @@ src_install() { dodoc Documentation/OpenNI_UserGuide.pdf CHANGES NOTICE README if use doc ; then - dohtml -r "${S}/Source/DoxyGen/html/"* + docinto html + dodoc -r "${S}/Source/DoxyGen/html/"* dodoc Source/DoxyGen/Text/*.txt fi diff --git a/dev-libs/OpenNI2/OpenNI2-2.2_beta2.ebuild b/dev-libs/OpenNI2/OpenNI2-2.2_beta2-r1.ebuild similarity index 85% rename from dev-libs/OpenNI2/OpenNI2-2.2_beta2.ebuild rename to dev-libs/OpenNI2/OpenNI2-2.2_beta2-r1.ebuild index 2edb89b3f146..8650fe294537 100644 --- a/dev-libs/OpenNI2/OpenNI2-2.2_beta2.ebuild +++ b/dev-libs/OpenNI2/OpenNI2-2.2_beta2-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=7 SCM="" if [ "${PV#9999}" != "${PV}" ] ; then @@ -9,7 +9,7 @@ if [ "${PV#9999}" != "${PV}" ] ; then EGIT_REPO_URI="https://github.com/occipital/openni2" fi -inherit ${SCM} toolchain-funcs epatch multilib java-pkg-opt-2 flag-o-matic +inherit ${SCM} toolchain-funcs multilib java-pkg-opt-2 flag-o-matic if [ "${PV#9999}" != "${PV}" ] ; then SRC_URI="" @@ -30,19 +30,22 @@ RDEPEND=" virtual/libudev virtual/jpeg:0 opengl? ( media-libs/freeglut ) - java? ( >=virtual/jre-1.5:* ) + java? ( virtual/jre:1.8 ) " DEPEND="${RDEPEND} doc? ( app-doc/doxygen ) - java? ( >=virtual/jdk-1.5:* )" + java? ( virtual/jdk:1.8 )" + +PATCHES=( + "${FILESDIR}/jpeg.patch" + "${FILESDIR}/rpath.patch" + "${FILESDIR}/soname.patch" + "${FILESDIR}/pthread.patch" + "${FILESDIR}/c++14.patch" +) src_prepare() { - epatch \ - "${FILESDIR}/jpeg.patch" \ - "${FILESDIR}/rpath.patch" \ - "${FILESDIR}/soname.patch" \ - "${FILESDIR}/pthread.patch" \ - "${FILESDIR}/c++14.patch" + default rm -rf ThirdParty/LibJPEG for i in ThirdParty/PSCommon/BuildSystem/Platform.* ; do @@ -87,7 +90,8 @@ src_install() { dodoc CHANGES.txt NOTICE README ReleaseNotes.txt Source/Documentation/Text/*.txt if use doc ; then - dohtml -r "${S}/Source/Documentation/html/"* + docinto html + dodoc -r "${S}/Source/Documentation/html/"* fi dodir /usr/$(get_libdir)/pkgconfig diff --git a/dev-libs/OpenNI2/OpenNI2-9999.ebuild b/dev-libs/OpenNI2/OpenNI2-9999.ebuild index 13ff01010ca9..210a3efeea3a 100644 --- a/dev-libs/OpenNI2/OpenNI2-9999.ebuild +++ b/dev-libs/OpenNI2/OpenNI2-9999.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=7 SCM="" if [ "${PV#9999}" != "${PV}" ] ; then @@ -9,7 +9,7 @@ if [ "${PV#9999}" != "${PV}" ] ; then EGIT_REPO_URI="https://github.com/occipital/openni2" fi -inherit ${SCM} toolchain-funcs epatch multilib java-pkg-opt-2 flag-o-matic +inherit ${SCM} toolchain-funcs multilib java-pkg-opt-2 flag-o-matic if [ "${PV#9999}" != "${PV}" ] ; then SRC_URI="" @@ -30,17 +30,20 @@ RDEPEND=" virtual/libudev virtual/jpeg:0 opengl? ( media-libs/freeglut ) - java? ( >=virtual/jre-1.5:* ) + java? ( virtual/jre:1.8 ) " DEPEND="${RDEPEND} doc? ( app-doc/doxygen ) - java? ( >=virtual/jdk-1.5:* )" + java? ( virtual/jdk:1.8 )" + +PATCHES=( + "${FILESDIR}/jpeg.patch" + "${FILESDIR}/rpath.patch" + "${FILESDIR}/soname.patch" +) src_prepare() { - epatch \ - "${FILESDIR}/jpeg.patch" \ - "${FILESDIR}/rpath.patch" \ - "${FILESDIR}/soname.patch" + default rm -rf ThirdParty/LibJPEG for i in ThirdParty/PSCommon/BuildSystem/Platform.* ; do @@ -85,7 +88,8 @@ src_install() { dodoc CHANGES.txt NOTICE README.md ReleaseNotes.txt Source/Documentation/Text/*.txt if use doc ; then - dohtml -r "${S}/Source/Documentation/html/"* + docinto html + dodoc -r "${S}/Source/Documentation/html/"* fi dodir /usr/$(get_libdir)/pkgconfig diff --git a/dev-libs/collada-dom/collada-dom-2.5.0.ebuild b/dev-libs/collada-dom/collada-dom-2.5.0.ebuild index 7eb3cc7f2a03..0c48c4d35580 100644 --- a/dev-libs/collada-dom/collada-dom-2.5.0.ebuild +++ b/dev-libs/collada-dom/collada-dom-2.5.0.ebuild @@ -9,7 +9,7 @@ if [[ ${PV} == *9999 ]]; then inherit git-r3 EGIT_REPO_URI="https://github.com/rdiankov/collada-dom" else - KEYWORDS="~amd64 ~arm ~hppa" + KEYWORDS="~amd64 ~arm ~hppa ~ppc64" SRC_URI="https://github.com/rdiankov/collada-dom/archive/v${PV}.tar.gz -> ${P}.tar.gz" fi diff --git a/dev-libs/collada-dom/collada-dom-9999.ebuild b/dev-libs/collada-dom/collada-dom-9999.ebuild index 558640248c4e..b81931fde2aa 100644 --- a/dev-libs/collada-dom/collada-dom-9999.ebuild +++ b/dev-libs/collada-dom/collada-dom-9999.ebuild @@ -9,7 +9,7 @@ if [[ ${PV} == *9999 ]]; then inherit git-r3 EGIT_REPO_URI="https://github.com/rdiankov/collada-dom" else - KEYWORDS="~amd64 ~arm ~hppa" + KEYWORDS="~amd64 ~arm ~hppa ~ppc64" SRC_URI="https://github.com/rdiankov/collada-dom/archive/v${PV}.tar.gz -> ${P}.tar.gz" fi diff --git a/dev-libs/imath/imath-3.0.1.ebuild b/dev-libs/imath/imath-3.0.1.ebuild index f4401e61cfca..72f012bffe05 100644 --- a/dev-libs/imath/imath-3.0.1.ebuild +++ b/dev-libs/imath/imath-3.0.1.ebuild @@ -14,7 +14,7 @@ HOMEPAGE="https://imath.readthedocs.io" SRC_URI="https://github.com/AcademySoftwareFoundation/${MY_PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" # re-keywording needed for (according to ilmbase keywords): # ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x64-macos ~x86-solaris -KEYWORDS="~amd64 ~hppa ~ia64 ~sparc ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux" S="${WORKDIR}/${MY_PN}-${PV}" LICENSE="BSD" diff --git a/dev-libs/libedit/Manifest b/dev-libs/libedit/Manifest index 6bdc0e2342d1..c2af86f2ca37 100644 --- a/dev-libs/libedit/Manifest +++ b/dev-libs/libedit/Manifest @@ -1,2 +1 @@ -DIST libedit-20210216-3.1.tar.gz 518381 BLAKE2B 4b29f08ddccd77148c7ae810c3c4e378f6eab4b6d2c530f21aa9c0da1bc156d646bac6404408510639c34298ef3583fd7f2bde5051c0dac8b3a125e2659d8412 SHA512 2577c66b3f20a7f3cdaac529bda7f55dbed1cd902f39971b8f792885dec7f8c137a980c570dbab195d3d45989cc9d16a96a3567e02c5ac32ed4757fa36e46b4c DIST libedit-20210419-3.1.tar.gz 522387 BLAKE2B 265c7a10905120feb096d147279a9cf7296cf3b19e16ff4a683d7de11305c0d0c7a67fe8652c1b8f16cbaf3e09b7727987bb6839be4657eb41323c0220704969 SHA512 d5e2cdad18d17fb94e839d02b7b7437378bb85986478d4c95e4105a6ac47fcbbd6bdd0a20a83d23455ed9cb1e178d6c0acbe63f4559096afd506f283c2cc00e9 diff --git a/dev-libs/libedit/libedit-20210216.3.1.ebuild b/dev-libs/libedit/libedit-20210216.3.1.ebuild deleted file mode 100644 index 0884e172659f..000000000000 --- a/dev-libs/libedit/libedit-20210216.3.1.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="7" -inherit multilib-minimal usr-ldscript - -MY_PV=${PV/./-} -MY_P=${PN}-${MY_PV} - -DESCRIPTION="BSD replacement for libreadline" -HOMEPAGE="https://thrysoee.dk/editline/" -SRC_URI="https://thrysoee.dk/editline/${MY_P}.tar.gz" -S=${WORKDIR}/${MY_P} - -LICENSE="BSD-2" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos" -IUSE="static-libs" - -RDEPEND=">=sys-libs/ncurses-5.9-r3[static-libs?,${MULTILIB_USEDEP}]" -DEPEND=${RDEPEND} - -multilib_src_configure() { - local myconf=( - $(use_enable static-libs static) - --enable-widec - --enable-fast-install - ) - - ECONF_SOURCE="${S}" econf "${myconf[@]}" -} - -multilib_src_install() { - emake DESTDIR="${D}" install - gen_usr_ldscript -a edit -} - -multilib_src_install_all() { - einstalldocs - find "${D}" -name '*.la' -delete || die - # file collision with sys-libs/readline - rm "${ED}/usr/share/man/man3/history.3" || die -} diff --git a/dev-libs/libedit/libedit-20210419.3.1.ebuild b/dev-libs/libedit/libedit-20210419.3.1.ebuild index f6030f3568ab..0884e172659f 100644 --- a/dev-libs/libedit/libedit-20210419.3.1.ebuild +++ b/dev-libs/libedit/libedit-20210419.3.1.ebuild @@ -14,7 +14,7 @@ S=${WORKDIR}/${MY_P} LICENSE="BSD-2" SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos" IUSE="static-libs" RDEPEND=">=sys-libs/ncurses-5.9-r3[static-libs?,${MULTILIB_USEDEP}]" diff --git a/dev-libs/libffi/Manifest b/dev-libs/libffi/Manifest index a1c499b413f7..6351b7c81d9d 100644 --- a/dev-libs/libffi/Manifest +++ b/dev-libs/libffi/Manifest @@ -1 +1,2 @@ DIST libffi-3.3.tar.gz 1305466 BLAKE2B cddc40729a30a9bd34d675809f51f8d1b4ccaffa54bc6dd6f7e965f4e260edd34754719f9f6247c8957aeb7cf154d56ce1fe16a54c3f1ad39afbebdf41d23caa SHA512 61513801a156f11420f541d325de697131846487122d6bdcf5491b18b4da788589f5c0bb07e88e396495d3be5830d74e9135595e2b8ddbfe95c448d8597fbd6f +DIST libffi-3.4.2.tar.gz 1351355 BLAKE2B a8137bc895b819f949fd7705e405be627219c6d1fdef280253330f7407d4a548bb057d7bb0e9225d1767d42f9bf5f0ab3c455db1c3470d7cc876bb7b7d55d308 SHA512 31bad35251bf5c0adb998c88ff065085ca6105cf22071b9bd4b5d5d69db4fadf16cadeec9baca944c4bb97b619b035bb8279de8794b922531fddeb0779eb7fb1 diff --git a/dev-libs/libffi/libffi-3.4.2.ebuild b/dev-libs/libffi/libffi-3.4.2.ebuild new file mode 100644 index 000000000000..55fcfb49624c --- /dev/null +++ b/dev-libs/libffi/libffi-3.4.2.ebuild @@ -0,0 +1,69 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit multilib-minimal + +MY_PV=${PV/_rc/-rc} +MY_P=${PN}-${MY_PV} + +DESCRIPTION="a portable, high level programming interface to various calling conventions" +HOMEPAGE="https://sourceware.org/libffi/" +SRC_URI="https://github.com/libffi/libffi/releases/download/v${MY_PV}/${MY_P}.tar.gz" + +LICENSE="MIT" +SLOT="0/8" # SONAME=libffi.so.8 +#unkeyworded for initial testing +#KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +IUSE="debug exec-static-trampoline pax-kernel pax_kernel static-libs test" + +RESTRICT="!test? ( test )" +# If you are USE=pax_kernel user you really want USE=pax-kernel as well. +# That's a flag rename: https://archives.gentoo.org/gentoo-dev/message/273f5ec9ebc8075f6ee8d8cdda9e759e +REQUIRED_USE="pax_kernel? ( pax-kernel )" + +RDEPEND="" +DEPEND="" +BDEPEND="test? ( dev-util/dejagnu )" + +DOCS="ChangeLog* README.md" + +S=${WORKDIR}/${MY_P} + +ECONF_SOURCE=${S} + +src_prepare() { + default + if [[ ${CHOST} == arm64-*-darwin* ]] ; then + # ensure we use aarch64 asm, not x86 on arm64 + sed -i -e 's/aarch64\*-\*-\*/arm64*-*-*|&/' \ + configure configure.host || die + fi +} + +multilib_src_configure() { + use userland_BSD && export HOST="${CHOST}" + # --includedir= path maintains a few properties: + # 1. have stable name across libffi versions: some packages like + # dev-lang/ghc or kde-frameworks/networkmanager-qt embed + # ${includedir} at build-time. Don't require those to be + # rebuilt unless SONAME changes. bug #695788 + # + # We use /usr/.../${PN} (instead of former /usr/.../${P}). + # + # 2. have ${ABI}-specific location as ffi.h is target-dependent. + # + # We use /usr/$(get_libdir)/... to have ABI identifier. + econf \ + --includedir="${EPREFIX}"/usr/$(get_libdir)/${PN}/include \ + --disable-multi-os-directory \ + $(use_enable static-libs static) \ + $(use_enable exec-static-trampoline exec-static-tramp) \ + $(use_enable pax-kernel pax_emutramp) \ + $(use_enable debug) +} + +multilib_src_install_all() { + find "${ED}" -name "*.la" -delete || die + einstalldocs +} diff --git a/dev-libs/libffi/metadata.xml b/dev-libs/libffi/metadata.xml index 85b52eeb3e01..1846097c8bc2 100644 --- a/dev-libs/libffi/metadata.xml +++ b/dev-libs/libffi/metadata.xml @@ -34,6 +34,7 @@ between the two languages. + Don't rely on dynamic code generation for trampolines. Use PaX emulated trampolines, for we can't use PROT_EXEC DEPRECATED alias for 'pax-kernel'. Do not use. diff --git a/dev-libs/libfmt/libfmt-7.1.3.ebuild b/dev-libs/libfmt/libfmt-7.1.3.ebuild index c307ccb4ff76..155509d07edf 100644 --- a/dev-libs/libfmt/libfmt-7.1.3.ebuild +++ b/dev-libs/libfmt/libfmt-7.1.3.ebuild @@ -18,7 +18,7 @@ if [[ ${PV} == *9999 ]] ; then inherit git-r3 else SRC_URI="https://github.com/fmtlib/fmt/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="amd64 arm ~arm64 ppc ppc64 x86" + KEYWORDS="amd64 arm arm64 ppc ppc64 x86" S="${WORKDIR}/fmt-${PV}" fi diff --git a/dev-libs/libuv/Manifest b/dev-libs/libuv/Manifest index 2edd25119d0e..a68cf0dc1952 100644 --- a/dev-libs/libuv/Manifest +++ b/dev-libs/libuv/Manifest @@ -1 +1,2 @@ DIST libuv-1.41.0.tar.gz 1281268 BLAKE2B 6d6fef33953c4d03835adfdd66e9a44c61071440ceeea48d88bcf6593e2a35c7d0878369c87b38a92f66ead2ab0f799d4b7476ced3707ca7f41e39f93875bdc4 SHA512 bb08a1970a10e8d9571ffea3d021643de30ec212cd51317b98d6cf0cfe55d6877992921fb01d1188a6d466687335b77885685d924f8cb7200a0bec30eee05c65 +DIST libuv-1.41.1.tar.gz 1281506 BLAKE2B 4102df9559724c4f6bab090c57c8c976b7784bdc28243047c6c4cb2d61ce97deeb6f02e322238b98e9900575c981e8a586db852d5d34f0fd222a0091fc391a5b SHA512 dfd4996a2e8d6cc1ffe141921b2472070c8678cbbb8f0cf333dba7e7a36be0dee7fc3515152a27253252bbe48a9b29766d654f7f77137dd6f6bf0a8330c90fc4 diff --git a/dev-libs/libuv/libuv-1.41.1.ebuild b/dev-libs/libuv/libuv-1.41.1.ebuild new file mode 100644 index 000000000000..f1d10ed56e94 --- /dev/null +++ b/dev-libs/libuv/libuv-1.41.1.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools multilib-minimal + +DESCRIPTION="Cross-platform asychronous I/O" +HOMEPAGE="https://github.com/libuv/libuv" + +if [[ ${PV} = 9999* ]]; then + EGIT_REPO_URI="https://github.com/libuv/libuv.git" + inherit git-r3 +else + SRC_URI="https://github.com/libuv/libuv/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +fi + +LICENSE="BSD BSD-2 ISC MIT" +SLOT="0/1" + +BDEPEND=" + sys-devel/libtool + virtual/pkgconfig +" + +src_prepare() { + default + + echo "m4_define([UV_EXTRA_AUTOMAKE_FLAGS], [serial-tests])" \ + > m4/libuv-extra-automake-flags.m4 || die + + if [[ ${CHOST} == *-darwin* && ${CHOST##*darwin} -le 9 ]] ; then + eapply "${FILESDIR}"/${PN}-1.41.0-darwin.patch + fi + + # upstream fails to ship a configure script + eautoreconf +} + +multilib_src_configure() { + local myeconfargs=( + --disable-static + cc_cv_cflags__g=no + ) + + ECONF_SOURCE="${S}" econf "${myeconfargs[@]}" +} + +multilib_src_test() { + cp -pPR "${S}"/test/fixtures "${BUILD_DIR}"/test/fixtures || die + default +} + +multilib_src_install_all() { + einstalldocs + find "${ED}" -name '*.la' -delete || die +} diff --git a/dev-libs/protobuf/protobuf-3.17.3.ebuild b/dev-libs/protobuf/protobuf-3.17.3.ebuild index c862468d3377..1254928d7c06 100644 --- a/dev-libs/protobuf/protobuf-3.17.3.ebuild +++ b/dev-libs/protobuf/protobuf-3.17.3.ebuild @@ -22,7 +22,7 @@ fi LICENSE="BSD" SLOT="0/28" -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos" IUSE="emacs examples static-libs test zlib" RESTRICT="!test? ( test )" diff --git a/dev-libs/re2/re2-0.2021.06.01.ebuild b/dev-libs/re2/re2-0.2021.06.01.ebuild index d3c96b29a6d4..707fba0b63f3 100644 --- a/dev-libs/re2/re2-0.2021.06.01.ebuild +++ b/dev-libs/re2/re2-0.2021.06.01.ebuild @@ -18,7 +18,7 @@ LICENSE="BSD" # https://abi-laboratory.pro/tracker/timeline/re2/ SONAME="9" SLOT="0/${SONAME}" -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc x86" IUSE="icu" BDEPEND="icu? ( virtual/pkgconfig )" diff --git a/dev-libs/tvision/tvision-2.2.3.ebuild b/dev-libs/tvision/tvision-2.2.3.ebuild index 9f8e1f689593..c881d939aedf 100644 --- a/dev-libs/tvision/tvision-2.2.3.ebuild +++ b/dev-libs/tvision/tvision-2.2.3.ebuild @@ -56,6 +56,8 @@ src_configure() { myconf+=( --fhs --prefix="${EPREFIX}/usr" + # avoid stripping + --with-debug --with-pthread --without-static --x-include="${EPREFIX}/usr/include/X11" diff --git a/dev-perl/File-Copy-Recursive-Reduced/File-Copy-Recursive-Reduced-0.6.0.ebuild b/dev-perl/File-Copy-Recursive-Reduced/File-Copy-Recursive-Reduced-0.6.0.ebuild index d2955d86de68..26b45cff62f4 100644 --- a/dev-perl/File-Copy-Recursive-Reduced/File-Copy-Recursive-Reduced-0.6.0.ebuild +++ b/dev-perl/File-Copy-Recursive-Reduced/File-Copy-Recursive-Reduced-0.6.0.ebuild @@ -10,7 +10,7 @@ inherit perl-module DESCRIPTION="Recursive copying of files and directories within Perl 5 toolchain" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~hppa" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64" RDEPEND=" virtual/perl-File-Spec diff --git a/dev-perl/Lab-VXI11/Lab-VXI11-0.30.0.ebuild b/dev-perl/Lab-VXI11/Lab-VXI11-0.30.0.ebuild index 4353c85b994e..196184f27c07 100644 --- a/dev-perl/Lab-VXI11/Lab-VXI11-0.30.0.ebuild +++ b/dev-perl/Lab-VXI11/Lab-VXI11-0.30.0.ebuild @@ -5,7 +5,7 @@ EAPI=8 DIST_VERSION=0.03 DIST_AUTHOR=AMBA -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 ~x86" inherit perl-module DESCRIPTION="Perl interface to the VXI-11 Test&Measurement backend" diff --git a/dev-perl/Mail-AuthenticationResults/Mail-AuthenticationResults-2.202.101.120.ebuild b/dev-perl/Mail-AuthenticationResults/Mail-AuthenticationResults-2.202.101.120.ebuild index 1513cc7ca105..4a116b8cb93e 100644 --- a/dev-perl/Mail-AuthenticationResults/Mail-AuthenticationResults-2.202.101.120.ebuild +++ b/dev-perl/Mail-AuthenticationResults/Mail-AuthenticationResults-2.202.101.120.ebuild @@ -10,7 +10,7 @@ inherit perl-module DESCRIPTION="Object Oriented Authentication-Results Headers" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~sparc" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc" RDEPEND=" virtual/perl-Carp diff --git a/dev-perl/Mail-DKIM/Mail-DKIM-1.202.9.070.ebuild b/dev-perl/Mail-DKIM/Mail-DKIM-1.202.9.070.ebuild index 0934d8e6fb9d..2c2096c1387f 100644 --- a/dev-perl/Mail-DKIM/Mail-DKIM-1.202.9.070.ebuild +++ b/dev-perl/Mail-DKIM/Mail-DKIM-1.202.9.070.ebuild @@ -11,7 +11,7 @@ inherit perl-module DESCRIPTION="Signs/verifies Internet mail using DKIM message signatures" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~sparc" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc" RDEPEND=" virtual/perl-Carp diff --git a/dev-perl/Manifest.gz b/dev-perl/Manifest.gz index 23be1e94ed04..12c3c741aa9f 100644 Binary files a/dev-perl/Manifest.gz and b/dev-perl/Manifest.gz differ diff --git a/dev-perl/Module-Build-XSUtil/Module-Build-XSUtil-0.190.0.ebuild b/dev-perl/Module-Build-XSUtil/Module-Build-XSUtil-0.190.0.ebuild index 03c091c6a343..137f9b6d5d5e 100644 --- a/dev-perl/Module-Build-XSUtil/Module-Build-XSUtil-0.190.0.ebuild +++ b/dev-perl/Module-Build-XSUtil/Module-Build-XSUtil-0.190.0.ebuild @@ -10,7 +10,7 @@ inherit perl-module DESCRIPTION="A Module::Build class for building XS modules" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~hppa" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64" IUSE="examples" RDEPEND=" diff --git a/dev-perl/Module-ScanDeps/Manifest b/dev-perl/Module-ScanDeps/Manifest index e9a04c50d2d5..c54e4985a7e7 100644 --- a/dev-perl/Module-ScanDeps/Manifest +++ b/dev-perl/Module-ScanDeps/Manifest @@ -1 +1,2 @@ DIST Module-ScanDeps-1.24.tar.gz 55262 BLAKE2B ea7f69d0a4b1de3b42826e4b50fc827d8728ab4dea68e0bc76c7d1efedb4f753dd4ceb4042c092b26ae22bea096d768210d9fb0c6bdae240a28dc7b8fcced17e SHA512 7f3d9821aa863d8ebc78fb5fb3c7172ce133169ec54ed91b90e05ba50654b4bd0282b3a760adfc8b6bd553dda4116dbf51972bb2af94b59f6f04daeba996e889 +DIST Module-ScanDeps-1.31.tar.gz 56164 BLAKE2B 61d7438359d035d847fefdfa1427b4e444935c8207d41b7e4994a3704fb4c6fb48d7fac169214abed3d71212fd372f478b01cb91d8876c0fdb68962c791101ba SHA512 c7164d768b6401a0d01516f5a09ddf2a0399355738ff17d04757aeb235b47f8d973083d0425ca53757588916c7fb2959d8c042361055a0e8eab7bf6d4c31d6fd diff --git a/dev-perl/Module-ScanDeps/Module-ScanDeps-1.310.0.ebuild b/dev-perl/Module-ScanDeps/Module-ScanDeps-1.310.0.ebuild new file mode 100644 index 000000000000..59f6a5f7574b --- /dev/null +++ b/dev-perl/Module-ScanDeps/Module-ScanDeps-1.310.0.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DIST_AUTHOR=RSCHUPP +DIST_VERSION=1.31 +inherit perl-module + +DESCRIPTION="Recursively scan Perl code for dependencies" + +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~ppc-macos ~x64-macos" + +RDEPEND=" + virtual/perl-File-Spec + virtual/perl-File-Temp + virtual/perl-Getopt-Long + virtual/perl-Module-Metadata + virtual/perl-Text-ParseWords + virtual/perl-version +" +BDEPEND="${RDEPEND} + >=virtual/perl-ExtUtils-MakeMaker-6.590.0 + test? ( + virtual/perl-Test-Simple + dev-perl/prefork + dev-perl/Module-Pluggable + dev-perl/Test-Requires + ) +" + +PERL_RM_FILES=( t/0-pod.t ) diff --git a/dev-perl/Module-Signature/Manifest b/dev-perl/Module-Signature/Manifest index 627ef6528773..78db27987a8b 100644 --- a/dev-perl/Module-Signature/Manifest +++ b/dev-perl/Module-Signature/Manifest @@ -1 +1,2 @@ DIST Module-Signature-0.81.tar.gz 93181 BLAKE2B f1ebc27c10473b2f5ad2591f2ac78ed4f1576a6045292cc2e533c1347ed9bbab995825a805d547e5a9340465b889c385f28ac8aaac38700a10d7f3ebcf433653 SHA512 b91f14f1c581dda760e8049924f5c9cb4f969b2d03092e774e022bd28d12ca59192ffc510c53b8d7200d2df2b445341a0b7617771aeef90ef235a460da81dc63 +DIST Module-Signature-0.87.tar.gz 97211 BLAKE2B 8a6d460cf8e58b5068bc8938a98b7c5060b2ebb0939f5236b5458aba797ea59c08010802b33fede69dc14fbfe796dfb225b0e1e9e405928657d7dc9b4477662a SHA512 d0afeab528d0b8a46b8a6a1f9714ab7efefb386f5b93113e733fa18b23b38c98c6a13f10e9091c0cbf392956cd02484d09482d31cd9146ed6de11adb7cd81124 diff --git a/dev-perl/Module-Signature/Module-Signature-0.870.0.ebuild b/dev-perl/Module-Signature/Module-Signature-0.870.0.ebuild new file mode 100644 index 000000000000..5d791b6ec31e --- /dev/null +++ b/dev-perl/Module-Signature/Module-Signature-0.870.0.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DIST_AUTHOR=AUDREYT +DIST_VERSION=0.87 +inherit perl-module + +DESCRIPTION="Module signature file manipulation" + +LICENSE="CC0-1.0 || ( Artistic GPL-2+ )" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + dev-perl/Crypt-OpenPGP + app-crypt/gnupg + virtual/perl-File-Temp +" +BDEPEND="${RDEPEND} + >=virtual/perl-ExtUtils-MakeMaker-6.360.0 + test? ( + dev-perl/IPC-Run + ) +" diff --git a/dev-perl/Module-Starter/Manifest b/dev-perl/Module-Starter/Manifest index c99441e2c932..274ed1829364 100644 --- a/dev-perl/Module-Starter/Manifest +++ b/dev-perl/Module-Starter/Manifest @@ -1 +1,2 @@ DIST Module-Starter-1.73.tar.gz 61368 BLAKE2B c7957a9d2013f7680309b39f0299141a9dba9075d191d804dc2cd09dc80f25b28b7fde128e51d43266fcc93d7d56a54b0b8eb154e8f674dc270970f9a2602f13 SHA512 813bb98a2cd2344c5a8fd032d2ee42c13f767b436ac48a7d88bd6338ec21929cefd8940fa0b606abaa4e264291fcbfc993e10d0c0d471d1b5fda0d2eb7d80d58 +DIST Module-Starter-1.77.tar.gz 60328 BLAKE2B 821a9fa0708677a52b0743a6627d422d89000ba9a816c666ece2ad096ea852578309e2ce855abc5aa6b8bafcd6a4bf140a01fdcd2580e8f70621705e14efc358 SHA512 89e4b8c26c4f5df372736a6070026a81c3038a55b20f9be00ea1a064eb7d363c70c53def3ea179a62e871a1fa775a2cbb588b3ed8c3484243c137006fb24d80c diff --git a/dev-perl/Module-Starter/Module-Starter-1.770.0.ebuild b/dev-perl/Module-Starter/Module-Starter-1.770.0.ebuild new file mode 100644 index 000000000000..0913f2c52d45 --- /dev/null +++ b/dev-perl/Module-Starter/Module-Starter-1.770.0.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DIST_AUTHOR=DBOOK +DIST_VERSION=1.77 +inherit perl-module + +DESCRIPTION="A simple starter kit for any module" + +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + virtual/perl-File-Path + virtual/perl-File-Spec + virtual/perl-Getopt-Long + dev-perl/Module-Runtime + >=virtual/perl-Pod-Parser-1.210.0 + >=dev-perl/Software-License-0.103.5 + >=virtual/perl-Test-Harness-0.210.0 + >=virtual/perl-Test-Simple-0.940.0 + virtual/perl-parent + >=virtual/perl-version-0.770.0 +" +BDEPEND="${RDEPEND} + virtual/perl-ExtUtils-MakeMaker +" + +PERL_RM_FILES=( t/pod.t t/pod-coverage.t ) diff --git a/dev-perl/Module-Util/Module-Util-1.90.0.ebuild b/dev-perl/Module-Util/Module-Util-1.90.0-r1.ebuild similarity index 54% rename from dev-perl/Module-Util/Module-Util-1.90.0.ebuild rename to dev-perl/Module-Util/Module-Util-1.90.0-r1.ebuild index eeb5080cb5d6..54d2a61ad1cf 100644 --- a/dev-perl/Module-Util/Module-Util-1.90.0.ebuild +++ b/dev-perl/Module-Util/Module-Util-1.90.0-r1.ebuild @@ -1,28 +1,21 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=8 -MODULE_AUTHOR=MATTLAW -MODULE_VERSION=1.09 +DIST_AUTHOR=MATTLAW +DIST_VERSION=1.09 inherit perl-module DESCRIPTION="Module name tools and transformations" SLOT="0" KEYWORDS="amd64 x86" -IUSE="test" -RESTRICT="!test? ( test )" RDEPEND="" -DEPEND=" +BDEPEND=" >=dev-perl/Module-Build-0.400.0 test? ( virtual/perl-Test-Simple ) " -SRC_TEST=do - -src_test() { - perl_rm_files "t/99..pod.t" - perl-module_src_test -} +PERL_RM_FILES=( t/99..pod.t ) diff --git a/dev-perl/Module-Versions-Report/Module-Versions-Report-1.60.0-r1.ebuild b/dev-perl/Module-Versions-Report/Module-Versions-Report-1.60.0-r2.ebuild similarity index 62% rename from dev-perl/Module-Versions-Report/Module-Versions-Report-1.60.0-r1.ebuild rename to dev-perl/Module-Versions-Report/Module-Versions-Report-1.60.0-r2.ebuild index 4beaa3e23256..4d1ef22a05ba 100644 --- a/dev-perl/Module-Versions-Report/Module-Versions-Report-1.60.0-r1.ebuild +++ b/dev-perl/Module-Versions-Report/Module-Versions-Report-1.60.0-r2.ebuild @@ -1,16 +1,13 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=8 -MODULE_AUTHOR=JESSE -MODULE_VERSION=1.06 +DIST_AUTHOR=JESSE +DIST_VERSION=1.06 inherit perl-module DESCRIPTION="Report versions of all modules in memory" SLOT="0" KEYWORDS="amd64 ~ppc x86" -IUSE="" - -SRC_TEST="do" diff --git a/dev-perl/MogileFS-Client-Async/Manifest b/dev-perl/MogileFS-Client-Async/Manifest index c1d35baf267e..083deb658381 100644 --- a/dev-perl/MogileFS-Client-Async/Manifest +++ b/dev-perl/MogileFS-Client-Async/Manifest @@ -1 +1,2 @@ DIST MogileFS-Client-Async-0.030.tar.gz 24988 BLAKE2B b5b6ed607df8404114bd5e2a9e75171c3d126211564bbcb332d8264d80f9306b3a44f42ff10051f2812d16215e54353b723f0ea4fdee7ecf87ad637e042e6b5f SHA512 32746207f12723171815cdc2e8b401b594b7de34b30a4bc1315575e20cd908ec7ff85b79c9bb501c6f343ed6469ffb80192ae1bdb08c7d76ed53e8d2ef40fcb2 +DIST MogileFS-Client-Async-0.031.tar.gz 19503 BLAKE2B ff009f33b38c6ca28f745da2cb0cab594457098297d4a9978b8fafbfc7e6425444e1c2ad55724ffccdbf92d83221bfa07e5d07b34ef8552d69f2aa0657131801 SHA512 1de89701de5884490656ac9f18de63f3bdb595d100542978b3a22123a0e7c66570d1133f14098b83ff06e86f27373b5b21c0e364a48217defc742a8933e89a6c diff --git a/dev-perl/MogileFS-Client-Async/MogileFS-Client-Async-0.031.0.ebuild b/dev-perl/MogileFS-Client-Async/MogileFS-Client-Async-0.031.0.ebuild new file mode 100644 index 000000000000..23146aaf8f95 --- /dev/null +++ b/dev-perl/MogileFS-Client-Async/MogileFS-Client-Async-0.031.0.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DIST_AUTHOR=DLAMBLEY +DIST_VERSION=${PV%.0} +inherit perl-module + +DESCRIPTION="MogileFS Client using AnyEvent non-blocking IO" + +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + dev-perl/AnyEvent + dev-perl/AnyEvent-HTTP + dev-perl/File-Slurp + dev-perl/IO-AIO + dev-perl/libwww-perl + >=dev-perl/Linux-PipeMagic-0.30.0 + >=dev-perl/MogileFS-Client-1.160.0 + dev-perl/Try-Tiny + dev-perl/namespace-clean +" +BDEPEND="${RDEPEND} + test? ( + >=dev-perl/Test-Exception-0.310.0 + >=virtual/perl-Test-Simple-0.880.0 + ) +" + +# Tests only available if you have a local mogilefsd on 127.0.0.1:7001 +DIST_TEST=skip diff --git a/dev-perl/USB-LibUSB/USB-LibUSB-0.90.0.ebuild b/dev-perl/USB-LibUSB/USB-LibUSB-0.90.0.ebuild index e580e5fedc1c..6f216a3d776b 100644 --- a/dev-perl/USB-LibUSB/USB-LibUSB-0.90.0.ebuild +++ b/dev-perl/USB-LibUSB/USB-LibUSB-0.90.0.ebuild @@ -1,11 +1,11 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 DIST_VERSION=0.09 DIST_AUTHOR=AMBA -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 ~x86" inherit perl-module DESCRIPTION="Perl interface to the libusb-1.0 API" diff --git a/dev-perl/USB-TMC/USB-TMC-0.7.0.ebuild b/dev-perl/USB-TMC/USB-TMC-0.7.0.ebuild index ef11c63b2f35..b96f54070c71 100644 --- a/dev-perl/USB-TMC/USB-TMC-0.7.0.ebuild +++ b/dev-perl/USB-TMC/USB-TMC-0.7.0.ebuild @@ -1,11 +1,11 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 DIST_VERSION=0.007 DIST_AUTHOR=AMBA -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 ~x86" inherit perl-module DESCRIPTION="Perl interface to the USB Test & Measurement (USBTMC) backend" diff --git a/dev-python/Faker/Faker-8.10.0.ebuild b/dev-python/Faker/Faker-8.10.0.ebuild new file mode 100644 index 000000000000..ada44c6701ce --- /dev/null +++ b/dev-python/Faker/Faker-8.10.0.ebuild @@ -0,0 +1,28 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} ) +inherit distutils-r1 + +DESCRIPTION="A Python package that generates fake data for you" +HOMEPAGE="https://github.com/joke2k/faker" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=">=dev-python/python-dateutil-2.4.2[${PYTHON_USEDEP}] + >=dev-python/text-unidecode-1.3[${PYTHON_USEDEP}] + !dev-ruby/faker" +BDEPEND=" + test? ( + dev-python/freezegun[${PYTHON_USEDEP}] + dev-python/pillow[${PYTHON_USEDEP},tiff] + dev-python/random2[${PYTHON_USEDEP}] + dev-python/validators[${PYTHON_USEDEP}] + )" + +distutils_enable_tests pytest diff --git a/dev-python/Faker/Manifest b/dev-python/Faker/Manifest index 7b493ce8afd7..610301785f92 100644 --- a/dev-python/Faker/Manifest +++ b/dev-python/Faker/Manifest @@ -1,3 +1,4 @@ +DIST Faker-8.10.0.tar.gz 1149474 BLAKE2B 2a5304acb1ce88230660a468756ee79abc7ae0b6aeb850e3d05bb694cb9e5b596b1d9de4c8f1e82c208a3281efc026a290b6d96cd17bc6c523d22fcd61eaf756 SHA512 0d035663677bea9ef4a66c6f0cf5fb1e648e948deb4db07b352a8b8881f5774a9432524bef10e60f28d5d586ac66f0e207c3ad218edffd6071fa6ac614ac950b DIST Faker-8.8.2.tar.gz 1148529 BLAKE2B 279984479ad4f790dc7acd74b5ccd1cf5f32689b8b1ccf2152d7dfaa6fc7b4699d9827c16f83bb86e298723b6906a5cc40c2fa7f75439b5af5fc78c1af99a3f6 SHA512 4273008bf9ab693a40da2f93ff1fe40e9e7b102a2d5439f09096b6754b82dc26310666da65723b363f628365c97d44dd290e1e7065b7a9d862130baa292325b7 DIST Faker-8.9.0.tar.gz 1148829 BLAKE2B b24a7fa87886cb38850808de2ffe1ceafab3c548c694af30d53b1f415d329264fe7e53f33f46b913d16310dd83d95fe591689a308bb7d4c653254e39defaa24b SHA512 d2e26ae140c30ae8069f8e0fd75bb9bf54aa00a7271b327e37dd248520256e137d192082071bc36a584fc864c54c050107ddecb40624288636c6b41caf1ea574 DIST Faker-8.9.1.tar.gz 1148890 BLAKE2B 2cab6461bf6067d9dfd8872c19c8c11fa25ffef82b61b7e7676ffc187346d228703424a73278678f19263423716c74ecd47cfc1c17bf54d38bba712e456650b8 SHA512 f7016b320c7394b0eccc06e833a80e227cdbad9c0f34eb9f8f4413f56a4743f58bbd7ec5eac3b8c0642e7764c6c5986707d493f0c84daa75575a12061631c9c5 diff --git a/dev-python/Manifest.gz b/dev-python/Manifest.gz index 52dcab0c8383..fb11c482437c 100644 Binary files a/dev-python/Manifest.gz and b/dev-python/Manifest.gz differ diff --git a/dev-python/anyio/anyio-3.2.1.ebuild b/dev-python/anyio/anyio-3.2.1.ebuild index 7727ceecc614..d01141c001a7 100644 --- a/dev-python/anyio/anyio-3.2.1.ebuild +++ b/dev-python/anyio/anyio-3.2.1.ebuild @@ -16,7 +16,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="~amd64 ~arm" +KEYWORDS="~amd64 ~arm ~ppc ~ppc64" RDEPEND=" >=dev-python/idna-2.8[${PYTHON_USEDEP}] diff --git a/dev-python/boto3/Manifest b/dev-python/boto3/Manifest index e13cb7670c03..8f52864c0e11 100644 --- a/dev-python/boto3/Manifest +++ b/dev-python/boto3/Manifest @@ -1,4 +1,5 @@ DIST boto3-1.17.104.tar.gz 387800 BLAKE2B 928824ab0a0c091fec430c5d86b0c5663f2a98042a76311588463f36f48a6bd9641fd25e07b63ad50afcb3ea9bfea0b5f3304e3c2689a2187198aac04549346c SHA512 477033e623476fa1e2e49cdb788f204ac49230088788cbae3f079de4561e7bbe56bb3b170480592a0ce056fcd2ea0cb3f14b4f5091279f46346465853a191829 DIST boto3-1.17.105.tar.gz 387920 BLAKE2B 475342a93440418f6fc5682e7c24f386aaac8dc91e670e8c6ab7f949fb8557c97ca0f7e7929128742c3b1091cda2a42e0f1212528f8fb1c7ce1a6dcc3aea18c4 SHA512 a044f0a61f8ebea58f7ebbe670b4f0ba94f6c3abe69857340908be780e1cae5f5f3ce892ba16af44df62542883d30b93a9b42830123dd3fb31998ae8c642e1b4 DIST boto3-1.17.106.tar.gz 388602 BLAKE2B f9cc023ce4c0810ea7eb004126941229536fc068ff51039dc9f9943d153f8fa717e832c7161f85332e3edf596f55b3ad7dfb9ef117b471f59fc269ee9c63818c SHA512 866286d91d157d513f35231f8d512cd9738c7795b044b41c8e2b1594ed83a6060bcb3a2e3c8388df2ed86c7b04e0ce2d42c88393d8a6753d04c2a007865033e4 +DIST boto3-1.17.107.tar.gz 389348 BLAKE2B 8c0893d8ad73563f63254877621440ba24dac76c577f5684bc37b5f99b9111be209f69efa324cc079209340051230a43b66004d09ccd5804d631b0c04083c384 SHA512 450222507aa3bae8062b788ac7f637dbe8a5e7a5baa0f45001a74a810c2579927a7400cef180b57a7d7e57c391d665930b577b39272681ca380b5e553385b1f8 DIST boto3-1.17.97.tar.gz 383223 BLAKE2B 1a1b4e9f2c51d830762f27cf3e30038efb88322e300ac304d1cb88d5b7efc6af35ad9810cea7292c9807dcdfedb11ba039ee6d5dbb9162f2a1c6d6936ef75bcc SHA512 e74a59763cc9b8a51fd09121a790d29a7291d9380d4451c2e6af90902f18415a3780eeea7f7d63e052b295792b92c3cdd3b8597f7013241ebbbdb7e418cf73ce diff --git a/dev-python/boto3/boto3-1.17.107.ebuild b/dev-python/boto3/boto3-1.17.107.ebuild new file mode 100644 index 000000000000..75afb4bcf865 --- /dev/null +++ b/dev-python/boto3/boto3-1.17.107.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} ) +inherit distutils-r1 + +DESCRIPTION="The AWS SDK for Python" +HOMEPAGE="https://github.com/boto/boto3" +LICENSE="Apache-2.0" +SLOT="0" + +if [[ "${PV}" == "9999" ]]; then + EGIT_REPO_URI="https://github.com/boto/boto3" + inherit git-r3 + BOTOCORE_PV=${PV} +else + SRC_URI="https://github.com/boto/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux" + + # botocore is x.(y+3).z + BOTOCORE_PV="$(ver_cut 1).$(( $(ver_cut 2) + 3)).$(ver_cut 3-)" +fi + +RDEPEND=" + >=dev-python/botocore-${BOTOCORE_PV}[${PYTHON_USEDEP}] + >=dev-python/jmespath-0.7.1[${PYTHON_USEDEP}] + >=dev-python/s3transfer-0.3.0[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + dev-python/mock[${PYTHON_USEDEP}] + ) +" + +distutils_enable_sphinx docs/source \ + 'dev-python/guzzle_sphinx_theme' +distutils_enable_tests nose + +python_prepare_all() { + # don't lock versions to narrow ranges + sed -e '/botocore/ d' \ + -e '/jmespath/ d' \ + -e '/s3transfer/ d' \ + -i setup.py || die + + # prevent an infinite loop + rm tests/functional/docs/test_smoke.py || die + + distutils-r1_python_prepare_all +} + +python_test() { + nosetests -v tests/unit/ tests/functional/ || die "test failed under ${EPYTHON}" +} diff --git a/dev-python/botocore/Manifest b/dev-python/botocore/Manifest index 89ce5a9bd26f..219c313e4080 100644 --- a/dev-python/botocore/Manifest +++ b/dev-python/botocore/Manifest @@ -1,4 +1,5 @@ DIST botocore-1.20.104.tar.gz 7883624 BLAKE2B 4fb4c6abff5a2c3d3e19b11576e723f15a442b2d49e461a2a4c2bd613e26095ceb87f4b7ceb672f338ea04ad918060bed118f7bc4c184c46cce1d6a9f98d4239 SHA512 2201d87ce2e1c8979548698d6a46eb03c0a2026360b178fea895ad6a244efad534d9970d3c6343d50639d25b3b8643db6744658fec14e0fa29fd7c4b45c8e0d8 DIST botocore-1.20.105.tar.gz 7883335 BLAKE2B b48347e304ea54b56a37faae8bcbe9c127118b5bfadc71ffff3f6914b57f4d819faaadfc25834e49c9523f073f639823db4046bcbd9b5b72ee1df4c2ad198338 SHA512 72267620e4ecb7e4e4fa446b8f5c0b42d2e0af372f9e8bcfea123e5d8a6f4638102d57a9eb9f3c6f2358c6c2b36e727552c0b350b07f95a79292fb3c2cf4dd99 DIST botocore-1.20.106.tar.gz 7885164 BLAKE2B 3fa8b860a40a0915f6a59912fdee7b9e55fa88170da747d4d87464a5b44d6cbd5ce83cec383a7a1f41ec9a203d43a8cc006c7fc0005bfcf2869d66aa9f333b14 SHA512 135d789e2d5975697840dc4aca759b2d07d70d58efed7356a3323feb54faa2b8a339a48a3ac931270e335bc730eb8cc5e87f6fc2f9e3aebc452aab331ca49261 +DIST botocore-1.20.107.tar.gz 7893209 BLAKE2B 4e4882efef667ae91bb3e42a84748609390ef637d0a72a0b8b9dbab83a55cac9117553a0ef34bd38af98493d0972fd6178b322207c71914068eb3c634debaae9 SHA512 09c7a4bc4fab922aa7dbe94fcc0da6a462dbd90bdd51e8612431e5a790b46c56eab3b436048572a4a14c6ed2417ddca8efa52474d28fbe32558550c44b3fe0dd DIST botocore-1.20.97.tar.gz 7846552 BLAKE2B da0355cc229ba8a0632f67866bf06b27d7b257184b53670e5dc183c6b5a1f4d3a34145de0a3f04abd2adc08de3f0775e3c7e0dbecae729acb5bc05c7ce9acaf2 SHA512 7411d5de8ecf0c42c0142ded036189dcf378cd16f761071beb5bc2a2c240eabb0c4a8c669ce89a5b4e798a0aae92f0e67755627c2a84df77fc2e9557265a4e3b diff --git a/dev-python/botocore/botocore-1.20.107.ebuild b/dev-python/botocore/botocore-1.20.107.ebuild new file mode 100644 index 000000000000..30e0988848ad --- /dev/null +++ b/dev-python/botocore/botocore-1.20.107.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} ) +inherit distutils-r1 + +DESCRIPTION="Low-level, data-driven core of boto 3" +HOMEPAGE="https://github.com/boto/botocore" +LICENSE="Apache-2.0" +SLOT="0" + +if [[ "${PV}" == "9999" ]]; then + EGIT_REPO_URI="https://github.com/boto/botocore" + inherit git-r3 +else + SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux" +fi + +RDEPEND=" + dev-python/six[${PYTHON_USEDEP}] + dev-python/jmespath[${PYTHON_USEDEP}] + dev-python/python-dateutil[${PYTHON_USEDEP}] + >=dev-python/urllib3-1.25.4[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + dev-python/mock[${PYTHON_USEDEP}] + dev-python/jsonschema[${PYTHON_USEDEP}] + ) +" + +PATCHES=( + "${FILESDIR}/1.8.6-tests-pass-all-env-vars-to-cmd-runner.patch" +) + +distutils_enable_sphinx docs/source \ + 'dev-python/guzzle_sphinx_theme' +distutils_enable_tests nose + +src_prepare() { + # unpin deps + sed -i -e "s:>=.*':':" setup.py || die + # very unstable + sed -i -e 's:test_stress_test_token_bucket:_&:' \ + tests/functional/retries/test_bucket.py || die + distutils-r1_src_prepare +} + +python_test() { + # note: suites need to be run separately as one of the unit tests + # seems to be leaking mocks and breaking a few functional tests + nosetests -v tests/unit || + die "unit tests failed under ${EPYTHON}" + nosetests -v tests/functional || + die "functional tests failed under ${EPYTHON}" +} diff --git a/dev-python/cbor2/Manifest b/dev-python/cbor2/Manifest index 036d939cb6a5..cd798c9fe13a 100644 --- a/dev-python/cbor2/Manifest +++ b/dev-python/cbor2/Manifest @@ -1,3 +1 @@ -DIST cbor2-5.2.0.tar.gz 81467 BLAKE2B ac35cf682f15eba2c2bff81f562fe2f22906ab8da39c04cbf65f403eeacb5e640e200b15a8cca0d7eede1d0106cd8674640b3093d166a4414a2d42452a374322 SHA512 101aed37c3921ace2f4a5fbb9964ddd2ec2ffcd23fb1a9f838b2f8925f17ffaf5eb39a40b5426e176f0c97a2ba1d3a045e96ceb53312b283101900eddacc6af4 -DIST cbor2-5.3.0.tar.gz 81162 BLAKE2B 41bb0f74998260e2612dbd1990970554b906eaca40e52c21fd90d026ce0aad706830b98f10a226bdc23b819d3f1c52f93f25892a1de04f2a673b4d150a5c47fa SHA512 05eacace46c4b2f7025f12613ae6a755aa7fab14f15d0131d4d856ec5c37bea547d3c4a8afdde28c8653139be741f47351de5460df7dd3ec662325c8d1e2f3fd DIST cbor2-5.4.0.tar.gz 84850 BLAKE2B f615667fbf0a823606d55e36de42af6ff4cdc0f039e540750ec2663ba660bf11f26b75ed21ffa61ba6de05fcb6eb76982757321430506a4cfde11c1487cc788c SHA512 9fb110ebadbd803af94bbe5b6f35bf6d28dd2c30609d1bacca08dfa01efb07e670fee72aa29010ef6c64051eda6e772d3ada0fd64c444ccc0e94061483131c60 diff --git a/dev-python/cbor2/cbor2-5.2.0.ebuild b/dev-python/cbor2/cbor2-5.2.0.ebuild deleted file mode 100644 index ee466b902b56..000000000000 --- a/dev-python/cbor2/cbor2-5.2.0.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -PYTHON_COMPAT=( python3_{7..9} ) - -inherit distutils-r1 - -DESCRIPTION="Pure Python CBOR (de)serializer with extensive tag support" -HOMEPAGE="https://github.com/agronholm/cbor2 https://pypi.org/project/cbor2/" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 arm arm64 x86" - -distutils_enable_tests pytest - -python_prepare_all() { - # remove pytest-cov dep - sed -e "s/pytest-cov//" \ - -e "s/--cov //" \ - -i setup.cfg || die - - distutils-r1_python_prepare_all -} - -python_test() { - local deselect=() - - if use arm || use x86; then - # https://github.com/agronholm/cbor2/issues/99 - deselect+=( - tests/test_decoder.py::test_huge_truncated_bytes - tests/test_decoder.py::test_huge_truncated_string - ) - fi - - epytest ${deselect[@]/#/--deselect } -} diff --git a/dev-python/cbor2/cbor2-5.3.0.ebuild b/dev-python/cbor2/cbor2-5.3.0.ebuild deleted file mode 100644 index 08eedaa0341c..000000000000 --- a/dev-python/cbor2/cbor2-5.3.0.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -PYTHON_COMPAT=( python3_{7..10} ) - -inherit distutils-r1 - -DESCRIPTION="Pure Python CBOR (de)serializer with extensive tag support" -HOMEPAGE="https://github.com/agronholm/cbor2 https://pypi.org/project/cbor2/" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~x86" - -BDEPEND=" - dev-python/setuptools_scm[${PYTHON_USEDEP}]" - -distutils_enable_tests pytest - -python_prepare_all() { - # remove pytest-cov dep - sed -e "s/pytest-cov//" \ - -e "s/--cov //" \ - -i setup.cfg || die - - distutils-r1_python_prepare_all -} - -python_test() { - local deselect=() - - if use arm || use x86; then - # https://github.com/agronholm/cbor2/issues/99 - deselect+=( - tests/test_decoder.py::test_huge_truncated_bytes - tests/test_decoder.py::test_huge_truncated_string - ) - fi - - epytest ${deselect[@]/#/--deselect } -} diff --git a/dev-python/cbor2/cbor2-5.4.0.ebuild b/dev-python/cbor2/cbor2-5.4.0.ebuild index adb6dd1b4bd2..f928522c497e 100644 --- a/dev-python/cbor2/cbor2-5.4.0.ebuild +++ b/dev-python/cbor2/cbor2-5.4.0.ebuild @@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="amd64 arm ~arm64 x86" +KEYWORDS="amd64 arm arm64 x86" BDEPEND=" dev-python/setuptools_scm[${PYTHON_USEDEP}]" diff --git a/dev-python/commentjson/commentjson-0.9.0.ebuild b/dev-python/commentjson/commentjson-0.9.0.ebuild index 8b1925e47baf..548184a4965d 100644 --- a/dev-python/commentjson/commentjson-0.9.0.ebuild +++ b/dev-python/commentjson/commentjson-0.9.0.ebuild @@ -16,7 +16,7 @@ SRC_URI=" LICENSE="MIT" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" RDEPEND=" dev-python/lark-parser[${PYTHON_USEDEP}]" diff --git a/dev-python/coreapi/Manifest b/dev-python/coreapi/Manifest index bf4701165ff4..e04cc791180c 100644 --- a/dev-python/coreapi/Manifest +++ b/dev-python/coreapi/Manifest @@ -1 +1 @@ -DIST coreapi-2.3.3.tar.gz 18788 BLAKE2B f7837d6a0430e6617a2589aa84a209b3c544a913773bc4388c3bdef7348c83577e1b216e83c14736b15174ede840ae297b050eba551b4fe22d784e4d51677956 SHA512 5a66cf9613a9e11046577684b837f48e17db2285d14a51a77aa47eb945eef72a9ee0525b7b1b1c57fddec102c144ce56430ed5a95717e77d906d0b617dce708d +DIST core-api-python-client-2.3.3.tar.gz 37470 BLAKE2B ce3f88e1608715eec06a50fa5df4cd331e90509d0b7e9ab275ccfb4b3b5216115539b7fcd70af64794f0ae50a5084873d2dbbd38c85cb8be3f319d6880f5993e SHA512 aeae3ace84c0ce61552236b83db28e47492f5ac17a0e216e1a8eeddaf67270b94127f7a40f8a37cc5051abe097555adfd690a7e6c8801524ca77c916bd451ab8 diff --git a/dev-python/coreapi/coreapi-2.3.3-r1.ebuild b/dev-python/coreapi/coreapi-2.3.3-r1.ebuild index 6b899647835f..f1d85bb66162 100644 --- a/dev-python/coreapi/coreapi-2.3.3-r1.ebuild +++ b/dev-python/coreapi/coreapi-2.3.3-r1.ebuild @@ -1,15 +1,18 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 - -PYTHON_COMPAT=( python3_{7..9} ) +EAPI=8 +PYTHON_COMPAT=( python3_{8..10} ) inherit distutils-r1 +MY_P=python-client-${PV} DESCRIPTION="Python client library for Core API" HOMEPAGE="https://github.com/core-api/python-client" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" +SRC_URI=" + https://github.com/core-api/python-client/archive/${PV}.tar.gz + -> core-api-${MY_P}.tar.gz" +S=${WORKDIR}/${MY_P} LICENSE="BSD" SLOT="0" @@ -19,5 +22,5 @@ RDEPEND="dev-python/coreschema[${PYTHON_USEDEP}] dev-python/itypes[${PYTHON_USEDEP}] dev-python/uritemplate[${PYTHON_USEDEP}] dev-python/requests[${PYTHON_USEDEP}]" -DEPEND="${RDEPEND} -dev-python/setuptools[${PYTHON_USEDEP}]" + +distutils_enable_tests pytest diff --git a/dev-python/coreapi/metadata.xml b/dev-python/coreapi/metadata.xml index b99b0e0b1b49..e19a9b10f754 100644 --- a/dev-python/coreapi/metadata.xml +++ b/dev-python/coreapi/metadata.xml @@ -1,7 +1,10 @@ - + + python@gentoo.org + Python + coreapi diff --git a/dev-python/coreschema/Manifest b/dev-python/coreschema/Manifest index 49890493f062..dde371908d51 100644 --- a/dev-python/coreschema/Manifest +++ b/dev-python/coreschema/Manifest @@ -1 +1 @@ -DIST coreschema-0.0.4.tar.gz 10974 BLAKE2B 8bddafea9eb82140cdf2b2cd40ffc31dd4a0457f8ca216986807657a5021f7a4319f1e3db27caf7d471f8617f6f0c3a6d79ebfe7e0285bc9a6627f93d6efa760 SHA512 21a35b29cd0bb96dacaeeb0bd0faaaa4ee8875bf9639b431b59f17c41ee4829173932a6b35760caa3b46a0ec39ca173fe896b26b740fe97df36943270bc2bd3d +DIST python-coreschema-0.0.4.tar.gz 21905 BLAKE2B 1afe09038761809fa0e12d13fb89884760d4aff325a4bbdac104c03648856f8d50b562fc00a8509fcc75f962918f33d89017fae0a6d0335def4d6b77ee9aacd9 SHA512 28badbae07284fb4dbd3f01f613edda1202902115fb166bd95bbac549d398c9e02548b473524d3b530a42319a99d7e55e92bf54269827a9812249cfb285670c3 diff --git a/dev-python/coreschema/coreschema-0.0.4.ebuild b/dev-python/coreschema/coreschema-0.0.4.ebuild index c9e4efbc99e9..a4c0e7af886b 100644 --- a/dev-python/coreschema/coreschema-0.0.4.ebuild +++ b/dev-python/coreschema/coreschema-0.0.4.ebuild @@ -1,20 +1,23 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 - -PYTHON_COMPAT=( python3_{7..9} ) +EAPI=8 +PYTHON_COMPAT=( python3_{8..10} ) inherit distutils-r1 +MY_P=python-${P} DESCRIPTION="Core Schema" HOMEPAGE="https://github.com/core-api/python-coreschema" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" +SRC_URI=" + https://github.com/core-api/python-coreschema/archive/${PV}.tar.gz + -> ${MY_P}.tar.gz" +S=${WORKDIR}/${MY_P} LICENSE="BSD" SLOT="0" KEYWORDS="~amd64" RDEPEND="dev-python/jinja[${PYTHON_USEDEP}]" -DEPEND="${RDEPEND} - dev-python/setuptools[${PYTHON_USEDEP}]" + +distutils_enable_tests pytest diff --git a/dev-python/coreschema/metadata.xml b/dev-python/coreschema/metadata.xml index d45b55897acd..96dce88db220 100644 --- a/dev-python/coreschema/metadata.xml +++ b/dev-python/coreschema/metadata.xml @@ -1,7 +1,10 @@ - + + python@gentoo.org + Python + coreschema diff --git a/dev-python/dictdiffer/dictdiffer-0.8.1.ebuild b/dev-python/dictdiffer/dictdiffer-0.8.1.ebuild index c0771d96705f..b1205c68e660 100644 --- a/dev-python/dictdiffer/dictdiffer-0.8.1.ebuild +++ b/dev-python/dictdiffer/dictdiffer-0.8.1.ebuild @@ -15,7 +15,7 @@ HOMEPAGE=" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" -KEYWORDS="~amd64 ~arm ~sparc" +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~sparc" SLOT="0" BDEPEND=" diff --git a/dev-python/distlib/Manifest b/dev-python/distlib/Manifest index 04e1bb52bd12..593287ce60f8 100644 --- a/dev-python/distlib/Manifest +++ b/dev-python/distlib/Manifest @@ -1,2 +1 @@ -DIST distlib-0.3.1.tar.bz2 1068500 BLAKE2B 52135869242f71cc6d6887da6d9e20ffc6b46c84d8146393961062d92d8c0bd68e1309277f64fdec0319ff3c503b1caaba3d5378f5c081dca79573c8d9c2e6f2 SHA512 f259299176c45be7024b80759015a2fad120ffdde55b6abea0f7fb0335cee90809b5daedcb88abdfb68fd496284b2e478df622004b3750327bfc86807581116c DIST distlib-0.3.2.tar.bz2 1075843 BLAKE2B 3595dc6af53beb7ff7dc49013e6c3db3453b501b56790a953c2cfea5a73aaca71fc69de68c8121ae92ffafd32a70ffa69d768cfd42844135fd5bd6647611e090 SHA512 e033ff2ff6b760f698a20103e01d63fa87bc1839bbf44fce252284c793e10a057dac645d818a4e0a2aa8be97bb85fcf9c8706b2399c505f12a093024d11be578 diff --git a/dev-python/distlib/distlib-0.3.1-r1.ebuild b/dev-python/distlib/distlib-0.3.1-r1.ebuild deleted file mode 100644 index ab98794d5345..000000000000 --- a/dev-python/distlib/distlib-0.3.1-r1.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DISTUTILS_USE_SETUPTOOLS=no -PYTHON_COMPAT=( python3_{7,8,9} pypy3 ) - -inherit distutils-r1 vcs-snapshot - -DESCRIPTION="Low-level components of distutils2/packaging" -HOMEPAGE="https://pypi.org/project/distlib/ - https://bitbucket.org/pypa/distlib/" -# pypi has zip only :-( -SRC_URI=" - https://bitbucket.org/pypa/distlib/get/${PV}.tar.bz2 -> ${P}.tar.bz2" - -LICENSE="PSF-2" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-macos" -IUSE="test" -# This package's tests are extremely fragile and tend to break or hang -# when it doesn't like metadata of packages installed on the system. -RESTRICT="test" - -# pypiserver is called as external executable -# openpyxl installs invalid metadata that breaks distlib -BDEPEND=" - test? ( - dev-python/pypiserver - !! -Date: Wed, 8 Jul 2020 09:24:42 +0200 -Subject: [PATCH] Use system pypiserver - ---- - tests/test_index.py | 7 +------ - 1 file changed, 1 insertion(+), 6 deletions(-) - -diff --git a/tests/test_index.py b/tests/test_index.py -index bc24367..4971e3f 100644 ---- a/tests/test_index.py -+++ b/tests/test_index.py -@@ -52,11 +52,6 @@ class PackageIndexTestCase(unittest.TestCase): - def setUpClass(cls): - if cls.run_test_server: - cls.server = None -- server_script = os.path.join(HERE, 'pypi-server-standalone.py') -- if not os.path.exists(server_script): -- logger.debug('test server not available - some tests ' -- 'will be skipped.') -- return - pwdfn = os.path.join(HERE, 'passwords') - if not os.path.exists(pwdfn): # pragma: no cover - with open(pwdfn, 'w') as f: -@@ -65,7 +60,7 @@ class PackageIndexTestCase(unittest.TestCase): - if not os.path.isdir(pkgdir): # pragma: no cover - os.mkdir(pkgdir) - cls.sink = sink = open(os.devnull, 'w') -- cmd = [sys.executable, 'pypi-server-standalone.py', -+ cmd = ['pypi-server', - '-P', 'passwords', 'packages'] - cls.server = subprocess.Popen(cmd, stdout=sink, stderr=sink, - cwd=HERE) --- -2.27.0 - diff --git a/dev-python/django-timezone-field/Manifest b/dev-python/django-timezone-field/Manifest index 3d8e03c30bd1..c4c4246129fd 100644 --- a/dev-python/django-timezone-field/Manifest +++ b/dev-python/django-timezone-field/Manifest @@ -1 +1,2 @@ DIST django-timezone-field-4.1.tar.gz 8286 BLAKE2B 591a3d9a332102fd6b3a3cf865b1b9ca2ef1d7b37f6bc1a01ddc724050468d59ee5b6c14933203b6182a5efddad32e7e76b17980e415562404057b0e25393089 SHA512 3903e19ab66d636a4fa9c0364aa8232958c6b0d33c41253d57322320543e8f4993ff1eac2fdbee319b174e7e85fbb2dece9cd8db910913d4249de9eb862917e2 +DIST django-timezone-field-4.2.1.gh.tar.gz 23457 BLAKE2B 72452a21e6e086363da2ef40389d12b79860f66706e54fb9050ffe48f7fa6ad2908c75d4c7e17a79df339eac76492599dd4533ddca69a5b8757b46a36ed4b0fc SHA512 4c2da420c3aaffa23d8cdb66dbbe4b2ea8638de5a45d9e381bf9af980e52eba77fc03a2b8fee8497662199cdc9436d56543c0f6316e74ae5da68187a305c34a2 diff --git a/dev-python/django-timezone-field/django-timezone-field-4.2.1.ebuild b/dev-python/django-timezone-field/django-timezone-field-4.2.1.ebuild new file mode 100644 index 000000000000..0e61159b2c1e --- /dev/null +++ b/dev-python/django-timezone-field/django-timezone-field-4.2.1.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} ) +inherit distutils-r1 + +DESCRIPTION="A Django app providing database and form fields for pytz timezone objects" +HOMEPAGE="https://github.com/mfogel/django-timezone-field" +SRC_URI=" + https://github.com/mfogel/django-timezone-field/archive/${PV}.tar.gz + -> ${P}.gh.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND=" + >=dev-python/django-2.2[${PYTHON_USEDEP}] + dev-python/pytz[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + dev-python/djangorestframework[${PYTHON_USEDEP}] + dev-python/pytest-django[${PYTHON_USEDEP}] + dev-python/pytest-lazy-fixture[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest + +python_test() { + local -x DB_ENGINE=sqlite + epytest +} diff --git a/dev-python/django-timezone-field/metadata.xml b/dev-python/django-timezone-field/metadata.xml index 05081b957933..eb7c1b7c73f9 100644 --- a/dev-python/django-timezone-field/metadata.xml +++ b/dev-python/django-timezone-field/metadata.xml @@ -1,7 +1,10 @@ - + + python@gentoo.org + Python + django-timezone-field diff --git a/dev-python/djangorestframework/Manifest b/dev-python/djangorestframework/Manifest index cc4cc8a41f20..4b1351e3e159 100644 --- a/dev-python/djangorestframework/Manifest +++ b/dev-python/djangorestframework/Manifest @@ -1,2 +1 @@ -DIST django-rest-framework-3.12.2.gh.tar.gz 8856613 BLAKE2B 77d0b3bad38c7829387de752d913eb758935615213d8f8ada9422ecf25142383c1b11a1c95d5fc9f4cf7634e494119ddcb236c810e85429fa8cd4ecd1ef88132 SHA512 7c3e712897562eff14ddfa4ded6627d6b4263001e0c9a4047b92da43c0fd86e8ac9d09bb54bb87ce0d4e7743553c4733a60b18327f7e4d481cb9898593731467 DIST django-rest-framework-3.12.4.gh.tar.gz 8856507 BLAKE2B 48150e8d966ddd169a2b58d90656efa8f9f549c9d2fdee6025254fba2a6221704fe6bcb246567c8acb963f76ea56046935d3190c7c391daf4773b100a641ba02 SHA512 406b5354809b94e371a2c7d4b62ce66c18a1f60bd02574cba603ad4c44faa4297bdbbd6ee50de63fe21d2aae18386e05d46983a506bddd17f06ce610d5b727c9 diff --git a/dev-python/djangorestframework/djangorestframework-3.12.2.ebuild b/dev-python/djangorestframework/djangorestframework-3.12.2.ebuild deleted file mode 100644 index 8530587f35df..000000000000 --- a/dev-python/djangorestframework/djangorestframework-3.12.2.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{7..9} ) - -inherit distutils-r1 - -MY_P=django-rest-framework-${PV} -DESCRIPTION="Web APIs with django made easy" -HOMEPAGE="https://www.django-rest-framework.org/" -SRC_URI=" - https://github.com/encode/django-rest-framework/archive/${PV}.tar.gz - -> ${MY_P}.gh.tar.gz" -S=${WORKDIR}/${MY_P} - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64" - -RDEPEND=">=dev-python/django-1.11[${PYTHON_USEDEP}]" -BDEPEND=" - test? ( - dev-python/coreapi[${PYTHON_USEDEP}] - dev-python/coreschema[${PYTHON_USEDEP}] - dev-python/pytest-django[${PYTHON_USEDEP}] - dev-python/pyyaml[${PYTHON_USEDEP}] - )" - -distutils_enable_tests pytest - -python_test() { - local deselect=( - # TODO - tests/test_description.py::TestViewNamesAndDescriptions::test_markdown - ) - - epytest ${deselect[@]/#/--deselect } -} diff --git a/dev-python/djangorestframework/djangorestframework-3.12.4.ebuild b/dev-python/djangorestframework/djangorestframework-3.12.4.ebuild index 8530587f35df..8b6cfef95bea 100644 --- a/dev-python/djangorestframework/djangorestframework-3.12.4.ebuild +++ b/dev-python/djangorestframework/djangorestframework-3.12.4.ebuild @@ -1,10 +1,9 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 - -PYTHON_COMPAT=( python3_{7..9} ) +EAPI=8 +PYTHON_COMPAT=( python3_{8..10} ) inherit distutils-r1 MY_P=django-rest-framework-${PV} @@ -34,6 +33,8 @@ python_test() { local deselect=( # TODO tests/test_description.py::TestViewNamesAndDescriptions::test_markdown + # django version incompatibility? + tests/test_fields.py::TestNaiveDayLightSavingTimeTimeZoneDateTimeField::test_invalid_inputs ) epytest ${deselect[@]/#/--deselect } diff --git a/dev-python/easyprocess/easyprocess-0.3.ebuild b/dev-python/easyprocess/easyprocess-0.3.ebuild deleted file mode 100644 index cb3c5b741ddd..000000000000 --- a/dev-python/easyprocess/easyprocess-0.3.ebuild +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{7,8} ) - -inherit distutils-r1 - -DESCRIPTION="Easy to use Python subprocess interface" -HOMEPAGE="https://github.com/ponty/EasyProcess" -SRC_URI="https://github.com/ponty/EasyProcess/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="BSD-2" -SLOT="0" -KEYWORDS="amd64 x86" - -BDEPEND="test? ( - dev-python/pytest-timeout[${PYTHON_USEDEP}] - dev-python/pyvirtualdisplay[${PYTHON_USEDEP}] - dev-python/six[${PYTHON_USEDEP}] - x11-base/xorg-server[xvfb] -)" - -S="${WORKDIR}/EasyProcess-${PV}" - -distutils_enable_tests pytest diff --git a/dev-python/entrypoint2/Manifest b/dev-python/entrypoint2/Manifest index 873d3b0435b5..6d18e06b6d2f 100644 --- a/dev-python/entrypoint2/Manifest +++ b/dev-python/entrypoint2/Manifest @@ -1,2 +1 @@ -DIST entrypoint2-0.2.3.tar.gz 11542 BLAKE2B ef1ef511e02a3c5601d3147af241965fa78361a8cd070b5f0240f3842cdd49b3f93a32af4299568d201382c8c5a694ec7f85191c5880d489056744f59cbcd346 SHA512 c02ca02be9f25533c6a37a3aa372cdb75de8419349e279f7bd82369667a75943fc2fd0ba5afad49281d623f8ac4d6f97ffb2dbdb7b72b4cdc9afec80e763bed5 DIST entrypoint2-0.2.4.tar.gz 10407 BLAKE2B 16335f8e2bc173413f387e581892b1fe03efdb6bdea2e75d20a95258d55c0cb83dc70691cb4b41b07e49881db4e5c08593bba42adf5c1a69785e32c99d68a7fa SHA512 7bf7dea2afc7df3ebe57f89f472e4456fc22d5c66720930a2b15dbe04f708ff4bb00feec79af430620d8cc6d91d5df1770869d23d2282ecc0024ecc7583b360b diff --git a/dev-python/entrypoint2/entrypoint2-0.2.3.ebuild b/dev-python/entrypoint2/entrypoint2-0.2.3.ebuild deleted file mode 100644 index 51a72e233eff..000000000000 --- a/dev-python/entrypoint2/entrypoint2-0.2.3.ebuild +++ /dev/null @@ -1,23 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{7,8} ) - -inherit distutils-r1 - -DESCRIPTION="Easy to use command-line interface for python modules" -HOMEPAGE="https://github.com/ponty/entrypoint2" -SRC_URI="https://github.com/ponty/entrypoint2/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="BSD-2" -SLOT="0" -KEYWORDS="amd64 x86" - -BDEPEND="test? ( - dev-python/easyprocess[${PYTHON_USEDEP}] - dev-python/path-py[${PYTHON_USEDEP}] -)" - -distutils_enable_tests pytest diff --git a/dev-python/exdown/Manifest b/dev-python/exdown/Manifest index 1f5deedebc9c..06d6a4509152 100644 --- a/dev-python/exdown/Manifest +++ b/dev-python/exdown/Manifest @@ -1,4 +1 @@ -DIST exdown-0.8.6.tar.gz 5480 BLAKE2B fe383a2092691afdb2a3fd8cfeffb78f62b23bd4dc8f8d5365102084acc8670c9f2bc3e4a0ade95a50ceffc5cc142c39dbd3e505678a238d6f39b82f6553071a SHA512 28cd68ed99d24c79a7764f7603242f2b1426f119864d39424b1326cecc5bc922ed610133099e7d03d384c485f4f67d1fefcaadee4e1f69ac8ece08136eb858e9 -DIST exdown-0.8.8.tar.gz 5523 BLAKE2B b53f23ebf133ad75973298b9b98c3f85f63802a9a302e92dda1446f0d686ba4eecd4fa72056d331b6e6caca5e066ec032a31fbfa3e74c1dba39ed007cf116480 SHA512 f5ef32b15720091c459110d6c9644b8dfcc84f6fd117f8433380704e93848cac0c9a3709d879bc42561474dd46b2035bc2be2f7e0bb5207a40ceb26ce4577b4a -DIST exdown-0.8.9.tar.gz 5558 BLAKE2B 9fade2918bed1a6f81619e2d2bf13a2459f36e73422e271fc470944006b2fb28d5fe0c7bd01810a605fdae64a3725d96e9ea3b8b39f391a4254292244437f380 SHA512 c1d556634295dc24fb7b4a13ea73aff9a162d96e5f698c3923e87fb6a5a1b28be49d2527d91b861aeb8c26bce08b8ebfa0ad6b02553d8e7c291430ec1f72be7c DIST pytest-codeblocks-0.9.0.tar.gz 6590 BLAKE2B 34d1c72a891d2f2f1d98c4238322d888a48b286d628e3738043d16a59a75b3bd15b29e31c554a83508d9af31caf1b526e3c535a243bcf77c8d77f9bf5be69f5b SHA512 834002c4e9c8ad36baa9a4ed494fe28cf09460e0ee5a0a3d8d111cb0bd8ca4ed3c784a047901bc67984e7892f931b5644c1ea68112e4d9dda514a20e048b3d11 diff --git a/dev-python/exdown/exdown-0.8.6.ebuild b/dev-python/exdown/exdown-0.8.6.ebuild deleted file mode 100644 index d8894682f3ed..000000000000 --- a/dev-python/exdown/exdown-0.8.6.ebuild +++ /dev/null @@ -1,25 +0,0 @@ -# Copyright 2019-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DISTUTILS_USE_SETUPTOOLS=pyproject.toml -PYTHON_COMPAT=( python3_{7..9} ) - -inherit distutils-r1 virtualx - -DESCRIPTION="Extract code blocks from markdown" -HOMEPAGE="https://github.com/nschloe/exdown" -SRC_URI="https://github.com/nschloe/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -RDEPEND=" - $(python_gen_cond_dep ' - dev-python/importlib_metadata[${PYTHON_USEDEP}] - ' python3_7) -" - -distutils_enable_tests pytest diff --git a/dev-python/exdown/exdown-0.8.8.ebuild b/dev-python/exdown/exdown-0.8.8.ebuild deleted file mode 100644 index d8894682f3ed..000000000000 --- a/dev-python/exdown/exdown-0.8.8.ebuild +++ /dev/null @@ -1,25 +0,0 @@ -# Copyright 2019-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DISTUTILS_USE_SETUPTOOLS=pyproject.toml -PYTHON_COMPAT=( python3_{7..9} ) - -inherit distutils-r1 virtualx - -DESCRIPTION="Extract code blocks from markdown" -HOMEPAGE="https://github.com/nschloe/exdown" -SRC_URI="https://github.com/nschloe/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -RDEPEND=" - $(python_gen_cond_dep ' - dev-python/importlib_metadata[${PYTHON_USEDEP}] - ' python3_7) -" - -distutils_enable_tests pytest diff --git a/dev-python/exdown/exdown-0.8.9.ebuild b/dev-python/exdown/exdown-0.8.9.ebuild deleted file mode 100644 index d8894682f3ed..000000000000 --- a/dev-python/exdown/exdown-0.8.9.ebuild +++ /dev/null @@ -1,25 +0,0 @@ -# Copyright 2019-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DISTUTILS_USE_SETUPTOOLS=pyproject.toml -PYTHON_COMPAT=( python3_{7..9} ) - -inherit distutils-r1 virtualx - -DESCRIPTION="Extract code blocks from markdown" -HOMEPAGE="https://github.com/nschloe/exdown" -SRC_URI="https://github.com/nschloe/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -RDEPEND=" - $(python_gen_cond_dep ' - dev-python/importlib_metadata[${PYTHON_USEDEP}] - ' python3_7) -" - -distutils_enable_tests pytest diff --git a/dev-python/fuzzywuzzy/fuzzywuzzy-0.18.0.ebuild b/dev-python/fuzzywuzzy/fuzzywuzzy-0.18.0.ebuild index 12c9b983d11d..4bc6ff89a5ae 100644 --- a/dev-python/fuzzywuzzy/fuzzywuzzy-0.18.0.ebuild +++ b/dev-python/fuzzywuzzy/fuzzywuzzy-0.18.0.ebuild @@ -11,7 +11,7 @@ DESCRIPTION="Fuzzy string matching in python" HOMEPAGE="https://github.com/seatgeek/fuzzywuzzy" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" -KEYWORDS="~amd64 ~arm ~sparc ~x86" +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86" LICENSE="GPL-2" SLOT="0" IUSE="test" diff --git a/dev-python/google-api-python-client/Manifest b/dev-python/google-api-python-client/Manifest index 0c8cd4b8236c..d18396dea68d 100644 --- a/dev-python/google-api-python-client/Manifest +++ b/dev-python/google-api-python-client/Manifest @@ -1,2 +1,3 @@ DIST google-api-python-client-2.11.0.tar.gz 25408815 BLAKE2B 9bc7d0163961f5b6341fcb43f41a91dfe12702254047ac2b418ce89dad4f8f40400a7df1fff5ce9d73a05c5249b7242a4d642b866b97a34140826901f74f9d6e SHA512 6d31e0ed926f87f12400b1ec244f8e193d6559c58d6775c34ef5747af3ba633e76e8a883983438e84c6d31fe81ea57ac522f924270b80993cc6396cb6f3ae60e +DIST google-api-python-client-2.12.0.tar.gz 25476570 BLAKE2B 7d5f53c19f00878ef717515f406a56d22ce520a0de4f8c5b4142de56263a5bdef76aaa64b3b87301f8c704ad279554f66425c746c8bb869ef735c061fc5d1b6a SHA512 47bfebe8649a4dbf2f8570f71ec4a0c4ececccf6734138e3c84e0501328f949485b5476227c123493b5874e43cc0ab72622ce9fb44484502e21e364f6c8cea54 DIST google-api-python-client-2.8.0.tar.gz 25286774 BLAKE2B b21aebda062984b9eb8f2f5c563016f0f8f663883dc8ddb913053ff3df32c652c6a83f924f3e19136e5edec085e12c43cc584bc9898630122c77a219810033bc SHA512 cc3c55438b2f5835b52d17d04a749919c4865991ff78cf95920d0941a55e1493eae502a13f6565cfe1db799ce9950659e8baaa690bada058d711309861c8d07e diff --git a/dev-python/google-api-python-client/google-api-python-client-2.12.0.ebuild b/dev-python/google-api-python-client/google-api-python-client-2.12.0.ebuild new file mode 100644 index 000000000000..68ec1c0b8c12 --- /dev/null +++ b/dev-python/google-api-python-client/google-api-python-client-2.12.0.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..9} ) +inherit distutils-r1 + +DESCRIPTION="Google API Client for Python" +HOMEPAGE="https://github.com/googleapis/google-api-python-client" +SRC_URI="https://github.com/googleapis/google-api-python-client/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" + +RDEPEND=" + >=dev-python/httplib2-0.15[${PYTHON_USEDEP}] + =dev-python/google-auth-1.16.0[${PYTHON_USEDEP}] + >=dev-python/google-auth-httplib2-0.1.0[${PYTHON_USEDEP}] + >=dev-python/uritemplate-3.0.0[${PYTHON_USEDEP}] + =dev-python/six-1.13.0[${PYTHON_USEDEP}] + - + + python@gentoo.org + Python + PavanTatikonda/itypes itypes diff --git a/dev-python/js2py/js2py-0.71.ebuild b/dev-python/js2py/js2py-0.71.ebuild index 3926ae3c7939..ce887d3f5ace 100644 --- a/dev-python/js2py/js2py-0.71.ebuild +++ b/dev-python/js2py/js2py-0.71.ebuild @@ -22,7 +22,7 @@ SRC_URI="https://github.com/PiotrDabkowski/${MY_PN}/archive/${MY_COMMIT}.tar.gz LICENSE="MIT" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" RDEPEND=" >=dev-python/pyjsparser-2.5.1[${PYTHON_USEDEP}] diff --git a/dev-python/lark-parser/lark-parser-0.11.3.ebuild b/dev-python/lark-parser/lark-parser-0.11.3.ebuild index b11a85fa3538..7e9086fd46c2 100644 --- a/dev-python/lark-parser/lark-parser-0.11.3.ebuild +++ b/dev-python/lark-parser/lark-parser-0.11.3.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" IUSE="test" RESTRICT="!test? ( test )" diff --git a/dev-python/lunr/Manifest b/dev-python/lunr/Manifest index 05e908798284..1d83c31e7356 100644 --- a/dev-python/lunr/Manifest +++ b/dev-python/lunr/Manifest @@ -1,3 +1 @@ -DIST lunr-0.5.8.tar.gz 834919 BLAKE2B 970cc12fb30bc849d4ef846818f93fa7b7701b1155c9b7880f3a63384a8f353c760be5dc6c37188db656e7424715aa854f20615ae652b0a5c9e656871be490af SHA512 90c279b9e91744f19c4a155947526bff749aee5d727bc38cc36ee05228a6624419a54bef4214e8195a69abcf1a5b40b29c4fa8b14bece0befbde02d13af969ac -DIST lunr-0.5.9.tar.gz 837871 BLAKE2B 988d4b6a59a868b2e06d5454dd1e4932981328ddfc6312027f22dd11228547c6ab21c096f3e673ea5aee0745fcd718ac805bc2067b834ed64841a8592f4317c1 SHA512 e2efa0b22af79140befe9d16e8f9fd3cd57f5413b466447eecb9a21ad2f50a6b31f27510bc7558662f418023290350730e6517b202b9d5ae06428ccdac12ebd9 DIST lunr-0.6.0.tar.gz 839533 BLAKE2B fce81bfe0e12138b8ab335ecec828ac18be13f0d9f823218de11d701c4d44f54c06360c4c8f1c96fd36b634094b6f10bd964c9d4e154dc208cad1f36e4b32f47 SHA512 2067c34c12f77ab0fb32c7f800ea3c647a1073c061a14f2b72b2b95fc8d624429aa37e85992eee5d5b24add179eab1d81af52af09f0db67d6cae459a5faa0925 diff --git a/dev-python/lunr/lunr-0.5.8.ebuild b/dev-python/lunr/lunr-0.5.8.ebuild deleted file mode 100644 index fdf8b17158ab..000000000000 --- a/dev-python/lunr/lunr-0.5.8.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{7,8} ) - -DOCS_BUILDER="mkdocs" - -inherit distutils-r1 docs - -DESCRIPTION="A Python implementation of Lunr.js" -HOMEPAGE="https://github.com/yeraydiazdiaz/lunr.py" -SRC_URI="https://github.com/yeraydiazdiaz/lunr.py/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 x86" - -RDEPEND=" - dev-python/future[${PYTHON_USEDEP}] - dev-python/nltk[${PYTHON_USEDEP}] - dev-python/six[${PYTHON_USEDEP}] -" - -BDEPEND="test? ( - dev-python/mock[${PYTHON_USEDEP}] -)" - -S="${WORKDIR}/${PN}.py-${PV}" - -distutils_enable_tests pytest - -python_prepare_all() { - # Tests in this subdir all fail - # Command '['node', '/var/tmp/portage/dev-python/lunr-0.5.8/work/lunr.py-0.5.8/tests/acceptance_tests/javascript/mkdocs_load_serialized_index_and_search.js', '/var/tmp/portage/dev-python/lunr-0.5.8/temp/tmpldbff36d', 'plugins']' returned non-zero exit status 1. - rm -r tests/acceptance_tests || die - - distutils-r1_python_prepare_all -} diff --git a/dev-python/lunr/lunr-0.5.9.ebuild b/dev-python/lunr/lunr-0.5.9.ebuild deleted file mode 100644 index 9db4e0eead72..000000000000 --- a/dev-python/lunr/lunr-0.5.9.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{7,8,9} ) - -DOCS_BUILDER="mkdocs" - -inherit distutils-r1 docs - -DESCRIPTION="A Python implementation of Lunr.js" -HOMEPAGE="https://github.com/yeraydiazdiaz/lunr.py" -SRC_URI="https://github.com/yeraydiazdiaz/lunr.py/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -RDEPEND="dev-python/nltk[${PYTHON_USEDEP}]" - -BDEPEND="test? ( - dev-python/mock[${PYTHON_USEDEP}] -)" - -S="${WORKDIR}/${PN}.py-${PV}" - -distutils_enable_tests pytest - -python_prepare_all() { - # Tests in this subdir all fail - # Command '['node', '/var/tmp/portage/dev-python/lunr-0.5.8/work/lunr.py-0.5.8/tests/acceptance_tests/javascript/mkdocs_load_serialized_index_and_search.js', '/var/tmp/portage/dev-python/lunr-0.5.8/temp/tmpldbff36d', 'plugins']' returned non-zero exit status 1. - rm -r tests/acceptance_tests || die - - distutils-r1_python_prepare_all -} diff --git a/dev-python/mkdocs-material/Manifest b/dev-python/mkdocs-material/Manifest index 4957720c6ff3..78ec43606553 100644 --- a/dev-python/mkdocs-material/Manifest +++ b/dev-python/mkdocs-material/Manifest @@ -1,5 +1,2 @@ -DIST mkdocs-material-6.2.5.tar.gz 5373656 BLAKE2B 7e04a4a284c0749264be819a0b42bc93f924c84b40df9f718392912f97b4cc2288dac7d7a721047c0ad24ed4bb73e4a2d00aaedfbcdd9198c59180fcb2eb286a SHA512 3925c03e2f7e71cf25cf386a6f7c6e768c059a61201860dce186f095c84cb311645628fd8732f10e9106bd818e348115c1f22457bba7c128f6bc89e980983bab -DIST mkdocs-material-7.0.6.tar.gz 6224144 BLAKE2B 87945b12c8f922fac925cae603ab2cf3a30ee6f707c4960826116d0e24e59f24cccb0319f19b245785f7f764326cc54db880aa7517491e9df6f70a4fd38a3f66 SHA512 8c88f57e2daca9e7d1d466b6bf78c67936c98dc1a871156ae9c29266cd6bf31c73b908b220e2a99f4c1cd77edb5a7fd6f5460885e997189bf02bb75d048273ac -DIST mkdocs-material-7.1.0.tar.gz 6084658 BLAKE2B 33a83d6ae358bb79b035dd8ba2bf662de3475057c0248b3618a3c468052c6c3047c89d972286310996758318c25ed1dc69d361727163f6e0b8d6420449662f38 SHA512 2bdb98b980e34a6d7a98a96b6b7c1ad869df31dde4cc712bf848105c7f8ff7faebcd0f3c17c9b26697661a40ce15137f60b7eccb64ff968d00209eb26ac788f6 DIST mkdocs-material-7.1.1.tar.gz 6080208 BLAKE2B a67742ce923dc7bbefbb5638156f5a2f703bd54af96e59b1c580264ae3096d0a823df6cd88151f2c446a97b578bc4a620d694323f5a81cc33836181dad203214 SHA512 ab6b9b4b08268c15b42cf9d5d26ea0bc91151efb1b478602b495f603335792fcd1f9058ecc52767cb861969ab1db7aff2681653db35cb739173b56f7f32f9c65 -DIST mkdocs-material-7.1.7.tar.gz 6359705 BLAKE2B c3faaa59a5e0d848be646e206aba47318e8210d50b0ffd2a092fc4c2736fee8756b41ac91a421ed6f3e874b2beba0508d2273fecefa3bbb70cef5fe1707f3f9c SHA512 4e55ee7a04401830530ecf02439c3de64bfc388847e396414ed6f3f6f12a9db8a73175144772da76836c23e08a2e5b73077b9bb69a2b56a6cc3e2200940081a7 +DIST mkdocs-material-7.1.9.tar.gz 6492415 BLAKE2B 67a86251289126320088dde4611ea1c1e75543e7edcb2f737dfcf21844f53a3457544716cded44f0954c2658cb107e5cae589efa2c71ee07151a39ed0f28401f SHA512 1a4296ff692842e61406b24ac50b1c02550a2581040611c263aa744c98031a54c6f380e6f655aa477f98d7507d2e8649434fc981928e9d27f09df71cccd22ecd diff --git a/dev-python/mkdocs-material/mkdocs-material-6.2.5.ebuild b/dev-python/mkdocs-material/mkdocs-material-6.2.5.ebuild deleted file mode 100644 index 1fdd08b1bef0..000000000000 --- a/dev-python/mkdocs-material/mkdocs-material-6.2.5.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{7,8} ) - -DOCS_BUILDER="mkdocs" -DOCS_DEPEND=" - dev-python/mkdocs-minify-plugin - dev-python/mkdocs-redirects -" - -inherit distutils-r1 docs - -DESCRIPTION="A Material Design theme for MkDocs" -HOMEPAGE=" - https://github.com/squidfunk/mkdocs-material - https://pypi.org/project/mkdocs-material -" -SRC_URI="https://github.com/squidfunk/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -RDEPEND=" - >=dev-python/markdown-3.2[${PYTHON_USEDEP}] - >=dev-python/mkdocs-1.1[${PYTHON_USEDEP}] - >=dev-python/pygments-2.4[${PYTHON_USEDEP}] - >=dev-python/pymdown-extensions-7.0[${PYTHON_USEDEP}] - >=dev-python/mkdocs-material-extensions-1.0[${PYTHON_USEDEP}] -" diff --git a/dev-python/mkdocs-material/mkdocs-material-7.0.6.ebuild b/dev-python/mkdocs-material/mkdocs-material-7.0.6.ebuild deleted file mode 100644 index 1fdd08b1bef0..000000000000 --- a/dev-python/mkdocs-material/mkdocs-material-7.0.6.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{7,8} ) - -DOCS_BUILDER="mkdocs" -DOCS_DEPEND=" - dev-python/mkdocs-minify-plugin - dev-python/mkdocs-redirects -" - -inherit distutils-r1 docs - -DESCRIPTION="A Material Design theme for MkDocs" -HOMEPAGE=" - https://github.com/squidfunk/mkdocs-material - https://pypi.org/project/mkdocs-material -" -SRC_URI="https://github.com/squidfunk/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -RDEPEND=" - >=dev-python/markdown-3.2[${PYTHON_USEDEP}] - >=dev-python/mkdocs-1.1[${PYTHON_USEDEP}] - >=dev-python/pygments-2.4[${PYTHON_USEDEP}] - >=dev-python/pymdown-extensions-7.0[${PYTHON_USEDEP}] - >=dev-python/mkdocs-material-extensions-1.0[${PYTHON_USEDEP}] -" diff --git a/dev-python/mkdocs-material/mkdocs-material-7.1.0.ebuild b/dev-python/mkdocs-material/mkdocs-material-7.1.0.ebuild deleted file mode 100644 index 1fdd08b1bef0..000000000000 --- a/dev-python/mkdocs-material/mkdocs-material-7.1.0.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{7,8} ) - -DOCS_BUILDER="mkdocs" -DOCS_DEPEND=" - dev-python/mkdocs-minify-plugin - dev-python/mkdocs-redirects -" - -inherit distutils-r1 docs - -DESCRIPTION="A Material Design theme for MkDocs" -HOMEPAGE=" - https://github.com/squidfunk/mkdocs-material - https://pypi.org/project/mkdocs-material -" -SRC_URI="https://github.com/squidfunk/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -RDEPEND=" - >=dev-python/markdown-3.2[${PYTHON_USEDEP}] - >=dev-python/mkdocs-1.1[${PYTHON_USEDEP}] - >=dev-python/pygments-2.4[${PYTHON_USEDEP}] - >=dev-python/pymdown-extensions-7.0[${PYTHON_USEDEP}] - >=dev-python/mkdocs-material-extensions-1.0[${PYTHON_USEDEP}] -" diff --git a/dev-python/mkdocs-material/mkdocs-material-7.1.7.ebuild b/dev-python/mkdocs-material/mkdocs-material-7.1.9.ebuild similarity index 100% rename from dev-python/mkdocs-material/mkdocs-material-7.1.7.ebuild rename to dev-python/mkdocs-material/mkdocs-material-7.1.9.ebuild diff --git a/dev-python/mkdocs-minify-plugin/Manifest b/dev-python/mkdocs-minify-plugin/Manifest index 58a79a5d62af..b255b8f94587 100644 --- a/dev-python/mkdocs-minify-plugin/Manifest +++ b/dev-python/mkdocs-minify-plugin/Manifest @@ -1,2 +1 @@ -DIST mkdocs-minify-plugin-0.3.0.tar.gz 3101 BLAKE2B 6b3451734d2d87f967c46521350f53cfd3cacdb555777328056ca61ed80e2341da86041be32fe87a0174241e3f36f0f0d7ca43538d0a8ca7a45cc06b6b4254e3 SHA512 97d8cb1ca3b0abfa362b9f71c7f881c889eb08963519ff0a356778b446c62140edb70ec344cbf54df7990e94ef515202b567799d0426e518a1abd6c3886a4281 DIST mkdocs-minify-plugin-0.4.0.tar.gz 3097 BLAKE2B b1bba66539cc3470e922ff2bd1c6ae21de401ea343e2bd313bc93ec692e15794476681d48c9dceb9edd09f3c6274dd9174d5861137312ce9b9836e02f34a52e4 SHA512 6a42f649a2a867b2c796de3c602f19375705859fc9b3592fc1d8c102b42a96d7bb7150a4f75b281843ece40bd19ca5bb82654c658e1fe6d1b94f34c8279b2602 diff --git a/dev-python/mkdocs-minify-plugin/mkdocs-minify-plugin-0.3.0.ebuild b/dev-python/mkdocs-minify-plugin/mkdocs-minify-plugin-0.3.0.ebuild deleted file mode 100644 index 5f83e7011163..000000000000 --- a/dev-python/mkdocs-minify-plugin/mkdocs-minify-plugin-0.3.0.ebuild +++ /dev/null @@ -1,25 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{7,8} ) - -inherit distutils-r1 - -DESCRIPTION="An MkDocs plugin to minify HTML and/or JS files prior to being written to disk" -HOMEPAGE=" - https://github.com/byrnereese/mkdocs-minify-plugin - https://pypi.org/project/mkdocs-minify-plugin/ -" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -RDEPEND=" - >=dev-python/mkdocs-1.0.4[${PYTHON_USEDEP}] - >=app-text/htmlmin-0.1.4[${PYTHON_USEDEP}] - >=dev-python/jsmin-2.2.2[${PYTHON_USEDEP}] -" diff --git a/dev-python/phonenumbers/Manifest b/dev-python/phonenumbers/Manifest index 77f62d822348..9232fd16b175 100644 --- a/dev-python/phonenumbers/Manifest +++ b/dev-python/phonenumbers/Manifest @@ -1,3 +1,4 @@ DIST phonenumbers-8.12.24.tar.gz 2257982 BLAKE2B b7fa2a29c1c9a4a1029013d7de3eed9998c764a12b41a9db2db8d4c9c2fcef1bff00167809f9cdffd484ba1c9d22ef244d45e7c21bb61899a37fc4d3cbb0b6d5 SHA512 1145c527e349436ecc8eaae5bf2dc2e10d25eab73d2ab3b566d7aaddc2cfcd9ae1ada4e3b9876f133f42f7ce023c74a91e48619df69d817f74964e429ebc20a8 DIST phonenumbers-8.12.25.tar.gz 2257994 BLAKE2B 4bcd5e21819c1f42281fc684c97d41824a0dca1fc296b1968094e3a88ff235823d76cdd3b31da68bec677aea15021689ea40906b2c50363b999958029a05fcdf SHA512 24e6f1fb903d07214eed80eefd8f67e73dd4d66f0bb66308867453d05ea1b6272a8338e11bdb45395a37eb2ce8d6c3b80d90491763f843b3da4c131b43f5db73 DIST phonenumbers-8.12.26.tar.gz 2257950 BLAKE2B 67d146b4c82691d2d4c481dd52ae23c8ec075af0b20e64947bc203aad538e5f45f63b0827458b8504679a8f5b84782793c3c11636b344c8cb4d21b418a7444b3 SHA512 12d5daaa9f82b0646bf22ece9d617971b21bfa5ac3a9731a2917bc33e6f790a7ff1423f49da14895a8de3004babf3a83b490397b0b7551c144f4f14776d1ab62 +DIST phonenumbers-8.12.27.tar.gz 2258133 BLAKE2B 73a295a464a0e4e7d32f3633a0a149504aed376a255453d3edb49137e979144645780777d988b1fbf5d7380b468ba9dd905f34e42f658f6ff8d0e0047d45ee35 SHA512 d177606bed9ca6f4e7f91ab695d9ae6ddfb2401f36c458907b2b6fe14e85a2ed188967da14971c15ec745b87fe794fc8ecca86679f01d3c8fb649224c2f75139 diff --git a/dev-python/phonenumbers/phonenumbers-8.12.27.ebuild b/dev-python/phonenumbers/phonenumbers-8.12.27.ebuild new file mode 100644 index 000000000000..4df0c54c7011 --- /dev/null +++ b/dev-python/phonenumbers/phonenumbers-8.12.27.ebuild @@ -0,0 +1,19 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} ) +inherit distutils-r1 + +DESCRIPTION="Python port of Google's libphonenumber" +HOMEPAGE="https://github.com/daviddrysdale/python-phonenumbers" +SRC_URI="mirror://pypi/p/${PN}/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DOCS=(README.md) + +distutils_enable_tests setup.py diff --git a/dev-python/pikepdf/Manifest b/dev-python/pikepdf/Manifest index 395ca08611a0..762b579d83b4 100644 --- a/dev-python/pikepdf/Manifest +++ b/dev-python/pikepdf/Manifest @@ -1,3 +1,4 @@ DIST pikepdf-2.12.2.tar.gz 2301822 BLAKE2B e600ab0809c44ba3749440ae6820761e28cc2d509ebb8824a5b2fde709db341366ee2b8f8160e65d876c2fff0aa7da54eddb1fe2b9fd524b0c25adf79779e21c SHA512 6bde2a538cdaf55460083c54a6d55ddab3ec4ba127dfc77d3f79da8492ff50ffb76281312395973f8448c360ae53b0c9a0d090258f43bfdfdf420336c99fb423 DIST pikepdf-2.13.0.tar.gz 2302937 BLAKE2B 1a46cdf25badcc1d00dde22fba7dea837dde902295ccb3215d1441c5838acb2744aedb1696fb1fc57d55752bee66387bdd968695a6b3dfad5614c352d57366ae SHA512 a57188f420f93fbb00aa4df9857df0c64aade057639b1e1c126cca2da8b57d7be34117eae34038b5e873a8d65c5332f3f3f2f1812e7e748647ee657b8eebf78a DIST pikepdf-2.14.0.tar.gz 2309588 BLAKE2B ca0af8ada258742571afa1133ba5ea282ac7a44dd34b5ebc24091dcd36629ac97b1c7b0e7e65cf86f0933a13423b9b5011d53ec75cd7b0bd614917443e72b793 SHA512 3b6c61f14581934aca2293b1d42be1303234209bd5fdd24216db57df765470591d5252b912de9b797f885cbd52ad610666d86ddfd1c279b97b1058cea36eb378 +DIST pikepdf-2.14.2.tar.gz 2310009 BLAKE2B 1afddc090e8e92c57843fc25cd7a6c8ef75e4f9c46144b10e91a96747b0a800a38715ace4d9eb5a65944b4495531417e8a34d7c34e1136f04df6c2c359ac2771 SHA512 cad165078bb634d6e5202ff71ab8d11f89a47974a3dd33c237b804f2784582b739bebfc6ed99664c98cf274c16dadb718a81d95710827be711e7d7d4c9ce5f77 diff --git a/dev-python/pikepdf/pikepdf-2.14.2.ebuild b/dev-python/pikepdf/pikepdf-2.14.2.ebuild new file mode 100644 index 000000000000..2e4514c389e8 --- /dev/null +++ b/dev-python/pikepdf/pikepdf-2.14.2.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} ) +inherit distutils-r1 + +MY_P=${P/_p/.post} +DESCRIPTION="Python library to work with pdf files based on qpdf" +HOMEPAGE="https://pypi.org/project/pikepdf/ https://github.com/pikepdf/pikepdf" +SRC_URI=" + https://github.com/${PN}/${PN}/archive/v${PV/_p/.post}.tar.gz + -> ${MY_P}.tar.gz" +S=${WORKDIR}/${MY_P} + +LICENSE="MPL-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND="app-text/qpdf:0=" +RDEPEND="${DEPEND} + dev-python/pillow[${PYTHON_USEDEP}] + dev-python/lxml[${PYTHON_USEDEP}] + dev-python/pybind11[${PYTHON_USEDEP}]" +BDEPEND=" + >=dev-python/pybind11-2.6.0[${PYTHON_USEDEP}] + >=dev-python/setuptools_scm-4.1[${PYTHON_USEDEP}] + dev-python/toml[${PYTHON_USEDEP}] + dev-python/setuptools_scm_git_archive[${PYTHON_USEDEP}] + test? ( + >=dev-python/attrs-20.2.0[${PYTHON_USEDEP}] + >=dev-python/hypothesis-5[${PYTHON_USEDEP}] + >=dev-python/pillow-5.0.0[${PYTHON_USEDEP},jpeg,lcms,tiff] + >=dev-python/psutil-5[${PYTHON_USEDEP}] + >=dev-python/pytest-6[${PYTHON_USEDEP}] + >=dev-python/pytest-timeout-1.4.2[${PYTHON_USEDEP}] + >=dev-python/python-dateutil-2.8.0[${PYTHON_USEDEP}] + >=dev-python/python-xmp-toolkit-2.0.1[${PYTHON_USEDEP}] + )" + +#distutils_enable_sphinx docs \ +# dev-python/ipython \ +# dev-python/matplotlib \ +# dev-python/sphinx_rtd_theme +distutils_enable_tests pytest + +src_prepare() { + sed -i -e '/wheel/d' setup.py || die + sed -i -e '/-n auto/d' setup.cfg || die + distutils-r1_src_prepare +} diff --git a/dev-python/pweave/pweave-0.30.3-r1.ebuild b/dev-python/pweave/pweave-0.30.3-r1.ebuild index 03a16a520ecf..fa40ea257494 100644 --- a/dev-python/pweave/pweave-0.30.3-r1.ebuild +++ b/dev-python/pweave/pweave-0.30.3-r1.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -PYTHON_COMPAT=( python3_{7..9} ) +PYTHON_COMPAT=( python3_{7..10} ) DISTUTILS_USE_SETUPTOOLS=rdepend @@ -16,6 +16,7 @@ DESCRIPTION="Scientific report generator and literate programming tool" HOMEPAGE="http://mpastell.com/pweave/ https://github.com/mpastell/Pweave" SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${MY_P}" IUSE="examples" @@ -27,22 +28,23 @@ PATCHES=( "${FILESDIR}/${P}-docs.patch" "${FILESDIR}/${P}-rm-online-tests.patch" ) -RDEPEND="dev-python/ipython[${PYTHON_USEDEP}] +RDEPEND=" + dev-python/ipython[${PYTHON_USEDEP}] dev-python/ipykernel[${PYTHON_USEDEP}] dev-python/jupyter_client[${PYTHON_USEDEP}] dev-python/markdown[${PYTHON_USEDEP}] dev-python/nbconvert[${PYTHON_USEDEP}] dev-python/nbformat[${PYTHON_USEDEP}] - dev-python/pygments[${PYTHON_USEDEP}]" + dev-python/pygments[${PYTHON_USEDEP}] +" DEPEND="test? ( dev-python/coverage[${PYTHON_USEDEP}] dev-python/matplotlib[${PYTHON_USEDEP}] dev-python/nose[${PYTHON_USEDEP}] dev-python/notebook[${PYTHON_USEDEP}] - dev-python/scipy[${PYTHON_USEDEP}] )" - -S="${WORKDIR}/${MY_P}" + dev-python/scipy[${PYTHON_USEDEP}] +)" distutils_enable_sphinx doc/source dev-python/sphinx_rtd_theme distutils_enable_tests pytest diff --git a/dev-python/pyjsparser/pyjsparser-2.7.1_p20190421.ebuild b/dev-python/pyjsparser/pyjsparser-2.7.1_p20190421.ebuild index c5ba012c25e2..21099184d643 100644 --- a/dev-python/pyjsparser/pyjsparser-2.7.1_p20190421.ebuild +++ b/dev-python/pyjsparser/pyjsparser-2.7.1_p20190421.ebuild @@ -19,7 +19,7 @@ SRC_URI="https://github.com/PiotrDabkowski/${PN}/archive/${MY_COMMIT}.tar.gz -> RESTRICT="!test? ( test )" LICENSE="MIT" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" IUSE="test" BDEPEND=" diff --git a/dev-python/pyspelling/Manifest b/dev-python/pyspelling/Manifest index 403b1c618517..455a601fa854 100644 --- a/dev-python/pyspelling/Manifest +++ b/dev-python/pyspelling/Manifest @@ -1,2 +1 @@ -DIST pyspelling-2.7.1.tar.gz 149449 BLAKE2B a5faefac163850d327d64b75776b5f360ad1e1337cb3784c8d0a167e1240e92a202f4ecbe86d768341a7512b36c83981b5fbf4058a2142a5b627f40c0e60c09f SHA512 be0cc9be343e2d5d2c16b2dc9cb6f83fd5f60eba81c709711fef37b880363db8b76e86ec048b57ab270be59803b101696709bd474d4f0267c99f55c906ec7857 DIST pyspelling-2.7.2.tar.gz 150911 BLAKE2B 813eca2c4bdf377fd7babec376dd2991713db59c66b509c656cb24a314776c2cc360ec9ff884baec6607f27cae3169672746580d3c58abad35dbfe9f605fc51e SHA512 2937c1985ec6f27713275d9f31d3529e35f219df211be0ac9f1ae89d5c92a1e52c51b982291be7bd25375eb6404f52ac0ad893afbe73aada1fb03923dc09f721 diff --git a/dev-python/pyspelling/pyspelling-2.7.1.ebuild b/dev-python/pyspelling/pyspelling-2.7.1.ebuild deleted file mode 100644 index fd08ac4dbfe5..000000000000 --- a/dev-python/pyspelling/pyspelling-2.7.1.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{7,8} ) - -DISTUTILS_USE_SETUPTOOLS=rdepend - -DOCS_BUILDER="mkdocs" -DOCS_DEPEND=" - ~dev-python/mkdocs_pymdownx_material_extras-1.1.3 - dev-python/mkdocs-git-revision-date-localized-plugin - dev-python/mkdocs-minify-plugin -" - -inherit distutils-r1 docs - -DESCRIPTION="Spell checker automation tool" -HOMEPAGE="https://github.com/facelessuser/pyspelling" -SRC_URI="https://github.com/facelessuser/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -RDEPEND=" - || ( app-text/aspell app-text/hunspell ) - - dev-python/beautifulsoup:4[${PYTHON_USEDEP}] - dev-python/html5lib[${PYTHON_USEDEP}] - dev-python/lxml[${PYTHON_USEDEP}] - dev-python/markdown[${PYTHON_USEDEP}] - dev-python/pyyaml[${PYTHON_USEDEP}] - >=dev-python/soupsieve-1.8[${PYTHON_USEDEP}] - >=dev-python/wcmatch-6.0.3[${PYTHON_USEDEP}] -" - -BDEPEND="test? ( dev-vcs/git )" - -distutils_enable_tests pytest - -python_prepare_all() { - # mkdocs-git-revision-date-localized-plugin needs git repo - if use doc; then - git init || die - git config --global user.email "you@example.com" || die - git config --global user.name "Your Name" || die - git add . || die - git commit -m 'init' || die - fi - - distutils-r1_python_prepare_all -} diff --git a/dev-python/pytest-lazy-fixture/metadata.xml b/dev-python/pytest-lazy-fixture/metadata.xml index 690f07df3712..62b4c71cc853 100644 --- a/dev-python/pytest-lazy-fixture/metadata.xml +++ b/dev-python/pytest-lazy-fixture/metadata.xml @@ -5,6 +5,10 @@ andrewammerlaan@gentoo.org Andrew Ammerlaan + + python@gentoo.org + Python + pytest-lazy-fixture diff --git a/dev-python/pytest-lazy-fixture/pytest-lazy-fixture-0.6.3.ebuild b/dev-python/pytest-lazy-fixture/pytest-lazy-fixture-0.6.3.ebuild index 59dabe89455d..5b7c8f820706 100644 --- a/dev-python/pytest-lazy-fixture/pytest-lazy-fixture-0.6.3.ebuild +++ b/dev-python/pytest-lazy-fixture/pytest-lazy-fixture-0.6.3.ebuild @@ -1,10 +1,9 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 - -PYTHON_COMPAT=( python3_{7,8,9} ) +EAPI=8 +PYTHON_COMPAT=( python3_{8..10} ) inherit distutils-r1 DESCRIPTION="It helps to use fixtures in pytest.mark.parametrize" @@ -15,9 +14,6 @@ LICENSE="MIT" SLOT="0" KEYWORDS="amd64 x86" -RDEPEND=" - dev-python/flake8[${PYTHON_USEDEP}] - dev-python/tox[${PYTHON_USEDEP}] -" +RDEPEND="dev-python/pytest[${PYTHON_USEDEP}]" distutils_enable_tests pytest diff --git a/dev-python/pytest-ordering/pytest-ordering-0.6.ebuild b/dev-python/pytest-ordering/pytest-ordering-0.6.ebuild index 553f01d42fb2..ee8c2870bb6c 100644 --- a/dev-python/pytest-ordering/pytest-ordering-0.6.ebuild +++ b/dev-python/pytest-ordering/pytest-ordering-0.6.ebuild @@ -16,7 +16,7 @@ SRC_URI="https://github.com/ftobia/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="amd64 ~arm ~sparc x86" +KEYWORDS="amd64 ~arm ~ppc ~ppc64 ~sparc x86" RDEPEND=" ${P}.tar.gz" LICENSE="MIT" -KEYWORDS="~amd64 ~arm ~sparc" +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~sparc" SLOT="0" RDEPEND=">=dev-python/attrs-17.1[${PYTHON_USEDEP}]" diff --git a/dev-python/timeout-decorator/timeout-decorator-0.5.0.ebuild b/dev-python/timeout-decorator/timeout-decorator-0.5.0.ebuild index 3d7f90dd9adc..073cfc250006 100644 --- a/dev-python/timeout-decorator/timeout-decorator-0.5.0.ebuild +++ b/dev-python/timeout-decorator/timeout-decorator-0.5.0.ebuild @@ -20,6 +20,6 @@ S=${WORKDIR}/${MY_P} LICENSE="MIT" SLOT="0" -KEYWORDS="amd64 ~arm ~sparc x86" +KEYWORDS="amd64 ~arm ~ppc ~ppc64 ~sparc x86" distutils_enable_tests pytest diff --git a/dev-python/tzlocal/tzlocal-2.1.ebuild b/dev-python/tzlocal/tzlocal-2.1.ebuild index 417e905d44f3..9db3302f1bcd 100644 --- a/dev-python/tzlocal/tzlocal-2.1.ebuild +++ b/dev-python/tzlocal/tzlocal-2.1.ebuild @@ -13,7 +13,7 @@ SRC_URI="https://github.com/regebro/tzlocal/archive/${PV}.tar.gz -> ${P}.gh.tar. LICENSE="MIT" SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 x86" +KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86" IUSE="" RDEPEND="dev-python/pytz[${PYTHON_USEDEP}]" diff --git a/dev-python/uvloop/uvloop-0.15.2.ebuild b/dev-python/uvloop/uvloop-0.15.2.ebuild index 30c71f86b778..f78559def7c8 100644 --- a/dev-python/uvloop/uvloop-0.15.2.ebuild +++ b/dev-python/uvloop/uvloop-0.15.2.ebuild @@ -10,7 +10,7 @@ DESCRIPTION="Ultra-fast implementation of asyncio event loop on top of libuv" HOMEPAGE="https://github.com/magicstack/uvloop" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" -KEYWORDS="amd64 ~arm x86" +KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86" LICENSE="MIT" SLOT="0" IUSE="doc examples" diff --git a/dev-ruby/Manifest.gz b/dev-ruby/Manifest.gz index 8ca664908041..41c957413a99 100644 Binary files a/dev-ruby/Manifest.gz and b/dev-ruby/Manifest.gz differ diff --git a/dev-ruby/rspec-core/rspec-core-3.10.1.ebuild b/dev-ruby/rspec-core/rspec-core-3.10.1.ebuild index deb0b8bb5638..e6273670e72b 100644 --- a/dev-ruby/rspec-core/rspec-core-3.10.1.ebuild +++ b/dev-ruby/rspec-core/rspec-core-3.10.1.ebuild @@ -21,7 +21,7 @@ SRC_URI="https://github.com/rspec/${PN}/archive/v${PV}.tar.gz -> ${P}-git.tgz" LICENSE="MIT" SLOT="3" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="highlight" SUBVERSION="$(ver_cut 1-2)" diff --git a/dev-ruby/rspec-expectations/rspec-expectations-3.10.1.ebuild b/dev-ruby/rspec-expectations/rspec-expectations-3.10.1.ebuild index 64f3462c3e21..537e21832e7e 100644 --- a/dev-ruby/rspec-expectations/rspec-expectations-3.10.1.ebuild +++ b/dev-ruby/rspec-expectations/rspec-expectations-3.10.1.ebuild @@ -19,7 +19,7 @@ SRC_URI="https://github.com/rspec/${PN}/archive/v${PV}.tar.gz -> ${P}-git.tgz" LICENSE="MIT" SLOT="3" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ppc64 ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="" SUBVERSION="$(ver_cut 1-2)" diff --git a/dev-ruby/rspec-mocks/rspec-mocks-3.10.2.ebuild b/dev-ruby/rspec-mocks/rspec-mocks-3.10.2.ebuild index 3cfa54405c8d..9d832837db1d 100644 --- a/dev-ruby/rspec-mocks/rspec-mocks-3.10.2.ebuild +++ b/dev-ruby/rspec-mocks/rspec-mocks-3.10.2.ebuild @@ -19,7 +19,7 @@ SRC_URI="https://github.com/rspec/${PN}/archive/v${PV}.tar.gz -> ${P}-git.tgz" LICENSE="MIT" SLOT="3" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ppc64 ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="" SUBVERSION="$(ver_cut 1-2)" diff --git a/dev-ruby/rspec-support/rspec-support-3.10.2.ebuild b/dev-ruby/rspec-support/rspec-support-3.10.2.ebuild index a71efad63e67..c41890895656 100644 --- a/dev-ruby/rspec-support/rspec-support-3.10.2.ebuild +++ b/dev-ruby/rspec-support/rspec-support-3.10.2.ebuild @@ -18,7 +18,7 @@ SRC_URI="https://github.com/rspec/${PN}/archive/v${PV}.tar.gz -> ${P}-git.tgz" LICENSE="MIT" SLOT="3" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ppc64 ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="" ruby_add_bdepend "test? ( >=dev-ruby/rspec-3.9.0:3 >=dev-ruby/thread_order-1.1.0 )" diff --git a/dev-ruby/rspec/rspec-3.10.0.ebuild b/dev-ruby/rspec/rspec-3.10.0.ebuild index 76a4fb5eb6a7..39189d6443ba 100644 --- a/dev-ruby/rspec/rspec-3.10.0.ebuild +++ b/dev-ruby/rspec/rspec-3.10.0.ebuild @@ -15,7 +15,7 @@ HOMEPAGE="https://github.com/rspec/rspec" LICENSE="MIT" SLOT="3" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~s390 ~sparc ~x86" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ppc64 ~s390 ~sparc ~x86" IUSE="" SUBVERSION="$(ver_cut 1-2)" diff --git a/dev-util/Manifest.gz b/dev-util/Manifest.gz index ba3fa5ee2ac1..40a6883092ad 100644 Binary files a/dev-util/Manifest.gz and b/dev-util/Manifest.gz differ diff --git a/dev-util/cucumber/cucumber-3.2.0.ebuild b/dev-util/cucumber/cucumber-3.2.0.ebuild index 9d954cbbcbbb..74102d4c3a77 100644 --- a/dev-util/cucumber/cucumber-3.2.0.ebuild +++ b/dev-util/cucumber/cucumber-3.2.0.ebuild @@ -19,7 +19,7 @@ SRC_URI="https://github.com/cucumber/cucumber-ruby/archive/v${PV}.tar.gz -> ${P} RUBY_S="cucumber-ruby-${PV}" LICENSE="Ruby" -KEYWORDS="amd64 arm ~arm64 ~hppa ~ppc ~ppc64 ~s390 sparc x86" +KEYWORDS="amd64 arm arm64 ~hppa ~ppc ~ppc64 ~s390 sparc x86" SLOT="0" IUSE="examples test" diff --git a/eclass/Manifest.gz b/eclass/Manifest.gz index 450d654dfcc6..47157a14846c 100644 Binary files a/eclass/Manifest.gz and b/eclass/Manifest.gz differ diff --git a/eclass/kernel-install.eclass b/eclass/kernel-install.eclass index 4914a7562813..e6b9cbe45c0e 100644 --- a/eclass/kernel-install.eclass +++ b/eclass/kernel-install.eclass @@ -184,13 +184,26 @@ kernel-install_create_init() { cat <<-_EOF_ >"${T}/init.c" || die #include + #include + int main() { + struct utsname u; + int ret = uname(&u); + if (ret != 0) { + printf("uname() failed, but that's fine\n"); + } + else { + // Booted: Linux 5.10.47 ppc64le #1 SMP Fri Jul 2 12:55:24 PDT 2021 + printf("Booted: %s %s %s %s\n", u.sysname, u.release, + u.machine, u.version); + } + printf("Hello, World!\n"); return 0; } _EOF_ - $(tc-getBUILD_CC) -Os -static "${T}/init.c" -o "${output}" || die + $(tc-getBUILD_CC) -Os -static "${T}/init.c" -o "${output}" || die $(tc-getBUILD_STRIP) "${output}" || die } diff --git a/games-puzzle/Manifest.gz b/games-puzzle/Manifest.gz index 1250eb78633f..2c5e52836078 100644 Binary files a/games-puzzle/Manifest.gz and b/games-puzzle/Manifest.gz differ diff --git a/games-puzzle/construo/construo-0.2.3.ebuild b/games-puzzle/construo/construo-0.2.3.ebuild index 9e99b41dbdcb..89c4de46b053 100644 --- a/games-puzzle/construo/construo-0.2.3.ebuild +++ b/games-puzzle/construo/construo-0.2.3.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 -inherit autotools desktop +inherit autotools desktop toolchain-funcs DESCRIPTION="2d construction toy with objects that react on physical forces" HOMEPAGE="http://www.nongnu.org/construo/" @@ -31,6 +31,10 @@ src_prepare() { eautoreconf } +src_compile() { + emake AR=$(tc-getAR) +} + src_install() { default make_desktop_entry "${PN}.glut" "${PN}.glut" diff --git a/games-sports/Manifest.gz b/games-sports/Manifest.gz index 3bd41c139ad1..0a7e87918024 100644 Binary files a/games-sports/Manifest.gz and b/games-sports/Manifest.gz differ diff --git a/games-sports/stormbaancoureur/files/stormbaancoureur-2.1.6-clang.patch b/games-sports/stormbaancoureur/files/stormbaancoureur-2.1.6-clang.patch new file mode 100644 index 000000000000..7ef2a8e69203 --- /dev/null +++ b/games-sports/stormbaancoureur/files/stormbaancoureur-2.1.6-clang.patch @@ -0,0 +1,47 @@ +Fix build with clang +Bug: https://bugs.gentoo.org/739386 + +--- a/carpettrack.h ++++ b/carpettrack.h +@@ -15,7 +15,7 @@ class CarpetTrack + trackspace = dSimpleSpaceCreate(staticspace); + track = new StaticWorldObject(trackmodel, trackspace, initialpos); + sgVec3 sz = { 2.0, 1.2, 0.08 }; +- sgVec3 cpos = { initialpos[0]+5, initialpos[1], initialpos[2]+0.6 }; ++ sgVec3 cpos = { initialpos[0]+5, initialpos[1], initialpos[2]+0.6f }; + carpet = new DynamicBoxObject(carpetmodel, world, trackspace, cpos, sz); + carpet->name = "carpet"; + carpet->SetMass(1.0); +--- a/doorstand.h ++++ b/doorstand.h +@@ -63,7 +63,7 @@ class DoorStand : public WorldObject + + // Do the door + dReal sz[3] = { 0.1, 1.4, 1.6 }; +- dReal ps[3] = { initialpos[0], initialpos[1], initialpos[2]+0.85 }; ++ dReal ps[3] = { initialpos[0], initialpos[1], initialpos[2]+0.85f }; + door_body = dBodyCreate(world); + dBodySetAutoDisableFlag(door_body, false); + dBodySetPosition(door_body, ps[0], ps[1], ps[2]); +--- a/spikejump.h ++++ b/spikejump.h +@@ -17,7 +17,7 @@ class SpikeJump + spikespace = dSimpleSpaceCreate(staticspace); + spikegate = new StaticWorldObject(spikemodel, spikespace, initialpos); + sgVec3 sz = { 2.0, 1.2, 0.08 }; +- sgVec3 cpos = { initialpos[0], initialpos[1], initialpos[2]+0.6 }; ++ sgVec3 cpos = { initialpos[0], initialpos[1], initialpos[2]+0.6f }; + jumpboard = new DynamicBoxObject(boardmodel, world, spikespace, cpos, sz); + jumpboard->name = "jumpboard"; + jumpboard->SetMass(1.0); +--- a/ferriswheel.h ++++ b/ferriswheel.h +@@ -20,7 +20,7 @@ class FerrisWheelCart : public DynamicObject + dBodySetPosition (body,initialpos[0],initialpos[1],initialpos[2]-1.45); + + dReal sizes[2][3] = {{ 2.0, 2.9, 0.1 }, {0.2, 0.3, 1.5}}; +- dReal xlats[2][4] = {{initialpos[0], initialpos[1], initialpos[2]-1.45}, {0,0,0.70}}; ++ dReal xlats[2][4] = {{initialpos[0], initialpos[1], initialpos[2]-1.45f}, {0,0,0.70}}; + + dMass m; + dMassSetZero(&m); diff --git a/games-sports/stormbaancoureur/stormbaancoureur-2.1.6-r1.ebuild b/games-sports/stormbaancoureur/stormbaancoureur-2.1.6-r2.ebuild similarity index 77% rename from games-sports/stormbaancoureur/stormbaancoureur-2.1.6-r1.ebuild rename to games-sports/stormbaancoureur/stormbaancoureur-2.1.6-r2.ebuild index 9fe138c0c52f..a1239ecaa187 100644 --- a/games-sports/stormbaancoureur/stormbaancoureur-2.1.6-r1.ebuild +++ b/games-sports/stormbaancoureur/stormbaancoureur-2.1.6-r2.ebuild @@ -1,21 +1,21 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=8 -inherit desktop +inherit desktop toolchain-funcs DESCRIPTION="Simulated obstacle course for automobiles" HOMEPAGE="http://www.stolk.org/stormbaancoureur/" SRC_URI="http://www.stolk.org/stormbaancoureur/download/${P}.tar.gz" +S="${WORKDIR}/${P}/src-stormbaancoureur" LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="" DEPEND=" - >=dev-games/ode-0.8 + >=dev-games/ode-0.8[-double-precision] media-libs/alsa-lib media-libs/freeglut >=media-libs/plib-1.8.4 @@ -23,10 +23,9 @@ DEPEND=" virtual/opengl" RDEPEND="${DEPEND}" -S=${WORKDIR}/${P}/src-${PN} - PATCHES=( "${FILESDIR}"/${P}-gentoo.patch + "${FILESDIR}"/${P}-clang.patch ) src_prepare() { @@ -35,6 +34,11 @@ src_prepare() { sed -ie "s:GENTOODIR:/usr/share/${PN}:" main.cxx || die } +src_compile() { + tc-export CXX + emake LIBDIRNAME=$(get_libdir) +} + src_install() { dobin ${PN} insinto /usr/share/${PN} diff --git a/gui-apps/Manifest.gz b/gui-apps/Manifest.gz index 34d871560267..4f56c3d9c733 100644 Binary files a/gui-apps/Manifest.gz and b/gui-apps/Manifest.gz differ diff --git a/gui-apps/waybar/waybar-0.9.7.ebuild b/gui-apps/waybar/waybar-0.9.5-r1.ebuild similarity index 98% rename from gui-apps/waybar/waybar-0.9.7.ebuild rename to gui-apps/waybar/waybar-0.9.5-r1.ebuild index 0094f250d489..3247d86629bc 100644 --- a/gui-apps/waybar/waybar-0.9.7.ebuild +++ b/gui-apps/waybar/waybar-0.9.5-r1.ebuild @@ -35,7 +35,7 @@ DEPEND=" dev-libs/date:= dev-libs/wayland dev-libs/wayland-protocols - gui-libs/wlroots + gui-libs/wlroots:= x11-libs/gtk+:3[wayland] mpd? ( media-libs/libmpdclient ) network? ( dev-libs/libnl:3 ) diff --git a/gui-apps/waybar/waybar-0.9.5.ebuild b/gui-apps/waybar/waybar-0.9.7-r1.ebuild similarity index 98% rename from gui-apps/waybar/waybar-0.9.5.ebuild rename to gui-apps/waybar/waybar-0.9.7-r1.ebuild index 0094f250d489..3247d86629bc 100644 --- a/gui-apps/waybar/waybar-0.9.5.ebuild +++ b/gui-apps/waybar/waybar-0.9.7-r1.ebuild @@ -35,7 +35,7 @@ DEPEND=" dev-libs/date:= dev-libs/wayland dev-libs/wayland-protocols - gui-libs/wlroots + gui-libs/wlroots:= x11-libs/gtk+:3[wayland] mpd? ( media-libs/libmpdclient ) network? ( dev-libs/libnl:3 ) diff --git a/gui-apps/waybar/waybar-9999.ebuild b/gui-apps/waybar/waybar-9999.ebuild index 664cb2388f3c..d7a4fe437b99 100644 --- a/gui-apps/waybar/waybar-9999.ebuild +++ b/gui-apps/waybar/waybar-9999.ebuild @@ -34,7 +34,7 @@ DEPEND=" dev-libs/date:= dev-libs/wayland dev-libs/wayland-protocols - gui-libs/wlroots + gui-libs/wlroots:= x11-libs/gtk+:3[wayland] mpd? ( media-libs/libmpdclient ) network? ( dev-libs/libnl:3 ) diff --git a/mail-filter/Manifest.gz b/mail-filter/Manifest.gz index 961c726956de..fd16f0126d6c 100644 Binary files a/mail-filter/Manifest.gz and b/mail-filter/Manifest.gz differ diff --git a/mail-filter/bogofilter/Manifest b/mail-filter/bogofilter/Manifest index 30f3319892ae..0c769c323e61 100644 --- a/mail-filter/bogofilter/Manifest +++ b/mail-filter/bogofilter/Manifest @@ -1 +1,2 @@ DIST bogofilter-1.2.4.tar.bz2 887848 BLAKE2B 4ed5c15a44f5a166e3858581ccc59b36ebde2fe1eb402cc0471378600b555b2452f4eae04d7d37dcb7638568db0c196da2d2504a3a569d7571c4aacd7e0ceea7 SHA512 e8c0b6bcc14f12fbbb2752e697a6d9065e17abfca3f70045ce9fe668d01c1cfad4adaa35c81546ecdd3639b0c28f3f4776bb5ed4699f21e9e2a5b19ca33479db +DIST bogofilter-1.2.5.tar.xz 801240 BLAKE2B 90fc5f0ab258ada722ca2fb79d17279b621eb089f646eade2ab41b78c44deea7f3fd8f219053e09ce5b4c64f5fc81f43a17c20b84261b22d5529c06106e80b3c SHA512 3a7280485cfe5802dd3e9721c153f88ccf28bff7a6a24590e985e860d1f1e0ddea7bde8a8e5ad1ff643e94c9fd7b26b2a5ed5a9fb991cee3fd5b0ce67ce9abfe diff --git a/mail-filter/bogofilter/bogofilter-1.2.5.ebuild b/mail-filter/bogofilter/bogofilter-1.2.5.ebuild new file mode 100644 index 000000000000..6b621458523e --- /dev/null +++ b/mail-filter/bogofilter/bogofilter-1.2.5.ebuild @@ -0,0 +1,129 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools db-use flag-o-matic toolchain-funcs + +DESCRIPTION="Bayesian spam filter designed with fast algorithms, and tuned for speed" +HOMEPAGE="http://bogofilter.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz" + +LICENSE="GPL-3+ CC-BY-ND-3.0" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="berkdb sqlite tokyocabinet" + +# pax needed for bf_tar +DEPEND=" + app-arch/pax + sci-libs/gsl:= + virtual/libiconv + berkdb? ( >=sys-libs/db-3.2:* ) + !berkdb? ( + sqlite? ( >=dev-db/sqlite-3.6.22 ) + !sqlite? ( + tokyocabinet? ( dev-db/tokyocabinet ) + !tokyocabinet? ( >=sys-libs/db-3.2:* ) + ) + ) +" +RDEPEND="${DEPEND}" + +pkg_setup() { + has_version mail-filter/bogofilter || return 0 + if ( use berkdb && ! has_version 'mail-filter/bogofilter[berkdb]' ) || \ + ( ! use berkdb && has_version 'mail-filter/bogofilter[berkdb]' ) || \ + ( use sqlite && ! has_version 'mail-filter/bogofilter[sqlite]' ) || \ + ( ! use sqlite && has_version 'mail-filter/bogofilter[sqlite]' ) || \ + ( has_version '>=mail-filter/bogofilter-1.2.1-r1' && \ + ( use tokyocabinet && ! has_version 'mail-filter/bogofilter[tokyocabinet]' ) || \ + ( ! use tokyocabinet && has_version 'mail-filter/bogofilter[tokyocabinet]' ) + ) ; then + ewarn + ewarn "If you want to switch the database backend, you must dump the wordlist" + ewarn "with the current version (old use flags) and load it with the new version!" + ewarn + fi +} + +src_prepare() { + default + + # bug 445918 + sed -i -e 's/ -ggdb//' configure.ac || die + + # bug 421747 + chmod +x src/tests/t.{ctype,leakfind,lexer.qpcr,lexer.eoh,message_id,queue_id} || die + + # bug 654990 + sed -i -e 's/t.bulkmode//' \ + -e 's/t.dump.load//' \ + -e 's/t.nonascii.replace//' \ + src/tests/Makefile.am || die + + eautoreconf +} + +src_configure() { + local myconf="" berkdb=true + myconf="--without-included-gsl" + + # determine backend: berkdb *is* default + if use berkdb && use sqlite ; then + elog "Both useflags berkdb and sqlite are in USE:" + elog "Using berkdb as database backend." + elif use berkdb && use tokyocabinet ; then + elog "Both useflags berkdb and tokyocabinet are in USE:" + elog "Using berkdb as database backend." + elif use sqlite && use tokyocabinet ; then + elog "Both useflags sqlite and tokyocabinet are in USE:" + elog "Using sqlite as database backend." + myconf="${myconf} --with-database=sqlite" + berkdb=false + elif use sqlite ; then + myconf="${myconf} --with-database=sqlite" + berkdb=false + elif use tokyocabinet ; then + myconf="${myconf} --with-database=tokyocabinet" + berkdb=false + elif ! use berkdb ; then + elog "Neither berkdb nor sqlite nor tokyocabinet are in USE:" + elog "Using berkdb as database backend." + fi + + # Include the right berkdb headers for FreeBSD + if ${berkdb} ; then + append-cppflags "-I$(db_includedir)" + fi + + econf ${myconf} +} + +src_test() { + emake -C src/ check +} + +src_install() { + emake DESTDIR="${D}" install + + exeinto /usr/share/${PN}/contrib + doexe contrib/{bogofilter-qfe,parmtest,randomtrain}.sh \ + contrib/{bfproxy,bogominitrain,mime.get.rfc822,printmaildir}.pl \ + contrib/{spamitarium,stripsearch}.pl + + insinto /usr/share/${PN}/contrib + doins contrib/{README.*,dot-qmail-bogofilter-default} \ + contrib/{bogogrep.c,bogo.R,bogofilter-milter.pl,*.example} \ + contrib/vm-bogofilter.el \ + contrib/{trainbogo,scramble}.sh + + dodoc AUTHORS NEWS README RELEASE.NOTES* TODO GETTING.STARTED \ + doc/integrating-with-* doc/README.{db,sqlite} + + dodoc -r doc/*.html + + dodir /usr/share/doc/${PF}/samples + mv "${D}"/etc/bogofilter.cf.example "${D}"/usr/share/doc/${PF}/samples/ || die + rmdir "${D}"/etc || die +} diff --git a/mail-filter/bogofilter/metadata.xml b/mail-filter/bogofilter/metadata.xml index 65b8ce194286..3de4cce96436 100644 --- a/mail-filter/bogofilter/metadata.xml +++ b/mail-filter/bogofilter/metadata.xml @@ -1,7 +1,14 @@ - + + marco@scardovi.com + Marco Scardovi + + + proxy-maint@gentoo.org + Proxy Maintainers + Bogofilter is a mail filter that classifies mail as spam or ham (non-spam) by a statistical analysis of the message's header and content (body). The diff --git a/media-fonts/Manifest.gz b/media-fonts/Manifest.gz index 909e97190fd3..1fe94ca237f0 100644 Binary files a/media-fonts/Manifest.gz and b/media-fonts/Manifest.gz differ diff --git a/media-fonts/iosevka/Manifest b/media-fonts/iosevka/Manifest index c28edc30dff3..443fa915e029 100644 --- a/media-fonts/iosevka/Manifest +++ b/media-fonts/iosevka/Manifest @@ -1,3 +1,4 @@ DIST 01-iosevka-1.14.1.zip 9725331 BLAKE2B 58f0e51ba06d27eab18336effbe825c7c7bc88f24eb457be49746f8d3b1591f2cfafb8c2a7c9b56a7528edb207cbee6741dbe394b82331c6207a4dc6886cb388 SHA512 7e1dee79d78b1bc36ff2f55140a3538802dafc22677193e0657a6649ca55d5b1de868de86ba26d9458a3afe481298356dcf641afa72ecea2d69adb6382a5fd58 DIST 02-iosevka-term-1.14.1.zip 9672957 BLAKE2B b03751969722919b4c4172b066f372f334f45f38636cff8cba764a5c30d906ab000887c290b4583f418307c2efea7c3650f5557d535b1e7c26c2078ee29ebcb6 SHA512 6b17960b960365a81ba78a68b6ad04c6146f51855f0f6abc288c12d8dd50669fe245f94aa135b032df14d0ec7bc6b291aef1c8a86ccbf948b8e5678862febe34 DIST super-ttc-iosevka-6.1.3.zip 49284897 BLAKE2B e39a99b7969f3a8871328a61581ecbb01fba4bcd114075d11a9b0e0be958fef00c14ac18ffc4da46849f23ebbd54f9cf96969609d69e3f5eaeed94bc632b26f0 SHA512 54be6b4f5b1d3a56a9eb3fc9791cd91d53c5f02344f7dd1eccefc4e8036fc59b564af7673afe131598d949350c865f0d809052b3a34e14f2519f760aa36f3edb +DIST super-ttc-iosevka-7.0.4.zip 88522748 BLAKE2B b5cf921122a3b419df52c7188c5114b0f0337c58496759da2ec70cfb735ec1fab9cba4f0336b5bfbe6af4b58307e17ea08db120a58f13214d158cc65376990a3 SHA512 a1e0cfd0ad641b01f566423d23010a737720a88ec91c7cf5da74888f3776a0963fb1e40a8d94b9cbed3dd42dbf67d84fb979b092896e9cc2f477a73ee631843f diff --git a/media-fonts/iosevka/iosevka-7.0.4.ebuild b/media-fonts/iosevka/iosevka-7.0.4.ebuild new file mode 100644 index 000000000000..38b5f11e5036 --- /dev/null +++ b/media-fonts/iosevka/iosevka-7.0.4.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit font + +DESCRIPTION="Slender typeface for code, from code" +HOMEPAGE="https://be5invis.github.io/Iosevka/" +SRC_URI="https://github.com/be5invis/Iosevka/releases/download/v${PV}/super-ttc-${P}.zip" + +LICENSE="OFL-1.1" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" + +BDEPEND="app-arch/unzip" + +S="${WORKDIR}" +FONT_S="${S}" +FONT_SUFFIX="ttc" diff --git a/media-fonts/terminus-font/metadata.xml b/media-fonts/terminus-font/metadata.xml index 3fc02ceb26d4..ba130008fda5 100644 --- a/media-fonts/terminus-font/metadata.xml +++ b/media-fonts/terminus-font/metadata.xml @@ -25,7 +25,7 @@ Install Open Type Font (OTF) (required for HarfBuzz backend) - Install Portable Compiled Font (PCF) (required for X11) + Install Portable Compiled Font (PCF) (X11 bitmap fonts) Install PC Screen Font (PSF) with unicode data (for linux console) diff --git a/media-fonts/terminus-font/terminus-font-4.49.1.ebuild b/media-fonts/terminus-font/terminus-font-4.49.1.ebuild index 042c032ae2ea..7fbe98e86d71 100644 --- a/media-fonts/terminus-font/terminus-font-4.49.1.ebuild +++ b/media-fonts/terminus-font/terminus-font-4.49.1.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{7,8,9,10} ) +PYTHON_COMPAT=( python3_{8..10} ) inherit font python-any-r1 DESCRIPTION="A clean fixed font for the console and X11" @@ -16,7 +16,7 @@ KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sparc x86 ~a IUSE="a-like-o +center-tilde distinct-l +otf +pcf +pcf-unicode-only +psf quote ru-dv +ru-g ru-i ru-k" -DEPEND="app-arch/gzip +BDEPEND="app-arch/gzip ${PYTHON_DEPS} virtual/awk pcf? ( x11-apps/bdftopcf )" @@ -26,7 +26,7 @@ FONTDIR=/usr/share/fonts/terminus FONT_CONF=( 75-yes-terminus.conf ) DOCS=( README README-BG AUTHORS CHANGES ) -REQUIRED_USE="X? ( pcf )" +REQUIRED_USE="X? ( || ( otf pcf ) )" pkg_setup() { python_setup diff --git a/media-plugins/Manifest.gz b/media-plugins/Manifest.gz index 028be03d3a90..3d362ae82f9c 100644 Binary files a/media-plugins/Manifest.gz and b/media-plugins/Manifest.gz differ diff --git a/media-plugins/kodi-inputstream-ffmpegdirect/Manifest b/media-plugins/kodi-inputstream-ffmpegdirect/Manifest index c07ddcc38bde..c434ee6e1673 100644 --- a/media-plugins/kodi-inputstream-ffmpegdirect/Manifest +++ b/media-plugins/kodi-inputstream-ffmpegdirect/Manifest @@ -1,3 +1,4 @@ DIST kodi-inputstream-ffmpegdirect-1.21.3.tar.gz 251832 BLAKE2B cbaa585a3c03afece8fec690f6a7677c9c80ec08130f987633f6327eefba577167fddc89fbae33bc3d3965a41e5f30d3b691625059e620f36a85ebf7155d7011 SHA512 19c70665b518c9e1231cc0f955ede3669c2b6b2e136a2082a49f52a9aa0b4cc93621f467613309c0d9091f13505b451c13ec4722fcbde2c70bb847fb881da9df DIST kodi-inputstream-ffmpegdirect-1.21.4.tar.gz 273268 BLAKE2B 4e8ac6b790a0118cef8be4447ade2c41b828e3d3dac1ba6a5c72e9f3df5e8151f5e942325d471f96cc345394a622728bfc5b2b61563c394c0f13e2f2960787d5 SHA512 769ad0be12c68c78e82f050c046645050d302b02b158afa66e626b456c10cff2cb5d7df2be3a36dfb20cad0d40ac2de1b3cf1ae0a9dcf9a70691669d54304bb0 DIST kodi-inputstream-ffmpegdirect-1.21.5.tar.gz 274498 BLAKE2B fa4fe24515dd6066503b274e5b3d989483f03d9f375342862049d7829ee192ee496bdfaa8d1eb0c9e79cec36b33b3e9016e678299916dabc96bbf8a99316c62e SHA512 178b7859289453c88f9e6ee335fba79a70139b94e6dcee55e109e6c1201c39d85764409db1958dc2f9b09a471636f00a63287cd085ce573c241712c2f8efe2d1 +DIST kodi-inputstream-ffmpegdirect-1.21.6.tar.gz 274580 BLAKE2B 202743bab99de5ebd8fc049600b7e5e342a3e8ddff3b58d8fd4440fd460a9cb87713e0de584a57e21cbab86f5b31eb2d12d3ec622ace641d3bf2fa3f3d21ab8f SHA512 dbbde7fc542eab3e51de3ba0ec216adc2c4d91123360b745dc02e0ed689cc8159596c081a9213aec02a7d5b04760b48ec7299c33868b06250621207e997e64ba diff --git a/media-plugins/kodi-inputstream-ffmpegdirect/kodi-inputstream-ffmpegdirect-1.21.6.ebuild b/media-plugins/kodi-inputstream-ffmpegdirect/kodi-inputstream-ffmpegdirect-1.21.6.ebuild new file mode 100644 index 000000000000..4ea51e4a1095 --- /dev/null +++ b/media-plugins/kodi-inputstream-ffmpegdirect/kodi-inputstream-ffmpegdirect-1.21.6.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake kodi-addon + +DESCRIPTION="Kodi's FFMpeg Direct Inputstream addon" +HOMEPAGE="https://github.com/xbmc/inputstream.ffmpegdirect" +SRC_URI="" + +case ${PV} in +9999) + SRC_URI="" + EGIT_REPO_URI="https://github.com/xbmc/inputstream.ffmpegdirect.git" + EGIT_BRANCH="Matrix" + inherit git-r3 + ;; +*) + KEYWORDS="~amd64 ~arm64" + CODENAME="Matrix" + SRC_URI="https://github.com/xbmc/inputstream.ffmpegdirect/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" + S="${WORKDIR}/inputstream.ffmpegdirect-${PV}-${CODENAME}" + ;; +esac + +LICENSE="GPL-2" +SLOT="0" +IUSE="" + +BDEPEND=" + virtual/pkgconfig + " + +COMMON_DEPEND=" + media-video/ffmpeg[encode,libxml2,zlib] + virtual/libiconv + app-arch/bzip2 + =media-tv/kodi-19* + " + +DEPEND=" + ${COMMON_DEPEND} + " + +RDEPEND=" + ${COMMON_DEPEND} + " + +src_prepare() { + [ -d depends ] && rm -rf depends || die + cmake_src_prepare +} diff --git a/media-plugins/kodi-pvr-hts/Manifest b/media-plugins/kodi-pvr-hts/Manifest index b971aed9a188..e050b8ef7559 100644 --- a/media-plugins/kodi-pvr-hts/Manifest +++ b/media-plugins/kodi-pvr-hts/Manifest @@ -1,2 +1,3 @@ DIST kodi-pvr-hts-8.3.0.tar.gz 181974 BLAKE2B d86bea7a037ea0abf4a2e6e9b45fb7c69f03d4f29f7b97f9ed0367bee3d243e09fb1b3998c437e9103672de4bd8fa7422f5c89ac35e87c5ebccf730f3d2a3c71 SHA512 4c49e5351608da49317e4916e8f60d88df0f9f907ce0cae026708e758f6937e33ab25dcb82351986dc3f3b8d73f40222db38bdb3db046c8b67b0c17ef7892abf DIST kodi-pvr-hts-8.3.1.tar.gz 190434 BLAKE2B d1a2d17e94e02ec37d0598c5d550859db46214bb0acc20034b809386935301499cba53bae8db8668099d82deab986983f3952cc879a4160ae1bf1b992c347b6d SHA512 adbc77518f45d0c745edb8c1c687b4a3165b8d96f62f5a923b327f0ad89a52a7f1d45ad4541ac1dd9bc8f22b2537c018d977db4e0e8ee6fa3c9495bd36eb7fc3 +DIST kodi-pvr-hts-8.3.2.tar.gz 190508 BLAKE2B b48ba46bc640d23ea7157c7a4c013879e201a30d8c45849cdbfa33e4d52bd9508761d241f67db980fb9c518aa9921781907329f3ef3f1388cd8321bd49eb0bf5 SHA512 5ff3791c0413cc6a3ddfece9da1296611dc2bd8fd726260ded391f04f2a259a7ead756f7a069c1a5d3e2d9249e03b767b0553a2a71d297adea8644ee27f1fa7e diff --git a/media-plugins/kodi-pvr-hts/kodi-pvr-hts-8.3.2.ebuild b/media-plugins/kodi-pvr-hts/kodi-pvr-hts-8.3.2.ebuild new file mode 100644 index 000000000000..2229139c850a --- /dev/null +++ b/media-plugins/kodi-pvr-hts/kodi-pvr-hts-8.3.2.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake kodi-addon + +DESCRIPTION="Tvheadend Live TV and Radio PVR client addon for Kodi" +HOMEPAGE="https://github.com/kodi-pvr/pvr.hts" +SRC_URI="" + +if [[ ${PV} == 9999 ]]; then + SRC_URI="" + EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.hts.git" + inherit git-r3 +else + CODENAME="Matrix" + KEYWORDS="~amd64 ~x86" + SRC_URI="https://github.com/kodi-pvr/pvr.hts/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" + S="${WORKDIR}/pvr.hts-${PV}-${CODENAME}" +fi + +LICENSE="GPL-2" +SLOT="0" +IUSE="" + +DEPEND=" + =media-tv/kodi-19* + " + +RDEPEND=" + ${DEPEND} + " diff --git a/media-sound/Manifest.gz b/media-sound/Manifest.gz index 2062264e609d..7efaccd53358 100644 Binary files a/media-sound/Manifest.gz and b/media-sound/Manifest.gz differ diff --git a/media-sound/mpg123/mpg123-1.28.0-r1.ebuild b/media-sound/mpg123/mpg123-1.28.0-r1.ebuild index 9d14cfb3dbb9..026bc8af70a2 100644 --- a/media-sound/mpg123/mpg123-1.28.0-r1.ebuild +++ b/media-sound/mpg123/mpg123-1.28.0-r1.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://www.mpg123.org/download/${P}.tar.bz2" LICENSE="GPL-2 LGPL-2.1" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x86-solaris" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x86-solaris" IUSE="cpu_flags_x86_3dnow cpu_flags_x86_3dnowext cpu_flags_ppc_altivec alsa coreaudio int-quality ipv6 jack cpu_flags_x86_mmx nas oss portaudio pulseaudio sdl cpu_flags_x86_sse" # No MULTILIB_USEDEP here since we only build libmpg123 for non native ABIs. diff --git a/metadata/Manifest.gz b/metadata/Manifest.gz index a83fee3185a9..546296a55679 100644 Binary files a/metadata/Manifest.gz and b/metadata/Manifest.gz differ diff --git a/metadata/dtd/timestamp.chk b/metadata/dtd/timestamp.chk index 068ffcc70f93..71e87fb1405c 100644 --- a/metadata/dtd/timestamp.chk +++ b/metadata/dtd/timestamp.chk @@ -1 +1 @@ -Wed, 07 Jul 2021 20:39:12 +0000 +Thu, 08 Jul 2021 11:39:11 +0000 diff --git a/metadata/glsa/Manifest.files.gz b/metadata/glsa/Manifest.files.gz index 93245e84c6ac..a1398261b9ab 100644 Binary files a/metadata/glsa/Manifest.files.gz and b/metadata/glsa/Manifest.files.gz differ diff --git a/metadata/glsa/glsa-202107-14.xml b/metadata/glsa/glsa-202107-14.xml new file mode 100644 index 000000000000..5a10a179d0c8 --- /dev/null +++ b/metadata/glsa/glsa-202107-14.xml @@ -0,0 +1,51 @@ + + + + rclone: Weak random number generation + rclone uses weak random number generation such that generated + passwords can be easily cracked. + + rclone + 2021-07-08 + 2021-07-08 + 755638 + local + + + 1.53.3 + 1.53.3 + + + +

rclone is a problem to sync files to and from various cloud storage + providers. +

+
+ +

Passwords generated with rclone were insecurely generated and are + vulnerable to brute force attacks. +

+
+ +

Data kept secret with a password generated by rclone may be disclosed to + a local attacker. +

+
+ +

There is no known workaround at this time.

+
+ +

All rclone users should upgrade to the latest version:

+ + + # emerge --sync + # emerge --ask --oneshot --verbose ">=net-misc/rclone-1.53.3" + + +
+ + CVE-2020-28924 + + whissi + ajak +
diff --git a/metadata/glsa/glsa-202107-15.xml b/metadata/glsa/glsa-202107-15.xml new file mode 100644 index 000000000000..79b937641f54 --- /dev/null +++ b/metadata/glsa/glsa-202107-15.xml @@ -0,0 +1,50 @@ + + + + blktrace: Buffer overflow + A buffer overflow in blktrace might allow arbitrary code execution. + blktrace + 2021-07-08 + 2021-07-08 + 655146 + local, remote + + + 1.2.0_p20210419122502 + 1.2.0_p20210419122502 + + + +

blktrace shows detailed information about what is happening on a block + device IO queue. +

+
+ +

A crafted file could cause a buffer overflow in the ‘dev_map_read’ + function because the device and devno arrays are too small. +

+
+ +

A remote attacker could entice a user to open a specially crafted file + using blktrace, possibly resulting in execution of arbitrary code with + the privileges of the process or a Denial of Service condition. +

+
+ +

There is no known workaround at this time.

+
+ +

All blktrace users should upgrade to the latest version:

+ + + # emerge --sync + # emerge --ask --oneshot --verbose + ">=sys-block/blktrace-1.2.0_p20210419122502" + +
+ + CVE-2018-10689 + + ajak + ajak +
diff --git a/metadata/glsa/glsa-202107-16.xml b/metadata/glsa/glsa-202107-16.xml new file mode 100644 index 000000000000..389a5b9374de --- /dev/null +++ b/metadata/glsa/glsa-202107-16.xml @@ -0,0 +1,65 @@ + + + + Privoxy: Multiple vulnerabilities + Multiple vulnerabilities have been found in Privoxy, the worst of + which could result in Denial of Service. + + privoxy + 2021-07-08 + 2021-07-08 + 758428 + 768096 + 771960 + remote + + + 3.0.32 + 3.0.32 + + + +

Privoxy is a web proxy with advanced filtering capabilities for + enhancing privacy. +

+
+ +

Multiple vulnerabilities have been discovered in privoxy. Please review + the CVE identifiers referenced below for details. +

+
+ +

An attacker could cause a possible Denial of Service condition.

+
+ +

There is no known workaround at this time.

+
+ +

All Privoxy users should upgrade to the latest version:

+ + + # emerge --sync + # emerge --ask --oneshot --verbose ">=net-proxy/privoxy-3.0.32" + + +
+ + CVE-2020-35502 + CVE-2021-20209 + CVE-2021-20210 + CVE-2021-20211 + CVE-2021-20212 + CVE-2021-20213 + CVE-2021-20214 + CVE-2021-20215 + CVE-2021-20216 + CVE-2021-20217 + CVE-2021-20272 + CVE-2021-20273 + CVE-2021-20274 + CVE-2021-20275 + CVE-2021-20276 + + whissi + ajak +
diff --git a/metadata/glsa/glsa-202107-17.xml b/metadata/glsa/glsa-202107-17.xml new file mode 100644 index 000000000000..4646661b6380 --- /dev/null +++ b/metadata/glsa/glsa-202107-17.xml @@ -0,0 +1,48 @@ + + + + Mechanize: Command injection + A file named by an attacker being utilized by Mechanize could + result in arbitrary code execution. + + mechanize + 2021-07-08 + 2021-07-08 + 768609 + local, remote + + + 2.7.7 + 2.7.7 + + + +

Mechanize is a Ruby library used for automating interaction with + websites. +

+
+ +

Mechanize does not neutralize filename input and could allow arbitrary + code execution if an attacker can control filenames used by Mechanize. +

+
+ +

Please review the referenced CVE identifiers for details.

+
+ +

There is no known workaround at this time.

+
+ +

All Mechanize users should upgrade to the latest version:

+ + + # emerge --sync + # emerge --ask --oneshot --verbose ">=dev-ruby/mechanize-2.7.7" + +
+ + CVE-2021-21289 + + whissi + ajak +
diff --git a/metadata/glsa/glsa-202107-18.xml b/metadata/glsa/glsa-202107-18.xml new file mode 100644 index 000000000000..f05d598c50b4 --- /dev/null +++ b/metadata/glsa/glsa-202107-18.xml @@ -0,0 +1,53 @@ + + + + BladeEnc: Buffer overflow + A buffer overflow in BladeEnc might allow arbitrary code execution. + bladeenc + 2021-07-08 + 2021-07-08 + 631394 + remote + + + 0.94.2-r1 + + + +

BladeEnc is an mp3 encoder.

+
+ +

A crafted file could cause a buffer overflow in the iteration_loop + function in BladeEnc. +

+
+ +

A remote attacker could entice a user to open a specially crafted using + BladeEnc, possibly resulting in execution of arbitrary code with the + privileges of the process or a Denial of Service condition. +

+
+ +

There is no known workaround at this time.

+
+ +

Gentoo has discontinued support for BladeEnc. We recommend that users + unmerge ssvnc: +

+ + + # emerge --ask --depclean "media-sound/bladeenc" + + +

NOTE: The Gentoo developer(s) maintaining BladeEnc have discontinued + support at this time. It may be possible that a new Gentoo developer will + update BladeEnc at a later date. We do not have a suggestion for a + replacement at this time. +

+
+ + CVE-2017-14648 + + ajak + ajak +
diff --git a/metadata/glsa/glsa-202107-19.xml b/metadata/glsa/glsa-202107-19.xml new file mode 100644 index 000000000000..75efc2f17de5 --- /dev/null +++ b/metadata/glsa/glsa-202107-19.xml @@ -0,0 +1,48 @@ + + + + Jinja: Denial of service + An inefficient regular expression could be exploited to cause a + Denial of Service condition. + + jinja2 + 2021-07-08 + 2021-07-08 + 768300 + remote + + + 2.11.3 + 2.11.3 + + + +

Jinja is a template engine written in pure Python.

+
+ +

The ‘urlize’ filter in Jinja utilized an inefficient regular + expression that could be exploited to consume excess CPU. +

+
+ +

An attacker could cause a Denial of Service condition via crafted input + to the ‘urlize’ Jinja filter. +

+
+ +

There is no known workaround at this time.

+
+ +

All Jinja users should upgrade to the latest version:

+ + + # emerge --sync + # emerge --ask --oneshot --verbose ">=dev-python/jinja-2.11.3" + +
+ + CVE-2020-28493 + + whissi + ajak +
diff --git a/metadata/glsa/timestamp.chk b/metadata/glsa/timestamp.chk index 068ffcc70f93..71e87fb1405c 100644 --- a/metadata/glsa/timestamp.chk +++ b/metadata/glsa/timestamp.chk @@ -1 +1 @@ -Wed, 07 Jul 2021 20:39:12 +0000 +Thu, 08 Jul 2021 11:39:11 +0000 diff --git a/metadata/glsa/timestamp.commit b/metadata/glsa/timestamp.commit index ba878b7b205c..62b17ac292ce 100644 --- a/metadata/glsa/timestamp.commit +++ b/metadata/glsa/timestamp.commit @@ -1 +1 @@ -c1efa66777eb5882c671c8ee704a208989dab1fc 1625644887 2021-07-07T08:01:27+00:00 +87db1c532ba9e64836890a3c105fac77e62cbc0e 1625717020 2021-07-08T04:03:40+00:00 diff --git a/metadata/md5-cache/Manifest.gz b/metadata/md5-cache/Manifest.gz index cb90e6a8ad34..a8869821725c 100644 Binary files a/metadata/md5-cache/Manifest.gz and b/metadata/md5-cache/Manifest.gz differ diff --git a/metadata/md5-cache/app-accessibility/Manifest.gz b/metadata/md5-cache/app-accessibility/Manifest.gz index 7eb9e4fa916b..ca55a3948d20 100644 Binary files a/metadata/md5-cache/app-accessibility/Manifest.gz and b/metadata/md5-cache/app-accessibility/Manifest.gz differ diff --git a/metadata/md5-cache/app-accessibility/mbrola-3.3 b/metadata/md5-cache/app-accessibility/mbrola-3.3-r1 similarity index 69% rename from metadata/md5-cache/app-accessibility/mbrola-3.3 rename to metadata/md5-cache/app-accessibility/mbrola-3.3-r1 index 5131e92f28a0..7c8347572f88 100644 --- a/metadata/md5-cache/app-accessibility/mbrola-3.3 +++ b/metadata/md5-cache/app-accessibility/mbrola-3.3-r1 @@ -7,4 +7,5 @@ LICENSE=AGPL-3+ RDEPEND=app-accessibility/mbrola-voices SLOT=0 SRC_URI=https://github.com/numediart/MBROLA/archive/3.3.tar.gz -> mbrola-3.3.tar.gz -_md5_=ccf39ffebbad8fb796013f30824b8e89 +_eclasses_=multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_md5_=f985e06e3b12a81f0b65b88a34014b01 diff --git a/metadata/md5-cache/app-admin/Manifest.gz b/metadata/md5-cache/app-admin/Manifest.gz index b8cf00389f52..5bfe9c3e8dcb 100644 Binary files a/metadata/md5-cache/app-admin/Manifest.gz and b/metadata/md5-cache/app-admin/Manifest.gz differ diff --git a/metadata/md5-cache/app-admin/awscli-1.19.107 b/metadata/md5-cache/app-admin/awscli-1.19.107 new file mode 100644 index 000000000000..75c53c112e59 --- /dev/null +++ b/metadata/md5-cache/app-admin/awscli-1.19.107 @@ -0,0 +1,15 @@ +BDEPEND=test? ( dev-python/mock[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) test? ( >=dev-python/botocore-1.20.107[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/colorama[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/docutils[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/rsa[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/s3transfer-0.4.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pyyaml[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/nose-1.3.7-r4[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Universal Command Line Environment for AWS +EAPI=7 +HOMEPAGE=https://pypi.org/project/awscli/ +IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~amd64 ~arm64 ~x86 +LICENSE=Apache-2.0 +RDEPEND=>=dev-python/botocore-1.20.107[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/colorama[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/docutils[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/rsa[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/s3transfer-0.4.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pyyaml[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/aws/aws-cli/archive/1.19.107.tar.gz -> awscli-1.19.107.tar.gz +_eclasses_=bash-completion-r1 8e7c071081c68c2c398b77fe3a1d6908 distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e20b80360497e6215aed0dd4ca7d6bad python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_md5_=383108bd725409654cec81f2318676df diff --git a/metadata/md5-cache/app-admin/mcelog-177 b/metadata/md5-cache/app-admin/mcelog-177 new file mode 100644 index 000000000000..08da94fdc373 --- /dev/null +++ b/metadata/md5-cache/app-admin/mcelog-177 @@ -0,0 +1,14 @@ +DEFINED_PHASES=install postinst prepare pretend setup +DEPEND=virtual/pkgconfig +DESCRIPTION=A tool to log and decode Machine Check Exceptions +EAPI=6 +HOMEPAGE=http://mcelog.org/ +IUSE=selinux kernel_linux +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=selinux? ( sec-policy/selinux-mcelog ) +RESTRICT=test +SLOT=0 +SRC_URI=https://github.com/andikleen/mcelog/archive/v177.tar.gz -> mcelog-177.tar.gz +_eclasses_=eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 linux-info 7e8ed4c6a1d136fb291c52386f996c2c multilib 97566c1a256d07b00848aa767e38a352 systemd c846b9e02ac8293bfc9ca38a195c2a18 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_md5_=25ef902e3b25a153a89c41cf7261ccfa diff --git a/metadata/md5-cache/app-admin/spectre-meltdown-checker-0.44 b/metadata/md5-cache/app-admin/spectre-meltdown-checker-0.44 index 8052e2b7d9db..506be18351be 100644 --- a/metadata/md5-cache/app-admin/spectre-meltdown-checker-0.44 +++ b/metadata/md5-cache/app-admin/spectre-meltdown-checker-0.44 @@ -2,8 +2,8 @@ DEFINED_PHASES=install DESCRIPTION=Spectre & Meltdown vulnerability/mitigation checker for Linux EAPI=7 HOMEPAGE=https://github.com/speed47/spectre-meltdown-checker -KEYWORDS=amd64 arm ~arm64 x86 +KEYWORDS=amd64 arm arm64 x86 LICENSE=GPL-3+ SLOT=0 SRC_URI=https://github.com/speed47/spectre-meltdown-checker/archive/v0.44.tar.gz -> spectre-meltdown-checker-0.44.tar.gz -_md5_=25f6a614985e5e68cf19b130990944ed +_md5_=12a2eb457192bc329b62fb08632f8189 diff --git a/metadata/md5-cache/app-arch/Manifest.gz b/metadata/md5-cache/app-arch/Manifest.gz index d504d7793ef4..afb33023d7da 100644 Binary files a/metadata/md5-cache/app-arch/Manifest.gz and b/metadata/md5-cache/app-arch/Manifest.gz differ diff --git a/metadata/md5-cache/app-arch/unrar-6.0.7 b/metadata/md5-cache/app-arch/unrar-6.0.7 index 5e1ab84d6642..51c4d8831740 100644 --- a/metadata/md5-cache/app-arch/unrar-6.0.7 +++ b/metadata/md5-cache/app-arch/unrar-6.0.7 @@ -2,10 +2,10 @@ DEFINED_PHASES=compile configure install prepare DESCRIPTION=Uncompress rar files EAPI=7 HOMEPAGE=https://www.rarlab.com/rar_add.htm -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x86-solaris +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x86-solaris LICENSE=unRAR RDEPEND=!<=app-arch/unrar-gpl-0.0.1_p20080417 SLOT=0/6 SRC_URI=https://www.rarlab.com/rar/unrarsrc-6.0.7.tar.gz -> unrar-6.0.7.tar.gz _eclasses_=multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa -_md5_=666bfee2787247eeff1f788ddb7be89a +_md5_=154406a4a92fe8489fbfe20a8a475033 diff --git a/metadata/md5-cache/app-misc/Manifest.gz b/metadata/md5-cache/app-misc/Manifest.gz index 8702d8793e57..20caeb15f35c 100644 Binary files a/metadata/md5-cache/app-misc/Manifest.gz and b/metadata/md5-cache/app-misc/Manifest.gz differ diff --git a/metadata/md5-cache/app-misc/recoll-1.31.0 b/metadata/md5-cache/app-misc/recoll-1.31.0 new file mode 100644 index 000000000000..5d9ae5892f1b --- /dev/null +++ b/metadata/md5-cache/app-misc/recoll-1.31.0 @@ -0,0 +1,15 @@ +BDEPEND=qt5? ( dev-qt/linguist-tools:5 ) +DEFINED_PHASES=configure install postinst prepare pretend setup +DEPEND=dev-libs/xapian:= sys-libs/zlib:= virtual/libiconv chm? ( dev-libs/chmlib dev-python/pychm ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtprintsupport:5 webengine? ( dev-qt/qtwebengine:5[widgets] ) ) session? ( inotify? ( x11-libs/libSM x11-libs/libICE x11-libs/libX11 ) ) spell? ( app-text/aspell ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) python_single_target_python3_10? ( dev-lang/python:3.10 >=dev-lang/python-exec-2:=[python_targets_python3_10] ) +DESCRIPTION=Personal full text search package +EAPI=7 +HOMEPAGE=https://www.lesbonscomptes.com/recoll/ +IUSE=camelcase chm +inotify qt5 session +spell webengine kernel_linux python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2+ +RDEPEND=dev-libs/xapian:= sys-libs/zlib:= virtual/libiconv chm? ( dev-libs/chmlib dev-python/pychm ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtprintsupport:5 webengine? ( dev-qt/qtwebengine:5[widgets] ) ) session? ( inotify? ( x11-libs/libSM x11-libs/libICE x11-libs/libX11 ) ) spell? ( app-text/aspell ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) python_single_target_python3_10? ( dev-lang/python:3.10 >=dev-lang/python-exec-2:=[python_targets_python3_10] ) app-arch/unzip +REQUIRED_USE=session? ( inotify ) webengine? ( qt5 ) ^^ ( python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 ) +SLOT=0 +SRC_URI=https://www.lesbonscomptes.com/recoll/recoll-1.31.0.tar.gz +_eclasses_=eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 linux-info 7e8ed4c6a1d136fb291c52386f996c2c multilib 97566c1a256d07b00848aa767e38a352 optfeature cc13a38ea4d26565e83ef21d58bcd4ab python-single-r1 73f113f91928e0d16bceb65ecbcd8e75 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a qmake-utils dc74fe3891abc25e80dad5cd3d7c6e47 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_md5_=d84cc7f65a26a28a486fd1c9d576abc0 diff --git a/metadata/md5-cache/app-portage/Manifest.gz b/metadata/md5-cache/app-portage/Manifest.gz index 86f84372cd12..6d146b787a3d 100644 Binary files a/metadata/md5-cache/app-portage/Manifest.gz and b/metadata/md5-cache/app-portage/Manifest.gz differ diff --git a/metadata/md5-cache/app-portage/portage-utils-0.87 b/metadata/md5-cache/app-portage/portage-utils-0.87 index c2d20c00bba7..94fbb3af1e62 100644 --- a/metadata/md5-cache/app-portage/portage-utils-0.87 +++ b/metadata/md5-cache/app-portage/portage-utils-0.87 @@ -4,9 +4,9 @@ DESCRIPTION=Small and fast Portage helper tools written in C EAPI=6 HOMEPAGE=https://wiki.gentoo.org/wiki/Portage-utils IUSE=nls static openmp +qmanifest +qtegrity -KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=hppa LICENSE=GPL-2 RDEPEND=qmanifest? ( openmp? ( || ( >=sys-devel/gcc-4.2:*[openmp] sys-devel/clang-runtime:*[openmp] ) ) static? ( app-crypt/libb2:=[static-libs] dev-libs/openssl:0=[static-libs] sys-libs/zlib:=[static-libs] app-crypt/gpgme:=[static-libs] ) !static? ( app-crypt/libb2:= dev-libs/openssl:0= sys-libs/zlib:= app-crypt/gpgme:= ) ) qtegrity? ( openmp? ( || ( >=sys-devel/gcc-4.2:*[openmp] sys-devel/clang-runtime:*[openmp] ) ) static? ( dev-libs/openssl:0=[static-libs] ) !static? ( dev-libs/openssl:0= ) ) SLOT=0 SRC_URI=https://dev.gentoo.org/~grobian/distfiles/portage-utils-0.87.tar.xz -_md5_=7e7bb73a8d55670dc6092d6fd6d799b7 +_md5_=eeb9f485afd50755e2397462830ac9c0 diff --git a/metadata/md5-cache/app-portage/portage-utils-0.90.1 b/metadata/md5-cache/app-portage/portage-utils-0.90.1 new file mode 100644 index 000000000000..817c8a926229 --- /dev/null +++ b/metadata/md5-cache/app-portage/portage-utils-0.90.1 @@ -0,0 +1,12 @@ +DEFINED_PHASES=configure +DEPEND=qmanifest? ( openmp? ( || ( >=sys-devel/gcc-4.2:*[openmp] sys-devel/clang-runtime:*[openmp] ) ) static? ( app-crypt/libb2:=[static-libs] dev-libs/openssl:0=[static-libs] sys-libs/zlib:=[static-libs] app-crypt/gpgme:=[static-libs] ) !static? ( app-crypt/libb2:= dev-libs/openssl:0= sys-libs/zlib:= app-crypt/gpgme:= ) ) qtegrity? ( openmp? ( || ( >=sys-devel/gcc-4.2:*[openmp] sys-devel/clang-runtime:*[openmp] ) ) static? ( dev-libs/openssl:0=[static-libs] ) !static? ( dev-libs/openssl:0= ) ) +DESCRIPTION=Small and fast Portage helper tools written in C +EAPI=6 +HOMEPAGE=https://wiki.gentoo.org/wiki/Portage-utils +IUSE=nls static openmp +qmanifest +qtegrity +KEYWORDS=sparc x86 +LICENSE=GPL-2 +RDEPEND=qmanifest? ( openmp? ( || ( >=sys-devel/gcc-4.2:*[openmp] sys-devel/clang-runtime:*[openmp] ) ) static? ( app-crypt/libb2:=[static-libs] dev-libs/openssl:0=[static-libs] sys-libs/zlib:=[static-libs] app-crypt/gpgme:=[static-libs] ) !static? ( app-crypt/libb2:= dev-libs/openssl:0= sys-libs/zlib:= app-crypt/gpgme:= ) ) qtegrity? ( openmp? ( || ( >=sys-devel/gcc-4.2:*[openmp] sys-devel/clang-runtime:*[openmp] ) ) static? ( dev-libs/openssl:0=[static-libs] ) !static? ( dev-libs/openssl:0= ) ) +SLOT=0 +SRC_URI=https://dev.gentoo.org/~grobian/distfiles/portage-utils-0.90.1.tar.xz +_md5_=7e5dd729da56a2d37f9f3b79374c4599 diff --git a/metadata/md5-cache/app-portage/unsymlink-lib-20 b/metadata/md5-cache/app-portage/unsymlink-lib-20 index 5c1908f46807..33879b1ccee4 100644 --- a/metadata/md5-cache/app-portage/unsymlink-lib-20 +++ b/metadata/md5-cache/app-portage/unsymlink-lib-20 @@ -3,7 +3,7 @@ DESCRIPTION=Convert your system to SYMLINK_LIB=no EAPI=7 HOMEPAGE=https://github.com/mgorny/unsymlink-lib IUSE=python_single_target_python3_8 python_single_target_python3_9 -KEYWORDS=amd64 ~ppc64 +KEYWORDS=amd64 ppc64 LICENSE=BSD-2 RDEPEND=python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) python_single_target_python3_8? ( sys-apps/portage[python_targets_python3_8(-)] ) python_single_target_python3_9? ( sys-apps/portage[python_targets_python3_9(-)] ) REQUIRED_USE=^^ ( python_single_target_python3_8 python_single_target_python3_9 ) @@ -11,4 +11,4 @@ RESTRICT=test SLOT=0 SRC_URI=https://github.com/mgorny/unsymlink-lib/archive/v20.tar.gz -> unsymlink-lib-20.tar.gz _eclasses_=eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multilib 97566c1a256d07b00848aa767e38a352 python-single-r1 73f113f91928e0d16bceb65ecbcd8e75 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa -_md5_=5e1d3f87656af0f8c9f1a15afd99ca96 +_md5_=d46668a793740284cb0f210f98f029cd diff --git a/metadata/md5-cache/dev-db/Manifest.gz b/metadata/md5-cache/dev-db/Manifest.gz index df074b407c23..65501585b656 100644 Binary files a/metadata/md5-cache/dev-db/Manifest.gz and b/metadata/md5-cache/dev-db/Manifest.gz differ diff --git a/metadata/md5-cache/dev-db/sqlite-3.35.5 b/metadata/md5-cache/dev-db/sqlite-3.35.5 index 02201c4f2123..c6afb2df2c5f 100644 --- a/metadata/md5-cache/dev-db/sqlite-3.35.5 +++ b/metadata/md5-cache/dev-db/sqlite-3.35.5 @@ -5,11 +5,11 @@ DESCRIPTION=SQL database engine EAPI=7 HOMEPAGE=https://sqlite.org/ IUSE=debug doc icu +readline secure-delete static-libs tcl test tools abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 -KEYWORDS=~alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha amd64 ~arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=public-domain RDEPEND=sys-libs/zlib:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] icu? ( dev-libs/icu:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) readline? ( sys-libs/readline:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) tcl? ( dev-lang/tcl:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) tools? ( dev-lang/tcl:0= ) RESTRICT=!test? ( test ) SLOT=3 SRC_URI=https://sqlite.org/2021/sqlite-src-3350500.zip doc? ( https://sqlite.org/2021/sqlite-doc-3350500.zip ) _eclasses_=autotools 9e63f92c2a5d867fea55ecb160c7d354 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic 4134b5c0fb719b9161d10bdaba9e09e5 gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multilib-build effd4508d5e8209273d82d8f67ee93a0 multilib-minimal 7187f259f207bf5b69e4ff01498a7269 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=b3c5b4244108caeaf858635d14e8e6c6 +_md5_=104498506dee422b5edac690a5273dee diff --git a/metadata/md5-cache/dev-java/Manifest.gz b/metadata/md5-cache/dev-java/Manifest.gz index 3342fc79844d..dff529619385 100644 Binary files a/metadata/md5-cache/dev-java/Manifest.gz and b/metadata/md5-cache/dev-java/Manifest.gz differ diff --git a/metadata/md5-cache/dev-java/bcprov-1.68-r2 b/metadata/md5-cache/dev-java/bcprov-1.68-r2 index e48f34fd6286..fcc54197c630 100644 --- a/metadata/md5-cache/dev-java/bcprov-1.68-r2 +++ b/metadata/md5-cache/dev-java/bcprov-1.68-r2 @@ -5,10 +5,10 @@ DESCRIPTION=Java cryptography APIs EAPI=7 HOMEPAGE=https://www.bouncycastle.org/java.html IUSE=elibc_FreeBSD doc source -KEYWORDS=~amd64 ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux ~x64-macos +KEYWORDS=~amd64 ~arm64 ppc64 ~x86 ~amd64-linux ~x86-linux ~x64-macos LICENSE=BSD RDEPEND=>=virtual/jre-1.8:* >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) SLOT=0 SRC_URI=https://www.bouncycastle.org/download/bcprov-jdk15on-168.tar.gz _eclasses_=java-pkg-2 37e38ed0662a78bfde9cb4f6d11ed6dc java-pkg-simple f54286e86669dd9944a492f8586e744c java-utils-2 bd56fb0d459d0bad9d07fa32febe53cb -_md5_=69c23153e418aa277b4a802b78bd3f3d +_md5_=7943bd93f67f29a60b649ec2ee40da02 diff --git a/metadata/md5-cache/dev-lang/Manifest.gz b/metadata/md5-cache/dev-lang/Manifest.gz index 95c6c4d9e115..0aae1b48acfd 100644 Binary files a/metadata/md5-cache/dev-lang/Manifest.gz and b/metadata/md5-cache/dev-lang/Manifest.gz differ diff --git a/metadata/md5-cache/dev-lang/php-7.3.29 b/metadata/md5-cache/dev-lang/php-7.3.29 index a303ea8384a0..e7527ee4b47c 100644 --- a/metadata/md5-cache/dev-lang/php-7.3.29 +++ b/metadata/md5-cache/dev-lang/php-7.3.29 @@ -5,7 +5,7 @@ DESCRIPTION=The PHP language runtime engine EAPI=7 HOMEPAGE=https://www.php.net/ IUSE=embed +cli cgi fpm apache2 phpdbg threads acl argon2 bcmath berkdb bzip2 calendar cdb cjk coverage +ctype curl debug enchant exif +fileinfo +filter firebird +flatfile ftp gd gdbm gmp +hash +iconv imap inifile intl iodbc ipv6 +jit +json kerberos ldap ldap-sasl libedit lmdb mhash mssql mysql mysqli nls oci8-instant-client odbc +opcache pcntl pdo +phar +posix postgres qdbm readline recode selinux +session session-mm sharedmem +simplexml snmp soap sockets sodium spell sqlite ssl sysvipc systemd test tidy +tokenizer tokyocabinet truetype unicode wddx webp +xml xmlreader xmlwriter xmlrpc xpm xslt zip zip-encryption zlib -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos LICENSE=PHP-3.01 BSD Zend-2.0 bcmath? ( LGPL-2.1+ ) fpm? ( BSD-2 ) gd? ( gd ) unicode? ( BSD-2 LGPL-2.1 ) RDEPEND=>=app-eselect/eselect-php-0.9.1[apache2?,fpm?] >=dev-libs/libpcre2-10.30[jit?,unicode] fpm? ( acl? ( sys-apps/acl ) ) apache2? ( www-servers/apache[apache2_modules_unixd(+),threads=] ) argon2? ( app-crypt/argon2:= ) berkdb? ( || ( sys-libs/db:5.3 sys-libs/db:5.1 sys-libs/db:4.8 sys-libs/db:4.7 sys-libs/db:4.6 sys-libs/db:4.5 ) ) bzip2? ( app-arch/bzip2:0= ) cdb? ( || ( dev-db/cdb dev-db/tinycdb ) ) coverage? ( dev-util/lcov ) curl? ( >=net-misc/curl-7.10.5 ) enchant? ( =virtual/jpeg-0-r3:0 media-libs/libpng:0= >=sys-libs/zlib-1.2.0.4 ) gdbm? ( >=sys-libs/gdbm-1.8.0:0= ) gmp? ( dev-libs/gmp:0= ) iconv? ( virtual/libiconv ) imap? ( >=virtual/imap-c-client-2[kerberos=,ssl=] ) intl? ( dev-libs/icu:= ) iodbc? ( dev-db/libiodbc ) kerberos? ( virtual/krb5 ) ldap? ( >=net-nds/openldap-1.2.11 ) ldap-sasl? ( dev-libs/cyrus-sasl >=net-nds/openldap-1.2.11 ) libedit? ( dev-libs/libedit ) lmdb? ( dev-db/lmdb:= ) mssql? ( dev-db/freetds[mssql] ) nls? ( sys-devel/gettext ) oci8-instant-client? ( dev-db/oracle-instantclient[sdk] ) odbc? ( >=dev-db/unixODBC-1.8.13 ) postgres? ( dev-db/postgresql:* ) qdbm? ( dev-db/qdbm ) readline? ( sys-libs/readline:0= ) recode? ( app-text/recode:0= ) session-mm? ( dev-libs/mm ) simplexml? ( >=dev-libs/libxml2-2.6.8 ) snmp? ( >=net-analyzer/net-snmp-5.2 ) soap? ( >=dev-libs/libxml2-2.6.8 ) sodium? ( dev-libs/libsodium:=[-minimal] ) spell? ( >=app-text/aspell-0.50 ) sqlite? ( >=dev-db/sqlite-3.7.6.3 ) ssl? ( >=dev-libs/openssl-1.0.1:0= ) tidy? ( || ( app-text/tidy-html5 app-text/htmltidy ) ) tokyocabinet? ( dev-db/tokyocabinet ) truetype? ( =media-libs/freetype-2* ) unicode? ( dev-libs/oniguruma:= ) wddx? ( >=dev-libs/libxml2-2.6.8 ) webp? ( media-libs/libwebp:0= ) xml? ( >=dev-libs/libxml2-2.6.8 ) xmlrpc? ( >=dev-libs/libxml2-2.6.8 virtual/libiconv ) xmlreader? ( >=dev-libs/libxml2-2.6.8 ) xmlwriter? ( >=dev-libs/libxml2-2.6.8 ) xpm? ( x11-libs/libXpm ) xslt? ( dev-libs/libxslt >=dev-libs/libxml2-2.6.8 ) zip? ( >=sys-libs/zlib-1.2.0.4:0= ) zip-encryption? ( >=dev-libs/libzip-1.2.0:= ) zlib? ( >=sys-libs/zlib-1.2.0.4:0= ) virtual/mta fpm? ( selinux? ( sec-policy/selinux-phpfpm ) systemd? ( sys-apps/systemd ) ) REQUIRED_USE=|| ( cli cgi fpm apache2 embed phpdbg ) cli? ( ^^ ( readline libedit ) ) truetype? ( gd zlib ) webp? ( gd zlib ) cjk? ( gd zlib ) exif? ( gd zlib ) xpm? ( gd zlib ) gd? ( zlib ) simplexml? ( xml ) soap? ( xml ) wddx? ( xml ) xmlrpc? ( || ( xml iconv ) ) xmlreader? ( xml ) xslt? ( xml ) ldap-sasl? ( ldap ) mhash? ( hash ) oci8-instant-client? ( !ldap ) phar? ( hash ) qdbm? ( !gdbm ) readline? ( !libedit ) recode? ( !imap !mysqli !mysql ) session-mm? ( session !threads ) mysql? ( || ( mysqli pdo ) ) zip-encryption? ( zip ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=7.3 SRC_URI=https://www.php.net/distributions/php-7.3.29.tar.xz _eclasses_=autotools 9e63f92c2a5d867fea55ecb160c7d354 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic 4134b5c0fb719b9161d10bdaba9e09e5 gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e multilib 97566c1a256d07b00848aa767e38a352 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd c846b9e02ac8293bfc9ca38a195c2a18 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=3f22f6cbe64e3ab48a3665b56ee706de +_md5_=f0ac164f3f8f49b61949a3fd78635fdf diff --git a/metadata/md5-cache/dev-lang/php-7.4.21 b/metadata/md5-cache/dev-lang/php-7.4.21 index e9422ad1fe46..897faf74f099 100644 --- a/metadata/md5-cache/dev-lang/php-7.4.21 +++ b/metadata/md5-cache/dev-lang/php-7.4.21 @@ -5,7 +5,7 @@ DESCRIPTION=The PHP language runtime engine EAPI=7 HOMEPAGE=https://www.php.net/ IUSE=embed +cli cgi fpm apache2 phpdbg threads acl argon2 bcmath berkdb bzip2 calendar cdb cjk coverage +ctype curl debug enchant exif ffi +fileinfo +filter firebird +flatfile ftp gd gdbm gmp +iconv imap inifile intl iodbc ipv6 +jit +json kerberos ldap ldap-sasl libedit lmdb mhash mssql mysql mysqli nls oci8-instant-client odbc +opcache pcntl pdo +phar +posix postgres qdbm readline selinux +session session-mm sharedmem +simplexml snmp soap sockets sodium spell sqlite ssl sysvipc systemd test tidy +tokenizer tokyocabinet truetype unicode webp +xml xmlreader xmlwriter xmlrpc xpm xslt zip zlib -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos LICENSE=PHP-3.01 BSD Zend-2.0 bcmath? ( LGPL-2.1+ ) fpm? ( BSD-2 ) gd? ( gd ) unicode? ( BSD-2 LGPL-2.1 ) RDEPEND=>=app-eselect/eselect-php-0.9.1[apache2?,fpm?] >=dev-libs/libpcre2-10.30[jit?,unicode] fpm? ( acl? ( sys-apps/acl ) ) apache2? ( www-servers/apache[apache2_modules_unixd(+),threads=] ) argon2? ( app-crypt/argon2:= ) berkdb? ( || ( sys-libs/db:5.3 sys-libs/db:5.1 sys-libs/db:4.8 sys-libs/db:4.7 sys-libs/db:4.6 sys-libs/db:4.5 ) ) bzip2? ( app-arch/bzip2:0= ) cdb? ( || ( dev-db/cdb dev-db/tinycdb ) ) coverage? ( dev-util/lcov ) curl? ( >=net-misc/curl-7.10.5 ) enchant? ( =dev-libs/libffi-3.0.11 ) firebird? ( dev-db/firebird ) gd? ( >=virtual/jpeg-0-r3:0 media-libs/libpng:0= ) gdbm? ( >=sys-libs/gdbm-1.8.0:0= ) gmp? ( dev-libs/gmp:0= ) iconv? ( virtual/libiconv ) imap? ( >=virtual/imap-c-client-2[kerberos=,ssl=] ) intl? ( dev-libs/icu:= ) kerberos? ( virtual/krb5 ) ldap? ( >=net-nds/openldap-1.2.11 ) ldap-sasl? ( dev-libs/cyrus-sasl ) libedit? ( dev-libs/libedit ) lmdb? ( dev-db/lmdb:= ) mssql? ( dev-db/freetds[mssql] ) nls? ( sys-devel/gettext ) oci8-instant-client? ( dev-db/oracle-instantclient[sdk] ) odbc? ( iodbc? ( dev-db/libiodbc ) !iodbc? ( >=dev-db/unixODBC-1.8.13 ) ) postgres? ( dev-db/postgresql:* ) qdbm? ( dev-db/qdbm ) readline? ( sys-libs/readline:0= ) session-mm? ( dev-libs/mm ) snmp? ( >=net-analyzer/net-snmp-5.2 ) sodium? ( dev-libs/libsodium:=[-minimal] ) spell? ( >=app-text/aspell-0.50 ) sqlite? ( >=dev-db/sqlite-3.7.6.3 ) ssl? ( >=dev-libs/openssl-1.0.1:0= ) tidy? ( || ( app-text/tidy-html5 app-text/htmltidy ) ) tokyocabinet? ( dev-db/tokyocabinet ) truetype? ( =media-libs/freetype-2* ) unicode? ( dev-libs/oniguruma:= ) webp? ( media-libs/libwebp:0= ) xml? ( >=dev-libs/libxml2-2.7.6 ) xpm? ( x11-libs/libXpm ) xslt? ( dev-libs/libxslt ) zip? ( >=dev-libs/libzip-1.2.0:= ) zlib? ( >=sys-libs/zlib-1.2.0.4:0= ) virtual/mta fpm? ( selinux? ( sec-policy/selinux-phpfpm ) systemd? ( sys-apps/systemd ) ) REQUIRED_USE=|| ( cli cgi fpm apache2 embed phpdbg ) cli? ( ^^ ( readline libedit ) ) !cli? ( ?? ( readline libedit ) ) truetype? ( gd zlib ) webp? ( gd zlib ) cjk? ( gd zlib ) exif? ( gd zlib ) xpm? ( gd zlib ) gd? ( zlib ) simplexml? ( xml ) soap? ( xml ) xmlrpc? ( xml iconv ) xmlreader? ( xml ) xmlwriter? ( xml ) xslt? ( xml ) ldap-sasl? ( ldap ) oci8-instant-client? ( !ldap ) qdbm? ( !gdbm ) session-mm? ( session !threads ) mysql? ( || ( mysqli pdo ) ) firebird? ( pdo ) mssql? ( pdo ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=7.4 SRC_URI=https://www.php.net/distributions/php-7.4.21.tar.xz _eclasses_=autotools 9e63f92c2a5d867fea55ecb160c7d354 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic 4134b5c0fb719b9161d10bdaba9e09e5 gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e multilib 97566c1a256d07b00848aa767e38a352 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd c846b9e02ac8293bfc9ca38a195c2a18 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=08c4454163969caeb580d5604e9a616c +_md5_=b7fcb756537b5784b407ba756271d41d diff --git a/metadata/md5-cache/dev-libs/Manifest.gz b/metadata/md5-cache/dev-libs/Manifest.gz index 238bd8c2a9fc..4e5c39aaf5f6 100644 Binary files a/metadata/md5-cache/dev-libs/Manifest.gz and b/metadata/md5-cache/dev-libs/Manifest.gz differ diff --git a/metadata/md5-cache/dev-libs/OpenNI-1.5.7.10 b/metadata/md5-cache/dev-libs/OpenNI-1.5.7.10 deleted file mode 100644 index d29967131aae..000000000000 --- a/metadata/md5-cache/dev-libs/OpenNI-1.5.7.10 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile install postinst preinst prepare setup -DEPEND=virtual/libusb:1 virtual/libudev virtual/jpeg:0 dev-libs/tinyxml opengl? ( media-libs/freeglut !dev-libs/OpenNI2[opengl] ) java? ( >=virtual/jre-1.5 ) doc? ( app-doc/doxygen ) java? ( >=virtual/jdk-1.5 ) java? ( >=dev-java/java-config-2.2.0-r3 ) -DESCRIPTION=OpenNI SDK -EAPI=5 -HOMEPAGE=https://github.com/OpenNI/OpenNI -IUSE=doc java opengl elibc_FreeBSD java -KEYWORDS=~amd64 ~arm -LICENSE=Apache-2.0 -RDEPEND=virtual/libusb:1 virtual/libudev virtual/jpeg:0 dev-libs/tinyxml opengl? ( media-libs/freeglut !dev-libs/OpenNI2[opengl] ) java? ( >=virtual/jre-1.5 ) java? ( >=dev-java/java-config-2.2.0-r3 ) -SLOT=0 -SRC_URI=https://github.com/OpenNI/OpenNI/archive/Stable-1.5.7.10.tar.gz -> OpenNI-1.5.7.10.tar.gz -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff java-pkg-opt-2 c9d8408eceaa8e56c729df071dd8cb57 java-utils-2 bd56fb0d459d0bad9d07fa32febe53cb ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 97566c1a256d07b00848aa767e38a352 preserve-libs dbc9f8d2d49c66467bc327fddd8317bd strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa vcs-clean b690a7e9b6c497cf59326a7545df4283 versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=5cb6c17faace52bdafa7047b3b830842 diff --git a/metadata/md5-cache/dev-libs/OpenNI-1.5.7.10-r1 b/metadata/md5-cache/dev-libs/OpenNI-1.5.7.10-r1 deleted file mode 100644 index e25daf7cc467..000000000000 --- a/metadata/md5-cache/dev-libs/OpenNI-1.5.7.10-r1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile install postinst preinst prepare setup -DEPEND=virtual/libusb:1 virtual/libudev virtual/jpeg:0 dev-libs/tinyxml opengl? ( media-libs/freeglut !dev-libs/OpenNI2[opengl] ) java? ( >=virtual/jre-1.5 ) doc? ( app-doc/doxygen ) java? ( >=virtual/jdk-1.5 ) java? ( >=dev-java/java-config-2.2.0-r3 ) -DESCRIPTION=OpenNI SDK -EAPI=5 -HOMEPAGE=https://github.com/OpenNI/OpenNI -IUSE=doc java opengl elibc_FreeBSD java -KEYWORDS=~amd64 ~arm -LICENSE=Apache-2.0 -RDEPEND=virtual/libusb:1 virtual/libudev virtual/jpeg:0 dev-libs/tinyxml opengl? ( media-libs/freeglut !dev-libs/OpenNI2[opengl] ) java? ( >=virtual/jre-1.5 ) java? ( >=dev-java/java-config-2.2.0-r3 ) -SLOT=0 -SRC_URI=https://github.com/OpenNI/OpenNI/archive/Stable-1.5.7.10.tar.gz -> OpenNI-1.5.7.10.tar.gz -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff java-pkg-opt-2 c9d8408eceaa8e56c729df071dd8cb57 java-utils-2 bd56fb0d459d0bad9d07fa32febe53cb ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 97566c1a256d07b00848aa767e38a352 preserve-libs dbc9f8d2d49c66467bc327fddd8317bd strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa vcs-clean b690a7e9b6c497cf59326a7545df4283 versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=c719f0d94a2195d210caf8f5aa89ad06 diff --git a/metadata/md5-cache/dev-libs/OpenNI-1.5.7.10-r2 b/metadata/md5-cache/dev-libs/OpenNI-1.5.7.10-r2 new file mode 100644 index 000000000000..84d026733983 --- /dev/null +++ b/metadata/md5-cache/dev-libs/OpenNI-1.5.7.10-r2 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile install postinst preinst prepare setup +DEPEND=virtual/libusb:1 virtual/libudev virtual/jpeg:0 dev-libs/tinyxml opengl? ( media-libs/freeglut !dev-libs/OpenNI2[opengl] ) java? ( virtual/jre:1.8 ) doc? ( app-doc/doxygen ) java? ( virtual/jdk:1.8 ) java? ( >=dev-java/java-config-2.2.0-r3 ) +DESCRIPTION=OpenNI SDK +EAPI=7 +HOMEPAGE=https://github.com/OpenNI/OpenNI +IUSE=doc java opengl elibc_FreeBSD java +KEYWORDS=~amd64 ~arm +LICENSE=Apache-2.0 +RDEPEND=virtual/libusb:1 virtual/libudev virtual/jpeg:0 dev-libs/tinyxml opengl? ( media-libs/freeglut !dev-libs/OpenNI2[opengl] ) java? ( virtual/jre:1.8 ) java? ( >=dev-java/java-config-2.2.0-r3 ) +SLOT=0 +SRC_URI=https://github.com/OpenNI/OpenNI/archive/Stable-1.5.7.10.tar.gz -> OpenNI-1.5.7.10.tar.gz +_eclasses_=java-pkg-opt-2 c9d8408eceaa8e56c729df071dd8cb57 java-utils-2 bd56fb0d459d0bad9d07fa32febe53cb multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_md5_=f1eb57314934a6c145d474bc6003470c diff --git a/metadata/md5-cache/dev-libs/OpenNI-9999 b/metadata/md5-cache/dev-libs/OpenNI-9999 index 68fd680a640c..747dc118ae20 100644 --- a/metadata/md5-cache/dev-libs/OpenNI-9999 +++ b/metadata/md5-cache/dev-libs/OpenNI-9999 @@ -1,12 +1,13 @@ +BDEPEND=>=dev-vcs/git-1.8.2.1[curl] DEFINED_PHASES=compile install postinst preinst prepare setup unpack -DEPEND=virtual/libusb:1 virtual/libudev virtual/jpeg:0 dev-libs/tinyxml opengl? ( media-libs/freeglut !dev-libs/OpenNI2[opengl] ) java? ( >=virtual/jre-1.5 ) doc? ( app-doc/doxygen ) java? ( >=virtual/jdk-1.5 ) >=dev-vcs/git-1.8.2.1[curl] java? ( >=dev-java/java-config-2.2.0-r3 ) +DEPEND=virtual/libusb:1 virtual/libudev virtual/jpeg:0 dev-libs/tinyxml opengl? ( media-libs/freeglut !dev-libs/OpenNI2[opengl] ) java? ( virtual/jre:1.8 ) doc? ( app-doc/doxygen ) java? ( virtual/jdk:1.8 ) java? ( >=dev-java/java-config-2.2.0-r3 ) DESCRIPTION=OpenNI SDK -EAPI=5 +EAPI=7 HOMEPAGE=https://github.com/OpenNI/OpenNI IUSE=doc java opengl elibc_FreeBSD java LICENSE=Apache-2.0 PROPERTIES=live -RDEPEND=virtual/libusb:1 virtual/libudev virtual/jpeg:0 dev-libs/tinyxml opengl? ( media-libs/freeglut !dev-libs/OpenNI2[opengl] ) java? ( >=virtual/jre-1.5 ) java? ( >=dev-java/java-config-2.2.0-r3 ) +RDEPEND=virtual/libusb:1 virtual/libudev virtual/jpeg:0 dev-libs/tinyxml opengl? ( media-libs/freeglut !dev-libs/OpenNI2[opengl] ) java? ( virtual/jre:1.8 ) java? ( >=dev-java/java-config-2.2.0-r3 ) SLOT=0 -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff git-r3 cc875b0c1e9b3bdac1af0f82f3ba29da java-pkg-opt-2 c9d8408eceaa8e56c729df071dd8cb57 java-utils-2 bd56fb0d459d0bad9d07fa32febe53cb ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 97566c1a256d07b00848aa767e38a352 preserve-libs dbc9f8d2d49c66467bc327fddd8317bd strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa vcs-clean b690a7e9b6c497cf59326a7545df4283 versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=311f400f4eee811133c8f34a042075d0 +_eclasses_=git-r3 cc875b0c1e9b3bdac1af0f82f3ba29da java-pkg-opt-2 c9d8408eceaa8e56c729df071dd8cb57 java-utils-2 bd56fb0d459d0bad9d07fa32febe53cb multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_md5_=8151ac3529ddb9e6170637152854109d diff --git a/metadata/md5-cache/dev-libs/OpenNI2-2.2_beta2 b/metadata/md5-cache/dev-libs/OpenNI2-2.2_beta2 deleted file mode 100644 index b81c0c539155..000000000000 --- a/metadata/md5-cache/dev-libs/OpenNI2-2.2_beta2 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile install preinst prepare setup -DEPEND=virtual/libusb:1 virtual/libudev virtual/jpeg:0 opengl? ( media-libs/freeglut ) java? ( >=virtual/jre-1.5:* ) doc? ( app-doc/doxygen ) java? ( >=virtual/jdk-1.5:* ) java? ( >=dev-java/java-config-2.2.0-r3 ) -DESCRIPTION=OpenNI2 SDK -EAPI=5 -HOMEPAGE=https://structure.io/openni -IUSE=doc java neon opengl static-libs elibc_FreeBSD java -KEYWORDS=~amd64 ~arm -LICENSE=Apache-2.0 -RDEPEND=virtual/libusb:1 virtual/libudev virtual/jpeg:0 opengl? ( media-libs/freeglut ) java? ( >=virtual/jre-1.5:* ) java? ( >=dev-java/java-config-2.2.0-r3 ) -SLOT=0 -SRC_URI=https://github.com/occipital/OpenNI2/archive/2.2-beta2.tar.gz -> OpenNI2-2.2_beta2.tar.gz -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic 4134b5c0fb719b9161d10bdaba9e09e5 java-pkg-opt-2 c9d8408eceaa8e56c729df071dd8cb57 java-utils-2 bd56fb0d459d0bad9d07fa32febe53cb ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 97566c1a256d07b00848aa767e38a352 preserve-libs dbc9f8d2d49c66467bc327fddd8317bd strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa vcs-clean b690a7e9b6c497cf59326a7545df4283 versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=b11b2eff6cb93d49105f176e0c3cb760 diff --git a/metadata/md5-cache/dev-libs/OpenNI2-2.2_beta2-r1 b/metadata/md5-cache/dev-libs/OpenNI2-2.2_beta2-r1 new file mode 100644 index 000000000000..2e7698d34ab9 --- /dev/null +++ b/metadata/md5-cache/dev-libs/OpenNI2-2.2_beta2-r1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile install preinst prepare setup +DEPEND=virtual/libusb:1 virtual/libudev virtual/jpeg:0 opengl? ( media-libs/freeglut ) java? ( virtual/jre:1.8 ) doc? ( app-doc/doxygen ) java? ( virtual/jdk:1.8 ) java? ( >=dev-java/java-config-2.2.0-r3 ) +DESCRIPTION=OpenNI2 SDK +EAPI=7 +HOMEPAGE=https://structure.io/openni +IUSE=doc java neon opengl static-libs elibc_FreeBSD java +KEYWORDS=~amd64 ~arm +LICENSE=Apache-2.0 +RDEPEND=virtual/libusb:1 virtual/libudev virtual/jpeg:0 opengl? ( media-libs/freeglut ) java? ( virtual/jre:1.8 ) java? ( >=dev-java/java-config-2.2.0-r3 ) +SLOT=0 +SRC_URI=https://github.com/occipital/OpenNI2/archive/2.2-beta2.tar.gz -> OpenNI2-2.2_beta2.tar.gz +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic 4134b5c0fb719b9161d10bdaba9e09e5 java-pkg-opt-2 c9d8408eceaa8e56c729df071dd8cb57 java-utils-2 bd56fb0d459d0bad9d07fa32febe53cb multilib 97566c1a256d07b00848aa767e38a352 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa wrapper 4251d4c84c25f59094fd557e0063a974 +_md5_=ddef1f7c0858b4722aaa07b074c2e754 diff --git a/metadata/md5-cache/dev-libs/OpenNI2-9999 b/metadata/md5-cache/dev-libs/OpenNI2-9999 index 578413364b5e..e946c729e01c 100644 --- a/metadata/md5-cache/dev-libs/OpenNI2-9999 +++ b/metadata/md5-cache/dev-libs/OpenNI2-9999 @@ -1,12 +1,13 @@ +BDEPEND=>=dev-vcs/git-1.8.2.1[curl] DEFINED_PHASES=compile install preinst prepare setup unpack -DEPEND=virtual/libusb:1 virtual/libudev virtual/jpeg:0 opengl? ( media-libs/freeglut ) java? ( >=virtual/jre-1.5:* ) doc? ( app-doc/doxygen ) java? ( >=virtual/jdk-1.5:* ) >=dev-vcs/git-1.8.2.1[curl] java? ( >=dev-java/java-config-2.2.0-r3 ) +DEPEND=virtual/libusb:1 virtual/libudev virtual/jpeg:0 opengl? ( media-libs/freeglut ) java? ( virtual/jre:1.8 ) doc? ( app-doc/doxygen ) java? ( virtual/jdk:1.8 ) java? ( >=dev-java/java-config-2.2.0-r3 ) DESCRIPTION=OpenNI2 SDK -EAPI=5 +EAPI=7 HOMEPAGE=https://structure.io/openni IUSE=doc java neon opengl static-libs elibc_FreeBSD java LICENSE=Apache-2.0 PROPERTIES=live -RDEPEND=virtual/libusb:1 virtual/libudev virtual/jpeg:0 opengl? ( media-libs/freeglut ) java? ( >=virtual/jre-1.5:* ) java? ( >=dev-java/java-config-2.2.0-r3 ) +RDEPEND=virtual/libusb:1 virtual/libudev virtual/jpeg:0 opengl? ( media-libs/freeglut ) java? ( virtual/jre:1.8 ) java? ( >=dev-java/java-config-2.2.0-r3 ) SLOT=0 -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic 4134b5c0fb719b9161d10bdaba9e09e5 git-r3 cc875b0c1e9b3bdac1af0f82f3ba29da java-pkg-opt-2 c9d8408eceaa8e56c729df071dd8cb57 java-utils-2 bd56fb0d459d0bad9d07fa32febe53cb ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 97566c1a256d07b00848aa767e38a352 preserve-libs dbc9f8d2d49c66467bc327fddd8317bd strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa vcs-clean b690a7e9b6c497cf59326a7545df4283 versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=2c5aa2703b715cec4a5c9b1066507398 +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic 4134b5c0fb719b9161d10bdaba9e09e5 git-r3 cc875b0c1e9b3bdac1af0f82f3ba29da java-pkg-opt-2 c9d8408eceaa8e56c729df071dd8cb57 java-utils-2 bd56fb0d459d0bad9d07fa32febe53cb multilib 97566c1a256d07b00848aa767e38a352 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa wrapper 4251d4c84c25f59094fd557e0063a974 +_md5_=21a62bd7506e946145177b606b781960 diff --git a/metadata/md5-cache/dev-libs/collada-dom-2.5.0 b/metadata/md5-cache/dev-libs/collada-dom-2.5.0 index f9f6c04a48ba..d3d306003212 100644 --- a/metadata/md5-cache/dev-libs/collada-dom-2.5.0 +++ b/metadata/md5-cache/dev-libs/collada-dom-2.5.0 @@ -3,10 +3,10 @@ DEPEND=dev-libs/boost:= sys-libs/zlib:=[minizip] dev-libs/libxml2 dev-libs/libpc DESCRIPTION=COLLADA Document Object Model (DOM) C++ Library EAPI=6 HOMEPAGE=https://github.com/rdiankov/collada-dom -KEYWORDS=~amd64 ~arm ~hppa +KEYWORDS=~amd64 ~arm ~hppa ~ppc64 LICENSE=MIT RDEPEND=dev-libs/boost:= sys-libs/zlib:=[minizip] dev-libs/libxml2 dev-libs/libpcre[cxx] SLOT=0/25 SRC_URI=https://github.com/rdiankov/collada-dom/archive/v2.5.0.tar.gz -> collada-dom-2.5.0.tar.gz _eclasses_=cmake-utils 12008d68ebfd61f49a377c49f83558a8 desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic 4134b5c0fb719b9161d10bdaba9e09e5 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils a4dab848a4490e8e48cf0baab3e61bc2 preserve-libs dbc9f8d2d49c66467bc327fddd8317bd strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa vcs-clean b690a7e9b6c497cf59326a7545df4283 wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils 27f9a2f19502b925ac117bd657aa2979 -_md5_=6878cb1430bf083dd05d4fcea7938ed4 +_md5_=6c6319f224ce65168fc63c5a9b698a1e diff --git a/metadata/md5-cache/dev-libs/collada-dom-9999 b/metadata/md5-cache/dev-libs/collada-dom-9999 index a6312af3edc1..f4b5408ed618 100644 --- a/metadata/md5-cache/dev-libs/collada-dom-9999 +++ b/metadata/md5-cache/dev-libs/collada-dom-9999 @@ -8,4 +8,4 @@ PROPERTIES=live RDEPEND=dev-libs/boost:= sys-libs/zlib:=[minizip] dev-libs/libxml2:= dev-libs/libpcre:=[cxx] SLOT=0/25 _eclasses_=cmake-utils 12008d68ebfd61f49a377c49f83558a8 desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic 4134b5c0fb719b9161d10bdaba9e09e5 git-r3 cc875b0c1e9b3bdac1af0f82f3ba29da ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils a4dab848a4490e8e48cf0baab3e61bc2 preserve-libs dbc9f8d2d49c66467bc327fddd8317bd strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa vcs-clean b690a7e9b6c497cf59326a7545df4283 wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils 27f9a2f19502b925ac117bd657aa2979 -_md5_=3211e14ca6e0270c6f162cb1c08cfccc +_md5_=df6fbf587042a61e10a8236ce0553b84 diff --git a/metadata/md5-cache/dev-libs/imath-3.0.1 b/metadata/md5-cache/dev-libs/imath-3.0.1 index b942a6495075..db790d62a95e 100644 --- a/metadata/md5-cache/dev-libs/imath-3.0.1 +++ b/metadata/md5-cache/dev-libs/imath-3.0.1 @@ -5,7 +5,7 @@ DESCRIPTION=Imath basic math package EAPI=7 HOMEPAGE=https://imath.readthedocs.io IUSE=doc large-stack python static-libs test python_single_target_python3_8 python_single_target_python3_9 -KEYWORDS=~amd64 ~hppa ~ia64 ~sparc ~x86 ~amd64-linux ~x86-linux +KEYWORDS=~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux LICENSE=BSD RDEPEND=!media-libs/ilmbase sys-libs/zlib python? ( !dev-python/pyilmbase python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) python_single_target_python3_8? ( dev-libs/boost:=[python?,python_targets_python3_8(-)] dev-python/numpy[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-libs/boost:=[python?,python_targets_python3_9(-)] dev-python/numpy[python_targets_python3_9(-)] ) ) REQUIRED_USE=^^ ( python_single_target_python3_8 python_single_target_python3_9 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0/27 SRC_URI=https://github.com/AcademySoftwareFoundation/Imath/archive/refs/tags/v3.0.1.tar.gz -> imath-3.0.1.tar.gz _eclasses_=cmake 518e4c9a6a38dfd7afc54b6a7c5de3da eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic 4134b5c0fb719b9161d10bdaba9e09e5 multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils a4dab848a4490e8e48cf0baab3e61bc2 python-single-r1 73f113f91928e0d16bceb65ecbcd8e75 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils 27f9a2f19502b925ac117bd657aa2979 -_md5_=ad0765e863df644b61934f0ec72b03d3 +_md5_=295ee3c53eddabdff63366bd9909d1f3 diff --git a/metadata/md5-cache/dev-libs/libedit-20210216.3.1 b/metadata/md5-cache/dev-libs/libedit-20210216.3.1 deleted file mode 100644 index e3d784b4d943..000000000000 --- a/metadata/md5-cache/dev-libs/libedit-20210216.3.1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install test -DEPEND=>=sys-libs/ncurses-5.9-r3[static-libs?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] -DESCRIPTION=BSD replacement for libreadline -EAPI=7 -HOMEPAGE=https://thrysoee.dk/editline/ -IUSE=static-libs abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 split-usr -KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos -LICENSE=BSD-2 -RDEPEND=>=sys-libs/ncurses-5.9-r3[static-libs?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] -SLOT=0 -SRC_URI=https://thrysoee.dk/editline/libedit-20210216-3.1.tar.gz -_eclasses_=multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multilib-build effd4508d5e8209273d82d8f67ee93a0 multilib-minimal 7187f259f207bf5b69e4ff01498a7269 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa usr-ldscript 6ae04038b0001994e6be364ffc1c0156 -_md5_=2ca2b7648588b390b32927d1cea1a89e diff --git a/metadata/md5-cache/dev-libs/libedit-20210419.3.1 b/metadata/md5-cache/dev-libs/libedit-20210419.3.1 index 8ac0fd69fdb9..da800a84628d 100644 --- a/metadata/md5-cache/dev-libs/libedit-20210419.3.1 +++ b/metadata/md5-cache/dev-libs/libedit-20210419.3.1 @@ -4,10 +4,10 @@ DESCRIPTION=BSD replacement for libreadline EAPI=7 HOMEPAGE=https://thrysoee.dk/editline/ IUSE=static-libs abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 split-usr -KEYWORDS=~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos +KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos LICENSE=BSD-2 RDEPEND=>=sys-libs/ncurses-5.9-r3[static-libs?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] SLOT=0 SRC_URI=https://thrysoee.dk/editline/libedit-20210419-3.1.tar.gz _eclasses_=multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multilib-build effd4508d5e8209273d82d8f67ee93a0 multilib-minimal 7187f259f207bf5b69e4ff01498a7269 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa usr-ldscript 6ae04038b0001994e6be364ffc1c0156 -_md5_=ba4ae693531a4b66fa6ec466fba63e5e +_md5_=2ca2b7648588b390b32927d1cea1a89e diff --git a/metadata/md5-cache/dev-libs/libffi-3.4.2 b/metadata/md5-cache/dev-libs/libffi-3.4.2 new file mode 100644 index 000000000000..39c5329fe2f6 --- /dev/null +++ b/metadata/md5-cache/dev-libs/libffi-3.4.2 @@ -0,0 +1,13 @@ +BDEPEND=test? ( dev-util/dejagnu ) +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=a portable, high level programming interface to various calling conventions +EAPI=7 +HOMEPAGE=https://sourceware.org/libffi/ +IUSE=debug exec-static-trampoline pax-kernel pax_kernel static-libs test abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 +LICENSE=MIT +REQUIRED_USE=pax_kernel? ( pax-kernel ) +RESTRICT=!test? ( test ) +SLOT=0/8 +SRC_URI=https://github.com/libffi/libffi/releases/download/v3.4.2/libffi-3.4.2.tar.gz +_eclasses_=multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multilib-build effd4508d5e8209273d82d8f67ee93a0 multilib-minimal 7187f259f207bf5b69e4ff01498a7269 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_md5_=d48a59670a0ee38364d7fc6c958aa7e4 diff --git a/metadata/md5-cache/dev-libs/libfmt-7.1.3 b/metadata/md5-cache/dev-libs/libfmt-7.1.3 index 7ec140d16953..5b6221fc967f 100644 --- a/metadata/md5-cache/dev-libs/libfmt-7.1.3 +++ b/metadata/md5-cache/dev-libs/libfmt-7.1.3 @@ -4,10 +4,10 @@ DESCRIPTION=Small, safe and fast formatting library EAPI=7 HOMEPAGE=https://github.com/fmtlib/fmt IUSE=test abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 -KEYWORDS=amd64 arm ~arm64 ppc ppc64 x86 +KEYWORDS=amd64 arm arm64 ppc ppc64 x86 LICENSE=MIT RESTRICT=!test? ( test ) SLOT=0/7 SRC_URI=https://github.com/fmtlib/fmt/archive/7.1.3.tar.gz -> libfmt-7.1.3.tar.gz _eclasses_=cmake 518e4c9a6a38dfd7afc54b6a7c5de3da cmake-multilib ec7d503d01bc4e2f2692f8bf90a64e41 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic 4134b5c0fb719b9161d10bdaba9e09e5 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multilib-build effd4508d5e8209273d82d8f67ee93a0 multilib-minimal 7187f259f207bf5b69e4ff01498a7269 multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils a4dab848a4490e8e48cf0baab3e61bc2 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils 27f9a2f19502b925ac117bd657aa2979 -_md5_=6e386f32999b9a5500468bd4aa251b2c +_md5_=3e71a6228c18dc01b777e48837990eee diff --git a/metadata/md5-cache/dev-libs/libuv-1.41.1 b/metadata/md5-cache/dev-libs/libuv-1.41.1 new file mode 100644 index 000000000000..f9b10d79a684 --- /dev/null +++ b/metadata/md5-cache/dev-libs/libuv-1.41.1 @@ -0,0 +1,12 @@ +BDEPEND=sys-devel/libtool virtual/pkgconfig sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.2-r1:1.16 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Cross-platform asychronous I/O +EAPI=7 +HOMEPAGE=https://github.com/libuv/libuv +IUSE=abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +LICENSE=BSD BSD-2 ISC MIT +SLOT=0/1 +SRC_URI=https://github.com/libuv/libuv/archive/v1.41.1.tar.gz -> libuv-1.41.1.tar.gz +_eclasses_=autotools 9e63f92c2a5d867fea55ecb160c7d354 gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multilib-build effd4508d5e8209273d82d8f67ee93a0 multilib-minimal 7187f259f207bf5b69e4ff01498a7269 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_md5_=ccb98f50dc38ba13cef6472ea20fd0dd diff --git a/metadata/md5-cache/dev-libs/protobuf-3.17.3 b/metadata/md5-cache/dev-libs/protobuf-3.17.3 index e5693e171753..a9ee352bb690 100644 --- a/metadata/md5-cache/dev-libs/protobuf-3.17.3 +++ b/metadata/md5-cache/dev-libs/protobuf-3.17.3 @@ -5,11 +5,11 @@ DESCRIPTION=Google's Protocol Buffers - Extensible mechanism for serializing str EAPI=7 HOMEPAGE=https://developers.google.com/protocol-buffers/ https://github.com/protocolbuffers/protobuf IUSE=emacs examples static-libs test zlib abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 -KEYWORDS=~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos +KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos LICENSE=BSD RDEPEND=emacs? ( app-editors/emacs:* ) zlib? ( sys-libs/zlib[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) RESTRICT=!test? ( test ) SLOT=0/28 SRC_URI=https://github.com/protocolbuffers/protobuf/archive/v3.17.3.tar.gz -> protobuf-3.17.3.tar.gz _eclasses_=autotools 9e63f92c2a5d867fea55ecb160c7d354 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common cf4fd1b0835b9f3e638724840468064a eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic 4134b5c0fb719b9161d10bdaba9e09e5 gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multilib-build effd4508d5e8209273d82d8f67ee93a0 multilib-minimal 7187f259f207bf5b69e4ff01498a7269 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=967b6c49e9fd5852731a2a65950b2e79 +_md5_=f2794b32f18b582a0a655739e262c94f diff --git a/metadata/md5-cache/dev-libs/re2-0.2021.06.01 b/metadata/md5-cache/dev-libs/re2-0.2021.06.01 index ac80cfdb1023..6ef2ed32f239 100644 --- a/metadata/md5-cache/dev-libs/re2-0.2021.06.01 +++ b/metadata/md5-cache/dev-libs/re2-0.2021.06.01 @@ -5,10 +5,10 @@ DESCRIPTION=An efficient, principled regular expression library EAPI=7 HOMEPAGE=https://github.com/google/re2 IUSE=icu abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 -KEYWORDS=~alpha amd64 arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 LICENSE=BSD RDEPEND=icu? ( dev-libs/icu:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) SLOT=0/9 SRC_URI=https://github.com/google/re2/archive/2021-06-01.tar.gz -> re2-2021-06-01.tar.gz _eclasses_=multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multilib-build effd4508d5e8209273d82d8f67ee93a0 multilib-minimal 7187f259f207bf5b69e4ff01498a7269 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa -_md5_=b61d8daadbfd1b7f82f1d36b37b8f532 +_md5_=045ec39486db8cb8318b544e27410990 diff --git a/metadata/md5-cache/dev-libs/tvision-2.2.3 b/metadata/md5-cache/dev-libs/tvision-2.2.3 index 7dc2e4ac0d93..61b0d4c3c0dc 100644 --- a/metadata/md5-cache/dev-libs/tvision-2.2.3 +++ b/metadata/md5-cache/dev-libs/tvision-2.2.3 @@ -11,4 +11,4 @@ RDEPEND=dev-libs/libbsd media-libs/allegro:0[X] sys-apps/util-linux sys-libs/ncu SLOT=0 SRC_URI=https://github.com/set-soft/tvision/releases/download/v2.2.3/rhtvision-2.2.3.src.tar.gz -> tvision-2.2.3.tar.gz _eclasses_=multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa -_md5_=7ff0937b136c64983821ac67c3b2c985 +_md5_=fec536fe71bf7b5053923812b82f043f diff --git a/metadata/md5-cache/dev-perl/File-Copy-Recursive-Reduced-0.6.0 b/metadata/md5-cache/dev-perl/File-Copy-Recursive-Reduced-0.6.0 index 6e72f8e4d911..529376c7def0 100644 --- a/metadata/md5-cache/dev-perl/File-Copy-Recursive-Reduced-0.6.0 +++ b/metadata/md5-cache/dev-perl/File-Copy-Recursive-Reduced-0.6.0 @@ -5,11 +5,11 @@ DESCRIPTION=Recursive copying of files and directories within Perl 5 toolchain EAPI=8 HOMEPAGE=https://metacpan.org/release/File-Copy-Recursive-Reduced IUSE=test -KEYWORDS=~amd64 ~arm ~arm64 ~hppa +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 LICENSE=|| ( Artistic GPL-1+ ) RDEPEND=virtual/perl-File-Spec dev-lang/perl:= RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://cpan/authors/id/J/JK/JKEENAN/File-Copy-Recursive-Reduced-0.006.tar.gz _eclasses_=multiprocessing 61c959fc55c15c00bbb1079d6a71370b perl-functions fea344a91ebf37efadf172c6a3de5a72 perl-module 0ee2b2b92175720c966a5608c62b458d readme.gentoo-r1 e51390d48521eb3d400db57d557b7530 -_md5_=a86b78bc57408c8c0975fb5d50953c04 +_md5_=5e31bf0cba73fc8820c699aa3731f67e diff --git a/metadata/md5-cache/dev-perl/Lab-VXI11-0.30.0 b/metadata/md5-cache/dev-perl/Lab-VXI11-0.30.0 index b418dcb8e724..f1d8a1eb1e5a 100644 --- a/metadata/md5-cache/dev-perl/Lab-VXI11-0.30.0 +++ b/metadata/md5-cache/dev-perl/Lab-VXI11-0.30.0 @@ -5,11 +5,11 @@ DESCRIPTION=Perl interface to the VXI-11 Test&Measurement backend EAPI=8 HOMEPAGE=https://metacpan.org/release/Lab-VXI11 IUSE=test -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 ~x86 LICENSE=|| ( Artistic GPL-1+ ) RDEPEND=net-libs/libtirpc dev-lang/perl:= RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://cpan/authors/id/A/AM/AMBA/Lab-VXI11-0.03.tar.gz _eclasses_=multiprocessing 61c959fc55c15c00bbb1079d6a71370b perl-functions fea344a91ebf37efadf172c6a3de5a72 perl-module 0ee2b2b92175720c966a5608c62b458d readme.gentoo-r1 e51390d48521eb3d400db57d557b7530 -_md5_=69627795b8c0c38724530aa558b284f3 +_md5_=8c0a4170e4cc71a0beb468c1fb9874c8 diff --git a/metadata/md5-cache/dev-perl/Mail-AuthenticationResults-2.202.101.120 b/metadata/md5-cache/dev-perl/Mail-AuthenticationResults-2.202.101.120 index 09704aa8b0ac..501f808acd2b 100644 --- a/metadata/md5-cache/dev-perl/Mail-AuthenticationResults-2.202.101.120 +++ b/metadata/md5-cache/dev-perl/Mail-AuthenticationResults-2.202.101.120 @@ -5,11 +5,11 @@ DESCRIPTION=Object Oriented Authentication-Results Headers EAPI=8 HOMEPAGE=https://metacpan.org/release/Mail-AuthenticationResults IUSE=test -KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~sparc +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc LICENSE=|| ( Artistic GPL-1+ ) RDEPEND=virtual/perl-Carp dev-perl/JSON virtual/perl-Scalar-List-Utils dev-lang/perl:= RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://cpan/authors/id/M/MB/MBRADSHAW/Mail-AuthenticationResults-2.20210112.tar.gz _eclasses_=multiprocessing 61c959fc55c15c00bbb1079d6a71370b perl-functions fea344a91ebf37efadf172c6a3de5a72 perl-module 0ee2b2b92175720c966a5608c62b458d readme.gentoo-r1 e51390d48521eb3d400db57d557b7530 -_md5_=640f75a442cc2269619fec5b286ab2c5 +_md5_=b45b4ac049ca4ed0d12869da2a8d6480 diff --git a/metadata/md5-cache/dev-perl/Mail-DKIM-1.202.9.070 b/metadata/md5-cache/dev-perl/Mail-DKIM-1.202.9.070 index 1f218410a68a..6672ea34454f 100644 --- a/metadata/md5-cache/dev-perl/Mail-DKIM-1.202.9.070 +++ b/metadata/md5-cache/dev-perl/Mail-DKIM-1.202.9.070 @@ -5,11 +5,11 @@ DESCRIPTION=Signs/verifies Internet mail using DKIM message signatures EAPI=8 HOMEPAGE=https://metacpan.org/release/Mail-DKIM IUSE=test examples -KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~sparc +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc LICENSE=|| ( Artistic GPL-1+ ) RDEPEND=virtual/perl-Carp >=dev-perl/Crypt-OpenSSL-RSA-0.240.0 virtual/perl-Digest-SHA virtual/perl-MIME-Base64 dev-perl/MailTools dev-perl/Mail-AuthenticationResults dev-perl/Net-DNS dev-lang/perl:= RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://cpan/authors/id/M/MB/MBRADSHAW/Mail-DKIM-1.20200907.tar.gz _eclasses_=multiprocessing 61c959fc55c15c00bbb1079d6a71370b perl-functions fea344a91ebf37efadf172c6a3de5a72 perl-module 0ee2b2b92175720c966a5608c62b458d readme.gentoo-r1 e51390d48521eb3d400db57d557b7530 -_md5_=5f0190f7514385d6ab4cdfdd8e42f02f +_md5_=e89a30b16f1ae4b46bb019a71b485254 diff --git a/metadata/md5-cache/dev-perl/Manifest.gz b/metadata/md5-cache/dev-perl/Manifest.gz index 08399399eab2..f985785dd8df 100644 Binary files a/metadata/md5-cache/dev-perl/Manifest.gz and b/metadata/md5-cache/dev-perl/Manifest.gz differ diff --git a/metadata/md5-cache/dev-perl/Module-Build-XSUtil-0.190.0 b/metadata/md5-cache/dev-perl/Module-Build-XSUtil-0.190.0 index 352b2013516b..6a6bf5bb38c9 100644 --- a/metadata/md5-cache/dev-perl/Module-Build-XSUtil-0.190.0 +++ b/metadata/md5-cache/dev-perl/Module-Build-XSUtil-0.190.0 @@ -5,11 +5,11 @@ DESCRIPTION=A Module::Build class for building XS modules EAPI=8 HOMEPAGE=https://metacpan.org/release/Module-Build-XSUtil IUSE=examples test -KEYWORDS=~amd64 ~arm ~arm64 ~hppa +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 LICENSE=|| ( Artistic GPL-1+ ) RDEPEND=dev-perl/Devel-CheckCompiler virtual/perl-Devel-PPPort virtual/perl-Exporter virtual/perl-ExtUtils-CBuilder virtual/perl-File-Path virtual/perl-XSLoader virtual/perl-parent dev-lang/perl:= RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://cpan/authors/id/H/HI/HIDEAKIO/Module-Build-XSUtil-0.19.tar.gz _eclasses_=multiprocessing 61c959fc55c15c00bbb1079d6a71370b perl-functions fea344a91ebf37efadf172c6a3de5a72 perl-module 0ee2b2b92175720c966a5608c62b458d readme.gentoo-r1 e51390d48521eb3d400db57d557b7530 -_md5_=eca4d2017fbc971a42f8a2b1ac8cd742 +_md5_=2e1ba403f6398c374760f7d405a57bca diff --git a/metadata/md5-cache/dev-perl/Module-ScanDeps-1.310.0 b/metadata/md5-cache/dev-perl/Module-ScanDeps-1.310.0 new file mode 100644 index 000000000000..82f03209d005 --- /dev/null +++ b/metadata/md5-cache/dev-perl/Module-ScanDeps-1.310.0 @@ -0,0 +1,15 @@ +BDEPEND=virtual/perl-File-Spec virtual/perl-File-Temp virtual/perl-Getopt-Long virtual/perl-Module-Metadata virtual/perl-Text-ParseWords virtual/perl-version >=virtual/perl-ExtUtils-MakeMaker-6.590.0 test? ( virtual/perl-Test-Simple dev-perl/prefork dev-perl/Module-Pluggable dev-perl/Test-Requires ) dev-lang/perl test? ( virtual/perl-Test-Simple ) +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-lang/perl +DESCRIPTION=Recursively scan Perl code for dependencies +EAPI=8 +HOMEPAGE=https://metacpan.org/release/Module-ScanDeps +IUSE=test +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~ppc-macos ~x64-macos +LICENSE=|| ( Artistic GPL-1+ ) +RDEPEND=virtual/perl-File-Spec virtual/perl-File-Temp virtual/perl-Getopt-Long virtual/perl-Module-Metadata virtual/perl-Text-ParseWords virtual/perl-version dev-lang/perl:= +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://cpan/authors/id/R/RS/RSCHUPP/Module-ScanDeps-1.31.tar.gz +_eclasses_=multiprocessing 61c959fc55c15c00bbb1079d6a71370b perl-functions fea344a91ebf37efadf172c6a3de5a72 perl-module 0ee2b2b92175720c966a5608c62b458d readme.gentoo-r1 e51390d48521eb3d400db57d557b7530 +_md5_=79b7060e5046703ed80f91b9b3af4594 diff --git a/metadata/md5-cache/dev-perl/Module-Signature-0.870.0 b/metadata/md5-cache/dev-perl/Module-Signature-0.870.0 new file mode 100644 index 000000000000..39b3c23c36eb --- /dev/null +++ b/metadata/md5-cache/dev-perl/Module-Signature-0.870.0 @@ -0,0 +1,15 @@ +BDEPEND=dev-perl/Crypt-OpenPGP app-crypt/gnupg virtual/perl-File-Temp >=virtual/perl-ExtUtils-MakeMaker-6.360.0 test? ( dev-perl/IPC-Run ) dev-lang/perl test? ( virtual/perl-Test-Simple ) +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-lang/perl +DESCRIPTION=Module signature file manipulation +EAPI=8 +HOMEPAGE=https://metacpan.org/release/Module-Signature +IUSE=test +KEYWORDS=~amd64 ~x86 +LICENSE=CC0-1.0 || ( Artistic GPL-2+ ) +RDEPEND=dev-perl/Crypt-OpenPGP app-crypt/gnupg virtual/perl-File-Temp dev-lang/perl:= +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://cpan/authors/id/A/AU/AUDREYT/Module-Signature-0.87.tar.gz +_eclasses_=multiprocessing 61c959fc55c15c00bbb1079d6a71370b perl-functions fea344a91ebf37efadf172c6a3de5a72 perl-module 0ee2b2b92175720c966a5608c62b458d readme.gentoo-r1 e51390d48521eb3d400db57d557b7530 +_md5_=b10e168ef6af24b059e43da48ff6115c diff --git a/metadata/md5-cache/dev-perl/Module-Starter-1.770.0 b/metadata/md5-cache/dev-perl/Module-Starter-1.770.0 new file mode 100644 index 000000000000..060f6bc42888 --- /dev/null +++ b/metadata/md5-cache/dev-perl/Module-Starter-1.770.0 @@ -0,0 +1,15 @@ +BDEPEND=virtual/perl-File-Path virtual/perl-File-Spec virtual/perl-Getopt-Long dev-perl/Module-Runtime >=virtual/perl-Pod-Parser-1.210.0 >=dev-perl/Software-License-0.103.5 >=virtual/perl-Test-Harness-0.210.0 >=virtual/perl-Test-Simple-0.940.0 virtual/perl-parent >=virtual/perl-version-0.770.0 virtual/perl-ExtUtils-MakeMaker dev-lang/perl test? ( virtual/perl-Test-Simple ) +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-lang/perl +DESCRIPTION=A simple starter kit for any module +EAPI=8 +HOMEPAGE=https://metacpan.org/release/Module-Starter +IUSE=test +KEYWORDS=~amd64 ~x86 +LICENSE=|| ( Artistic GPL-1+ ) +RDEPEND=virtual/perl-File-Path virtual/perl-File-Spec virtual/perl-Getopt-Long dev-perl/Module-Runtime >=virtual/perl-Pod-Parser-1.210.0 >=dev-perl/Software-License-0.103.5 >=virtual/perl-Test-Harness-0.210.0 >=virtual/perl-Test-Simple-0.940.0 virtual/perl-parent >=virtual/perl-version-0.770.0 dev-lang/perl:= +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://cpan/authors/id/D/DB/DBOOK/Module-Starter-1.77.tar.gz +_eclasses_=multiprocessing 61c959fc55c15c00bbb1079d6a71370b perl-functions fea344a91ebf37efadf172c6a3de5a72 perl-module 0ee2b2b92175720c966a5608c62b458d readme.gentoo-r1 e51390d48521eb3d400db57d557b7530 +_md5_=c06337cf4535f32bba9fb25938dd810f diff --git a/metadata/md5-cache/dev-perl/Module-Util-1.90.0 b/metadata/md5-cache/dev-perl/Module-Util-1.90.0 deleted file mode 100644 index 291c77843fc2..000000000000 --- a/metadata/md5-cache/dev-perl/Module-Util-1.90.0 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=>=dev-perl/Module-Build-0.400.0 test? ( virtual/perl-Test-Simple ) dev-lang/perl:=[-build(-)] -DESCRIPTION=Module name tools and transformations -EAPI=5 -HOMEPAGE=https://metacpan.org/release/Module-Util -IUSE=test -KEYWORDS=amd64 x86 -LICENSE=|| ( Artistic GPL-1+ ) -RDEPEND=dev-lang/perl:=[-build(-)] -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=mirror://cpan/authors/id/M/MA/MATTLAW/Module-Util-1.09.tar.gz -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b perl-functions fea344a91ebf37efadf172c6a3de5a72 perl-module 0ee2b2b92175720c966a5608c62b458d preserve-libs dbc9f8d2d49c66467bc327fddd8317bd strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa unpacker 2eeba54233fa41bdb15dcddcb63fba3a vcs-clean b690a7e9b6c497cf59326a7545df4283 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=eae6b7091ace663fff132689d47d52c4 diff --git a/metadata/md5-cache/dev-perl/Module-Util-1.90.0-r1 b/metadata/md5-cache/dev-perl/Module-Util-1.90.0-r1 new file mode 100644 index 000000000000..d86bd4b4a73a --- /dev/null +++ b/metadata/md5-cache/dev-perl/Module-Util-1.90.0-r1 @@ -0,0 +1,15 @@ +BDEPEND=>=dev-perl/Module-Build-0.400.0 test? ( virtual/perl-Test-Simple ) dev-lang/perl test? ( virtual/perl-Test-Simple ) +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-lang/perl +DESCRIPTION=Module name tools and transformations +EAPI=8 +HOMEPAGE=https://metacpan.org/release/Module-Util +IUSE=test +KEYWORDS=amd64 x86 +LICENSE=|| ( Artistic GPL-1+ ) +RDEPEND=dev-lang/perl:= +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://cpan/authors/id/M/MA/MATTLAW/Module-Util-1.09.tar.gz +_eclasses_=multiprocessing 61c959fc55c15c00bbb1079d6a71370b perl-functions fea344a91ebf37efadf172c6a3de5a72 perl-module 0ee2b2b92175720c966a5608c62b458d readme.gentoo-r1 e51390d48521eb3d400db57d557b7530 +_md5_=7636a1ba0099659992f412fbaab2e2c6 diff --git a/metadata/md5-cache/dev-perl/Module-Versions-Report-1.60.0-r1 b/metadata/md5-cache/dev-perl/Module-Versions-Report-1.60.0-r1 deleted file mode 100644 index 4009eb29abe7..000000000000 --- a/metadata/md5-cache/dev-perl/Module-Versions-Report-1.60.0-r1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=dev-lang/perl:=[-build(-)] -DESCRIPTION=Report versions of all modules in memory -EAPI=5 -HOMEPAGE=https://metacpan.org/release/Module-Versions-Report -KEYWORDS=amd64 ~ppc x86 -LICENSE=|| ( Artistic GPL-1+ ) -RDEPEND=dev-lang/perl:=[-build(-)] -SLOT=0 -SRC_URI=mirror://cpan/authors/id/J/JE/JESSE/Module-Versions-Report-1.06.tar.gz -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b perl-functions fea344a91ebf37efadf172c6a3de5a72 perl-module 0ee2b2b92175720c966a5608c62b458d preserve-libs dbc9f8d2d49c66467bc327fddd8317bd strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa unpacker 2eeba54233fa41bdb15dcddcb63fba3a vcs-clean b690a7e9b6c497cf59326a7545df4283 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=23ade618047f986d39c3c132d292d1e8 diff --git a/metadata/md5-cache/dev-perl/Module-Versions-Report-1.60.0-r2 b/metadata/md5-cache/dev-perl/Module-Versions-Report-1.60.0-r2 new file mode 100644 index 000000000000..a78b344c83cd --- /dev/null +++ b/metadata/md5-cache/dev-perl/Module-Versions-Report-1.60.0-r2 @@ -0,0 +1,15 @@ +BDEPEND=dev-lang/perl test? ( virtual/perl-Test-Simple ) +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-lang/perl +DESCRIPTION=Report versions of all modules in memory +EAPI=8 +HOMEPAGE=https://metacpan.org/release/Module-Versions-Report +IUSE=test +KEYWORDS=amd64 ~ppc x86 +LICENSE=|| ( Artistic GPL-1+ ) +RDEPEND=dev-lang/perl:= +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://cpan/authors/id/J/JE/JESSE/Module-Versions-Report-1.06.tar.gz +_eclasses_=multiprocessing 61c959fc55c15c00bbb1079d6a71370b perl-functions fea344a91ebf37efadf172c6a3de5a72 perl-module 0ee2b2b92175720c966a5608c62b458d readme.gentoo-r1 e51390d48521eb3d400db57d557b7530 +_md5_=f76c80cf639ac4c22b58d6300f2024f9 diff --git a/metadata/md5-cache/dev-perl/MogileFS-Client-Async-0.031.0 b/metadata/md5-cache/dev-perl/MogileFS-Client-Async-0.031.0 new file mode 100644 index 000000000000..bda12d1daedc --- /dev/null +++ b/metadata/md5-cache/dev-perl/MogileFS-Client-Async-0.031.0 @@ -0,0 +1,15 @@ +BDEPEND=dev-perl/AnyEvent dev-perl/AnyEvent-HTTP dev-perl/File-Slurp dev-perl/IO-AIO dev-perl/libwww-perl >=dev-perl/Linux-PipeMagic-0.30.0 >=dev-perl/MogileFS-Client-1.160.0 dev-perl/Try-Tiny dev-perl/namespace-clean test? ( >=dev-perl/Test-Exception-0.310.0 >=virtual/perl-Test-Simple-0.880.0 ) dev-lang/perl test? ( virtual/perl-Test-Simple ) +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-lang/perl +DESCRIPTION=MogileFS Client using AnyEvent non-blocking IO +EAPI=8 +HOMEPAGE=https://metacpan.org/release/MogileFS-Client-Async +IUSE=test +KEYWORDS=~amd64 ~x86 +LICENSE=|| ( Artistic GPL-1+ ) +RDEPEND=dev-perl/AnyEvent dev-perl/AnyEvent-HTTP dev-perl/File-Slurp dev-perl/IO-AIO dev-perl/libwww-perl >=dev-perl/Linux-PipeMagic-0.30.0 >=dev-perl/MogileFS-Client-1.160.0 dev-perl/Try-Tiny dev-perl/namespace-clean dev-lang/perl:= +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://cpan/authors/id/D/DL/DLAMBLEY/MogileFS-Client-Async-0.031.tar.gz +_eclasses_=multiprocessing 61c959fc55c15c00bbb1079d6a71370b perl-functions fea344a91ebf37efadf172c6a3de5a72 perl-module 0ee2b2b92175720c966a5608c62b458d readme.gentoo-r1 e51390d48521eb3d400db57d557b7530 +_md5_=39d004e9428453372e7a8002484cef60 diff --git a/metadata/md5-cache/dev-perl/USB-LibUSB-0.90.0 b/metadata/md5-cache/dev-perl/USB-LibUSB-0.90.0 index 2bc49f5a2356..7924b82b1cc8 100644 --- a/metadata/md5-cache/dev-perl/USB-LibUSB-0.90.0 +++ b/metadata/md5-cache/dev-perl/USB-LibUSB-0.90.0 @@ -4,11 +4,11 @@ DESCRIPTION=Perl interface to the libusb-1.0 API EAPI=6 HOMEPAGE=https://metacpan.org/release/USB-LibUSB IUSE=test -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 ~x86 LICENSE=|| ( Artistic GPL-1+ ) RDEPEND=virtual/libusb:1 virtual/perl-Carp virtual/perl-Exporter dev-perl/Moo virtual/perl-XSLoader dev-lang/perl:= RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://cpan/authors/id/A/AM/AMBA/USB-LibUSB-0.09.tar.gz _eclasses_=multiprocessing 61c959fc55c15c00bbb1079d6a71370b perl-functions fea344a91ebf37efadf172c6a3de5a72 perl-module 0ee2b2b92175720c966a5608c62b458d -_md5_=27c04799dde3702d9e0b8b024c370ba1 +_md5_=7e7d1b63271d8627bbaee7f51ec7da6e diff --git a/metadata/md5-cache/dev-perl/USB-TMC-0.7.0 b/metadata/md5-cache/dev-perl/USB-TMC-0.7.0 index 1dc1de54d315..cffb9b18a65e 100644 --- a/metadata/md5-cache/dev-perl/USB-TMC-0.7.0 +++ b/metadata/md5-cache/dev-perl/USB-TMC-0.7.0 @@ -4,11 +4,11 @@ DESCRIPTION=Perl interface to the USB Test & Measurement (USBTMC) backend EAPI=6 HOMEPAGE=https://metacpan.org/release/USB-TMC IUSE=test -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 ~x86 LICENSE=|| ( Artistic GPL-1+ ) RDEPEND=virtual/perl-Carp virtual/perl-Data-Dumper dev-perl/Moose dev-perl/MooseX-Params-Validate dev-perl/USB-LibUSB dev-lang/perl:= RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://cpan/authors/id/A/AM/AMBA/USB-TMC-0.007.tar.gz _eclasses_=multiprocessing 61c959fc55c15c00bbb1079d6a71370b perl-functions fea344a91ebf37efadf172c6a3de5a72 perl-module 0ee2b2b92175720c966a5608c62b458d -_md5_=9f927c0341dc5c49b1534720f76a2fc5 +_md5_=df506eb4a399d05f7497449094b9ff00 diff --git a/metadata/md5-cache/dev-python/Faker-8.10.0 b/metadata/md5-cache/dev-python/Faker-8.10.0 new file mode 100644 index 000000000000..005535a925cf --- /dev/null +++ b/metadata/md5-cache/dev-python/Faker-8.10.0 @@ -0,0 +1,15 @@ +BDEPEND=test? ( dev-python/freezegun[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pillow[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,tiff] dev-python/random2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/validators[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) test? ( >=dev-python/python-dateutil-2.4.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/text-unidecode-1.3[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] !dev-ruby/faker >=dev-python/pytest-4.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=A Python package that generates fake data for you +EAPI=8 +HOMEPAGE=https://github.com/joke2k/faker +IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~amd64 ~x86 +LICENSE=MIT +RDEPEND=>=dev-python/python-dateutil-2.4.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/text-unidecode-1.3[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] !dev-ruby/faker python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://pypi/F/Faker/Faker-8.10.0.tar.gz +_eclasses_=distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e20b80360497e6215aed0dd4ca7d6bad python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_md5_=c84b768513e08347afc638daf4125a99 diff --git a/metadata/md5-cache/dev-python/Manifest.gz b/metadata/md5-cache/dev-python/Manifest.gz index f228a0dcc3f9..349ae8897327 100644 Binary files a/metadata/md5-cache/dev-python/Manifest.gz and b/metadata/md5-cache/dev-python/Manifest.gz differ diff --git a/metadata/md5-cache/dev-python/anyio-3.2.1 b/metadata/md5-cache/dev-python/anyio-3.2.1 index add3bab34a20..056d050cd063 100644 --- a/metadata/md5-cache/dev-python/anyio-3.2.1 +++ b/metadata/md5-cache/dev-python/anyio-3.2.1 @@ -4,7 +4,7 @@ DESCRIPTION=Compatibility layer for multiple asynchronous event loop implementat EAPI=7 HOMEPAGE=https://github.com/agronholm/anyio https://pypi.org/project/anyio/ IUSE=test doc python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~amd64 ~arm +KEYWORDS=~amd64 ~arm ~ppc ~ppc64 LICENSE=MIT RDEPEND=>=dev-python/idna-2.8[python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=dev-python/sniffio-1.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?] python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/a/anyio/anyio-3.2.1.tar.gz _eclasses_=distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e20b80360497e6215aed0dd4ca7d6bad python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa -_md5_=b3bff852b6f136fdee71a81745f61bf3 +_md5_=c333689a8ed8bf33f55c9693fbec04dc diff --git a/metadata/md5-cache/dev-python/boto3-1.17.107 b/metadata/md5-cache/dev-python/boto3-1.17.107 new file mode 100644 index 000000000000..8f11860ddc73 --- /dev/null +++ b/metadata/md5-cache/dev-python/boto3-1.17.107 @@ -0,0 +1,15 @@ +BDEPEND=test? ( dev-python/mock[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) doc? ( || ( ( dev-lang/python:3.10 dev-python/sphinx[python_targets_python3_10(-)] dev-python/guzzle_sphinx_theme[python_targets_python3_10(-)] ) ( dev-lang/python:3.9 dev-python/sphinx[python_targets_python3_9(-)] dev-python/guzzle_sphinx_theme[python_targets_python3_9(-)] ) ( dev-lang/python:3.8 dev-python/sphinx[python_targets_python3_8(-)] dev-python/guzzle_sphinx_theme[python_targets_python3_8(-)] ) ) ) test? ( >=dev-python/botocore-1.20.107[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/jmespath-0.7.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/s3transfer-0.3.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/nose-1.3.7-r4[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=The AWS SDK for Python +EAPI=8 +HOMEPAGE=https://github.com/boto/boto3 +IUSE=doc test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux +LICENSE=Apache-2.0 +RDEPEND=>=dev-python/botocore-1.20.107[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/jmespath-0.7.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/s3transfer-0.3.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/boto/boto3/archive/1.17.107.tar.gz -> boto3-1.17.107.tar.gz +_eclasses_=distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e20b80360497e6215aed0dd4ca7d6bad python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_md5_=da4dc8966b899e2a909bab7490a90462 diff --git a/metadata/md5-cache/dev-python/botocore-1.20.107 b/metadata/md5-cache/dev-python/botocore-1.20.107 new file mode 100644 index 000000000000..15c784d0a537 --- /dev/null +++ b/metadata/md5-cache/dev-python/botocore-1.20.107 @@ -0,0 +1,15 @@ +BDEPEND=test? ( dev-python/mock[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/jsonschema[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) doc? ( || ( ( dev-lang/python:3.10 dev-python/sphinx[python_targets_python3_10(-)] dev-python/guzzle_sphinx_theme[python_targets_python3_10(-)] ) ( dev-lang/python:3.9 dev-python/sphinx[python_targets_python3_9(-)] dev-python/guzzle_sphinx_theme[python_targets_python3_9(-)] ) ( dev-lang/python:3.8 dev-python/sphinx[python_targets_python3_8(-)] dev-python/guzzle_sphinx_theme[python_targets_python3_8(-)] ) ) ) test? ( dev-python/six[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/jmespath[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/python-dateutil[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/urllib3-1.25.4[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/nose-1.3.7-r4[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Low-level, data-driven core of boto 3 +EAPI=8 +HOMEPAGE=https://github.com/boto/botocore +IUSE=doc test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux +LICENSE=Apache-2.0 +RDEPEND=dev-python/six[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/jmespath[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/python-dateutil[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/urllib3-1.25.4[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://pypi/b/botocore/botocore-1.20.107.tar.gz +_eclasses_=distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e20b80360497e6215aed0dd4ca7d6bad python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_md5_=ea8c6f49678b6d7e1d241a2c2f6deaae diff --git a/metadata/md5-cache/dev-python/cbor2-5.2.0 b/metadata/md5-cache/dev-python/cbor2-5.2.0 deleted file mode 100644 index 9e986739afa8..000000000000 --- a/metadata/md5-cache/dev-python/cbor2-5.2.0 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=test? ( >=dev-python/pytest-4.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?] ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=Pure Python CBOR (de)serializer with extensive tag support -EAPI=7 -HOMEPAGE=https://github.com/agronholm/cbor2 https://pypi.org/project/cbor2/ -IUSE=test python_targets_python3_8 python_targets_python3_9 -KEYWORDS=amd64 arm arm64 x86 -LICENSE=MIT -RDEPEND=python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] -REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=mirror://pypi/c/cbor2/cbor2-5.2.0.tar.gz -_eclasses_=distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e20b80360497e6215aed0dd4ca7d6bad python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa -_md5_=36a302d837b537a1b67d1f99ceffb553 diff --git a/metadata/md5-cache/dev-python/cbor2-5.3.0 b/metadata/md5-cache/dev-python/cbor2-5.3.0 deleted file mode 100644 index 78e16893bd54..000000000000 --- a/metadata/md5-cache/dev-python/cbor2-5.3.0 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=dev-python/setuptools_scm[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] test? ( >=dev-python/pytest-4.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=Pure Python CBOR (de)serializer with extensive tag support -EAPI=7 -HOMEPAGE=https://github.com/agronholm/cbor2 https://pypi.org/project/cbor2/ -IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~amd64 ~arm ~arm64 ~x86 -LICENSE=MIT -RDEPEND=python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] -REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=mirror://pypi/c/cbor2/cbor2-5.3.0.tar.gz -_eclasses_=distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e20b80360497e6215aed0dd4ca7d6bad python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa -_md5_=9fde662d29fe790730e5c22399b88299 diff --git a/metadata/md5-cache/dev-python/cbor2-5.4.0 b/metadata/md5-cache/dev-python/cbor2-5.4.0 index c26686541630..e1ae44696dec 100644 --- a/metadata/md5-cache/dev-python/cbor2-5.4.0 +++ b/metadata/md5-cache/dev-python/cbor2-5.4.0 @@ -4,7 +4,7 @@ DESCRIPTION=Pure Python CBOR (de)serializer with extensive tag support EAPI=7 HOMEPAGE=https://github.com/agronholm/cbor2 https://pypi.org/project/cbor2/ IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=amd64 arm ~arm64 x86 +KEYWORDS=amd64 arm arm64 x86 LICENSE=MIT RDEPEND=python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/c/cbor2/cbor2-5.4.0.tar.gz _eclasses_=distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e20b80360497e6215aed0dd4ca7d6bad python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa -_md5_=c65512ea54633191a913edce5f4b472e +_md5_=5f2c1b49af45ba21e77c91877066dc2a diff --git a/metadata/md5-cache/dev-python/commentjson-0.9.0 b/metadata/md5-cache/dev-python/commentjson-0.9.0 index a38504fc366f..7aaca051550e 100644 --- a/metadata/md5-cache/dev-python/commentjson-0.9.0 +++ b/metadata/md5-cache/dev-python/commentjson-0.9.0 @@ -4,7 +4,7 @@ DESCRIPTION=Add Python and JavaScript style comments in your JSON files EAPI=7 HOMEPAGE=https://pypi.org/project/commentjson/ https://github.com/vaidik/commentjson/ IUSE=test python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~amd64 ~arm ~arm64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~x86 LICENSE=MIT RDEPEND=dev-python/lark-parser[python_targets_python3_8(-)?,python_targets_python3_9(-)?] python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/vaidik/commentjson/archive/v0.9.0.tar.gz -> commentjson-0.9.0.gh.tar.gz _eclasses_=distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e20b80360497e6215aed0dd4ca7d6bad python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa -_md5_=3050272edc52b4af87e9d74f48b6e55d +_md5_=7c38c80add9a1a1fa6818bdc4d322d0e diff --git a/metadata/md5-cache/dev-python/coreapi-2.3.3-r1 b/metadata/md5-cache/dev-python/coreapi-2.3.3-r1 index c6796d834c02..4619dada752f 100644 --- a/metadata/md5-cache/dev-python/coreapi-2.3.3-r1 +++ b/metadata/md5-cache/dev-python/coreapi-2.3.3-r1 @@ -1,15 +1,15 @@ -BDEPEND=python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?] +BDEPEND=test? ( dev-python/coreschema[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/itypes[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/uritemplate[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/requests[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pytest-4.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] DEFINED_PHASES=compile configure install prepare test -DEPEND=dev-python/coreschema[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/itypes[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/uritemplate[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/requests[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/setuptools[python_targets_python3_8(-)?,python_targets_python3_9(-)?] DESCRIPTION=Python client library for Core API -EAPI=7 +EAPI=8 HOMEPAGE=https://github.com/core-api/python-client -IUSE=python_targets_python3_8 python_targets_python3_9 +IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 KEYWORDS=~amd64 LICENSE=BSD -RDEPEND=dev-python/coreschema[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/itypes[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/uritemplate[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/requests[python_targets_python3_8(-)?,python_targets_python3_9(-)?] python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] -REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 ) +RDEPEND=dev-python/coreschema[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/itypes[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/uritemplate[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/requests[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) +RESTRICT=!test? ( test ) SLOT=0 -SRC_URI=mirror://pypi/c/coreapi/coreapi-2.3.3.tar.gz -_eclasses_=distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e20b80360497e6215aed0dd4ca7d6bad python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa -_md5_=71aad52c16c97c373ec8b8ebc918481d +SRC_URI=https://github.com/core-api/python-client/archive/2.3.3.tar.gz -> core-api-python-client-2.3.3.tar.gz +_eclasses_=distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e20b80360497e6215aed0dd4ca7d6bad python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_md5_=3112074a35fa5745d31b81b1df150400 diff --git a/metadata/md5-cache/dev-python/coreschema-0.0.4 b/metadata/md5-cache/dev-python/coreschema-0.0.4 index 3fcf77ef253b..3192cae222c7 100644 --- a/metadata/md5-cache/dev-python/coreschema-0.0.4 +++ b/metadata/md5-cache/dev-python/coreschema-0.0.4 @@ -1,15 +1,15 @@ -BDEPEND=python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?] +BDEPEND=test? ( dev-python/jinja[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pytest-4.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] DEFINED_PHASES=compile configure install prepare test -DEPEND=dev-python/jinja[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/setuptools[python_targets_python3_8(-)?,python_targets_python3_9(-)?] DESCRIPTION=Core Schema -EAPI=7 +EAPI=8 HOMEPAGE=https://github.com/core-api/python-coreschema -IUSE=python_targets_python3_8 python_targets_python3_9 +IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 KEYWORDS=~amd64 LICENSE=BSD -RDEPEND=dev-python/jinja[python_targets_python3_8(-)?,python_targets_python3_9(-)?] python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] -REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 ) +RDEPEND=dev-python/jinja[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) +RESTRICT=!test? ( test ) SLOT=0 -SRC_URI=mirror://pypi/c/coreschema/coreschema-0.0.4.tar.gz -_eclasses_=distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e20b80360497e6215aed0dd4ca7d6bad python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa -_md5_=5f74d21ca634785dc44bff4fe5a61b0e +SRC_URI=https://github.com/core-api/python-coreschema/archive/0.0.4.tar.gz -> python-coreschema-0.0.4.tar.gz +_eclasses_=distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e20b80360497e6215aed0dd4ca7d6bad python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_md5_=1200321cd1cabb2af214401d3e0bead1 diff --git a/metadata/md5-cache/dev-python/dictdiffer-0.8.1 b/metadata/md5-cache/dev-python/dictdiffer-0.8.1 index 40137655ebcd..f44b27a1f80a 100644 --- a/metadata/md5-cache/dev-python/dictdiffer-0.8.1 +++ b/metadata/md5-cache/dev-python/dictdiffer-0.8.1 @@ -4,7 +4,7 @@ DESCRIPTION=Dictdiffer is a library that helps you to diff and patch dictionarie EAPI=7 HOMEPAGE=https://github.com/inveniosoftware/dictdiffer/ https://pypi.org/project/dictdiffer/ IUSE=test python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~amd64 ~arm ~sparc +KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~sparc LICENSE=MIT RDEPEND=dev-python/numpy[python_targets_python3_8(-)?,python_targets_python3_9(-)?] python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/d/dictdiffer/dictdiffer-0.8.1.tar.gz _eclasses_=distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e20b80360497e6215aed0dd4ca7d6bad python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa -_md5_=3a0e2070c3aabb1f36b8a427b11a8a62 +_md5_=0c3d5424bd50f693f61c652886683407 diff --git a/metadata/md5-cache/dev-python/distlib-0.3.1-r1 b/metadata/md5-cache/dev-python/distlib-0.3.1-r1 deleted file mode 100644 index 12b1ae0540e9..000000000000 --- a/metadata/md5-cache/dev-python/distlib-0.3.1-r1 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=test? ( dev-python/pypiserver !!=dev-python/pypy3-7.3.0:0= ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?] -DEFINED_PHASES=compile configure install prepare test unpack -DESCRIPTION=Low-level components of distutils2/packaging -EAPI=7 -HOMEPAGE=https://pypi.org/project/distlib/ https://bitbucket.org/pypa/distlib/ -IUSE=test python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-macos -LICENSE=PSF-2 -RDEPEND=python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?] -REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 ) -RESTRICT=test -SLOT=0 -SRC_URI=https://bitbucket.org/pypa/distlib/get/0.3.1.tar.bz2 -> distlib-0.3.1.tar.bz2 -_eclasses_=distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e20b80360497e6215aed0dd4ca7d6bad python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa vcs-snapshot b1abf460a493fc59ebb25de0df3f09dd -_md5_=2ba3c45d491d0ad8e934c7f98c3f3b88 diff --git a/metadata/md5-cache/dev-python/distlib-0.3.2 b/metadata/md5-cache/dev-python/distlib-0.3.2 index 67a9c4ad18e2..5b7790c1d40c 100644 --- a/metadata/md5-cache/dev-python/distlib-0.3.2 +++ b/metadata/md5-cache/dev-python/distlib-0.3.2 @@ -4,7 +4,7 @@ DESCRIPTION=Low-level components of distutils2/packaging EAPI=7 HOMEPAGE=https://pypi.org/project/distlib/ https://bitbucket.org/pypa/distlib/ IUSE=test python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~alpha amd64 arm ~arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-macos +KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-macos LICENSE=PSF-2 RDEPEND=python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) @@ -12,4 +12,4 @@ RESTRICT=test SLOT=0 SRC_URI=https://bitbucket.org/pypa/distlib/get/0.3.2.tar.bz2 -> distlib-0.3.2.tar.bz2 _eclasses_=distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e20b80360497e6215aed0dd4ca7d6bad python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa vcs-snapshot b1abf460a493fc59ebb25de0df3f09dd -_md5_=865a0f24fe01ac5a67db728886dc60e3 +_md5_=dc0670dfa9cf5e33b084dd84a4beab58 diff --git a/metadata/md5-cache/dev-python/django-timezone-field-4.2.1 b/metadata/md5-cache/dev-python/django-timezone-field-4.2.1 new file mode 100644 index 000000000000..5a4259c0a2c6 --- /dev/null +++ b/metadata/md5-cache/dev-python/django-timezone-field-4.2.1 @@ -0,0 +1,15 @@ +BDEPEND=test? ( dev-python/djangorestframework[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pytest-django[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pytest-lazy-fixture[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) test? ( >=dev-python/django-2.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pytz[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pytest-4.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=A Django app providing database and form fields for pytz timezone objects +EAPI=8 +HOMEPAGE=https://github.com/mfogel/django-timezone-field +IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~amd64 +LICENSE=BSD +RDEPEND=>=dev-python/django-2.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pytz[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/mfogel/django-timezone-field/archive/4.2.1.tar.gz -> django-timezone-field-4.2.1.gh.tar.gz +_eclasses_=distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e20b80360497e6215aed0dd4ca7d6bad python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_md5_=52e4c6d20739bb7c6a09f23da84bdc5c diff --git a/metadata/md5-cache/dev-python/djangorestframework-3.12.2 b/metadata/md5-cache/dev-python/djangorestframework-3.12.2 deleted file mode 100644 index 652e2736209b..000000000000 --- a/metadata/md5-cache/dev-python/djangorestframework-3.12.2 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=test? ( dev-python/coreapi[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/coreschema[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/pytest-django[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/pyyaml[python_targets_python3_8(-)?,python_targets_python3_9(-)?] ) test? ( >=dev-python/django-1.11[python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=dev-python/pytest-4.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?] ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=Web APIs with django made easy -EAPI=7 -HOMEPAGE=https://www.django-rest-framework.org/ -IUSE=test python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~amd64 -LICENSE=BSD -RDEPEND=>=dev-python/django-1.11[python_targets_python3_8(-)?,python_targets_python3_9(-)?] python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] -REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/encode/django-rest-framework/archive/3.12.2.tar.gz -> django-rest-framework-3.12.2.gh.tar.gz -_eclasses_=distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e20b80360497e6215aed0dd4ca7d6bad python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa -_md5_=90601a2eacbbaaee93c29858f98111cb diff --git a/metadata/md5-cache/dev-python/djangorestframework-3.12.4 b/metadata/md5-cache/dev-python/djangorestframework-3.12.4 index 6c8376e1456c..a2c84f5fbbf3 100644 --- a/metadata/md5-cache/dev-python/djangorestframework-3.12.4 +++ b/metadata/md5-cache/dev-python/djangorestframework-3.12.4 @@ -1,15 +1,15 @@ -BDEPEND=test? ( dev-python/coreapi[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/coreschema[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/pytest-django[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/pyyaml[python_targets_python3_8(-)?,python_targets_python3_9(-)?] ) test? ( >=dev-python/django-1.11[python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=dev-python/pytest-4.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?] ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?] +BDEPEND=test? ( dev-python/coreapi[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/coreschema[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pytest-django[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pyyaml[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) test? ( >=dev-python/django-1.11[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pytest-4.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] DEFINED_PHASES=compile configure install prepare test DESCRIPTION=Web APIs with django made easy -EAPI=7 +EAPI=8 HOMEPAGE=https://www.django-rest-framework.org/ -IUSE=test python_targets_python3_8 python_targets_python3_9 +IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 KEYWORDS=~amd64 LICENSE=BSD -RDEPEND=>=dev-python/django-1.11[python_targets_python3_8(-)?,python_targets_python3_9(-)?] python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] -REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 ) +RDEPEND=>=dev-python/django-1.11[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) 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_=distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e20b80360497e6215aed0dd4ca7d6bad python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa -_md5_=90601a2eacbbaaee93c29858f98111cb +_eclasses_=distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e20b80360497e6215aed0dd4ca7d6bad python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_md5_=a18b6b430ce99e3072e7ec7bed1f9088 diff --git a/metadata/md5-cache/dev-python/easyprocess-0.3 b/metadata/md5-cache/dev-python/easyprocess-0.3 deleted file mode 100644 index 9b51b1c20bb4..000000000000 --- a/metadata/md5-cache/dev-python/easyprocess-0.3 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=test? ( dev-python/pytest-timeout[python_targets_python3_8(-)?] dev-python/pyvirtualdisplay[python_targets_python3_8(-)?] dev-python/six[python_targets_python3_8(-)?] x11-base/xorg-server[xvfb] ) test? ( >=dev-python/pytest-4.5.0[python_targets_python3_8(-)?] ) python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=Easy to use Python subprocess interface -EAPI=7 -HOMEPAGE=https://github.com/ponty/EasyProcess -IUSE=test python_targets_python3_8 -KEYWORDS=amd64 x86 -LICENSE=BSD-2 -RDEPEND=python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?] -REQUIRED_USE=|| ( python_targets_python3_8 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/ponty/EasyProcess/archive/0.3.tar.gz -> easyprocess-0.3.tar.gz -_eclasses_=distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e20b80360497e6215aed0dd4ca7d6bad python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa -_md5_=c518db070327e3f09c6a8e3753d34163 diff --git a/metadata/md5-cache/dev-python/entrypoint2-0.2.3 b/metadata/md5-cache/dev-python/entrypoint2-0.2.3 deleted file mode 100644 index 3e8b9149324b..000000000000 --- a/metadata/md5-cache/dev-python/entrypoint2-0.2.3 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=test? ( dev-python/easyprocess[python_targets_python3_8(-)?] dev-python/path-py[python_targets_python3_8(-)?] ) test? ( >=dev-python/pytest-4.5.0[python_targets_python3_8(-)?] ) python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=Easy to use command-line interface for python modules -EAPI=7 -HOMEPAGE=https://github.com/ponty/entrypoint2 -IUSE=test python_targets_python3_8 -KEYWORDS=amd64 x86 -LICENSE=BSD-2 -RDEPEND=python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?] -REQUIRED_USE=|| ( python_targets_python3_8 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/ponty/entrypoint2/archive/0.2.3.tar.gz -> entrypoint2-0.2.3.tar.gz -_eclasses_=distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e20b80360497e6215aed0dd4ca7d6bad python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa -_md5_=b6c33877f76ab012d34a65090f971ee5 diff --git a/metadata/md5-cache/dev-python/exdown-0.8.6 b/metadata/md5-cache/dev-python/exdown-0.8.6 deleted file mode 100644 index 293a9b98f0f0..000000000000 --- a/metadata/md5-cache/dev-python/exdown-0.8.6 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=test? ( >=dev-python/pytest-4.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?] ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=dev-python/pyproject2setuppy-15[python_targets_python3_8(-)?,python_targets_python3_9(-)?] test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=Extract code blocks from markdown -EAPI=7 -HOMEPAGE=https://github.com/nschloe/exdown -IUSE=test python_targets_python3_8 python_targets_python3_9 test -KEYWORDS=~amd64 ~x86 -LICENSE=MIT -RDEPEND=python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] -REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 ) -RESTRICT=!test? ( test ) !test? ( test ) -SLOT=0 -SRC_URI=https://github.com/nschloe/exdown/archive/v0.8.6.tar.gz -> exdown-0.8.6.tar.gz -_eclasses_=distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e20b80360497e6215aed0dd4ca7d6bad python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa virtualx 0a780e1ab49c75da33a78ede35ab8f9c -_md5_=20357e04803d7201ff8030f376c12428 diff --git a/metadata/md5-cache/dev-python/exdown-0.8.8 b/metadata/md5-cache/dev-python/exdown-0.8.8 deleted file mode 100644 index f63ee9fced73..000000000000 --- a/metadata/md5-cache/dev-python/exdown-0.8.8 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=test? ( >=dev-python/pytest-4.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?] ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=dev-python/pyproject2setuppy-15[python_targets_python3_8(-)?,python_targets_python3_9(-)?] test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=Extract code blocks from markdown -EAPI=7 -HOMEPAGE=https://github.com/nschloe/exdown -IUSE=test python_targets_python3_8 python_targets_python3_9 test -KEYWORDS=~amd64 ~x86 -LICENSE=MIT -RDEPEND=python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] -REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 ) -RESTRICT=!test? ( test ) !test? ( test ) -SLOT=0 -SRC_URI=https://github.com/nschloe/exdown/archive/v0.8.8.tar.gz -> exdown-0.8.8.tar.gz -_eclasses_=distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e20b80360497e6215aed0dd4ca7d6bad python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa virtualx 0a780e1ab49c75da33a78ede35ab8f9c -_md5_=20357e04803d7201ff8030f376c12428 diff --git a/metadata/md5-cache/dev-python/exdown-0.8.9 b/metadata/md5-cache/dev-python/exdown-0.8.9 deleted file mode 100644 index 19442b8c91fe..000000000000 --- a/metadata/md5-cache/dev-python/exdown-0.8.9 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=test? ( >=dev-python/pytest-4.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?] ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=dev-python/pyproject2setuppy-15[python_targets_python3_8(-)?,python_targets_python3_9(-)?] test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=Extract code blocks from markdown -EAPI=7 -HOMEPAGE=https://github.com/nschloe/exdown -IUSE=test python_targets_python3_8 python_targets_python3_9 test -KEYWORDS=~amd64 ~x86 -LICENSE=MIT -RDEPEND=python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] -REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 ) -RESTRICT=!test? ( test ) !test? ( test ) -SLOT=0 -SRC_URI=https://github.com/nschloe/exdown/archive/v0.8.9.tar.gz -> exdown-0.8.9.tar.gz -_eclasses_=distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e20b80360497e6215aed0dd4ca7d6bad python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa virtualx 0a780e1ab49c75da33a78ede35ab8f9c -_md5_=20357e04803d7201ff8030f376c12428 diff --git a/metadata/md5-cache/dev-python/fuzzywuzzy-0.18.0 b/metadata/md5-cache/dev-python/fuzzywuzzy-0.18.0 index 252ef498a83e..5e98073dbce9 100644 --- a/metadata/md5-cache/dev-python/fuzzywuzzy-0.18.0 +++ b/metadata/md5-cache/dev-python/fuzzywuzzy-0.18.0 @@ -5,7 +5,7 @@ DESCRIPTION=Fuzzy string matching in python EAPI=7 HOMEPAGE=https://github.com/seatgeek/fuzzywuzzy IUSE=test python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~amd64 ~arm ~sparc ~x86 +KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86 LICENSE=GPL-2 RDEPEND=python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/python-levenshtein[python_targets_python3_8(-)?,python_targets_python3_9(-)?] python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/f/fuzzywuzzy/fuzzywuzzy-0.18.0.tar.gz _eclasses_=distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e20b80360497e6215aed0dd4ca7d6bad python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa -_md5_=06bc1947c1abd6590233cdf61e30d6dd +_md5_=f1bc493f3f55c5637eb97cd4cf6ffb62 diff --git a/metadata/md5-cache/dev-python/google-api-python-client-2.12.0 b/metadata/md5-cache/dev-python/google-api-python-client-2.12.0 new file mode 100644 index 000000000000..3ee4a6200c1d --- /dev/null +++ b/metadata/md5-cache/dev-python/google-api-python-client-2.12.0 @@ -0,0 +1,15 @@ +BDEPEND=test? ( dev-python/mock[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/oauth2client[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/pandas[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/parameterized[python_targets_python3_8(-)?,python_targets_python3_9(-)?] ) test? ( >=dev-python/httplib2-0.15[python_targets_python3_8(-)?,python_targets_python3_9(-)?] =dev-python/google-auth-1.16.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=dev-python/google-auth-httplib2-0.1.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=dev-python/uritemplate-3.0.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?] =dev-python/six-1.13.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?] =dev-python/pytest-4.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?] ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Google API Client for Python +EAPI=8 +HOMEPAGE=https://github.com/googleapis/google-api-python-client +IUSE=test python_targets_python3_8 python_targets_python3_9 +KEYWORDS=~amd64 ~arm ~arm64 ~x86 +LICENSE=Apache-2.0 +RDEPEND=>=dev-python/httplib2-0.15[python_targets_python3_8(-)?,python_targets_python3_9(-)?] =dev-python/google-auth-1.16.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=dev-python/google-auth-httplib2-0.1.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=dev-python/uritemplate-3.0.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?] =dev-python/six-1.13.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?] =dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] +REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/googleapis/google-api-python-client/archive/v2.12.0.tar.gz -> google-api-python-client-2.12.0.tar.gz +_eclasses_=distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e20b80360497e6215aed0dd4ca7d6bad python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_md5_=77b042fa2daa1b52afdfabd452540972 diff --git a/metadata/md5-cache/dev-python/graph-tool-2.41 b/metadata/md5-cache/dev-python/graph-tool-2.43 similarity index 97% rename from metadata/md5-cache/dev-python/graph-tool-2.41 rename to metadata/md5-cache/dev-python/graph-tool-2.43 index 61480867bb7d..e517f6fea0a0 100644 --- a/metadata/md5-cache/dev-python/graph-tool-2.41 +++ b/metadata/md5-cache/dev-python/graph-tool-2.43 @@ -10,6 +10,6 @@ LICENSE=GPL-3 RDEPEND=python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-libs/boost-1.70:=[context,python,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-libs/expat dev-python/numpy[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/scipy[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] sci-mathematics/cgal:= dev-python/matplotlib[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] cairo? ( dev-cpp/cairomm:0 dev-python/pycairo[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) SLOT=0 -SRC_URI=https://downloads.skewed.de/graph-tool/graph-tool-2.41.tar.bz2 +SRC_URI=https://downloads.skewed.de/graph-tool/graph-tool-2.43.tar.bz2 _eclasses_=check-reqs 97b90bd8fb799993925e6b3a683184e5 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 python-r1 e20b80360497e6215aed0dd4ca7d6bad python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa _md5_=e856f58e49222d94f390af9143474159 diff --git a/metadata/md5-cache/dev-python/httpcore-0.13.6 b/metadata/md5-cache/dev-python/httpcore-0.13.6 index 0299b42ac5ca..86ee41864162 100644 --- a/metadata/md5-cache/dev-python/httpcore-0.13.6 +++ b/metadata/md5-cache/dev-python/httpcore-0.13.6 @@ -4,7 +4,7 @@ DESCRIPTION=A minimal low-level HTTP client EAPI=7 HOMEPAGE=https://www.encode.io/httpcore/ IUSE=test python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~amd64 ~arm +KEYWORDS=~amd64 ~arm ~ppc ~ppc64 LICENSE=BSD RDEPEND==dev-python/anyio-3*[python_targets_python3_8(-)?,python_targets_python3_9(-)?] =dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/encode/httpcore/archive/0.13.6.tar.gz -> httpcore-0.13.6.tar.gz _eclasses_=distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e20b80360497e6215aed0dd4ca7d6bad python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa -_md5_=b36d3b174bbb50515de07d6ca6f78759 +_md5_=74c45a4e1a9cc3780e853e771a9c3a7a diff --git a/metadata/md5-cache/dev-python/ioflo-2.0.0 b/metadata/md5-cache/dev-python/ioflo-2.0.0 deleted file mode 100644 index 6cc441f81b4c..000000000000 --- a/metadata/md5-cache/dev-python/ioflo-2.0.0 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=test? ( >=dev-python/pytest-4.5.0[python_targets_python3_8(-)?] ) python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=Automated Reasoning Engine and Flow Based Programming Framework -EAPI=7 -HOMEPAGE=https://github.com/ioflo/ioflo/ -IUSE=test python_targets_python3_8 -KEYWORDS=amd64 x86 -LICENSE=Apache-2.0 -RDEPEND=python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?] -REQUIRED_USE=|| ( python_targets_python3_8 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/ioflo/ioflo/archive/v2.0.0.tar.gz -> ioflo-2.0.0.tar.gz -_eclasses_=distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e20b80360497e6215aed0dd4ca7d6bad python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa -_md5_=1cfb5a7b0cd8fd290be46d09546e98ab diff --git a/metadata/md5-cache/dev-python/itypes-1.1.0 b/metadata/md5-cache/dev-python/itypes-1.1.0 index 4d0e07c0a6f0..2bbc3e15a15b 100644 --- a/metadata/md5-cache/dev-python/itypes-1.1.0 +++ b/metadata/md5-cache/dev-python/itypes-1.1.0 @@ -1,15 +1,15 @@ -BDEPEND=python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?] +BDEPEND=test? ( >=dev-python/pytest-4.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?] ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?] DEFINED_PHASES=compile configure install prepare test -DEPEND=dev-python/setuptools[python_targets_python3_8(-)?,python_targets_python3_9(-)?] DESCRIPTION=basic immutable container types for python -EAPI=7 -HOMEPAGE=https://github.com/PavanTatikonda/itypes -IUSE=python_targets_python3_8 python_targets_python3_9 +EAPI=8 +HOMEPAGE=https://github.com/PavanTatikonda/itypes/ +IUSE=test python_targets_python3_8 python_targets_python3_9 KEYWORDS=~amd64 LICENSE=BSD RDEPEND=python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 ) +RESTRICT=!test? ( test ) SLOT=0 -SRC_URI=mirror://pypi/i/itypes/itypes-1.1.0.tar.gz -_eclasses_=distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e20b80360497e6215aed0dd4ca7d6bad python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa -_md5_=5b17ec33547870fc512bccd06d390a8e +SRC_URI=https://github.com/PavanTatikonda/itypes/archive/1.1.0.tar.gz -> itypes-1.1.0.gh.tar.gz +_eclasses_=distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e20b80360497e6215aed0dd4ca7d6bad python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_md5_=4590558177a8b24c2c1f526faa7664eb diff --git a/metadata/md5-cache/dev-python/itypes-1.2.0 b/metadata/md5-cache/dev-python/itypes-1.2.0 new file mode 100644 index 000000000000..0d884d3190f4 --- /dev/null +++ b/metadata/md5-cache/dev-python/itypes-1.2.0 @@ -0,0 +1,15 @@ +BDEPEND=test? ( >=dev-python/pytest-4.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=basic immutable container types for python +EAPI=8 +HOMEPAGE=https://github.com/PavanTatikonda/itypes/ +IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~amd64 +LICENSE=BSD +RDEPEND=python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/PavanTatikonda/itypes/archive/1.2.0.tar.gz -> itypes-1.2.0.gh.tar.gz +_eclasses_=distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e20b80360497e6215aed0dd4ca7d6bad python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_md5_=d84f2d2d9a5c12a2d20c9f2fe421282a diff --git a/metadata/md5-cache/dev-python/js2py-0.71 b/metadata/md5-cache/dev-python/js2py-0.71 index ae514e2145ff..5e8478bc34e1 100644 --- a/metadata/md5-cache/dev-python/js2py-0.71 +++ b/metadata/md5-cache/dev-python/js2py-0.71 @@ -4,11 +4,11 @@ DESCRIPTION=JavaScript to Python Translator & JavaScript interpreter in Python EAPI=7 HOMEPAGE=http://piter.io/projects/js2py/ https://github.com/PiotrDabkowski/Js2Py/ https://pypi.org/project/Js2Py/ IUSE=python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~amd64 ~arm ~arm64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~x86 LICENSE=MIT RDEPEND=>=dev-python/pyjsparser-2.5.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=dev-python/tzlocal-1.2.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=dev-python/six-1.10.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?] python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 ) SLOT=0 SRC_URI=https://github.com/PiotrDabkowski/Js2Py/archive/5f665f60083a9796ec33861240ce31d6d2b844b6.tar.gz -> Js2Py-0.71.tar.gz _eclasses_=distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e20b80360497e6215aed0dd4ca7d6bad python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa -_md5_=69ea2bdae977d35cb755943861a585d8 +_md5_=c1fea41b4af2e14aefe11e00e4fefd8c diff --git a/metadata/md5-cache/dev-python/lark-parser-0.11.3 b/metadata/md5-cache/dev-python/lark-parser-0.11.3 index 6ab690812755..a90ac4ce1bf9 100644 --- a/metadata/md5-cache/dev-python/lark-parser-0.11.3 +++ b/metadata/md5-cache/dev-python/lark-parser-0.11.3 @@ -4,7 +4,7 @@ DESCRIPTION=Python module to propose a modern general-purpose parsing library fo EAPI=7 HOMEPAGE=https://github.com/lark-parser/lark IUSE=test python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~amd64 ~arm ~arm64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~x86 LICENSE=MIT RDEPEND=python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/l/lark-parser/lark-parser-0.11.3.tar.gz _eclasses_=distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e20b80360497e6215aed0dd4ca7d6bad python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa -_md5_=e1e7eb211f620be085dd7a5500f08c84 +_md5_=fd1f99dd50e26cbea2703f0add10674c diff --git a/metadata/md5-cache/dev-python/lunr-0.5.8 b/metadata/md5-cache/dev-python/lunr-0.5.8 deleted file mode 100644 index 840d091cf55b..000000000000 --- a/metadata/md5-cache/dev-python/lunr-0.5.8 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=test? ( dev-python/mock[python_targets_python3_8(-)?] ) test? ( dev-python/future[python_targets_python3_8(-)?] dev-python/nltk[python_targets_python3_8(-)?] dev-python/six[python_targets_python3_8(-)?] >=dev-python/pytest-4.5.0[python_targets_python3_8(-)?] ) python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?] doc? ( || ( ( dev-lang/python:3.8 dev-python/mkdocs[python_targets_python3_8(-)] ) ) ) -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=A Python implementation of Lunr.js -EAPI=7 -HOMEPAGE=https://github.com/yeraydiazdiaz/lunr.py -IUSE=test python_targets_python3_8 doc -KEYWORDS=amd64 x86 -LICENSE=MIT -RDEPEND=dev-python/future[python_targets_python3_8(-)?] dev-python/nltk[python_targets_python3_8(-)?] dev-python/six[python_targets_python3_8(-)?] python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?] -REQUIRED_USE=|| ( python_targets_python3_8 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/yeraydiazdiaz/lunr.py/archive/0.5.8.tar.gz -> lunr-0.5.8.tar.gz -_eclasses_=distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9 docs 7c38d94fa7c1b4235fe571dc09e018df eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e20b80360497e6215aed0dd4ca7d6bad python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa -_md5_=f00db5b498a28bd9048810165f001ddc diff --git a/metadata/md5-cache/dev-python/lunr-0.5.9 b/metadata/md5-cache/dev-python/lunr-0.5.9 deleted file mode 100644 index 3d2f393f2fd8..000000000000 --- a/metadata/md5-cache/dev-python/lunr-0.5.9 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=test? ( dev-python/mock[python_targets_python3_8(-)?,python_targets_python3_9(-)?] ) test? ( dev-python/nltk[python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=dev-python/pytest-4.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?] ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?] doc? ( || ( ( dev-lang/python:3.9 dev-python/mkdocs[python_targets_python3_9(-)] ) ( dev-lang/python:3.8 dev-python/mkdocs[python_targets_python3_8(-)] ) ) ) -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=A Python implementation of Lunr.js -EAPI=7 -HOMEPAGE=https://github.com/yeraydiazdiaz/lunr.py -IUSE=test python_targets_python3_8 python_targets_python3_9 doc -KEYWORDS=~amd64 ~x86 -LICENSE=MIT -RDEPEND=dev-python/nltk[python_targets_python3_8(-)?,python_targets_python3_9(-)?] python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] -REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/yeraydiazdiaz/lunr.py/archive/0.5.9.tar.gz -> lunr-0.5.9.tar.gz -_eclasses_=distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9 docs 7c38d94fa7c1b4235fe571dc09e018df eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e20b80360497e6215aed0dd4ca7d6bad python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa -_md5_=e03784885ecd7083fc1a46f8c7e55bbe diff --git a/metadata/md5-cache/dev-python/mkdocs-material-6.2.5 b/metadata/md5-cache/dev-python/mkdocs-material-6.2.5 deleted file mode 100644 index 77134a3d3f72..000000000000 --- a/metadata/md5-cache/dev-python/mkdocs-material-6.2.5 +++ /dev/null @@ -1,14 +0,0 @@ -BDEPEND=python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?] doc? ( || ( ( dev-lang/python:3.8 dev-python/mkdocs[python_targets_python3_8(-)] dev-python/mkdocs-minify-plugin[python_targets_python3_8(-)] dev-python/mkdocs-redirects[python_targets_python3_8(-)] ) ) ) -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=A Material Design theme for MkDocs -EAPI=7 -HOMEPAGE=https://github.com/squidfunk/mkdocs-material https://pypi.org/project/mkdocs-material -IUSE=python_targets_python3_8 doc -KEYWORDS=~amd64 ~x86 -LICENSE=MIT -RDEPEND=>=dev-python/markdown-3.2[python_targets_python3_8(-)?] >=dev-python/mkdocs-1.1[python_targets_python3_8(-)?] >=dev-python/pygments-2.4[python_targets_python3_8(-)?] >=dev-python/pymdown-extensions-7.0[python_targets_python3_8(-)?] >=dev-python/mkdocs-material-extensions-1.0[python_targets_python3_8(-)?] python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?] -REQUIRED_USE=|| ( python_targets_python3_8 ) -SLOT=0 -SRC_URI=https://github.com/squidfunk/mkdocs-material/archive/6.2.5.tar.gz -> mkdocs-material-6.2.5.tar.gz -_eclasses_=distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9 docs 7c38d94fa7c1b4235fe571dc09e018df eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e20b80360497e6215aed0dd4ca7d6bad python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa -_md5_=cc12ab3753feb0559d4d56bfc75a2847 diff --git a/metadata/md5-cache/dev-python/mkdocs-material-7.0.6 b/metadata/md5-cache/dev-python/mkdocs-material-7.0.6 deleted file mode 100644 index 1fdfbb7d2095..000000000000 --- a/metadata/md5-cache/dev-python/mkdocs-material-7.0.6 +++ /dev/null @@ -1,14 +0,0 @@ -BDEPEND=python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?] doc? ( || ( ( dev-lang/python:3.8 dev-python/mkdocs[python_targets_python3_8(-)] dev-python/mkdocs-minify-plugin[python_targets_python3_8(-)] dev-python/mkdocs-redirects[python_targets_python3_8(-)] ) ) ) -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=A Material Design theme for MkDocs -EAPI=7 -HOMEPAGE=https://github.com/squidfunk/mkdocs-material https://pypi.org/project/mkdocs-material -IUSE=python_targets_python3_8 doc -KEYWORDS=~amd64 ~x86 -LICENSE=MIT -RDEPEND=>=dev-python/markdown-3.2[python_targets_python3_8(-)?] >=dev-python/mkdocs-1.1[python_targets_python3_8(-)?] >=dev-python/pygments-2.4[python_targets_python3_8(-)?] >=dev-python/pymdown-extensions-7.0[python_targets_python3_8(-)?] >=dev-python/mkdocs-material-extensions-1.0[python_targets_python3_8(-)?] python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?] -REQUIRED_USE=|| ( python_targets_python3_8 ) -SLOT=0 -SRC_URI=https://github.com/squidfunk/mkdocs-material/archive/7.0.6.tar.gz -> mkdocs-material-7.0.6.tar.gz -_eclasses_=distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9 docs 7c38d94fa7c1b4235fe571dc09e018df eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e20b80360497e6215aed0dd4ca7d6bad python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa -_md5_=cc12ab3753feb0559d4d56bfc75a2847 diff --git a/metadata/md5-cache/dev-python/mkdocs-material-7.1.0 b/metadata/md5-cache/dev-python/mkdocs-material-7.1.0 deleted file mode 100644 index 917d40fb4dd2..000000000000 --- a/metadata/md5-cache/dev-python/mkdocs-material-7.1.0 +++ /dev/null @@ -1,14 +0,0 @@ -BDEPEND=python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?] doc? ( || ( ( dev-lang/python:3.8 dev-python/mkdocs[python_targets_python3_8(-)] dev-python/mkdocs-minify-plugin[python_targets_python3_8(-)] dev-python/mkdocs-redirects[python_targets_python3_8(-)] ) ) ) -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=A Material Design theme for MkDocs -EAPI=7 -HOMEPAGE=https://github.com/squidfunk/mkdocs-material https://pypi.org/project/mkdocs-material -IUSE=python_targets_python3_8 doc -KEYWORDS=~amd64 ~x86 -LICENSE=MIT -RDEPEND=>=dev-python/markdown-3.2[python_targets_python3_8(-)?] >=dev-python/mkdocs-1.1[python_targets_python3_8(-)?] >=dev-python/pygments-2.4[python_targets_python3_8(-)?] >=dev-python/pymdown-extensions-7.0[python_targets_python3_8(-)?] >=dev-python/mkdocs-material-extensions-1.0[python_targets_python3_8(-)?] python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?] -REQUIRED_USE=|| ( python_targets_python3_8 ) -SLOT=0 -SRC_URI=https://github.com/squidfunk/mkdocs-material/archive/7.1.0.tar.gz -> mkdocs-material-7.1.0.tar.gz -_eclasses_=distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9 docs 7c38d94fa7c1b4235fe571dc09e018df eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e20b80360497e6215aed0dd4ca7d6bad python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa -_md5_=cc12ab3753feb0559d4d56bfc75a2847 diff --git a/metadata/md5-cache/dev-python/mkdocs-material-7.1.7 b/metadata/md5-cache/dev-python/mkdocs-material-7.1.9 similarity index 98% rename from metadata/md5-cache/dev-python/mkdocs-material-7.1.7 rename to metadata/md5-cache/dev-python/mkdocs-material-7.1.9 index b2d5d898dc95..9e85e66f8987 100644 --- a/metadata/md5-cache/dev-python/mkdocs-material-7.1.7 +++ b/metadata/md5-cache/dev-python/mkdocs-material-7.1.9 @@ -9,6 +9,6 @@ LICENSE=MIT RDEPEND=>=dev-python/markdown-3.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=dev-python/mkdocs-1.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=dev-python/pygments-2.4[python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=dev-python/pymdown-extensions-7.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=dev-python/mkdocs-material-extensions-1.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?] python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 ) SLOT=0 -SRC_URI=https://github.com/squidfunk/mkdocs-material/archive/7.1.7.tar.gz -> mkdocs-material-7.1.7.tar.gz +SRC_URI=https://github.com/squidfunk/mkdocs-material/archive/7.1.9.tar.gz -> mkdocs-material-7.1.9.tar.gz _eclasses_=distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9 docs 7c38d94fa7c1b4235fe571dc09e018df eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e20b80360497e6215aed0dd4ca7d6bad python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa _md5_=ab790cd48e9ec7bd86ac121547fc9602 diff --git a/metadata/md5-cache/dev-python/mkdocs-minify-plugin-0.3.0 b/metadata/md5-cache/dev-python/mkdocs-minify-plugin-0.3.0 deleted file mode 100644 index be433c39b3cd..000000000000 --- a/metadata/md5-cache/dev-python/mkdocs-minify-plugin-0.3.0 +++ /dev/null @@ -1,14 +0,0 @@ -BDEPEND=python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=An MkDocs plugin to minify HTML and/or JS files prior to being written to disk -EAPI=7 -HOMEPAGE=https://github.com/byrnereese/mkdocs-minify-plugin https://pypi.org/project/mkdocs-minify-plugin/ -IUSE=python_targets_python3_8 -KEYWORDS=~amd64 ~x86 -LICENSE=MIT -RDEPEND=>=dev-python/mkdocs-1.0.4[python_targets_python3_8(-)?] >=app-text/htmlmin-0.1.4[python_targets_python3_8(-)?] >=dev-python/jsmin-2.2.2[python_targets_python3_8(-)?] python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?] -REQUIRED_USE=|| ( python_targets_python3_8 ) -SLOT=0 -SRC_URI=mirror://pypi/m/mkdocs-minify-plugin/mkdocs-minify-plugin-0.3.0.tar.gz -_eclasses_=distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e20b80360497e6215aed0dd4ca7d6bad python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa -_md5_=e4577253c5be58af0e68c53c2e44b6e9 diff --git a/metadata/md5-cache/dev-python/phonenumbers-8.12.27 b/metadata/md5-cache/dev-python/phonenumbers-8.12.27 new file mode 100644 index 000000000000..356b2f0a3446 --- /dev/null +++ b/metadata/md5-cache/dev-python/phonenumbers-8.12.27 @@ -0,0 +1,14 @@ +BDEPEND=python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Python port of Google's libphonenumber +EAPI=8 +HOMEPAGE=https://github.com/daviddrysdale/python-phonenumbers +IUSE=python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~amd64 ~x86 +LICENSE=Apache-2.0 +RDEPEND=python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) +SLOT=0 +SRC_URI=mirror://pypi/p/phonenumbers/phonenumbers-8.12.27.tar.gz +_eclasses_=distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e20b80360497e6215aed0dd4ca7d6bad python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_md5_=f70b6d8f0abc35acbb5be565add89672 diff --git a/metadata/md5-cache/dev-python/pikepdf-2.14.2 b/metadata/md5-cache/dev-python/pikepdf-2.14.2 new file mode 100644 index 000000000000..63733a8ab410 --- /dev/null +++ b/metadata/md5-cache/dev-python/pikepdf-2.14.2 @@ -0,0 +1,16 @@ +BDEPEND=>=dev-python/pybind11-2.6.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools_scm-4.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/toml[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/setuptools_scm_git_archive[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] test? ( >=dev-python/attrs-20.2.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/hypothesis-5[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pillow-5.0.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,jpeg,lcms,tiff] >=dev-python/psutil-5[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pytest-6[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pytest-timeout-1.4.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/python-dateutil-2.8.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/python-xmp-toolkit-2.0.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) test? ( app-text/qpdf:0= dev-python/pillow[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/lxml[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pybind11[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pytest-4.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +DEFINED_PHASES=compile configure install prepare test +DEPEND=app-text/qpdf:0= +DESCRIPTION=Python library to work with pdf files based on qpdf +EAPI=8 +HOMEPAGE=https://pypi.org/project/pikepdf/ https://github.com/pikepdf/pikepdf +IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~amd64 ~x86 +LICENSE=MPL-2.0 +RDEPEND=app-text/qpdf:0= dev-python/pillow[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/lxml[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pybind11[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/pikepdf/pikepdf/archive/v2.14.2.tar.gz -> pikepdf-2.14.2.tar.gz +_eclasses_=distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e20b80360497e6215aed0dd4ca7d6bad python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_md5_=e0536cafc835cb93c4beafe283a5bb14 diff --git a/metadata/md5-cache/dev-python/pweave-0.30.3-r1 b/metadata/md5-cache/dev-python/pweave-0.30.3-r1 index f699628b3343..3ee158ab341a 100644 --- a/metadata/md5-cache/dev-python/pweave-0.30.3-r1 +++ b/metadata/md5-cache/dev-python/pweave-0.30.3-r1 @@ -1,16 +1,16 @@ -BDEPEND=doc? ( || ( ( dev-lang/python:3.9 dev-python/sphinx[python_targets_python3_9(-)] dev-python/sphinx_rtd_theme[python_targets_python3_9(-)] ) ( dev-lang/python:3.8 dev-python/sphinx[python_targets_python3_8(-)] dev-python/sphinx_rtd_theme[python_targets_python3_8(-)] ) ) ) test? ( dev-python/ipython[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/ipykernel[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/jupyter_client[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/markdown[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/nbconvert[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/nbformat[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/pygments[python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=dev-python/pytest-4.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?] ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?] +BDEPEND=doc? ( || ( ( dev-lang/python:3.10 dev-python/sphinx[python_targets_python3_10(-)] dev-python/sphinx_rtd_theme[python_targets_python3_10(-)] ) ( dev-lang/python:3.9 dev-python/sphinx[python_targets_python3_9(-)] dev-python/sphinx_rtd_theme[python_targets_python3_9(-)] ) ( dev-lang/python:3.8 dev-python/sphinx[python_targets_python3_8(-)] dev-python/sphinx_rtd_theme[python_targets_python3_8(-)] ) ) ) test? ( dev-python/ipython[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/ipykernel[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/jupyter_client[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/markdown[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/nbconvert[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/nbformat[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pygments[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pytest-4.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] DEFINED_PHASES=compile configure install prepare test -DEPEND=test? ( dev-python/coverage[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/matplotlib[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/nose[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/notebook[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/scipy[python_targets_python3_8(-)?,python_targets_python3_9(-)?] ) +DEPEND=test? ( dev-python/coverage[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/matplotlib[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/nose[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/notebook[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/scipy[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) DESCRIPTION=Scientific report generator and literate programming tool EAPI=7 HOMEPAGE=http://mpastell.com/pweave/ https://github.com/mpastell/Pweave -IUSE=examples doc test python_targets_python3_8 python_targets_python3_9 +IUSE=examples doc test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 KEYWORDS=~amd64 ~x86 LICENSE=BSD -RDEPEND=dev-python/ipython[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/ipykernel[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/jupyter_client[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/markdown[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/nbconvert[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/nbformat[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/pygments[python_targets_python3_8(-)?,python_targets_python3_9(-)?] python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?] -REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 ) +RDEPEND=dev-python/ipython[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/ipykernel[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/jupyter_client[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/markdown[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/nbconvert[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/nbformat[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pygments[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/P/Pweave/Pweave-0.30.3.tar.gz -> pweave-0.30.3.tar.gz _eclasses_=distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e20b80360497e6215aed0dd4ca7d6bad python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa -_md5_=264d80a7b9dfbc0ef9f6fa0c5956bc0a +_md5_=01d9fea8c4cdf2a91a627c57faae2d86 diff --git a/metadata/md5-cache/dev-python/pyjsparser-2.7.1_p20190421 b/metadata/md5-cache/dev-python/pyjsparser-2.7.1_p20190421 index a20982996f05..ea1f6b7960e3 100644 --- a/metadata/md5-cache/dev-python/pyjsparser-2.7.1_p20190421 +++ b/metadata/md5-cache/dev-python/pyjsparser-2.7.1_p20190421 @@ -4,7 +4,7 @@ DESCRIPTION=Fast javascript parser based on esprima.js EAPI=7 HOMEPAGE=https://github.com/PiotrDabkowski/pyjsparser/ https://pypi.org/project/pyjsparser/ IUSE=test python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~amd64 ~arm ~arm64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~x86 LICENSE=MIT RDEPEND=python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/PiotrDabkowski/pyjsparser/archive/5465d037b30e334cb0997f2315ec1e451b8ad4c1.tar.gz -> pyjsparser-2.7.1_p20190421.tar.gz _eclasses_=distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e20b80360497e6215aed0dd4ca7d6bad python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa -_md5_=b19bc07e7234e1a6557ddfd5b8698f3f +_md5_=f81ff26fb55c9c4bc5d835df0889f8d4 diff --git a/metadata/md5-cache/dev-python/pyspelling-2.7.1 b/metadata/md5-cache/dev-python/pyspelling-2.7.1 deleted file mode 100644 index 43b809d471b8..000000000000 --- a/metadata/md5-cache/dev-python/pyspelling-2.7.1 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=test? ( dev-vcs/git ) test? ( || ( app-text/aspell app-text/hunspell ) dev-python/beautifulsoup:4[python_targets_python3_8(-)?] dev-python/html5lib[python_targets_python3_8(-)?] dev-python/lxml[python_targets_python3_8(-)?] dev-python/markdown[python_targets_python3_8(-)?] dev-python/pyyaml[python_targets_python3_8(-)?] >=dev-python/soupsieve-1.8[python_targets_python3_8(-)?] >=dev-python/wcmatch-6.0.3[python_targets_python3_8(-)?] >=dev-python/pytest-4.5.0[python_targets_python3_8(-)?] ) python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?] doc? ( || ( ( dev-lang/python:3.8 dev-python/mkdocs[python_targets_python3_8(-)] ~dev-python/mkdocs_pymdownx_material_extras-1.1.3[python_targets_python3_8(-)] dev-python/mkdocs-git-revision-date-localized-plugin[python_targets_python3_8(-)] dev-python/mkdocs-minify-plugin[python_targets_python3_8(-)] ) ) ) -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=Spell checker automation tool -EAPI=7 -HOMEPAGE=https://github.com/facelessuser/pyspelling -IUSE=test python_targets_python3_8 doc -KEYWORDS=~amd64 ~x86 -LICENSE=MIT -RDEPEND=|| ( app-text/aspell app-text/hunspell ) dev-python/beautifulsoup:4[python_targets_python3_8(-)?] dev-python/html5lib[python_targets_python3_8(-)?] dev-python/lxml[python_targets_python3_8(-)?] dev-python/markdown[python_targets_python3_8(-)?] dev-python/pyyaml[python_targets_python3_8(-)?] >=dev-python/soupsieve-1.8[python_targets_python3_8(-)?] >=dev-python/wcmatch-6.0.3[python_targets_python3_8(-)?] python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?] -REQUIRED_USE=|| ( python_targets_python3_8 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/facelessuser/pyspelling/archive/2.7.1.tar.gz -> pyspelling-2.7.1.tar.gz -_eclasses_=distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9 docs 7c38d94fa7c1b4235fe571dc09e018df eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e20b80360497e6215aed0dd4ca7d6bad python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa -_md5_=4bb672404c29d456809b921a93ee2733 diff --git a/metadata/md5-cache/dev-python/pytest-lazy-fixture-0.6.3 b/metadata/md5-cache/dev-python/pytest-lazy-fixture-0.6.3 index 7a9d0b492c4d..c58521788bf2 100644 --- a/metadata/md5-cache/dev-python/pytest-lazy-fixture-0.6.3 +++ b/metadata/md5-cache/dev-python/pytest-lazy-fixture-0.6.3 @@ -1,15 +1,15 @@ -BDEPEND=test? ( dev-python/flake8[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/tox[python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=dev-python/pytest-4.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?] ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?] +BDEPEND=test? ( dev-python/pytest[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pytest-4.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] DEFINED_PHASES=compile configure install prepare test DESCRIPTION=It helps to use fixtures in pytest.mark.parametrize -EAPI=7 +EAPI=8 HOMEPAGE=https://github.com/tvorog/pytest-lazy-fixture -IUSE=test python_targets_python3_8 python_targets_python3_9 +IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 KEYWORDS=amd64 x86 LICENSE=MIT -RDEPEND=dev-python/flake8[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/tox[python_targets_python3_8(-)?,python_targets_python3_9(-)?] python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] -REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 ) +RDEPEND=dev-python/pytest[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/p/pytest-lazy-fixture/pytest-lazy-fixture-0.6.3.tar.gz -_eclasses_=distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e20b80360497e6215aed0dd4ca7d6bad python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa -_md5_=7f79617ebbfb7e08a5d0b5c0d4f65757 +_eclasses_=distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e20b80360497e6215aed0dd4ca7d6bad python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_md5_=be19f0ad3e61b4aba9cf234b9813e4ef diff --git a/metadata/md5-cache/dev-python/pytest-ordering-0.6 b/metadata/md5-cache/dev-python/pytest-ordering-0.6 index a363773b7d16..8147e718e20c 100644 --- a/metadata/md5-cache/dev-python/pytest-ordering-0.6 +++ b/metadata/md5-cache/dev-python/pytest-ordering-0.6 @@ -4,7 +4,7 @@ DESCRIPTION=pytest plugin to run your tests in a specific order EAPI=7 HOMEPAGE=https://github.com/ftobia/pytest-ordering/ https://pypi.org/project/pytest-ordering/ IUSE=test doc python_targets_python3_8 python_targets_python3_9 -KEYWORDS=amd64 ~arm ~sparc x86 +KEYWORDS=amd64 ~arm ~ppc ~ppc64 ~sparc x86 LICENSE=MIT RDEPEND==dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/ftobia/pytest-ordering/archive/0.6.tar.gz -> pytest-ordering-0.6.tar.gz _eclasses_=distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e20b80360497e6215aed0dd4ca7d6bad python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa -_md5_=05e9d4e8514a2866ec820cf9632c7b0c +_md5_=e305c6caa5204cee2f2bc5b71b1fb97d diff --git a/metadata/md5-cache/dev-python/python-levenshtein-0.12.1 b/metadata/md5-cache/dev-python/python-levenshtein-0.12.1 index 7b8cfe68a9b5..a8dbc1735396 100644 --- a/metadata/md5-cache/dev-python/python-levenshtein-0.12.1 +++ b/metadata/md5-cache/dev-python/python-levenshtein-0.12.1 @@ -5,11 +5,11 @@ DESCRIPTION=Functions for fast computation of Levenshtein distance, and edit ope EAPI=7 HOMEPAGE=https://pypi.org/project/python-Levenshtein/ https://github.com/ztane/python-Levenshtein/ IUSE=python_targets_python3_8 python_targets_python3_9 -KEYWORDS=amd64 ~arm arm64 ~ia64 ~ppc64 ~sparc x86 +KEYWORDS=amd64 ~arm arm64 ~ia64 ~ppc ~ppc64 ~sparc x86 LICENSE=GPL-2 RDEPEND=python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?] REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 ) SLOT=0 SRC_URI=mirror://pypi/p/python-Levenshtein/python-Levenshtein-0.12.1.tar.gz _eclasses_=distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e20b80360497e6215aed0dd4ca7d6bad python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa -_md5_=0b4ae25242c93ec1e2ac081924f37b51 +_md5_=fd90ef40bdac7976a70dd70aa218dbae diff --git a/metadata/md5-cache/dev-python/raet-0.6.8-r1 b/metadata/md5-cache/dev-python/raet-0.6.8-r1 deleted file mode 100644 index 45fef28ef299..000000000000 --- a/metadata/md5-cache/dev-python/raet-0.6.8-r1 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=>=dev-python/six-1.6.1[python_targets_python3_8(-)?] >=dev-python/libnacl-1.4.3[python_targets_python3_8(-)?] >=dev-python/ioflo-2.0[python_targets_python3_8(-)?] test? ( dev-python/msgpack[python_targets_python3_8(-)?] ) python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=Reliable Asynchronous Event Transport Protocol -EAPI=7 -HOMEPAGE=https://github.com/RaetProtocol/raet -IUSE=test python_targets_python3_8 -KEYWORDS=amd64 ~arm x86 -LICENSE=Apache-2.0 -RDEPEND=>=dev-python/six-1.6.1[python_targets_python3_8(-)?] >=dev-python/libnacl-1.4.3[python_targets_python3_8(-)?] >=dev-python/ioflo-2.0[python_targets_python3_8(-)?] python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?] -REQUIRED_USE=|| ( python_targets_python3_8 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=mirror://pypi/r/raet/raet-0.6.8.tar.gz -_eclasses_=distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e20b80360497e6215aed0dd4ca7d6bad python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa -_md5_=5d2e90c3fe9003b3cfd0a628ea9992c0 diff --git a/metadata/md5-cache/dev-python/requests-mock-1.9.3 b/metadata/md5-cache/dev-python/requests-mock-1.9.3 index 5ba189d45818..fe9b92664393 100644 --- a/metadata/md5-cache/dev-python/requests-mock-1.9.3 +++ b/metadata/md5-cache/dev-python/requests-mock-1.9.3 @@ -1,15 +1,15 @@ -BDEPEND=>=dev-python/pbr-0.8[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?] test? ( dev-python/fixtures[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/mock[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/pytest[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/testtools[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?] ) doc? ( || ( ( dev-lang/python:3.9 dev-python/sphinx[python_targets_python3_9(-)] ) ( dev-lang/python:3.8 dev-python/sphinx[python_targets_python3_8(-)] ) ( >=dev-python/pypy3-7.3.0:0 dev-python/sphinx[python_targets_pypy3(-)] ) ) ) test? ( >=dev-python/requests-2.3[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/six[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/unittest-or-fail[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?] +BDEPEND=>=dev-python/pbr-0.8[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] test? ( dev-python/fixtures[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/mock[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pytest[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/testtools[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) doc? ( || ( ( dev-lang/python:3.10 dev-python/sphinx[python_targets_python3_10(-)] ) ( dev-lang/python:3.9 dev-python/sphinx[python_targets_python3_9(-)] ) ( dev-lang/python:3.8 dev-python/sphinx[python_targets_python3_8(-)] ) ( >=dev-python/pypy3-7.3.0:0 dev-python/sphinx[python_targets_pypy3(-)] ) ) ) test? ( >=dev-python/requests-2.3[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/six[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pytest-4.5.0[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] DEFINED_PHASES=compile configure install prepare test DESCRIPTION=Mock out responses from the requests package -EAPI=7 +EAPI=8 HOMEPAGE=https://github.com/jamielennox/requests-mock -IUSE=doc test python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 +IUSE=doc test python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 KEYWORDS=amd64 ~arm arm64 ~ppc64 x86 LICENSE=Apache-2.0 -RDEPEND=>=dev-python/requests-2.3[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/six[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?] python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?] -REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 ) +RDEPEND=>=dev-python/requests-2.3[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/six[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/r/requests-mock/requests-mock-1.9.3.tar.gz -_eclasses_=distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e20b80360497e6215aed0dd4ca7d6bad python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa -_md5_=4ad275c87b14af3da7dc0d4dcd3190ec +_eclasses_=distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e20b80360497e6215aed0dd4ca7d6bad python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_md5_=7c99480a0cb9e1e6066a98c251ceb310 diff --git a/metadata/md5-cache/dev-python/resolvelib-0.7.1 b/metadata/md5-cache/dev-python/resolvelib-0.7.1 index 2198acd2c87a..39a82f44706b 100644 --- a/metadata/md5-cache/dev-python/resolvelib-0.7.1 +++ b/metadata/md5-cache/dev-python/resolvelib-0.7.1 @@ -4,7 +4,7 @@ DESCRIPTION=provides a Resolver class that includes dependency resolution logic EAPI=7 HOMEPAGE=https://github.com/sarugaku/resolvelib/ IUSE=test python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~amd64 ~arm ~arm64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~x86 LICENSE=ISC RDEPEND=python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/sarugaku/resolvelib/archive/0.7.1.tar.gz -> resolvelib-0.7.1.gh.tar.gz _eclasses_=distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e20b80360497e6215aed0dd4ca7d6bad python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa -_md5_=f66ba00b1493bd41cea4119228fc4d35 +_md5_=7da9afccc2f16f58c1832599a0eae725 diff --git a/metadata/md5-cache/dev-python/sphinx-autodoc-typehints-1.12.0 b/metadata/md5-cache/dev-python/sphinx-autodoc-typehints-1.12.0 index 934b5f6da5c6..19e2bad690bd 100644 --- a/metadata/md5-cache/dev-python/sphinx-autodoc-typehints-1.12.0 +++ b/metadata/md5-cache/dev-python/sphinx-autodoc-typehints-1.12.0 @@ -4,7 +4,7 @@ DESCRIPTION=Type hints support for the Sphinx autodoc extension EAPI=7 HOMEPAGE=https://github.com/agronholm/sphinx-autodoc-typehints/ https://pypi.org/project/sphinx-autodoc-typehints/ IUSE=test python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~amd64 ~arm ~sparc +KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~sparc LICENSE=MIT RDEPEND==dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/s/sphinx-autodoc-typehints/sphinx-autodoc-typehints-1.12.0.tar.gz _eclasses_=distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e20b80360497e6215aed0dd4ca7d6bad python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa -_md5_=960130e28b6226ce8fc81450150e372f +_md5_=fcdf11aa4f01555e39923b2085c1bbae diff --git a/metadata/md5-cache/dev-python/sphinxcontrib-programoutput-0.17 b/metadata/md5-cache/dev-python/sphinxcontrib-programoutput-0.17 index 7997f0dd75fe..50f6463372d0 100644 --- a/metadata/md5-cache/dev-python/sphinxcontrib-programoutput-0.17 +++ b/metadata/md5-cache/dev-python/sphinxcontrib-programoutput-0.17 @@ -4,7 +4,7 @@ DESCRIPTION=Extension to sphinx to include program output EAPI=7 HOMEPAGE=https://github.com/NextThought/sphinxcontrib-programoutput/ https://pypi.org/project/sphinxcontrib-programoutput/ IUSE=test doc python_targets_python3_8 python_targets_python3_9 -KEYWORDS=amd64 ~arm ~sparc x86 ~amd64-linux ~x86-linux +KEYWORDS=amd64 ~arm ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux LICENSE=BSD RDEPEND=dev-python/namespace-sphinxcontrib[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/sphinx[python_targets_python3_8(-)?,python_targets_python3_9(-)?] python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/s/sphinxcontrib-programoutput/sphinxcontrib-programoutput-0.17.tar.gz _eclasses_=distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e20b80360497e6215aed0dd4ca7d6bad python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa -_md5_=e9316c4653878647fc72041c16970259 +_md5_=b3b99455f1aadb871425fca00044f239 diff --git a/metadata/md5-cache/dev-python/sphobjinv-2.1 b/metadata/md5-cache/dev-python/sphobjinv-2.1 index 321fb5627bb5..7f4f8f23d7e9 100644 --- a/metadata/md5-cache/dev-python/sphobjinv-2.1 +++ b/metadata/md5-cache/dev-python/sphobjinv-2.1 @@ -4,7 +4,7 @@ DESCRIPTION=Sphinx objects.inv Inspection/Manipulation Tool EAPI=7 HOMEPAGE=https://github.com/bskinn/sphobjinv/ https://pypi.org/project/sphobjinv/ IUSE=test doc python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~amd64 ~arm ~sparc +KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~sparc LICENSE=MIT RDEPEND=>=dev-python/attrs-19.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/certifi[python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=dev-python/fuzzywuzzy-0.8[python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=dev-python/jsonschema-3.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?] python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?] REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 ) @@ -12,4 +12,4 @@ RESTRICT=test !test? ( test ) SLOT=0 SRC_URI=https://github.com/bskinn/sphobjinv/archive/v2.1.tar.gz -> sphobjinv-2.1.tar.gz _eclasses_=distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e20b80360497e6215aed0dd4ca7d6bad python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa -_md5_=9db889a5bc25247baf025cd8a100fcae +_md5_=9246b548e7141a9bad548b90b624e64c diff --git a/metadata/md5-cache/dev-python/spyder-notebook-0.3.2 b/metadata/md5-cache/dev-python/spyder-notebook-0.3.2 deleted file mode 100644 index 4c64deebac0d..000000000000 --- a/metadata/md5-cache/dev-python/spyder-notebook-0.3.2 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=test? ( dev-python/flaky[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/pytest-mock[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/pytest-qt[python_targets_python3_8(-)?,python_targets_python3_9(-)?] ) test? ( dev-python/jinja[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/jupyter_core[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/nbformat[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/notebook[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/psutil[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/qdarkstyle[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/QtPy[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/requests[python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=dev-python/spyder-4.1.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?] =dev-python/pytest-4.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?] ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?] test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=Jupyter notebook integration with Spyder -EAPI=7 -HOMEPAGE=https://github.com/spyder-ide/spyder-notebook -IUSE=test python_targets_python3_8 python_targets_python3_9 test -KEYWORDS=~amd64 ~x86 -LICENSE=MIT -RDEPEND=dev-python/jinja[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/jupyter_core[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/nbformat[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/notebook[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/psutil[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/qdarkstyle[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/QtPy[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/requests[python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=dev-python/spyder-4.1.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?] =dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] -REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 ) -RESTRICT=test !test? ( test ) -SLOT=0 -SRC_URI=https://github.com/spyder-ide/spyder-notebook/archive/v0.3.2.tar.gz -> spyder-notebook-0.3.2.tar.gz -_eclasses_=distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e20b80360497e6215aed0dd4ca7d6bad python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa virtualx 0a780e1ab49c75da33a78ede35ab8f9c -_md5_=8d36f6d786b9c52f588418b6f113ff67 diff --git a/metadata/md5-cache/dev-python/spyder-terminal-0.5.0 b/metadata/md5-cache/dev-python/spyder-terminal-1.0.0 similarity index 65% rename from metadata/md5-cache/dev-python/spyder-terminal-0.5.0 rename to metadata/md5-cache/dev-python/spyder-terminal-1.0.0 index 78768573e61c..ef78207c058c 100644 --- a/metadata/md5-cache/dev-python/spyder-terminal-0.5.0 +++ b/metadata/md5-cache/dev-python/spyder-terminal-1.0.0 @@ -6,9 +6,9 @@ HOMEPAGE=https://github.com/spyder-ide/spyder-terminal IUSE=python_targets_python3_8 python_targets_python3_9 KEYWORDS=~amd64 ~x86 LICENSE=MIT -RDEPEND=dev-python/coloredlogs[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/requests[python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=dev-python/spyder-4.1.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=dev-python/terminado-0.9.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?] www-servers/tornado[python_targets_python3_8(-)?,python_targets_python3_9(-)?] python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] +RDEPEND=dev-python/coloredlogs[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/requests[python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=dev-python/spyder-5.0.5[python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=dev-python/terminado-0.10.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?] www-servers/tornado[python_targets_python3_8(-)?,python_targets_python3_9(-)?] python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 ) SLOT=0 -SRC_URI=mirror://pypi/s/spyder-terminal/spyder-terminal-0.5.0.tar.gz +SRC_URI=mirror://pypi/s/spyder-terminal/spyder-terminal-1.0.0.tar.gz _eclasses_=distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e20b80360497e6215aed0dd4ca7d6bad python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa -_md5_=1601b5267f649345f37df60015398ba9 +_md5_=b6b39dff0cb838901209400b77f76c4d diff --git a/metadata/md5-cache/dev-python/spyder-unittest-0.4.1 b/metadata/md5-cache/dev-python/spyder-unittest-0.4.1 index 202dbd501bfc..d2790ef8968c 100644 --- a/metadata/md5-cache/dev-python/spyder-unittest-0.4.1 +++ b/metadata/md5-cache/dev-python/spyder-unittest-0.4.1 @@ -1,4 +1,4 @@ -BDEPEND=test? ( >=dev-python/spyder-4.0.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?] =dev-python/pytest-4.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?] ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?] test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) +BDEPEND=test? ( >=dev-python/spyder-4.0.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/pyzmq[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/lxml[python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=dev-python/pytest-4.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?] ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?] test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) DEFINED_PHASES=compile configure install prepare test DEPEND=test? ( dev-python/flaky[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/nose[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/pytest-mock[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/pytest-qt[python_targets_python3_8(-)?,python_targets_python3_9(-)?] ) DESCRIPTION=Plugin for Spyder to run tests and view the results @@ -7,10 +7,10 @@ HOMEPAGE=https://github.com/spyder-ide/spyder-unittest IUSE=test python_targets_python3_8 python_targets_python3_9 test KEYWORDS=~amd64 ~x86 LICENSE=MIT -RDEPEND=>=dev-python/spyder-4.0.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?] =dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] +RDEPEND=>=dev-python/spyder-4.0.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/pyzmq[python_targets_python3_8(-)?,python_targets_python3_9(-)?] dev-python/lxml[python_targets_python3_8(-)?,python_targets_python3_9(-)?] python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 ) -RESTRICT=!test? ( test ) !test? ( test ) +RESTRICT=test !test? ( test ) SLOT=0 SRC_URI=https://github.com/spyder-ide/spyder-unittest/archive/v0.4.1.tar.gz -> spyder-unittest-0.4.1.tar.gz _eclasses_=distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e20b80360497e6215aed0dd4ca7d6bad python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa virtualx 0a780e1ab49c75da33a78ede35ab8f9c -_md5_=75c67bc5180a05e42d9d42b4f89c0f25 +_md5_=3b198a8dc8a4afba5e1f6b6e85f1e691 diff --git a/metadata/md5-cache/dev-python/stdio-mgr-1.0.1 b/metadata/md5-cache/dev-python/stdio-mgr-1.0.1 index b2b840c8d299..43cf50fa6193 100644 --- a/metadata/md5-cache/dev-python/stdio-mgr-1.0.1 +++ b/metadata/md5-cache/dev-python/stdio-mgr-1.0.1 @@ -4,7 +4,7 @@ DESCRIPTION=Context manager for mocking/wrapping stdin/stdout/stderr EAPI=7 HOMEPAGE=https://github.com/bskinn/stdio-mgr/ https://pypi.org/project/stdio-mgr/ IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~amd64 ~arm ~sparc +KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~sparc LICENSE=MIT RDEPEND=>=dev-python/attrs-17.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/bskinn/stdio-mgr/archive/v1.0.1.tar.gz -> stdio-mgr-1.0.1.tar.gz _eclasses_=distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e20b80360497e6215aed0dd4ca7d6bad python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa -_md5_=345de6183e465eec718a6b56f50ad82d +_md5_=b620b867d859f0ea6856f791ba617010 diff --git a/metadata/md5-cache/dev-python/timeout-decorator-0.5.0 b/metadata/md5-cache/dev-python/timeout-decorator-0.5.0 index d59a1a60c1dc..6d2202876fb5 100644 --- a/metadata/md5-cache/dev-python/timeout-decorator-0.5.0 +++ b/metadata/md5-cache/dev-python/timeout-decorator-0.5.0 @@ -4,7 +4,7 @@ DESCRIPTION=Timeout decorator EAPI=7 HOMEPAGE=https://pypi.org/project/timeout-decorator/ https://github.com/pnpnpn/timeout-decorator/ IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=amd64 ~arm ~sparc x86 +KEYWORDS=amd64 ~arm ~ppc ~ppc64 ~sparc x86 LICENSE=MIT RDEPEND=python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/pnpnpn/timeout-decorator/archive/9fbc3ef5b6f8f8cba2eb7ba795813d6ec543e265.tar.gz -> timeout-decorator-9fbc3ef5b6f8f8cba2eb7ba795813d6ec543e265.tar.gz _eclasses_=distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e20b80360497e6215aed0dd4ca7d6bad python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa -_md5_=6cf78dbd2d0d99353e8739d76da67f20 +_md5_=f0e2b3c0ad7d49f82b44e5c5d003f471 diff --git a/metadata/md5-cache/dev-python/tzlocal-2.1 b/metadata/md5-cache/dev-python/tzlocal-2.1 index d7ffe546a171..ca5e5fd1636a 100644 --- a/metadata/md5-cache/dev-python/tzlocal-2.1 +++ b/metadata/md5-cache/dev-python/tzlocal-2.1 @@ -5,7 +5,7 @@ DESCRIPTION=tzinfo object for the local timezone EAPI=7 HOMEPAGE=https://github.com/regebro/tzlocal IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=amd64 ~arm ~arm64 x86 +KEYWORDS=amd64 ~arm ~arm64 ~ppc64 x86 LICENSE=MIT RDEPEND=dev-python/pytz[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) python_targets_python3_10? ( dev-lang/python:3.10 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/regebro/tzlocal/archive/2.1.tar.gz -> tzlocal-2.1.gh.tar.gz _eclasses_=distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e20b80360497e6215aed0dd4ca7d6bad python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa -_md5_=1befe420fbe4f36b21c7661e142d410d +_md5_=ec14c185ef21d98431bf6ed4b32216de diff --git a/metadata/md5-cache/dev-python/uvloop-0.15.2 b/metadata/md5-cache/dev-python/uvloop-0.15.2 index ca01755c88de..ecd86dfa6b87 100644 --- a/metadata/md5-cache/dev-python/uvloop-0.15.2 +++ b/metadata/md5-cache/dev-python/uvloop-0.15.2 @@ -5,7 +5,7 @@ DESCRIPTION=Ultra-fast implementation of asyncio event loop on top of libuv EAPI=7 HOMEPAGE=https://github.com/magicstack/uvloop IUSE=doc examples test python_targets_python3_8 python_targets_python3_9 -KEYWORDS=amd64 ~arm x86 +KEYWORDS=amd64 ~arm ~ppc ~ppc64 x86 LICENSE=MIT RDEPEND=>=dev-libs/libuv-1.11.0:= python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/u/uvloop/uvloop-0.15.2.tar.gz _eclasses_=distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e20b80360497e6215aed0dd4ca7d6bad python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa -_md5_=6eed3a8318075a602c87bed261f39ae3 +_md5_=803969ed79acc858029c84f8c3750381 diff --git a/metadata/md5-cache/dev-ruby/Manifest.gz b/metadata/md5-cache/dev-ruby/Manifest.gz index 110e6b0bcebf..bb71cf220ad7 100644 Binary files a/metadata/md5-cache/dev-ruby/Manifest.gz and b/metadata/md5-cache/dev-ruby/Manifest.gz differ diff --git a/metadata/md5-cache/dev-ruby/rspec-3.10.0 b/metadata/md5-cache/dev-ruby/rspec-3.10.0 index 980c0e78ac24..97593092bb46 100644 --- a/metadata/md5-cache/dev-ruby/rspec-3.10.0 +++ b/metadata/md5-cache/dev-ruby/rspec-3.10.0 @@ -5,7 +5,7 @@ DESCRIPTION=A Behaviour Driven Development (BDD) framework for Ruby EAPI=7 HOMEPAGE=https://github.com/rspec/rspec IUSE=test ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 doc test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~s390 ~sparc ~x86 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ppc64 ~s390 ~sparc ~x86 LICENSE=MIT RDEPEND=ruby_targets_ruby25? ( =dev-ruby/rspec-core-3.10*[ruby_targets_ruby25(-)] =dev-ruby/rspec-expectations-3.10*[ruby_targets_ruby25(-)] =dev-ruby/rspec-mocks-3.10*[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( =dev-ruby/rspec-core-3.10*[ruby_targets_ruby26(-)] =dev-ruby/rspec-expectations-3.10*[ruby_targets_ruby26(-)] =dev-ruby/rspec-mocks-3.10*[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( =dev-ruby/rspec-core-3.10*[ruby_targets_ruby27(-)] =dev-ruby/rspec-expectations-3.10*[ruby_targets_ruby27(-)] =dev-ruby/rspec-mocks-3.10*[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( =dev-ruby/rspec-core-3.10*[ruby_targets_ruby30(-)] =dev-ruby/rspec-expectations-3.10*[ruby_targets_ruby30(-)] =dev-ruby/rspec-mocks-3.10*[ruby_targets_ruby30(-)] ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/rspec-3.10.0.gem _eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 97566c1a256d07b00848aa767e38a352 ruby-fakegem 5e2d0d0c89a1e9425bc8dacd73e7e940 ruby-ng b97a1a9a3103f9a66f622ea3eb2ce12b ruby-utils 685587efe9ff6315b82811810827f69a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa -_md5_=f61d510aaafae0fa8827678b525b9401 +_md5_=8425400bb7acfc0a033d674fd7d076f5 diff --git a/metadata/md5-cache/dev-ruby/rspec-core-3.10.1 b/metadata/md5-cache/dev-ruby/rspec-core-3.10.1 index cb1f07ef57b0..c413e5d46e66 100644 --- a/metadata/md5-cache/dev-ruby/rspec-core-3.10.1 +++ b/metadata/md5-cache/dev-ruby/rspec-core-3.10.1 @@ -5,7 +5,7 @@ DESCRIPTION=A Behaviour Driven Development (BDD) framework for Ruby EAPI=7 HOMEPAGE=https://github.com/rspec/rspec-core IUSE=highlight test ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 doc test test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=MIT RDEPEND=ruby_targets_ruby25? ( =dev-ruby/rspec-support-3.10*[ruby_targets_ruby25(-)] highlight? ( >=dev-ruby/coderay-1.1.1[ruby_targets_ruby25(-)] ) ) ruby_targets_ruby26? ( =dev-ruby/rspec-support-3.10*[ruby_targets_ruby26(-)] highlight? ( >=dev-ruby/coderay-1.1.1[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( =dev-ruby/rspec-support-3.10*[ruby_targets_ruby27(-)] highlight? ( >=dev-ruby/coderay-1.1.1[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby30? ( =dev-ruby/rspec-support-3.10*[ruby_targets_ruby30(-)] highlight? ( >=dev-ruby/coderay-1.1.1[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/rspec/rspec-core/archive/v3.10.1.tar.gz -> rspec-core-3.10.1-git.tgz _eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 97566c1a256d07b00848aa767e38a352 ruby-fakegem 5e2d0d0c89a1e9425bc8dacd73e7e940 ruby-ng b97a1a9a3103f9a66f622ea3eb2ce12b ruby-utils 685587efe9ff6315b82811810827f69a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa -_md5_=15d7bffe54c5af303de4dd7ea7ad3921 +_md5_=773cf077e8514b14da2d9592f763ab8a diff --git a/metadata/md5-cache/dev-ruby/rspec-expectations-3.10.1 b/metadata/md5-cache/dev-ruby/rspec-expectations-3.10.1 index 6a568672dfe3..d605c4a764b6 100644 --- a/metadata/md5-cache/dev-ruby/rspec-expectations-3.10.1 +++ b/metadata/md5-cache/dev-ruby/rspec-expectations-3.10.1 @@ -5,7 +5,7 @@ DESCRIPTION=A Behaviour Driven Development (BDD) framework for Ruby EAPI=7 HOMEPAGE=https://github.com/rspec/rspec-expectations IUSE=test ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 test test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ppc64 ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=MIT RDEPEND=ruby_targets_ruby25? ( >=dev-ruby/diff-lcs-1.2.0[ruby_targets_ruby25(-)] =dev-ruby/diff-lcs-1*[ruby_targets_ruby25(-)] =dev-ruby/rspec-support-3.10*[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( >=dev-ruby/diff-lcs-1.2.0[ruby_targets_ruby26(-)] =dev-ruby/diff-lcs-1*[ruby_targets_ruby26(-)] =dev-ruby/rspec-support-3.10*[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/diff-lcs-1.2.0[ruby_targets_ruby27(-)] =dev-ruby/diff-lcs-1*[ruby_targets_ruby27(-)] =dev-ruby/rspec-support-3.10*[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-ruby/diff-lcs-1.2.0[ruby_targets_ruby30(-)] =dev-ruby/diff-lcs-1*[ruby_targets_ruby30(-)] =dev-ruby/rspec-support-3.10*[ruby_targets_ruby30(-)] ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/rspec/rspec-expectations/archive/v3.10.1.tar.gz -> rspec-expectations-3.10.1-git.tgz _eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 97566c1a256d07b00848aa767e38a352 ruby-fakegem 5e2d0d0c89a1e9425bc8dacd73e7e940 ruby-ng b97a1a9a3103f9a66f622ea3eb2ce12b ruby-utils 685587efe9ff6315b82811810827f69a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa -_md5_=24ff4de70ca89648c9f15979f95bc605 +_md5_=98cc1d19f7e2a75741e8b86e1542917f diff --git a/metadata/md5-cache/dev-ruby/rspec-mocks-3.10.2 b/metadata/md5-cache/dev-ruby/rspec-mocks-3.10.2 index 1073ed6d18b5..dfd785fa6260 100644 --- a/metadata/md5-cache/dev-ruby/rspec-mocks-3.10.2 +++ b/metadata/md5-cache/dev-ruby/rspec-mocks-3.10.2 @@ -5,7 +5,7 @@ DESCRIPTION=A Behaviour Driven Development (BDD) framework for Ruby EAPI=7 HOMEPAGE=https://github.com/rspec/rspec-mocks IUSE=test ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 doc test test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ppc64 ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=MIT RDEPEND=ruby_targets_ruby25? ( =dev-ruby/rspec-support-3.10*[ruby_targets_ruby25(-)] >=dev-ruby/diff-lcs-1.2.0[ruby_targets_ruby25(-)] =dev-ruby/diff-lcs-1*[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( =dev-ruby/rspec-support-3.10*[ruby_targets_ruby26(-)] >=dev-ruby/diff-lcs-1.2.0[ruby_targets_ruby26(-)] =dev-ruby/diff-lcs-1*[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( =dev-ruby/rspec-support-3.10*[ruby_targets_ruby27(-)] >=dev-ruby/diff-lcs-1.2.0[ruby_targets_ruby27(-)] =dev-ruby/diff-lcs-1*[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( =dev-ruby/rspec-support-3.10*[ruby_targets_ruby30(-)] >=dev-ruby/diff-lcs-1.2.0[ruby_targets_ruby30(-)] =dev-ruby/diff-lcs-1*[ruby_targets_ruby30(-)] ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/rspec/rspec-mocks/archive/v3.10.2.tar.gz -> rspec-mocks-3.10.2-git.tgz _eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 97566c1a256d07b00848aa767e38a352 ruby-fakegem 5e2d0d0c89a1e9425bc8dacd73e7e940 ruby-ng b97a1a9a3103f9a66f622ea3eb2ce12b ruby-utils 685587efe9ff6315b82811810827f69a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa -_md5_=532af0d690d73ea9db2da60c0941de68 +_md5_=e62509c9a313c28f8d80483adc9dc6a9 diff --git a/metadata/md5-cache/dev-ruby/rspec-support-3.10.2 b/metadata/md5-cache/dev-ruby/rspec-support-3.10.2 index f645daad03c9..5e405736798b 100644 --- a/metadata/md5-cache/dev-ruby/rspec-support-3.10.2 +++ b/metadata/md5-cache/dev-ruby/rspec-support-3.10.2 @@ -5,7 +5,7 @@ DESCRIPTION=A Behaviour Driven Development (BDD) framework for Ruby EAPI=7 HOMEPAGE=https://github.com/rspec/rspec-support IUSE=ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 doc test test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ppc64 ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=MIT RDEPEND=ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ruby_targets_ruby30 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/rspec/rspec-support/archive/v3.10.2.tar.gz -> rspec-support-3.10.2-git.tgz _eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 97566c1a256d07b00848aa767e38a352 ruby-fakegem 5e2d0d0c89a1e9425bc8dacd73e7e940 ruby-ng b97a1a9a3103f9a66f622ea3eb2ce12b ruby-utils 685587efe9ff6315b82811810827f69a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa -_md5_=ba7733366827e9f40125476111b856a0 +_md5_=3fb2939d9af931002a1d8197c49944e1 diff --git a/metadata/md5-cache/dev-util/Manifest.gz b/metadata/md5-cache/dev-util/Manifest.gz index 78989512815a..4343deb2bbe2 100644 Binary files a/metadata/md5-cache/dev-util/Manifest.gz and b/metadata/md5-cache/dev-util/Manifest.gz differ diff --git a/metadata/md5-cache/dev-util/cucumber-3.2.0 b/metadata/md5-cache/dev-util/cucumber-3.2.0 index bb4a707ab13b..846ea130ca9c 100644 --- a/metadata/md5-cache/dev-util/cucumber-3.2.0 +++ b/metadata/md5-cache/dev-util/cucumber-3.2.0 @@ -5,7 +5,7 @@ DESCRIPTION=Executable feature scenarios EAPI=7 HOMEPAGE=https://github.com/aslakhellesoy/cucumber/wikis IUSE=examples test test ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 test test -KEYWORDS=amd64 arm ~arm64 ~hppa ~ppc ~ppc64 ~s390 sparc x86 +KEYWORDS=amd64 arm arm64 ~hppa ~ppc ~ppc64 ~s390 sparc x86 LICENSE=Ruby RDEPEND=ruby_targets_ruby25? ( >=dev-ruby/builder-2.1.2:*[ruby_targets_ruby25(-)] dev-util/cucumber-core:3.2[ruby_targets_ruby25(-)] >=dev-util/cucumber-expressions-6.0.1:6.0[ruby_targets_ruby25(-)] >=dev-util/cucumber-wire-0.0.1:0[ruby_targets_ruby25(-)] =dev-ruby/diff-lcs-1.3*:0[ruby_targets_ruby25(-)] >=dev-ruby/gherkin-5.1.0:5[ruby_targets_ruby25(-)] >=dev-ruby/multi_json-1.7.5[ruby_targets_ruby25(-)] >=dev-ruby/multi_test-0.1.2[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( >=dev-ruby/builder-2.1.2:*[ruby_targets_ruby26(-)] dev-util/cucumber-core:3.2[ruby_targets_ruby26(-)] >=dev-util/cucumber-expressions-6.0.1:6.0[ruby_targets_ruby26(-)] >=dev-util/cucumber-wire-0.0.1:0[ruby_targets_ruby26(-)] =dev-ruby/diff-lcs-1.3*:0[ruby_targets_ruby26(-)] >=dev-ruby/gherkin-5.1.0:5[ruby_targets_ruby26(-)] >=dev-ruby/multi_json-1.7.5[ruby_targets_ruby26(-)] >=dev-ruby/multi_test-0.1.2[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/builder-2.1.2:*[ruby_targets_ruby27(-)] dev-util/cucumber-core:3.2[ruby_targets_ruby27(-)] >=dev-util/cucumber-expressions-6.0.1:6.0[ruby_targets_ruby27(-)] >=dev-util/cucumber-wire-0.0.1:0[ruby_targets_ruby27(-)] =dev-ruby/diff-lcs-1.3*:0[ruby_targets_ruby27(-)] >=dev-ruby/gherkin-5.1.0:5[ruby_targets_ruby27(-)] >=dev-ruby/multi_json-1.7.5[ruby_targets_ruby27(-)] >=dev-ruby/multi_test-0.1.2[ruby_targets_ruby27(-)] ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/cucumber/cucumber-ruby/archive/v3.2.0.tar.gz -> cucumber-3.2.0.tar.gz _eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib 97566c1a256d07b00848aa767e38a352 ruby-fakegem 5e2d0d0c89a1e9425bc8dacd73e7e940 ruby-ng b97a1a9a3103f9a66f622ea3eb2ce12b ruby-utils 685587efe9ff6315b82811810827f69a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa -_md5_=d5613176078492e006e8246eeab5c8c6 +_md5_=01fd46dc80ae94bf5fc70248e9cd1fd4 diff --git a/metadata/md5-cache/games-puzzle/Manifest.gz b/metadata/md5-cache/games-puzzle/Manifest.gz index 2d3c980d4bd4..a745f4abf3b4 100644 Binary files a/metadata/md5-cache/games-puzzle/Manifest.gz and b/metadata/md5-cache/games-puzzle/Manifest.gz differ diff --git a/metadata/md5-cache/games-puzzle/construo-0.2.3 b/metadata/md5-cache/games-puzzle/construo-0.2.3 index 0dfee22bc42f..24d4a3af6817 100644 --- a/metadata/md5-cache/games-puzzle/construo-0.2.3 +++ b/metadata/md5-cache/games-puzzle/construo-0.2.3 @@ -1,5 +1,5 @@ BDEPEND=sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.2-r1:1.16 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 -DEFINED_PHASES=install prepare +DEFINED_PHASES=compile install prepare DEPEND=media-libs/freeglut virtual/glu virtual/opengl x11-libs/libXxf86vm x11-base/xorg-proto DESCRIPTION=2d construction toy with objects that react on physical forces EAPI=7 @@ -10,4 +10,4 @@ RDEPEND=media-libs/freeglut virtual/glu virtual/opengl x11-libs/libXxf86vm SLOT=0 SRC_URI=http://download-mirror.savannah.gnu.org/releases/construo/construo.pkg/0.2.3/construo-0.2.3.tar.gz _eclasses_=autotools 9e63f92c2a5d867fea55ecb160c7d354 desktop c0d27bf73aa08ca05b663dbd31fbef28 gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa -_md5_=220e5f38590df04ce4280eb67dc5f834 +_md5_=a43d0c04308a08954c484939096e660f diff --git a/metadata/md5-cache/games-sports/Manifest.gz b/metadata/md5-cache/games-sports/Manifest.gz index 804cf592531d..a64e67f0f470 100644 Binary files a/metadata/md5-cache/games-sports/Manifest.gz and b/metadata/md5-cache/games-sports/Manifest.gz differ diff --git a/metadata/md5-cache/games-sports/stormbaancoureur-2.1.6-r1 b/metadata/md5-cache/games-sports/stormbaancoureur-2.1.6-r1 deleted file mode 100644 index 47e504376f69..000000000000 --- a/metadata/md5-cache/games-sports/stormbaancoureur-2.1.6-r1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=install prepare -DEPEND=>=dev-games/ode-0.8 media-libs/alsa-lib media-libs/freeglut >=media-libs/plib-1.8.4 virtual/glu virtual/opengl -DESCRIPTION=Simulated obstacle course for automobiles -EAPI=6 -HOMEPAGE=http://www.stolk.org/stormbaancoureur/ -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-3 -RDEPEND=>=dev-games/ode-0.8 media-libs/alsa-lib media-libs/freeglut >=media-libs/plib-1.8.4 virtual/glu virtual/opengl -SLOT=0 -SRC_URI=http://www.stolk.org/stormbaancoureur/download/stormbaancoureur-2.1.6.tar.gz -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 -_md5_=718ee6e564efd52f2cabaaa1ed471e2c diff --git a/metadata/md5-cache/games-sports/stormbaancoureur-2.1.6-r2 b/metadata/md5-cache/games-sports/stormbaancoureur-2.1.6-r2 new file mode 100644 index 000000000000..ffd4488ccb48 --- /dev/null +++ b/metadata/md5-cache/games-sports/stormbaancoureur-2.1.6-r2 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile install prepare +DEPEND=>=dev-games/ode-0.8[-double-precision] media-libs/alsa-lib media-libs/freeglut >=media-libs/plib-1.8.4 virtual/glu virtual/opengl +DESCRIPTION=Simulated obstacle course for automobiles +EAPI=8 +HOMEPAGE=http://www.stolk.org/stormbaancoureur/ +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-3 +RDEPEND=>=dev-games/ode-0.8[-double-precision] media-libs/alsa-lib media-libs/freeglut >=media-libs/plib-1.8.4 virtual/glu virtual/opengl +SLOT=0 +SRC_URI=http://www.stolk.org/stormbaancoureur/download/stormbaancoureur-2.1.6.tar.gz +_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_md5_=b70b7cf587b474d2d38b3858b8f88d9b diff --git a/metadata/md5-cache/gui-apps/Manifest.gz b/metadata/md5-cache/gui-apps/Manifest.gz index 92f484b42f11..e5a13d23c4a4 100644 Binary files a/metadata/md5-cache/gui-apps/Manifest.gz and b/metadata/md5-cache/gui-apps/Manifest.gz differ diff --git a/metadata/md5-cache/gui-apps/waybar-0.9.5 b/metadata/md5-cache/gui-apps/waybar-0.9.5-r1 similarity index 62% rename from metadata/md5-cache/gui-apps/waybar-0.9.5 rename to metadata/md5-cache/gui-apps/waybar-0.9.5-r1 index 824086cabc3b..80213a8b89b6 100644 --- a/metadata/md5-cache/gui-apps/waybar-0.9.5 +++ b/metadata/md5-cache/gui-apps/waybar-0.9.5-r1 @@ -1,14 +1,14 @@ BDEPEND=>=app-text/scdoc-1.9.2 virtual/pkgconfig >=dev-util/meson-0.56.0 >=dev-util/ninja-1.8.2 dev-util/meson-format-array DEFINED_PHASES=compile configure install test -DEPEND=dev-cpp/gtkmm:3.0 dev-libs/jsoncpp:= dev-libs/libinput:= dev-libs/libsigc++:2 >=dev-libs/libfmt-5.3.0:= >=dev-libs/spdlog-1.8.0:= dev-libs/date:= dev-libs/wayland dev-libs/wayland-protocols gui-libs/wlroots x11-libs/gtk+:3[wayland] mpd? ( media-libs/libmpdclient ) network? ( dev-libs/libnl:3 ) popups? ( gui-libs/gtk-layer-shell ) pulseaudio? ( media-sound/pulseaudio ) tray? ( dev-libs/libdbusmenu[gtk3] dev-libs/libappindicator ) udev? ( virtual/libudev:= ) wifi? ( || ( sys-apps/util-linux net-wireless/rfkill ) ) +DEPEND=dev-cpp/gtkmm:3.0 dev-libs/jsoncpp:= dev-libs/libinput:= dev-libs/libsigc++:2 >=dev-libs/libfmt-5.3.0:= >=dev-libs/spdlog-1.8.0:= dev-libs/date:= dev-libs/wayland dev-libs/wayland-protocols gui-libs/wlroots:= x11-libs/gtk+:3[wayland] mpd? ( media-libs/libmpdclient ) network? ( dev-libs/libnl:3 ) popups? ( gui-libs/gtk-layer-shell ) pulseaudio? ( media-sound/pulseaudio ) tray? ( dev-libs/libdbusmenu[gtk3] dev-libs/libappindicator ) udev? ( virtual/libudev:= ) wifi? ( || ( sys-apps/util-linux net-wireless/rfkill ) ) DESCRIPTION=Highly customizable Wayland bar for Sway and Wlroots based compositors EAPI=7 HOMEPAGE=https://github.com/Alexays/Waybar IUSE=mpd network popups pulseaudio tray +udev wifi KEYWORDS=~amd64 LICENSE=MIT -RDEPEND=dev-cpp/gtkmm:3.0 dev-libs/jsoncpp:= dev-libs/libinput:= dev-libs/libsigc++:2 >=dev-libs/libfmt-5.3.0:= >=dev-libs/spdlog-1.8.0:= dev-libs/date:= dev-libs/wayland dev-libs/wayland-protocols gui-libs/wlroots x11-libs/gtk+:3[wayland] mpd? ( media-libs/libmpdclient ) network? ( dev-libs/libnl:3 ) popups? ( gui-libs/gtk-layer-shell ) pulseaudio? ( media-sound/pulseaudio ) tray? ( dev-libs/libdbusmenu[gtk3] dev-libs/libappindicator ) udev? ( virtual/libudev:= ) wifi? ( || ( sys-apps/util-linux net-wireless/rfkill ) ) +RDEPEND=dev-cpp/gtkmm:3.0 dev-libs/jsoncpp:= dev-libs/libinput:= dev-libs/libsigc++:2 >=dev-libs/libfmt-5.3.0:= >=dev-libs/spdlog-1.8.0:= dev-libs/date:= dev-libs/wayland dev-libs/wayland-protocols gui-libs/wlroots:= x11-libs/gtk+:3[wayland] mpd? ( media-libs/libmpdclient ) network? ( dev-libs/libnl:3 ) popups? ( gui-libs/gtk-layer-shell ) pulseaudio? ( media-sound/pulseaudio ) tray? ( dev-libs/libdbusmenu[gtk3] dev-libs/libappindicator ) udev? ( virtual/libudev:= ) wifi? ( || ( sys-apps/util-linux net-wireless/rfkill ) ) SLOT=0 SRC_URI=https://github.com/Alexays/Waybar/archive/0.9.5.tar.gz -> waybar-0.9.5.tar.gz _eclasses_=eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 meson 5bc3f1b890f90cc00cf1d1dddc10233e multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils a4dab848a4490e8e48cf0baab3e61bc2 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa -_md5_=c4d74b203794f1c0619d2c2a2896690f +_md5_=880e082471bcdd5368cfba334ab7f90c diff --git a/metadata/md5-cache/gui-apps/waybar-0.9.7 b/metadata/md5-cache/gui-apps/waybar-0.9.7-r1 similarity index 62% rename from metadata/md5-cache/gui-apps/waybar-0.9.7 rename to metadata/md5-cache/gui-apps/waybar-0.9.7-r1 index 8e69a9a5539c..54852f0c7c84 100644 --- a/metadata/md5-cache/gui-apps/waybar-0.9.7 +++ b/metadata/md5-cache/gui-apps/waybar-0.9.7-r1 @@ -1,14 +1,14 @@ BDEPEND=>=app-text/scdoc-1.9.2 virtual/pkgconfig >=dev-util/meson-0.56.0 >=dev-util/ninja-1.8.2 dev-util/meson-format-array DEFINED_PHASES=compile configure install test -DEPEND=dev-cpp/gtkmm:3.0 dev-libs/jsoncpp:= dev-libs/libinput:= dev-libs/libsigc++:2 >=dev-libs/libfmt-5.3.0:= >=dev-libs/spdlog-1.8.0:= dev-libs/date:= dev-libs/wayland dev-libs/wayland-protocols gui-libs/wlroots x11-libs/gtk+:3[wayland] mpd? ( media-libs/libmpdclient ) network? ( dev-libs/libnl:3 ) popups? ( gui-libs/gtk-layer-shell ) pulseaudio? ( media-sound/pulseaudio ) tray? ( dev-libs/libdbusmenu[gtk3] dev-libs/libappindicator ) udev? ( virtual/libudev:= ) wifi? ( || ( sys-apps/util-linux net-wireless/rfkill ) ) +DEPEND=dev-cpp/gtkmm:3.0 dev-libs/jsoncpp:= dev-libs/libinput:= dev-libs/libsigc++:2 >=dev-libs/libfmt-5.3.0:= >=dev-libs/spdlog-1.8.0:= dev-libs/date:= dev-libs/wayland dev-libs/wayland-protocols gui-libs/wlroots:= x11-libs/gtk+:3[wayland] mpd? ( media-libs/libmpdclient ) network? ( dev-libs/libnl:3 ) popups? ( gui-libs/gtk-layer-shell ) pulseaudio? ( media-sound/pulseaudio ) tray? ( dev-libs/libdbusmenu[gtk3] dev-libs/libappindicator ) udev? ( virtual/libudev:= ) wifi? ( || ( sys-apps/util-linux net-wireless/rfkill ) ) DESCRIPTION=Highly customizable Wayland bar for Sway and Wlroots based compositors EAPI=7 HOMEPAGE=https://github.com/Alexays/Waybar IUSE=mpd network popups pulseaudio tray +udev wifi KEYWORDS=~amd64 LICENSE=MIT -RDEPEND=dev-cpp/gtkmm:3.0 dev-libs/jsoncpp:= dev-libs/libinput:= dev-libs/libsigc++:2 >=dev-libs/libfmt-5.3.0:= >=dev-libs/spdlog-1.8.0:= dev-libs/date:= dev-libs/wayland dev-libs/wayland-protocols gui-libs/wlroots x11-libs/gtk+:3[wayland] mpd? ( media-libs/libmpdclient ) network? ( dev-libs/libnl:3 ) popups? ( gui-libs/gtk-layer-shell ) pulseaudio? ( media-sound/pulseaudio ) tray? ( dev-libs/libdbusmenu[gtk3] dev-libs/libappindicator ) udev? ( virtual/libudev:= ) wifi? ( || ( sys-apps/util-linux net-wireless/rfkill ) ) +RDEPEND=dev-cpp/gtkmm:3.0 dev-libs/jsoncpp:= dev-libs/libinput:= dev-libs/libsigc++:2 >=dev-libs/libfmt-5.3.0:= >=dev-libs/spdlog-1.8.0:= dev-libs/date:= dev-libs/wayland dev-libs/wayland-protocols gui-libs/wlroots:= x11-libs/gtk+:3[wayland] mpd? ( media-libs/libmpdclient ) network? ( dev-libs/libnl:3 ) popups? ( gui-libs/gtk-layer-shell ) pulseaudio? ( media-sound/pulseaudio ) tray? ( dev-libs/libdbusmenu[gtk3] dev-libs/libappindicator ) udev? ( virtual/libudev:= ) wifi? ( || ( sys-apps/util-linux net-wireless/rfkill ) ) SLOT=0 SRC_URI=https://github.com/Alexays/Waybar/archive/0.9.7.tar.gz -> waybar-0.9.7.tar.gz _eclasses_=eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 meson 5bc3f1b890f90cc00cf1d1dddc10233e multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils a4dab848a4490e8e48cf0baab3e61bc2 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa -_md5_=c4d74b203794f1c0619d2c2a2896690f +_md5_=880e082471bcdd5368cfba334ab7f90c diff --git a/metadata/md5-cache/gui-apps/waybar-9999 b/metadata/md5-cache/gui-apps/waybar-9999 index a265e9c458cb..1d0339daff4d 100644 --- a/metadata/md5-cache/gui-apps/waybar-9999 +++ b/metadata/md5-cache/gui-apps/waybar-9999 @@ -1,13 +1,13 @@ BDEPEND=>=app-text/scdoc-1.9.2 virtual/pkgconfig >=dev-util/meson-0.56.0 >=dev-util/ninja-1.8.2 dev-util/meson-format-array >=dev-vcs/git-1.8.2.1[curl] DEFINED_PHASES=compile configure install test unpack -DEPEND=dev-cpp/gtkmm:3.0 dev-libs/jsoncpp:= dev-libs/libinput:= dev-libs/libsigc++:2 >=dev-libs/libfmt-5.3.0:= >=dev-libs/spdlog-1.8.0:= dev-libs/date:= dev-libs/wayland dev-libs/wayland-protocols gui-libs/wlroots x11-libs/gtk+:3[wayland] mpd? ( media-libs/libmpdclient ) network? ( dev-libs/libnl:3 ) popups? ( gui-libs/gtk-layer-shell ) pulseaudio? ( media-sound/pulseaudio ) tray? ( dev-libs/libdbusmenu[gtk3] dev-libs/libappindicator ) udev? ( virtual/libudev:= ) wifi? ( || ( sys-apps/util-linux net-wireless/rfkill ) ) +DEPEND=dev-cpp/gtkmm:3.0 dev-libs/jsoncpp:= dev-libs/libinput:= dev-libs/libsigc++:2 >=dev-libs/libfmt-5.3.0:= >=dev-libs/spdlog-1.8.0:= dev-libs/date:= dev-libs/wayland dev-libs/wayland-protocols gui-libs/wlroots:= x11-libs/gtk+:3[wayland] mpd? ( media-libs/libmpdclient ) network? ( dev-libs/libnl:3 ) popups? ( gui-libs/gtk-layer-shell ) pulseaudio? ( media-sound/pulseaudio ) tray? ( dev-libs/libdbusmenu[gtk3] dev-libs/libappindicator ) udev? ( virtual/libudev:= ) wifi? ( || ( sys-apps/util-linux net-wireless/rfkill ) ) DESCRIPTION=Highly customizable Wayland bar for Sway and Wlroots based compositors EAPI=7 HOMEPAGE=https://github.com/Alexays/Waybar IUSE=mpd network popups pulseaudio tray +udev wifi LICENSE=MIT PROPERTIES=live -RDEPEND=dev-cpp/gtkmm:3.0 dev-libs/jsoncpp:= dev-libs/libinput:= dev-libs/libsigc++:2 >=dev-libs/libfmt-5.3.0:= >=dev-libs/spdlog-1.8.0:= dev-libs/date:= dev-libs/wayland dev-libs/wayland-protocols gui-libs/wlroots x11-libs/gtk+:3[wayland] mpd? ( media-libs/libmpdclient ) network? ( dev-libs/libnl:3 ) popups? ( gui-libs/gtk-layer-shell ) pulseaudio? ( media-sound/pulseaudio ) tray? ( dev-libs/libdbusmenu[gtk3] dev-libs/libappindicator ) udev? ( virtual/libudev:= ) wifi? ( || ( sys-apps/util-linux net-wireless/rfkill ) ) +RDEPEND=dev-cpp/gtkmm:3.0 dev-libs/jsoncpp:= dev-libs/libinput:= dev-libs/libsigc++:2 >=dev-libs/libfmt-5.3.0:= >=dev-libs/spdlog-1.8.0:= dev-libs/date:= dev-libs/wayland dev-libs/wayland-protocols gui-libs/wlroots:= x11-libs/gtk+:3[wayland] mpd? ( media-libs/libmpdclient ) network? ( dev-libs/libnl:3 ) popups? ( gui-libs/gtk-layer-shell ) pulseaudio? ( media-sound/pulseaudio ) tray? ( dev-libs/libdbusmenu[gtk3] dev-libs/libappindicator ) udev? ( virtual/libudev:= ) wifi? ( || ( sys-apps/util-linux net-wireless/rfkill ) ) SLOT=0 _eclasses_=eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 git-r3 cc875b0c1e9b3bdac1af0f82f3ba29da meson 5bc3f1b890f90cc00cf1d1dddc10233e multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils a4dab848a4490e8e48cf0baab3e61bc2 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa -_md5_=e89d0a3a0f50dd37bb83b5754c382093 +_md5_=b0efe78cd50cecb212e79d51119a93c2 diff --git a/metadata/md5-cache/mail-filter/Manifest.gz b/metadata/md5-cache/mail-filter/Manifest.gz index 8c49f4d68a0c..90da80059cea 100644 Binary files a/metadata/md5-cache/mail-filter/Manifest.gz and b/metadata/md5-cache/mail-filter/Manifest.gz differ diff --git a/metadata/md5-cache/mail-filter/bogofilter-1.2.5 b/metadata/md5-cache/mail-filter/bogofilter-1.2.5 new file mode 100644 index 000000000000..61e8b52bbc41 --- /dev/null +++ b/metadata/md5-cache/mail-filter/bogofilter-1.2.5 @@ -0,0 +1,14 @@ +BDEPEND=sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.2-r1:1.16 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +DEFINED_PHASES=configure install prepare setup test +DEPEND=app-arch/pax sci-libs/gsl:= virtual/libiconv berkdb? ( >=sys-libs/db-3.2:* ) !berkdb? ( sqlite? ( >=dev-db/sqlite-3.6.22 ) !sqlite? ( tokyocabinet? ( dev-db/tokyocabinet ) !tokyocabinet? ( >=sys-libs/db-3.2:* ) ) ) +DESCRIPTION=Bayesian spam filter designed with fast algorithms, and tuned for speed +EAPI=7 +HOMEPAGE=http://bogofilter.sourceforge.net/ +IUSE=berkdb sqlite tokyocabinet +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 +LICENSE=GPL-3+ CC-BY-ND-3.0 +RDEPEND=app-arch/pax sci-libs/gsl:= virtual/libiconv berkdb? ( >=sys-libs/db-3.2:* ) !berkdb? ( sqlite? ( >=dev-db/sqlite-3.6.22 ) !sqlite? ( tokyocabinet? ( dev-db/tokyocabinet ) !tokyocabinet? ( >=sys-libs/db-3.2:* ) ) ) +SLOT=0 +SRC_URI=mirror://sourceforge/bogofilter/bogofilter-1.2.5.tar.xz +_eclasses_=autotools 9e63f92c2a5d867fea55ecb160c7d354 db-use 063d3e7add942762a8203b52ec3066c2 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic 4134b5c0fb719b9161d10bdaba9e09e5 gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e multilib 97566c1a256d07b00848aa767e38a352 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa wrapper 4251d4c84c25f59094fd557e0063a974 +_md5_=44d72b4ff757685d25025792f15a2a36 diff --git a/metadata/md5-cache/media-fonts/Manifest.gz b/metadata/md5-cache/media-fonts/Manifest.gz index 9689ebe840de..452d9fb6cd91 100644 Binary files a/metadata/md5-cache/media-fonts/Manifest.gz and b/metadata/md5-cache/media-fonts/Manifest.gz differ diff --git a/metadata/md5-cache/media-fonts/iosevka-7.0.4 b/metadata/md5-cache/media-fonts/iosevka-7.0.4 new file mode 100644 index 000000000000..b71619df2f76 --- /dev/null +++ b/metadata/md5-cache/media-fonts/iosevka-7.0.4 @@ -0,0 +1,12 @@ +BDEPEND=app-arch/unzip X? ( >=x11-apps/mkfontscale-1.2.0 media-fonts/encodings ) +DEFINED_PHASES=install postinst postrm setup +DESCRIPTION=Slender typeface for code, from code +EAPI=7 +HOMEPAGE=https://be5invis.github.io/Iosevka/ +IUSE=X +KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~x86 +LICENSE=OFL-1.1 +SLOT=0 +SRC_URI=https://github.com/be5invis/Iosevka/releases/download/v7.0.4/super-ttc-iosevka-7.0.4.zip +_eclasses_=font 0667878c2b594871023dd1833d05996f +_md5_=50d193143993d7b18cb91fffd5d8c52c diff --git a/metadata/md5-cache/media-fonts/terminus-font-4.49.1 b/metadata/md5-cache/media-fonts/terminus-font-4.49.1 index f174f9f804c5..08419e6f3090 100644 --- a/metadata/md5-cache/media-fonts/terminus-font-4.49.1 +++ b/metadata/md5-cache/media-fonts/terminus-font-4.49.1 @@ -1,14 +1,13 @@ -BDEPEND=X? ( >=x11-apps/mkfontscale-1.2.0 media-fonts/encodings ) +BDEPEND=app-arch/gzip || ( dev-lang/python:3.10 dev-lang/python:3.9 dev-lang/python:3.8 ) virtual/awk pcf? ( x11-apps/bdftopcf ) X? ( >=x11-apps/mkfontscale-1.2.0 media-fonts/encodings ) DEFINED_PHASES=compile configure install postinst postrm prepare setup -DEPEND=app-arch/gzip || ( dev-lang/python:3.10 dev-lang/python:3.9 dev-lang/python:3.8 ) virtual/awk pcf? ( x11-apps/bdftopcf ) DESCRIPTION=A clean fixed font for the console and X11 EAPI=7 HOMEPAGE=http://terminus-font.sourceforge.net/ IUSE=a-like-o +center-tilde distinct-l +otf +pcf +pcf-unicode-only +psf quote ru-dv +ru-g ru-i ru-k X KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos LICENSE=OFL-1.1 GPL-2 -REQUIRED_USE=X? ( pcf ) +REQUIRED_USE=X? ( || ( otf pcf ) ) SLOT=0 SRC_URI=mirror://sourceforge/project/terminus-font/terminus-font-4.49/terminus-font-4.49.1.tar.gz _eclasses_=eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 font 0667878c2b594871023dd1833d05996f multilib 97566c1a256d07b00848aa767e38a352 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa -_md5_=c343975032bcc863387f4cbd6978d036 +_md5_=78f608fae83482f9f4b9af8ecd4bd8dd diff --git a/metadata/md5-cache/media-plugins/Manifest.gz b/metadata/md5-cache/media-plugins/Manifest.gz index 12a64216f335..7852f414d051 100644 Binary files a/metadata/md5-cache/media-plugins/Manifest.gz and b/metadata/md5-cache/media-plugins/Manifest.gz differ diff --git a/metadata/md5-cache/media-plugins/kodi-inputstream-ffmpegdirect-1.21.6 b/metadata/md5-cache/media-plugins/kodi-inputstream-ffmpegdirect-1.21.6 new file mode 100644 index 000000000000..0a122d4b3a57 --- /dev/null +++ b/metadata/md5-cache/media-plugins/kodi-inputstream-ffmpegdirect-1.21.6 @@ -0,0 +1,13 @@ +BDEPEND=virtual/pkgconfig dev-util/ninja dev-util/cmake +DEFINED_PHASES=compile configure install prepare test +DEPEND=media-video/ffmpeg[encode,libxml2,zlib] virtual/libiconv app-arch/bzip2 =media-tv/kodi-19* +DESCRIPTION=Kodi's FFMpeg Direct Inputstream addon +EAPI=7 +HOMEPAGE=https://github.com/xbmc/inputstream.ffmpegdirect +KEYWORDS=~amd64 ~arm64 +LICENSE=GPL-2 +RDEPEND=media-video/ffmpeg[encode,libxml2,zlib] virtual/libiconv app-arch/bzip2 =media-tv/kodi-19* +SLOT=0 +SRC_URI=https://github.com/xbmc/inputstream.ffmpegdirect/archive/1.21.6-Matrix.tar.gz -> kodi-inputstream-ffmpegdirect-1.21.6.tar.gz +_eclasses_=cmake 518e4c9a6a38dfd7afc54b6a7c5de3da edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic 4134b5c0fb719b9161d10bdaba9e09e5 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils a4dab848a4490e8e48cf0baab3e61bc2 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils 27f9a2f19502b925ac117bd657aa2979 +_md5_=b440038342814d735aa90471220ffaa0 diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-hts-8.3.2 b/metadata/md5-cache/media-plugins/kodi-pvr-hts-8.3.2 new file mode 100644 index 000000000000..a8b91d3b566e --- /dev/null +++ b/metadata/md5-cache/media-plugins/kodi-pvr-hts-8.3.2 @@ -0,0 +1,13 @@ +BDEPEND=dev-util/ninja dev-util/cmake +DEFINED_PHASES=compile configure install prepare test +DEPEND==media-tv/kodi-19* +DESCRIPTION=Tvheadend Live TV and Radio PVR client addon for Kodi +EAPI=7 +HOMEPAGE=https://github.com/kodi-pvr/pvr.hts +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND==media-tv/kodi-19* +SLOT=0 +SRC_URI=https://github.com/kodi-pvr/pvr.hts/archive/8.3.2-Matrix.tar.gz -> kodi-pvr-hts-8.3.2.tar.gz +_eclasses_=cmake 518e4c9a6a38dfd7afc54b6a7c5de3da edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic 4134b5c0fb719b9161d10bdaba9e09e5 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils a4dab848a4490e8e48cf0baab3e61bc2 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils 27f9a2f19502b925ac117bd657aa2979 +_md5_=0274b4aa1c101f5bdf26f9c0adc9830c diff --git a/metadata/md5-cache/media-sound/Manifest.gz b/metadata/md5-cache/media-sound/Manifest.gz index 3513883effb8..66b17751c3ba 100644 Binary files a/metadata/md5-cache/media-sound/Manifest.gz and b/metadata/md5-cache/media-sound/Manifest.gz differ diff --git a/metadata/md5-cache/media-sound/mpg123-1.28.0-r1 b/metadata/md5-cache/media-sound/mpg123-1.28.0-r1 index 6b93a0236f24..511558f922b5 100644 --- a/metadata/md5-cache/media-sound/mpg123-1.28.0-r1 +++ b/metadata/md5-cache/media-sound/mpg123-1.28.0-r1 @@ -6,10 +6,10 @@ EAPI=8 HOMEPAGE=https://www.mpg123.org/ IDEPEND=app-eselect/eselect-mpg123 IUSE=cpu_flags_x86_3dnow cpu_flags_x86_3dnowext cpu_flags_ppc_altivec alsa coreaudio int-quality ipv6 jack cpu_flags_x86_mmx nas oss portaudio pulseaudio sdl cpu_flags_x86_sse abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x86-solaris +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x86-solaris LICENSE=GPL-2 LGPL-2.1 RDEPEND=dev-libs/libltdl:0 alsa? ( media-libs/alsa-lib ) jack? ( virtual/jack ) nas? ( media-libs/nas ) portaudio? ( media-libs/portaudio ) pulseaudio? ( media-sound/pulseaudio ) sdl? ( media-libs/libsdl ) SLOT=0 SRC_URI=https://www.mpg123.org/download/mpg123-1.28.0.tar.bz2 _eclasses_=flag-o-matic 4134b5c0fb719b9161d10bdaba9e09e5 libtool 241a8f577b9781a42a7421e53448a44e multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multilib-build effd4508d5e8209273d82d8f67ee93a0 multilib-minimal 7187f259f207bf5b69e4ff01498a7269 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa -_md5_=776e0fa3d33c0d99842f007fef2f28e4 +_md5_=302778e26eff1ab58a809b64dfaf600b diff --git a/metadata/md5-cache/net-misc/Manifest.gz b/metadata/md5-cache/net-misc/Manifest.gz index cd173c31f557..b4f5488f0aee 100644 Binary files a/metadata/md5-cache/net-misc/Manifest.gz and b/metadata/md5-cache/net-misc/Manifest.gz differ diff --git a/metadata/md5-cache/net-misc/wol-0.7.1-r2 b/metadata/md5-cache/net-misc/wol-0.7.1-r2 index 2653631db8e2..ede6b4062a3a 100644 --- a/metadata/md5-cache/net-misc/wol-0.7.1-r2 +++ b/metadata/md5-cache/net-misc/wol-0.7.1-r2 @@ -3,9 +3,9 @@ DESCRIPTION=Implements Wake On LAN (Magic Paket) functionality in a small progra EAPI=7 HOMEPAGE=http://ahh.sourceforge.net/wol/ IUSE=nls -KEYWORDS=amd64 arm ~arm64 ~hppa ~ia64 ppc ppc64 ~sparc x86 +KEYWORDS=amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~sparc x86 LICENSE=GPL-2+ SLOT=0 SRC_URI=mirror://sourceforge/ahh/wol-0.7.1.tar.gz _eclasses_=multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa -_md5_=a81bc4459f395c36a8af876f8c763403 +_md5_=9d7671728034840c81e42b5809690768 diff --git a/metadata/md5-cache/net-p2p/Manifest.gz b/metadata/md5-cache/net-p2p/Manifest.gz index 5e9c99e0e896..20e40e8fd1e9 100644 Binary files a/metadata/md5-cache/net-p2p/Manifest.gz and b/metadata/md5-cache/net-p2p/Manifest.gz differ diff --git a/metadata/md5-cache/net-p2p/mktorrent-1.1_p20210130 b/metadata/md5-cache/net-p2p/mktorrent-1.1_p20210130 new file mode 100644 index 000000000000..67c7a8232bba --- /dev/null +++ b/metadata/md5-cache/net-p2p/mktorrent-1.1_p20210130 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile install +DEPEND=ssl? ( dev-libs/openssl:0= ) +DESCRIPTION=Simple command line utility to create BitTorrent metainfo files +EAPI=7 +HOMEPAGE=https://github.com/pobrn/mktorrent +IUSE=threads +ssl debug +KEYWORDS=~amd64 ~arm ~x86 +LICENSE=GPL-2+ +RDEPEND=ssl? ( dev-libs/openssl:0= ) +SLOT=0 +SRC_URI=https://github.com/pobrn/mktorrent/archive/de7d011b35458de1472665f50b96c9cf6c303f39.tar.gz -> mktorrent-de7d011b35458de1472665f50b96c9cf6c303f39.tar.gz +_eclasses_=multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_md5_=aea4f462d8245a024ae4453166ff7452 diff --git a/metadata/md5-cache/net-wireless/Manifest.gz b/metadata/md5-cache/net-wireless/Manifest.gz index 1fc238a037ff..ccd4ee2c408d 100644 Binary files a/metadata/md5-cache/net-wireless/Manifest.gz and b/metadata/md5-cache/net-wireless/Manifest.gz differ diff --git a/metadata/md5-cache/net-wireless/blueman-2.1.4 b/metadata/md5-cache/net-wireless/blueman-2.1.4 deleted file mode 100644 index beada8d132c6..000000000000 --- a/metadata/md5-cache/net-wireless/blueman-2.1.4 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=python_single_target_python3_8? ( dev-python/cython[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/cython[python_targets_python3_9(-)] ) virtual/pkgconfig nls? ( dev-util/intltool sys-devel/gettext ) sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.2-r1:1.16 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 virtual/pkgconfig -DEFINED_PHASES=configure install postinst postrm prepare pretend setup -DEPEND=python_single_target_python3_8? ( dev-python/pygobject:3[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/pygobject:3[python_targets_python3_9(-)] ) >=net-wireless/bluez-5:= python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) -DESCRIPTION=Simple and intuitive GTK+ Bluetooth Manager -EAPI=7 -HOMEPAGE=https://github.com/blueman-project/blueman -IUSE=appindicator network nls policykit pulseaudio kernel_linux python_single_target_python3_8 python_single_target_python3_9 -KEYWORDS=amd64 arm arm64 ppc ppc64 x86 -LICENSE=GPL-3+ GPL-2 -RDEPEND=python_single_target_python3_8? ( dev-python/pygobject:3[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/pygobject:3[python_targets_python3_9(-)] ) >=net-wireless/bluez-5:= python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) python_single_target_python3_8? ( dev-python/pycairo[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/pycairo[python_targets_python3_9(-)] ) sys-apps/dbus x11-libs/gtk+:3[introspection] x11-libs/libnotify[introspection] || ( x11-themes/adwaita-icon-theme x11-themes/faenza-icon-theme x11-themes/mate-icon-theme ) appindicator? ( dev-libs/libappindicator:3[introspection] ) network? ( net-firewall/iptables || ( sys-apps/net-tools sys-apps/iproute2 ) || ( net-dns/dnsmasq net-misc/dhcp >=net-misc/networkmanager-0.8 ) ) policykit? ( sys-auth/polkit ) pulseaudio? ( || ( media-sound/pulseaudio[bluetooth] media-sound/pulseaudio-modules-bt ) ) -REQUIRED_USE=^^ ( python_single_target_python3_8 python_single_target_python3_9 ) -SLOT=0 -SRC_URI=https://github.com/blueman-project/blueman/releases/download/2.1.4/blueman-2.1.4.tar.xz -_eclasses_=autotools 9e63f92c2a5d867fea55ecb160c7d354 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff gnome2-utils c8e3fff820d850c0e003e22208d2eea3 gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e linux-info 7e8ed4c6a1d136fb291c52386f996c2c multilib 97566c1a256d07b00848aa767e38a352 python-single-r1 73f113f91928e0d16bceb65ecbcd8e75 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd c846b9e02ac8293bfc9ca38a195c2a18 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils 27f9a2f19502b925ac117bd657aa2979 -_md5_=0d8e20a501035d1cfa9945d4c2f5671a diff --git a/metadata/md5-cache/net-wireless/blueman-2.2.1 b/metadata/md5-cache/net-wireless/blueman-2.2.1 index 3d892c1283b5..237ac7c92dbf 100644 --- a/metadata/md5-cache/net-wireless/blueman-2.2.1 +++ b/metadata/md5-cache/net-wireless/blueman-2.2.1 @@ -5,11 +5,11 @@ DESCRIPTION=Simple and intuitive GTK+ Bluetooth Manager EAPI=7 HOMEPAGE=https://github.com/blueman-project/blueman IUSE=appindicator network nls policykit pulseaudio kernel_linux python_single_target_python3_8 python_single_target_python3_9 -KEYWORDS=amd64 arm ~arm64 ppc ppc64 x86 +KEYWORDS=amd64 arm arm64 ppc ppc64 x86 LICENSE=GPL-3+ GPL-2 RDEPEND=python_single_target_python3_8? ( dev-python/pygobject:3[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/pygobject:3[python_targets_python3_9(-)] ) >=net-wireless/bluez-5:= python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) python_single_target_python3_8? ( dev-python/pycairo[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/pycairo[python_targets_python3_9(-)] ) sys-apps/dbus x11-libs/gtk+:3[introspection] x11-libs/libnotify[introspection] || ( x11-themes/adwaita-icon-theme x11-themes/faenza-icon-theme x11-themes/mate-icon-theme ) appindicator? ( dev-libs/libappindicator:3[introspection] ) network? ( net-firewall/iptables || ( sys-apps/net-tools sys-apps/iproute2 ) || ( net-dns/dnsmasq net-misc/dhcp >=net-misc/networkmanager-0.8 ) ) policykit? ( sys-auth/polkit ) pulseaudio? ( || ( media-sound/pulseaudio[bluetooth] media-sound/pulseaudio-modules-bt ) ) REQUIRED_USE=^^ ( python_single_target_python3_8 python_single_target_python3_9 ) SLOT=0 SRC_URI=https://github.com/blueman-project/blueman/releases/download/2.2.1/blueman-2.2.1.tar.xz _eclasses_=autotools 9e63f92c2a5d867fea55ecb160c7d354 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff gnome2-utils c8e3fff820d850c0e003e22208d2eea3 gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e linux-info 7e8ed4c6a1d136fb291c52386f996c2c multilib 97566c1a256d07b00848aa767e38a352 python-single-r1 73f113f91928e0d16bceb65ecbcd8e75 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd c846b9e02ac8293bfc9ca38a195c2a18 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils 27f9a2f19502b925ac117bd657aa2979 -_md5_=ed2648ff716788e3f780f67c2e1eda51 +_md5_=0d8e20a501035d1cfa9945d4c2f5671a diff --git a/metadata/md5-cache/net-wireless/bluez-5.59-r1 b/metadata/md5-cache/net-wireless/bluez-5.60 similarity index 97% rename from metadata/md5-cache/net-wireless/bluez-5.59-r1 rename to metadata/md5-cache/net-wireless/bluez-5.60 index eb2e7836b2e0..2a44bc44365b 100644 --- a/metadata/md5-cache/net-wireless/bluez-5.59-r1 +++ b/metadata/md5-cache/net-wireless/bluez-5.60 @@ -11,6 +11,6 @@ RDEPEND=>=dev-libs/glib-2.28:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi REQUIRED_USE=extra-tools? ( deprecated readline ) test? ( ^^ ( python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 ) ) test-programs? ( ^^ ( python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 ) ) RESTRICT=!test? ( test ) SLOT=0/3 -SRC_URI=https://www.kernel.org/pub/linux/bluetooth/bluez-5.59.tar.xz +SRC_URI=https://www.kernel.org/pub/linux/bluetooth/bluez-5.60.tar.xz _eclasses_=autotools 9e63f92c2a5d867fea55ecb160c7d354 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e linux-info 7e8ed4c6a1d136fb291c52386f996c2c multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multilib-build effd4508d5e8209273d82d8f67ee93a0 multilib-minimal 7187f259f207bf5b69e4ff01498a7269 python-single-r1 73f113f91928e0d16bceb65ecbcd8e75 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a readme.gentoo-r1 e51390d48521eb3d400db57d557b7530 systemd c846b9e02ac8293bfc9ca38a195c2a18 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa udev 26207b5d4f4708920b9fcb7302d94068 -_md5_=e6c0abcab180a934785b64237eb3c0d0 +_md5_=4a1a70b646432bb4b0d0c7105e90f920 diff --git a/metadata/md5-cache/sci-libs/Manifest.gz b/metadata/md5-cache/sci-libs/Manifest.gz index fe8110b93f1c..846dde33e0f9 100644 Binary files a/metadata/md5-cache/sci-libs/Manifest.gz and b/metadata/md5-cache/sci-libs/Manifest.gz differ diff --git a/metadata/md5-cache/sci-libs/rtree-0.9.4-r1 b/metadata/md5-cache/sci-libs/rtree-0.9.4-r1 deleted file mode 100644 index 3d4a8a0d9a39..000000000000 --- a/metadata/md5-cache/sci-libs/rtree-0.9.4-r1 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=doc? ( || ( ( dev-lang/python:3.9 dev-python/sphinx[python_targets_python3_9(-)] ) ( dev-lang/python:3.8 dev-python/sphinx[python_targets_python3_8(-)] ) ) ) test? ( sci-libs/libspatialindex >=dev-python/pytest-4.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?] ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?] -DEFINED_PHASES=compile configure install prepare test -DEPEND=test? ( dev-python/numpy[python_targets_python3_8(-)?,python_targets_python3_9(-)?] ) -DESCRIPTION=R-Tree spatial index for Python GIS -EAPI=7 -HOMEPAGE=https://rtree.readthedocs.io -IUSE=doc test python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~amd64 ~x86 -LICENSE=MIT -RDEPEND=sci-libs/libspatialindex python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?] -REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=mirror://pypi/R/Rtree/Rtree-0.9.4.tar.gz -_eclasses_=distutils-r1 943c17c3afd0f811ad36a0b5c8dedba9 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 e20b80360497e6215aed0dd4ca7d6bad python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa -_md5_=73e28d18937a5f88a3f58571daea3e7c diff --git a/metadata/md5-cache/sci-misc/Manifest.gz b/metadata/md5-cache/sci-misc/Manifest.gz index ecc572243572..9481d1115a7f 100644 Binary files a/metadata/md5-cache/sci-misc/Manifest.gz and b/metadata/md5-cache/sci-misc/Manifest.gz differ diff --git a/metadata/md5-cache/sci-misc/boinc-7.16.14 b/metadata/md5-cache/sci-misc/boinc-7.16.17 similarity index 65% rename from metadata/md5-cache/sci-misc/boinc-7.16.14 rename to metadata/md5-cache/sci-misc/boinc-7.16.17 index a39dc3023b1e..b693590637b9 100644 --- a/metadata/md5-cache/sci-misc/boinc-7.16.14 +++ b/metadata/md5-cache/sci-misc/boinc-7.16.17 @@ -1,6 +1,6 @@ -BDEPEND=sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.2-r1:1.16 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 virtual/pkgconfig +BDEPEND=app-text/docbook-xml-dtd:4.4 app-text/docbook2X sys-devel/gettext X? ( virtual/imagemagick-tools[png,tiff] ) sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.2-r1:1.16 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 virtual/pkgconfig DEFINED_PHASES=configure install postinst postrm prepare setup -DEPEND=app-text/docbook-xml-dtd:4.4 app-text/docbook2X sys-devel/gettext X? ( virtual/imagemagick-tools[png,tiff] ) +DEPEND=acct-group/boinc acct-user/boinc >=app-misc/ca-certificates-20080809 cuda? ( >=dev-util/nvidia-cuda-toolkit-2.1 >=x11-drivers/nvidia-drivers-180.22 ) net-misc/curl[curl_ssl_gnutls(-)=,-curl_ssl_nss(-),curl_ssl_openssl(-)=,-curl_ssl_axtls(-),-curl_ssl_cyassl(-)] sys-apps/util-linux sys-libs/zlib X? ( dev-db/sqlite:3 media-libs/freeglut virtual/jpeg:0= x11-libs/gtk+:3 x11-libs/libICE >=x11-libs/libnotify-0.7 x11-libs/libSM x11-libs/libXi x11-libs/libXmu x11-libs/wxGTK:3.0-gtk3[X,opengl,webkit] virtual/jpeg ) DESCRIPTION=The Berkeley Open Infrastructure for Network Computing EAPI=7 HOMEPAGE=https://boinc.ssl.berkeley.edu/ @@ -10,6 +10,6 @@ LICENSE=LGPL-3 RDEPEND=acct-group/boinc acct-user/boinc >=app-misc/ca-certificates-20080809 cuda? ( >=dev-util/nvidia-cuda-toolkit-2.1 >=x11-drivers/nvidia-drivers-180.22 ) net-misc/curl[curl_ssl_gnutls(-)=,-curl_ssl_nss(-),curl_ssl_openssl(-)=,-curl_ssl_axtls(-),-curl_ssl_cyassl(-)] sys-apps/util-linux sys-libs/zlib X? ( dev-db/sqlite:3 media-libs/freeglut virtual/jpeg:0= x11-libs/gtk+:3 x11-libs/libICE >=x11-libs/libnotify-0.7 x11-libs/libSM x11-libs/libXi x11-libs/libXmu x11-libs/wxGTK:3.0-gtk3[X,opengl,webkit] virtual/jpeg ) !app-admin/quickswitch REQUIRED_USE=^^ ( curl_ssl_gnutls curl_ssl_openssl ) SLOT=0 -SRC_URI=X? ( https://boinc.berkeley.edu/logo/boinc_glossy2_512_F.tif -> boinc.tif ) https://github.com/BOINC/boinc/archive/client_release/7.16/7.16.14.tar.gz -> boinc-7.16.14.tar.gz +SRC_URI=X? ( https://boinc.berkeley.edu/logo/boinc_glossy2_512_F.tif -> boinc.tif ) https://github.com/BOINC/boinc/archive/client_release/7.16/7.16.17.tar.gz -> boinc-7.16.17.tar.gz _eclasses_=autotools 9e63f92c2a5d867fea55ecb160c7d354 desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic 4134b5c0fb719b9161d10bdaba9e09e5 gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e linux-info 7e8ed4c6a1d136fb291c52386f996c2c multilib 97566c1a256d07b00848aa767e38a352 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd c846b9e02ac8293bfc9ca38a195c2a18 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa wrapper 4251d4c84c25f59094fd557e0063a974 wxwidgets 41fd66c54c0faced4c91afc0ef1cc050 xdg-utils 27f9a2f19502b925ac117bd657aa2979 -_md5_=fb7c0a3f3b1b33618b3f19128964eea6 +_md5_=773d97cec7832b085e518fbcdd9c873a diff --git a/metadata/md5-cache/sys-apps/Manifest.gz b/metadata/md5-cache/sys-apps/Manifest.gz index 548eebe9afb8..e26351f3e154 100644 Binary files a/metadata/md5-cache/sys-apps/Manifest.gz and b/metadata/md5-cache/sys-apps/Manifest.gz differ diff --git a/metadata/md5-cache/sys-apps/cpuid-20201006 b/metadata/md5-cache/sys-apps/cpuid-20201006-r1 similarity index 81% rename from metadata/md5-cache/sys-apps/cpuid-20201006 rename to metadata/md5-cache/sys-apps/cpuid-20201006-r1 index 9b3226387964..541944f53ac1 100644 --- a/metadata/md5-cache/sys-apps/cpuid-20201006 +++ b/metadata/md5-cache/sys-apps/cpuid-20201006-r1 @@ -1,6 +1,5 @@ -BDEPEND=dev-lang/perl +BDEPEND=app-arch/gzip dev-lang/perl DEFINED_PHASES=install prepare -DEPEND=app-arch/gzip DESCRIPTION=Linux tool to dump x86 CPUID information about the CPUs EAPI=7 HOMEPAGE=http://www.etallen.com/cpuid.html @@ -9,4 +8,4 @@ LICENSE=GPL-2+ SLOT=0 SRC_URI=http://www.etallen.com/cpuid/cpuid-20201006.src.tar.gz _eclasses_=multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa -_md5_=15a78e9120fa26228f22f14175cbbcc1 +_md5_=c308bdf89f9aa5e1fb9b9f750ab630aa diff --git a/metadata/md5-cache/sys-apps/systemd-tmpfiles-248.3 b/metadata/md5-cache/sys-apps/systemd-tmpfiles-248.3 index 11e04bbd3adc..213c8f6f5594 100644 --- a/metadata/md5-cache/sys-apps/systemd-tmpfiles-248.3 +++ b/metadata/md5-cache/sys-apps/systemd-tmpfiles-248.3 @@ -5,11 +5,11 @@ DESCRIPTION=Creates, deletes and cleans up volatile and temporary files and dire EAPI=7 HOMEPAGE=https://www.freedesktop.org/wiki/Software/systemd IUSE=selinux test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 LICENSE=BSD-2 GPL-2 LGPL-2.1 MIT public-domain RDEPEND=sys-apps/acl:0= >=sys-apps/util-linux-2.30:0= >=sys-kernel/linux-headers-3.11 sys-libs/libcap:0= selinux? ( sys-libs/libselinux:0= ) !sys-apps/opentmpfiles !sys-apps/systemd RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/systemd/systemd-stable/archive/v248.3.tar.gz -> systemd-stable-248.3.tar.gz elibc_musl? ( https://dev.gentoo.org/~gyakovlev/distfiles/systemd-tmpfiles-248.3-musl.tar.xz ) _eclasses_=eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic 4134b5c0fb719b9161d10bdaba9e09e5 meson 5bc3f1b890f90cc00cf1d1dddc10233e multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils a4dab848a4490e8e48cf0baab3e61bc2 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=cd16c3a16a454cdca4998cabd8ccdfbd +_md5_=f094413e8d887c6032b1ee895598fbe1 diff --git a/metadata/md5-cache/sys-block/Manifest.gz b/metadata/md5-cache/sys-block/Manifest.gz index 876420358b68..4794ef1df458 100644 Binary files a/metadata/md5-cache/sys-block/Manifest.gz and b/metadata/md5-cache/sys-block/Manifest.gz differ diff --git a/metadata/md5-cache/sys-block/blktrace-1.2.0 b/metadata/md5-cache/sys-block/blktrace-1.2.0 deleted file mode 100644 index 569af73dd9a9..000000000000 --- a/metadata/md5-cache/sys-block/blktrace-1.2.0 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile install setup -DEPEND=dev-libs/libaio sys-kernel/linux-headers doc? ( virtual/latex-base >=app-text/texlive-core-2014 ) -DESCRIPTION=show detailed info about what is happening on a block device io queue -EAPI=6 -HOMEPAGE=https://git.kernel.dk/cgit/blktrace/ -IUSE=doc kernel_linux -KEYWORDS=amd64 ~arm ppc x86 -LICENSE=GPL-2 -RDEPEND=dev-libs/libaio -SLOT=0 -SRC_URI=https://brick.kernel.dk/snaps/blktrace-1.2.0.tar.bz2 -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic 4134b5c0fb719b9161d10bdaba9e09e5 linux-info 7e8ed4c6a1d136fb291c52386f996c2c ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 97566c1a256d07b00848aa767e38a352 preserve-libs dbc9f8d2d49c66467bc327fddd8317bd strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa vcs-clean b690a7e9b6c497cf59326a7545df4283 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=fb677ef0bb6ebc79d19cbed0258d60e3 diff --git a/metadata/md5-cache/sys-devel/Manifest.gz b/metadata/md5-cache/sys-devel/Manifest.gz index b474143e908c..da1be302b516 100644 Binary files a/metadata/md5-cache/sys-devel/Manifest.gz and b/metadata/md5-cache/sys-devel/Manifest.gz differ diff --git a/metadata/md5-cache/sys-devel/distcc-3.4 b/metadata/md5-cache/sys-devel/distcc-3.4 index 8f72bd5bbaf0..4b2e0c07310e 100644 --- a/metadata/md5-cache/sys-devel/distcc-3.4 +++ b/metadata/md5-cache/sys-devel/distcc-3.4 @@ -5,11 +5,11 @@ DESCRIPTION=Distribute compilation of C code across several machines on a networ EAPI=7 HOMEPAGE=https://github.com/distcc/distcc IUSE=gssapi gtk hardened ipv6 selinux xinetd zeroconf python_single_target_python3_8 python_single_target_python3_9 -KEYWORDS=~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv ~s390 sparc x86 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv ~s390 sparc x86 LICENSE=GPL-2+ RDEPEND=python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) dev-libs/popt gssapi? ( net-libs/libgssglue ) gtk? ( x11-libs/gtk+:3 ) zeroconf? ( >=net-dns/avahi-0.6[dbus] ) acct-user/distcc dev-util/shadowman >=sys-devel/gcc-config-1.4.1 selinux? ( sec-policy/selinux-distcc ) xinetd? ( sys-apps/xinetd ) REQUIRED_USE=^^ ( python_single_target_python3_8 python_single_target_python3_9 ) SLOT=0 SRC_URI=https://github.com/distcc/distcc/releases/download/v3.4/distcc-3.4.tar.gz _eclasses_=autotools 9e63f92c2a5d867fea55ecb160c7d354 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic 4134b5c0fb719b9161d10bdaba9e09e5 gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e multilib 97566c1a256d07b00848aa767e38a352 prefix d04f14b297013ad1410550c0757f14f8 python-single-r1 73f113f91928e0d16bceb65ecbcd8e75 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd c846b9e02ac8293bfc9ca38a195c2a18 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils 27f9a2f19502b925ac117bd657aa2979 -_md5_=59640c2417d1444686bb21f90fcef666 +_md5_=dcbe9c6298bb3c98555a6423f2728309 diff --git a/metadata/md5-cache/sys-devel/gcc-10.3.0-r2 b/metadata/md5-cache/sys-devel/gcc-10.3.0-r2 index 2360d85f258e..5a34a2f7004a 100644 --- a/metadata/md5-cache/sys-devel/gcc-10.3.0-r2 +++ b/metadata/md5-cache/sys-devel/gcc-10.3.0-r2 @@ -5,6 +5,7 @@ DESCRIPTION=The GNU Compiler Collection EAPI=7 HOMEPAGE=https://gcc.gnu.org/ IUSE=test vanilla +nls debug +cxx +nptl +fortran doc hardened multilib objc pgo objc-gc libssp objc++ +openmp fixed-point go +sanitize graphite ada vtv jit +pie +ssp +pch systemtap d lto zstd +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 LICENSE=GPL-3+ LGPL-3+ || ( GPL-3+ libgcc libstdc++ gcc-runtime-library-exception-3.1 ) FDL-1.3+ PDEPEND=>=sys-devel/gcc-config-2.3 RDEPEND=sys-libs/zlib nls? ( virtual/libintl ) virtual/libiconv >=dev-libs/gmp-4.3.2:0= >=dev-libs/mpfr-2.4.2:0= >=dev-libs/mpc-0.8.1:0= objc-gc? ( >=dev-libs/boehm-gc-7.4.2 ) graphite? ( >=dev-libs/isl-0.14:0= ) @@ -12,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=10 SRC_URI=mirror://gnu/gcc/gcc-10.3.0/gcc-10.3.0.tar.xz mirror://gentoo/gcc-10.3.0-patches-3.tar.bz2 https://dev.gentoo.org/~vapier/dist/gcc-10.3.0-patches-3.tar.bz2 https://dev.gentoo.org/~rhill/dist/gcc-10.3.0-patches-3.tar.bz2 https://dev.gentoo.org/~zorry/patches/gcc/gcc-10.3.0-patches-3.tar.bz2 https://dev.gentoo.org/~blueness/dist/gcc-10.3.0-patches-3.tar.bz2 https://dev.gentoo.org/~tamiko/distfiles/gcc-10.3.0-patches-3.tar.bz2 https://dev.gentoo.org/~slyfox/distfiles/gcc-10.3.0-patches-3.tar.bz2 _eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic 4134b5c0fb719b9161d10bdaba9e09e5 gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e multilib 97566c1a256d07b00848aa767e38a352 pax-utils 74cd9920d64148719fb62c462935c1b5 prefix d04f14b297013ad1410550c0757f14f8 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain 15770f21d269fa209ab88435a631d7a5 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=d650856d4fd39f9c2e871536cb2027cb +_md5_=5d5d722d1074e13bc89b1c5857994e63 diff --git a/metadata/md5-cache/sys-devel/gcc-11.1.0-r2 b/metadata/md5-cache/sys-devel/gcc-11.1.0-r2 index b1e5c18fed90..3430ae3b57b6 100644 --- a/metadata/md5-cache/sys-devel/gcc-11.1.0-r2 +++ b/metadata/md5-cache/sys-devel/gcc-11.1.0-r2 @@ -5,6 +5,7 @@ DESCRIPTION=The GNU Compiler Collection EAPI=7 HOMEPAGE=https://gcc.gnu.org/ IUSE=test vanilla +nls debug +cxx +nptl +fortran doc hardened multilib objc pgo objc-gc libssp objc++ +openmp fixed-point go +sanitize graphite ada vtv jit +pie +ssp +pch systemtap d lto zstd valgrind custom-cflags +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 LICENSE=GPL-3+ LGPL-3+ || ( GPL-3+ libgcc libstdc++ gcc-runtime-library-exception-3.1 ) FDL-1.3+ PDEPEND=>=sys-devel/gcc-config-2.3 RDEPEND=sys-libs/zlib nls? ( virtual/libintl ) virtual/libiconv >=dev-libs/gmp-4.3.2:0= >=dev-libs/mpfr-2.4.2:0= >=dev-libs/mpc-0.8.1:0= objc-gc? ( >=dev-libs/boehm-gc-7.4.2 ) graphite? ( >=dev-libs/isl-0.14:0= ) @@ -12,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=11 SRC_URI=mirror://gnu/gcc/gcc-11.1.0/gcc-11.1.0.tar.xz mirror://gentoo/gcc-11.1.0-patches-3.tar.bz2 https://dev.gentoo.org/~vapier/dist/gcc-11.1.0-patches-3.tar.bz2 https://dev.gentoo.org/~rhill/dist/gcc-11.1.0-patches-3.tar.bz2 https://dev.gentoo.org/~zorry/patches/gcc/gcc-11.1.0-patches-3.tar.bz2 https://dev.gentoo.org/~blueness/dist/gcc-11.1.0-patches-3.tar.bz2 https://dev.gentoo.org/~tamiko/distfiles/gcc-11.1.0-patches-3.tar.bz2 https://dev.gentoo.org/~slyfox/distfiles/gcc-11.1.0-patches-3.tar.bz2 _eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic 4134b5c0fb719b9161d10bdaba9e09e5 gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e multilib 97566c1a256d07b00848aa767e38a352 pax-utils 74cd9920d64148719fb62c462935c1b5 prefix d04f14b297013ad1410550c0757f14f8 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain 15770f21d269fa209ab88435a631d7a5 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=08939da2366345553797078ef4a0324e +_md5_=05e4cf2325176e19386f543b87d0a495 diff --git a/metadata/md5-cache/sys-devel/gcc-8.5.0-r1 b/metadata/md5-cache/sys-devel/gcc-8.5.0-r1 index 8b1f64f38a49..2936cd3cc8ba 100644 --- a/metadata/md5-cache/sys-devel/gcc-8.5.0-r1 +++ b/metadata/md5-cache/sys-devel/gcc-8.5.0-r1 @@ -5,6 +5,7 @@ DESCRIPTION=The GNU Compiler Collection EAPI=7 HOMEPAGE=https://gcc.gnu.org/ IUSE=test vanilla +nls altivec debug +cxx +nptl +fortran doc hardened multilib objc pgo objc-gc libssp objc++ +openmp fixed-point go +sanitize graphite ada +vtv jit mpx +pie +ssp +pch systemtap +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 LICENSE=GPL-3+ LGPL-3+ || ( GPL-3+ libgcc libstdc++ gcc-runtime-library-exception-3.1 ) FDL-1.3+ PDEPEND=elibc_glibc? ( >=sys-libs/glibc-2.13 ) >=sys-devel/gcc-config-2.3 RDEPEND=sys-libs/zlib nls? ( virtual/libintl ) virtual/libiconv >=dev-libs/gmp-4.3.2:0= >=dev-libs/mpfr-2.4.2:0= >=dev-libs/mpc-0.8.1:0= objc-gc? ( >=dev-libs/boehm-gc-7.4.2 ) graphite? ( >=dev-libs/isl-0.14:0= ) @@ -12,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=8.5.0 SRC_URI=mirror://gnu/gcc/gcc-8.5.0/gcc-8.5.0.tar.xz mirror://gentoo/gcc-8.5.0-patches-2.tar.bz2 https://dev.gentoo.org/~vapier/dist/gcc-8.5.0-patches-2.tar.bz2 https://dev.gentoo.org/~rhill/dist/gcc-8.5.0-patches-2.tar.bz2 https://dev.gentoo.org/~zorry/patches/gcc/gcc-8.5.0-patches-2.tar.bz2 https://dev.gentoo.org/~blueness/dist/gcc-8.5.0-patches-2.tar.bz2 https://dev.gentoo.org/~tamiko/distfiles/gcc-8.5.0-patches-2.tar.bz2 https://dev.gentoo.org/~slyfox/distfiles/gcc-8.5.0-patches-2.tar.bz2 _eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic 4134b5c0fb719b9161d10bdaba9e09e5 gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e multilib 97566c1a256d07b00848aa767e38a352 pax-utils 74cd9920d64148719fb62c462935c1b5 prefix d04f14b297013ad1410550c0757f14f8 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain 15770f21d269fa209ab88435a631d7a5 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=ffcf8176b113f48ac087a75c088abb9d +_md5_=57e696242edf3005ca0154c514022b72 diff --git a/metadata/md5-cache/sys-kernel/Manifest.gz b/metadata/md5-cache/sys-kernel/Manifest.gz index 5984838b5ef2..748cadd44cd6 100644 Binary files a/metadata/md5-cache/sys-kernel/Manifest.gz and b/metadata/md5-cache/sys-kernel/Manifest.gz differ diff --git a/metadata/md5-cache/sys-kernel/bliss-kernel-bin-4.14.178 b/metadata/md5-cache/sys-kernel/bliss-kernel-bin-4.14.178 index 550d5ec321b0..cb8cdd7ee30f 100644 --- a/metadata/md5-cache/sys-kernel/bliss-kernel-bin-4.14.178 +++ b/metadata/md5-cache/sys-kernel/bliss-kernel-bin-4.14.178 @@ -10,5 +10,5 @@ RDEPEND=|| ( sys-kernel/installkernel-gentoo sys-kernel/installkernel-systemd-bo RESTRICT=strip test SLOT=4.14.178-FC.01 SRC_URI=https://xyinn.org/gentoo/kernels/4.14.178-FC.01/kernel-4.14.178-FC.01.tar.xz -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa _md5_=7cba610edaaca4b1ab671a5b00f17fb5 diff --git a/metadata/md5-cache/sys-kernel/bliss-kernel-bin-5.4.51 b/metadata/md5-cache/sys-kernel/bliss-kernel-bin-5.4.51 index 684c6279ea11..48f7642a7233 100644 --- a/metadata/md5-cache/sys-kernel/bliss-kernel-bin-5.4.51 +++ b/metadata/md5-cache/sys-kernel/bliss-kernel-bin-5.4.51 @@ -10,5 +10,5 @@ RDEPEND=|| ( sys-kernel/installkernel-gentoo sys-kernel/installkernel-systemd-bo RESTRICT=strip test SLOT=5.4.51-FB.01 SRC_URI=https://xyinn.org/gentoo/kernels/5.4.51-FB.01/kernel-5.4.51-FB.01.tar.xz -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa _md5_=8170537a4890872f8e6fe40afe25e141 diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-5.10.38 b/metadata/md5-cache/sys-kernel/gentoo-kernel-5.10.38 index 3072e01f6751..41858cfa2e4a 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-kernel-5.10.38 +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-5.10.38 @@ -12,5 +12,5 @@ REQUIRED_USE=arm? ( savedconfig ) RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.10.38 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.10.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.10-41.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.10-41.extras.tar.xz https://github.com/mgorny/gentoo-kernel-config/archive/v5.10.32.tar.gz -> gentoo-kernel-config-5.10.32.tar.gz amd64? ( https://src.fedoraproject.org/rpms/kernel/raw/836165dd2dff34e4f2c47ca8f9c803002c1e6530/f/kernel-x86_64-fedora.config -> kernel-x86_64-fedora.config.5.10.12 ) arm64? ( https://src.fedoraproject.org/rpms/kernel/raw/836165dd2dff34e4f2c47ca8f9c803002c1e6530/f/kernel-aarch64-fedora.config -> kernel-aarch64-fedora.config.5.10.12 ) ppc64? ( https://src.fedoraproject.org/rpms/kernel/raw/836165dd2dff34e4f2c47ca8f9c803002c1e6530/f/kernel-ppc64le-fedora.config -> kernel-ppc64le-fedora.config.5.10.12 ) x86? ( https://src.fedoraproject.org/rpms/kernel/raw/836165dd2dff34e4f2c47ca8f9c803002c1e6530/f/kernel-i686-fedora.config -> kernel-i686-fedora.config.5.10.12 ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa _md5_=721d7fe7e2c8a1e552119ef77bdf6a10 diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-5.10.43 b/metadata/md5-cache/sys-kernel/gentoo-kernel-5.10.43 index 7da069c430b5..001c2266ed81 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-kernel-5.10.43 +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-5.10.43 @@ -12,5 +12,5 @@ REQUIRED_USE=arm? ( savedconfig ) RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.10.43 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.10.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.10-47.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.10-47.extras.tar.xz https://github.com/mgorny/gentoo-kernel-config/archive/v5.10.42.tar.gz -> gentoo-kernel-config-5.10.42.tar.gz amd64? ( https://src.fedoraproject.org/rpms/kernel/raw/836165dd2dff34e4f2c47ca8f9c803002c1e6530/f/kernel-x86_64-fedora.config -> kernel-x86_64-fedora.config.5.10.12 ) arm64? ( https://src.fedoraproject.org/rpms/kernel/raw/836165dd2dff34e4f2c47ca8f9c803002c1e6530/f/kernel-aarch64-fedora.config -> kernel-aarch64-fedora.config.5.10.12 ) ppc64? ( https://src.fedoraproject.org/rpms/kernel/raw/836165dd2dff34e4f2c47ca8f9c803002c1e6530/f/kernel-ppc64le-fedora.config -> kernel-ppc64le-fedora.config.5.10.12 ) x86? ( https://src.fedoraproject.org/rpms/kernel/raw/836165dd2dff34e4f2c47ca8f9c803002c1e6530/f/kernel-i686-fedora.config -> kernel-i686-fedora.config.5.10.12 ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa _md5_=4371d0c7aaf07c84ca0bba3fedcfa408 diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-5.10.44 b/metadata/md5-cache/sys-kernel/gentoo-kernel-5.10.44 index 98401f96480e..11f54272911f 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-kernel-5.10.44 +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-5.10.44 @@ -12,5 +12,5 @@ REQUIRED_USE=arm? ( savedconfig ) RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.10.44 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.10.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.10-48.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.10-48.extras.tar.xz https://github.com/mgorny/gentoo-kernel-config/archive/v5.10.42.tar.gz -> gentoo-kernel-config-5.10.42.tar.gz amd64? ( https://src.fedoraproject.org/rpms/kernel/raw/836165dd2dff34e4f2c47ca8f9c803002c1e6530/f/kernel-x86_64-fedora.config -> kernel-x86_64-fedora.config.5.10.12 ) arm64? ( https://src.fedoraproject.org/rpms/kernel/raw/836165dd2dff34e4f2c47ca8f9c803002c1e6530/f/kernel-aarch64-fedora.config -> kernel-aarch64-fedora.config.5.10.12 ) ppc64? ( https://src.fedoraproject.org/rpms/kernel/raw/836165dd2dff34e4f2c47ca8f9c803002c1e6530/f/kernel-ppc64le-fedora.config -> kernel-ppc64le-fedora.config.5.10.12 ) x86? ( https://src.fedoraproject.org/rpms/kernel/raw/836165dd2dff34e4f2c47ca8f9c803002c1e6530/f/kernel-i686-fedora.config -> kernel-i686-fedora.config.5.10.12 ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa _md5_=4371d0c7aaf07c84ca0bba3fedcfa408 diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-5.10.45 b/metadata/md5-cache/sys-kernel/gentoo-kernel-5.10.45 index 6ad537fad3bf..b475a73a888b 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-kernel-5.10.45 +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-5.10.45 @@ -12,5 +12,5 @@ REQUIRED_USE=arm? ( savedconfig ) RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.10.45 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.10.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.10-49.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.10-49.extras.tar.xz https://github.com/mgorny/gentoo-kernel-config/archive/v5.10.42.tar.gz -> gentoo-kernel-config-5.10.42.tar.gz amd64? ( https://src.fedoraproject.org/rpms/kernel/raw/836165dd2dff34e4f2c47ca8f9c803002c1e6530/f/kernel-x86_64-fedora.config -> kernel-x86_64-fedora.config.5.10.12 ) arm64? ( https://src.fedoraproject.org/rpms/kernel/raw/836165dd2dff34e4f2c47ca8f9c803002c1e6530/f/kernel-aarch64-fedora.config -> kernel-aarch64-fedora.config.5.10.12 ) ppc64? ( https://src.fedoraproject.org/rpms/kernel/raw/836165dd2dff34e4f2c47ca8f9c803002c1e6530/f/kernel-ppc64le-fedora.config -> kernel-ppc64le-fedora.config.5.10.12 ) x86? ( https://src.fedoraproject.org/rpms/kernel/raw/836165dd2dff34e4f2c47ca8f9c803002c1e6530/f/kernel-i686-fedora.config -> kernel-i686-fedora.config.5.10.12 ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa _md5_=4371d0c7aaf07c84ca0bba3fedcfa408 diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-5.10.46 b/metadata/md5-cache/sys-kernel/gentoo-kernel-5.10.46 index 7df5b32252ad..de38d941330d 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-kernel-5.10.46 +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-5.10.46 @@ -12,5 +12,5 @@ REQUIRED_USE=arm? ( savedconfig ) RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.10.46 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.10.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.10-50.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.10-50.extras.tar.xz https://github.com/mgorny/gentoo-kernel-config/archive/v5.10.42.tar.gz -> gentoo-kernel-config-5.10.42.tar.gz amd64? ( https://src.fedoraproject.org/rpms/kernel/raw/836165dd2dff34e4f2c47ca8f9c803002c1e6530/f/kernel-x86_64-fedora.config -> kernel-x86_64-fedora.config.5.10.12 ) arm64? ( https://src.fedoraproject.org/rpms/kernel/raw/836165dd2dff34e4f2c47ca8f9c803002c1e6530/f/kernel-aarch64-fedora.config -> kernel-aarch64-fedora.config.5.10.12 ) ppc64? ( https://src.fedoraproject.org/rpms/kernel/raw/836165dd2dff34e4f2c47ca8f9c803002c1e6530/f/kernel-ppc64le-fedora.config -> kernel-ppc64le-fedora.config.5.10.12 ) x86? ( https://src.fedoraproject.org/rpms/kernel/raw/836165dd2dff34e4f2c47ca8f9c803002c1e6530/f/kernel-i686-fedora.config -> kernel-i686-fedora.config.5.10.12 ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa _md5_=4371d0c7aaf07c84ca0bba3fedcfa408 diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-5.10.47 b/metadata/md5-cache/sys-kernel/gentoo-kernel-5.10.47 index 83f491c017a4..dd1c1a5407d1 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-kernel-5.10.47 +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-5.10.47 @@ -12,5 +12,5 @@ REQUIRED_USE=arm? ( savedconfig ) RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.10.47 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.10.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.10-51.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.10-51.extras.tar.xz https://github.com/mgorny/gentoo-kernel-config/archive/v5.10.42.tar.gz -> gentoo-kernel-config-5.10.42.tar.gz amd64? ( https://src.fedoraproject.org/rpms/kernel/raw/836165dd2dff34e4f2c47ca8f9c803002c1e6530/f/kernel-x86_64-fedora.config -> kernel-x86_64-fedora.config.5.10.12 ) arm64? ( https://src.fedoraproject.org/rpms/kernel/raw/836165dd2dff34e4f2c47ca8f9c803002c1e6530/f/kernel-aarch64-fedora.config -> kernel-aarch64-fedora.config.5.10.12 ) ppc64? ( https://src.fedoraproject.org/rpms/kernel/raw/836165dd2dff34e4f2c47ca8f9c803002c1e6530/f/kernel-ppc64le-fedora.config -> kernel-ppc64le-fedora.config.5.10.12 ) x86? ( https://src.fedoraproject.org/rpms/kernel/raw/836165dd2dff34e4f2c47ca8f9c803002c1e6530/f/kernel-i686-fedora.config -> kernel-i686-fedora.config.5.10.12 ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa -_md5_=2110b8caf92bb38747ef6d82b2dddf1f +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_md5_=e395728d45b056559b520a0c2486b3b6 diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-5.10.48 b/metadata/md5-cache/sys-kernel/gentoo-kernel-5.10.48 index bcb7d2021413..7cf6d29fe5de 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-kernel-5.10.48 +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-5.10.48 @@ -12,5 +12,5 @@ REQUIRED_USE=arm? ( savedconfig ) RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.10.48 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.10.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.10-52.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.10-52.extras.tar.xz https://github.com/mgorny/gentoo-kernel-config/archive/v5.10.42.tar.gz -> gentoo-kernel-config-5.10.42.tar.gz amd64? ( https://src.fedoraproject.org/rpms/kernel/raw/836165dd2dff34e4f2c47ca8f9c803002c1e6530/f/kernel-x86_64-fedora.config -> kernel-x86_64-fedora.config.5.10.12 ) arm64? ( https://src.fedoraproject.org/rpms/kernel/raw/836165dd2dff34e4f2c47ca8f9c803002c1e6530/f/kernel-aarch64-fedora.config -> kernel-aarch64-fedora.config.5.10.12 ) ppc64? ( https://src.fedoraproject.org/rpms/kernel/raw/836165dd2dff34e4f2c47ca8f9c803002c1e6530/f/kernel-ppc64le-fedora.config -> kernel-ppc64le-fedora.config.5.10.12 ) x86? ( https://src.fedoraproject.org/rpms/kernel/raw/836165dd2dff34e4f2c47ca8f9c803002c1e6530/f/kernel-i686-fedora.config -> kernel-i686-fedora.config.5.10.12 ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa -_md5_=4371d0c7aaf07c84ca0bba3fedcfa408 +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_md5_=4dc6493736a361449f7edcfe71f854a3 diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-5.11.22 b/metadata/md5-cache/sys-kernel/gentoo-kernel-5.11.22 index f8e6cc3bae00..e30f3fc07699 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-kernel-5.11.22 +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-5.11.22 @@ -12,5 +12,5 @@ REQUIRED_USE=arm? ( savedconfig ) RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.11.22 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.11.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.11-25.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.11-25.extras.tar.xz https://github.com/mgorny/gentoo-kernel-config/archive/v5.10.32.tar.gz -> gentoo-kernel-config-5.10.32.tar.gz amd64? ( https://src.fedoraproject.org/rpms/kernel/raw/8b43a43382cabcf6d64266565ccc052c6e5d58a6/f/kernel-x86_64-fedora.config -> kernel-x86_64-fedora.config.5.11.21 ) arm64? ( https://src.fedoraproject.org/rpms/kernel/raw/8b43a43382cabcf6d64266565ccc052c6e5d58a6/f/kernel-aarch64-fedora.config -> kernel-aarch64-fedora.config.5.11.21 ) ppc64? ( https://src.fedoraproject.org/rpms/kernel/raw/8b43a43382cabcf6d64266565ccc052c6e5d58a6/f/kernel-ppc64le-fedora.config -> kernel-ppc64le-fedora.config.5.11.21 ) x86? ( https://src.fedoraproject.org/rpms/kernel/raw/8b43a43382cabcf6d64266565ccc052c6e5d58a6/f/kernel-i686-fedora.config -> kernel-i686-fedora.config.5.11.21 ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa _md5_=be0b9cb3a0de723a703d7308247168a2 diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-5.12.10 b/metadata/md5-cache/sys-kernel/gentoo-kernel-5.12.10 index a7741394273c..10314039e896 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-kernel-5.12.10 +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-5.12.10 @@ -12,5 +12,5 @@ REQUIRED_USE=arm? ( savedconfig ) RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.12.10 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.12.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.12-11.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.12-11.extras.tar.xz https://github.com/mgorny/gentoo-kernel-config/archive/v5.10.42.tar.gz -> gentoo-kernel-config-5.10.42.tar.gz amd64? ( https://src.fedoraproject.org/rpms/kernel/raw/17639df044f5f81bbf267f566426eae4a5187875/f/kernel-x86_64-fedora.config -> kernel-x86_64-fedora.config.5.12.5 ) arm64? ( https://src.fedoraproject.org/rpms/kernel/raw/17639df044f5f81bbf267f566426eae4a5187875/f/kernel-aarch64-fedora.config -> kernel-aarch64-fedora.config.5.12.5 ) ppc64? ( https://src.fedoraproject.org/rpms/kernel/raw/17639df044f5f81bbf267f566426eae4a5187875/f/kernel-ppc64le-fedora.config -> kernel-ppc64le-fedora.config.5.12.5 ) x86? ( https://src.fedoraproject.org/rpms/kernel/raw/17639df044f5f81bbf267f566426eae4a5187875/f/kernel-i686-fedora.config -> kernel-i686-fedora.config.5.12.5 ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa _md5_=2905f5d05d59123880a6affd11ac355a diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-5.12.11 b/metadata/md5-cache/sys-kernel/gentoo-kernel-5.12.11 index 874bf3a20b3c..7e930373516e 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-kernel-5.12.11 +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-5.12.11 @@ -12,5 +12,5 @@ REQUIRED_USE=arm? ( savedconfig ) RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.12.11 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.12.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.12-12.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.12-12.extras.tar.xz https://github.com/mgorny/gentoo-kernel-config/archive/v5.10.42.tar.gz -> gentoo-kernel-config-5.10.42.tar.gz amd64? ( https://src.fedoraproject.org/rpms/kernel/raw/17639df044f5f81bbf267f566426eae4a5187875/f/kernel-x86_64-fedora.config -> kernel-x86_64-fedora.config.5.12.5 ) arm64? ( https://src.fedoraproject.org/rpms/kernel/raw/17639df044f5f81bbf267f566426eae4a5187875/f/kernel-aarch64-fedora.config -> kernel-aarch64-fedora.config.5.12.5 ) ppc64? ( https://src.fedoraproject.org/rpms/kernel/raw/17639df044f5f81bbf267f566426eae4a5187875/f/kernel-ppc64le-fedora.config -> kernel-ppc64le-fedora.config.5.12.5 ) x86? ( https://src.fedoraproject.org/rpms/kernel/raw/17639df044f5f81bbf267f566426eae4a5187875/f/kernel-i686-fedora.config -> kernel-i686-fedora.config.5.12.5 ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa _md5_=2905f5d05d59123880a6affd11ac355a diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-5.12.12 b/metadata/md5-cache/sys-kernel/gentoo-kernel-5.12.12 index b12578e1e704..c8ee1a03fb5a 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-kernel-5.12.12 +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-5.12.12 @@ -12,5 +12,5 @@ REQUIRED_USE=arm? ( savedconfig ) RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.12.12 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.12.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.12-13.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.12-13.extras.tar.xz https://github.com/mgorny/gentoo-kernel-config/archive/v5.10.42.tar.gz -> gentoo-kernel-config-5.10.42.tar.gz amd64? ( https://src.fedoraproject.org/rpms/kernel/raw/17639df044f5f81bbf267f566426eae4a5187875/f/kernel-x86_64-fedora.config -> kernel-x86_64-fedora.config.5.12.5 ) arm64? ( https://src.fedoraproject.org/rpms/kernel/raw/17639df044f5f81bbf267f566426eae4a5187875/f/kernel-aarch64-fedora.config -> kernel-aarch64-fedora.config.5.12.5 ) ppc64? ( https://src.fedoraproject.org/rpms/kernel/raw/17639df044f5f81bbf267f566426eae4a5187875/f/kernel-ppc64le-fedora.config -> kernel-ppc64le-fedora.config.5.12.5 ) x86? ( https://src.fedoraproject.org/rpms/kernel/raw/17639df044f5f81bbf267f566426eae4a5187875/f/kernel-i686-fedora.config -> kernel-i686-fedora.config.5.12.5 ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa _md5_=2905f5d05d59123880a6affd11ac355a diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-5.12.13 b/metadata/md5-cache/sys-kernel/gentoo-kernel-5.12.13 index f6b8379d2a62..40821cfa1fce 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-kernel-5.12.13 +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-5.12.13 @@ -12,5 +12,5 @@ REQUIRED_USE=arm? ( savedconfig ) RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.12.13 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.12.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.12-16.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.12-16.extras.tar.xz https://github.com/mgorny/gentoo-kernel-config/archive/v5.10.42.tar.gz -> gentoo-kernel-config-5.10.42.tar.gz amd64? ( https://src.fedoraproject.org/rpms/kernel/raw/17639df044f5f81bbf267f566426eae4a5187875/f/kernel-x86_64-fedora.config -> kernel-x86_64-fedora.config.5.12.5 ) arm64? ( https://src.fedoraproject.org/rpms/kernel/raw/17639df044f5f81bbf267f566426eae4a5187875/f/kernel-aarch64-fedora.config -> kernel-aarch64-fedora.config.5.12.5 ) ppc64? ( https://src.fedoraproject.org/rpms/kernel/raw/17639df044f5f81bbf267f566426eae4a5187875/f/kernel-ppc64le-fedora.config -> kernel-ppc64le-fedora.config.5.12.5 ) x86? ( https://src.fedoraproject.org/rpms/kernel/raw/17639df044f5f81bbf267f566426eae4a5187875/f/kernel-i686-fedora.config -> kernel-i686-fedora.config.5.12.5 ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa _md5_=a20d6324ae0fa916a31392ff4bccb659 diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-5.12.14 b/metadata/md5-cache/sys-kernel/gentoo-kernel-5.12.14 index 83dd88a9e718..74dca8921426 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-kernel-5.12.14 +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-5.12.14 @@ -12,5 +12,5 @@ REQUIRED_USE=arm? ( savedconfig ) RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.12.14 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.12.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.12-17.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.12-17.extras.tar.xz https://github.com/mgorny/gentoo-kernel-config/archive/v5.10.42.tar.gz -> gentoo-kernel-config-5.10.42.tar.gz amd64? ( https://src.fedoraproject.org/rpms/kernel/raw/17639df044f5f81bbf267f566426eae4a5187875/f/kernel-x86_64-fedora.config -> kernel-x86_64-fedora.config.5.12.5 ) arm64? ( https://src.fedoraproject.org/rpms/kernel/raw/17639df044f5f81bbf267f566426eae4a5187875/f/kernel-aarch64-fedora.config -> kernel-aarch64-fedora.config.5.12.5 ) ppc64? ( https://src.fedoraproject.org/rpms/kernel/raw/17639df044f5f81bbf267f566426eae4a5187875/f/kernel-ppc64le-fedora.config -> kernel-ppc64le-fedora.config.5.12.5 ) x86? ( https://src.fedoraproject.org/rpms/kernel/raw/17639df044f5f81bbf267f566426eae4a5187875/f/kernel-i686-fedora.config -> kernel-i686-fedora.config.5.12.5 ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa _md5_=a20d6324ae0fa916a31392ff4bccb659 diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-5.12.15 b/metadata/md5-cache/sys-kernel/gentoo-kernel-5.12.15 index 4a62ef640801..5477ea7f2ca1 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-kernel-5.12.15 +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-5.12.15 @@ -12,5 +12,5 @@ REQUIRED_USE=arm? ( savedconfig ) RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.12.15 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.12.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.12-18.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.12-18.extras.tar.xz https://github.com/mgorny/gentoo-kernel-config/archive/v5.10.42.tar.gz -> gentoo-kernel-config-5.10.42.tar.gz amd64? ( https://src.fedoraproject.org/rpms/kernel/raw/17639df044f5f81bbf267f566426eae4a5187875/f/kernel-x86_64-fedora.config -> kernel-x86_64-fedora.config.5.12.5 ) arm64? ( https://src.fedoraproject.org/rpms/kernel/raw/17639df044f5f81bbf267f566426eae4a5187875/f/kernel-aarch64-fedora.config -> kernel-aarch64-fedora.config.5.12.5 ) ppc64? ( https://src.fedoraproject.org/rpms/kernel/raw/17639df044f5f81bbf267f566426eae4a5187875/f/kernel-ppc64le-fedora.config -> kernel-ppc64le-fedora.config.5.12.5 ) x86? ( https://src.fedoraproject.org/rpms/kernel/raw/17639df044f5f81bbf267f566426eae4a5187875/f/kernel-i686-fedora.config -> kernel-i686-fedora.config.5.12.5 ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa _md5_=a20d6324ae0fa916a31392ff4bccb659 diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-5.4.120 b/metadata/md5-cache/sys-kernel/gentoo-kernel-5.4.120 index 4c851ef4a070..a54773606464 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-kernel-5.4.120 +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-5.4.120 @@ -11,5 +11,5 @@ RDEPEND=!sys-kernel/gentoo-kernel-bin:5.4.120 || ( sys-kernel/installkernel-gent RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.4.120 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.4.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.4-123.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.4-123.extras.tar.xz https://github.com/mgorny/gentoo-kernel-config/archive/v5.4.114.tar.gz -> gentoo-kernel-config-5.4.114.tar.gz amd64? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-x86_64.config -> kernel-x86_64.config.5.4.21 ) arm64? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-aarch64.config -> kernel-aarch64.config.5.4.21 ) ppc64? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-ppc64le.config -> kernel-ppc64le.config.5.4.21 ) x86? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-i686.config -> kernel-i686.config.5.4.21 ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa _md5_=dc2430618b0810188d49fe0c8dfef969 diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-5.4.125 b/metadata/md5-cache/sys-kernel/gentoo-kernel-5.4.125 index 352e0dcdd7cb..36fcb080d5df 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-kernel-5.4.125 +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-5.4.125 @@ -11,5 +11,5 @@ RDEPEND=!sys-kernel/gentoo-kernel-bin:5.4.125 || ( sys-kernel/installkernel-gent RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.4.125 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.4.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.4-128.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.4-128.extras.tar.xz https://github.com/mgorny/gentoo-kernel-config/archive/v5.4.114.tar.gz -> gentoo-kernel-config-5.4.114.tar.gz amd64? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-x86_64.config -> kernel-x86_64.config.5.4.21 ) arm64? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-aarch64.config -> kernel-aarch64.config.5.4.21 ) ppc64? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-ppc64le.config -> kernel-ppc64le.config.5.4.21 ) x86? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-i686.config -> kernel-i686.config.5.4.21 ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa _md5_=0be3e7d2998d7a5f7d70fabb1b2c6818 diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-5.4.126 b/metadata/md5-cache/sys-kernel/gentoo-kernel-5.4.126 index 5eee7260bac6..af501bb49e4c 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-kernel-5.4.126 +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-5.4.126 @@ -11,5 +11,5 @@ RDEPEND=!sys-kernel/gentoo-kernel-bin:5.4.126 || ( sys-kernel/installkernel-gent RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.4.126 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.4.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.4-129.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.4-129.extras.tar.xz https://github.com/mgorny/gentoo-kernel-config/archive/v5.4.114.tar.gz -> gentoo-kernel-config-5.4.114.tar.gz amd64? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-x86_64.config -> kernel-x86_64.config.5.4.21 ) arm64? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-aarch64.config -> kernel-aarch64.config.5.4.21 ) ppc64? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-ppc64le.config -> kernel-ppc64le.config.5.4.21 ) x86? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-i686.config -> kernel-i686.config.5.4.21 ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa _md5_=0be3e7d2998d7a5f7d70fabb1b2c6818 diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-5.4.127 b/metadata/md5-cache/sys-kernel/gentoo-kernel-5.4.127 index eb5366c1ad07..11e7e5784dde 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-kernel-5.4.127 +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-5.4.127 @@ -11,5 +11,5 @@ RDEPEND=!sys-kernel/gentoo-kernel-bin:5.4.127 || ( sys-kernel/installkernel-gent RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.4.127 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.4.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.4-130.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.4-130.extras.tar.xz https://github.com/mgorny/gentoo-kernel-config/archive/v5.4.114.tar.gz -> gentoo-kernel-config-5.4.114.tar.gz amd64? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-x86_64.config -> kernel-x86_64.config.5.4.21 ) arm64? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-aarch64.config -> kernel-aarch64.config.5.4.21 ) ppc64? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-ppc64le.config -> kernel-ppc64le.config.5.4.21 ) x86? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-i686.config -> kernel-i686.config.5.4.21 ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa _md5_=0be3e7d2998d7a5f7d70fabb1b2c6818 diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-5.4.128 b/metadata/md5-cache/sys-kernel/gentoo-kernel-5.4.128 index cda1da171241..8d4881622ac7 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-kernel-5.4.128 +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-5.4.128 @@ -11,5 +11,5 @@ RDEPEND=!sys-kernel/gentoo-kernel-bin:5.4.128 || ( sys-kernel/installkernel-gent RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.4.128 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.4.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.4-131.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.4-131.extras.tar.xz https://github.com/mgorny/gentoo-kernel-config/archive/v5.4.114.tar.gz -> gentoo-kernel-config-5.4.114.tar.gz amd64? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-x86_64.config -> kernel-x86_64.config.5.4.21 ) arm64? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-aarch64.config -> kernel-aarch64.config.5.4.21 ) ppc64? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-ppc64le.config -> kernel-ppc64le.config.5.4.21 ) x86? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-i686.config -> kernel-i686.config.5.4.21 ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa _md5_=0be3e7d2998d7a5f7d70fabb1b2c6818 diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-5.4.129 b/metadata/md5-cache/sys-kernel/gentoo-kernel-5.4.129 index 498f9c55c7aa..38c08ded6249 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-kernel-5.4.129 +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-5.4.129 @@ -11,5 +11,5 @@ RDEPEND=!sys-kernel/gentoo-kernel-bin:5.4.129 || ( sys-kernel/installkernel-gent RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.4.129 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.4.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.4-133.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.4-133.extras.tar.xz https://github.com/mgorny/gentoo-kernel-config/archive/v5.4.114.tar.gz -> gentoo-kernel-config-5.4.114.tar.gz amd64? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-x86_64.config -> kernel-x86_64.config.5.4.21 ) arm64? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-aarch64.config -> kernel-aarch64.config.5.4.21 ) ppc64? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-ppc64le.config -> kernel-ppc64le.config.5.4.21 ) x86? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-i686.config -> kernel-i686.config.5.4.21 ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa _md5_=688f8ebca8ef55f61f8b417c1a0cf846 diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-5.4.130 b/metadata/md5-cache/sys-kernel/gentoo-kernel-5.4.130 index 93fc7cf6273e..41d48d09ac89 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-kernel-5.4.130 +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-5.4.130 @@ -11,5 +11,5 @@ RDEPEND=!sys-kernel/gentoo-kernel-bin:5.4.130 || ( sys-kernel/installkernel-gent RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.4.130 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.4.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.4-134.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.4-134.extras.tar.xz https://github.com/mgorny/gentoo-kernel-config/archive/v5.4.114.tar.gz -> gentoo-kernel-config-5.4.114.tar.gz amd64? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-x86_64.config -> kernel-x86_64.config.5.4.21 ) arm64? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-aarch64.config -> kernel-aarch64.config.5.4.21 ) ppc64? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-ppc64le.config -> kernel-ppc64le.config.5.4.21 ) x86? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-i686.config -> kernel-i686.config.5.4.21 ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa _md5_=90061225b63ee2e6e582dba6f3d5f21a diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.10.38 b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.10.38 index 7fc247c58b4c..66ab8a610fa5 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.10.38 +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.10.38 @@ -11,5 +11,5 @@ RDEPEND=!sys-kernel/gentoo-kernel:5.10.38 || ( sys-kernel/installkernel-gentoo s RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.10.38 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.10.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.10-41.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.10-41.extras.tar.xz amd64? ( https://dev.gentoo.org/~mgorny/binpkg/amd64/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.10.38-1.xpak -> gentoo-kernel-5.10.38-1.amd64.xpak ) x86? ( https://dev.gentoo.org/~mgorny/binpkg/x86/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.10.38-1.xpak -> gentoo-kernel-5.10.38-1.x86.xpak ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa _md5_=4233214f3c98b5a7e03e19ad157742ca diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.10.38-r1 b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.10.38-r1 index 0ce5f60378b4..79bf3a8564cf 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.10.38-r1 +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.10.38-r1 @@ -11,5 +11,5 @@ RDEPEND=!sys-kernel/gentoo-kernel:5.10.38 || ( sys-kernel/installkernel-gentoo s RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.10.38 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.10.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.10-41.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.10-41.extras.tar.xz arm64? ( https://dev.gentoo.org/~sam/binpkg/arm64/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.10.38-1.xpak -> gentoo-kernel-5.10.38-1.arm64.xpak ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa _md5_=39267b52203bf462a57d324fa2ad7335 diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.10.43 b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.10.43 index 1e386a995e3b..91a907995992 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.10.43 +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.10.43 @@ -11,5 +11,5 @@ RDEPEND=!sys-kernel/gentoo-kernel:5.10.43 || ( sys-kernel/installkernel-gentoo s RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.10.43 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.10.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.10-47.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.10-47.extras.tar.xz amd64? ( https://dev.gentoo.org/~mgorny/binpkg/amd64/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.10.43-1.xpak -> gentoo-kernel-5.10.43-1.amd64.xpak ) x86? ( https://dev.gentoo.org/~mgorny/binpkg/x86/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.10.43-1.xpak -> gentoo-kernel-5.10.43-1.x86.xpak ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa _md5_=70de02a54cbc49b1ccfa306794e5ceb8 diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.10.43-r1 b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.10.43-r1 index 0179d217d9eb..6787b8018b9a 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.10.43-r1 +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.10.43-r1 @@ -11,5 +11,5 @@ RDEPEND=!sys-kernel/gentoo-kernel:5.10.43 || ( sys-kernel/installkernel-gentoo s RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.10.43 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.10.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.10-46.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.10-46.extras.tar.xz arm64? ( https://dev.gentoo.org/~sam/binpkg/arm64/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.10.43-1.xpak -> gentoo-kernel-5.10.43-1.arm64.xpak ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa _md5_=10f924d9e2609c47462cf6e6560aebc8 diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.10.44 b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.10.44 index 459e2ada74c8..28e1cd8fc455 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.10.44 +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.10.44 @@ -11,5 +11,5 @@ RDEPEND=!sys-kernel/gentoo-kernel:5.10.44 || ( sys-kernel/installkernel-gentoo s RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.10.44 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.10.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.10-48.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.10-48.extras.tar.xz amd64? ( https://dev.gentoo.org/~mgorny/binpkg/amd64/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.10.44-1.xpak -> gentoo-kernel-5.10.44-1.amd64.xpak ) x86? ( https://dev.gentoo.org/~mgorny/binpkg/x86/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.10.44-1.xpak -> gentoo-kernel-5.10.44-1.x86.xpak ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa _md5_=70de02a54cbc49b1ccfa306794e5ceb8 diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.10.44-r1 b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.10.44-r1 index bc448ef65b45..85b30eb631ef 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.10.44-r1 +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.10.44-r1 @@ -11,5 +11,5 @@ RDEPEND=!sys-kernel/gentoo-kernel:5.10.44 || ( sys-kernel/installkernel-gentoo s RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.10.44 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.10.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.10-47.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.10-47.extras.tar.xz arm64? ( https://dev.gentoo.org/~sam/binpkg/arm64/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.10.44-1.xpak -> gentoo-kernel-5.10.44-1.arm64.xpak ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa _md5_=10f924d9e2609c47462cf6e6560aebc8 diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.10.45 b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.10.45 index a89e4fa8513c..594057d5ffd0 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.10.45 +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.10.45 @@ -11,5 +11,5 @@ RDEPEND=!sys-kernel/gentoo-kernel:5.10.45 || ( sys-kernel/installkernel-gentoo s RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.10.45 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.10.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.10-49.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.10-49.extras.tar.xz amd64? ( https://dev.gentoo.org/~mgorny/binpkg/amd64/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.10.45-1.xpak -> gentoo-kernel-5.10.45-1.amd64.xpak ) x86? ( https://dev.gentoo.org/~mgorny/binpkg/x86/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.10.45-1.xpak -> gentoo-kernel-5.10.45-1.x86.xpak ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa _md5_=70de02a54cbc49b1ccfa306794e5ceb8 diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.10.45-r1 b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.10.45-r1 index 5d0031e53684..47406006ebea 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.10.45-r1 +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.10.45-r1 @@ -11,5 +11,5 @@ RDEPEND=!sys-kernel/gentoo-kernel:5.10.45 || ( sys-kernel/installkernel-gentoo s RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.10.45 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.10.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.10-48.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.10-48.extras.tar.xz arm64? ( https://dev.gentoo.org/~sam/binpkg/arm64/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.10.45-1.xpak -> gentoo-kernel-5.10.45-1.arm64.xpak ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa _md5_=10f924d9e2609c47462cf6e6560aebc8 diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.10.46 b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.10.46 index 97ad3454049e..2153a7c454a5 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.10.46 +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.10.46 @@ -11,5 +11,5 @@ RDEPEND=!sys-kernel/gentoo-kernel:5.10.46 || ( sys-kernel/installkernel-gentoo s RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.10.46 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.10.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.10-50.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.10-50.extras.tar.xz amd64? ( https://dev.gentoo.org/~mgorny/binpkg/amd64/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.10.46-1.xpak -> gentoo-kernel-5.10.46-1.amd64.xpak ) x86? ( https://dev.gentoo.org/~mgorny/binpkg/x86/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.10.46-1.xpak -> gentoo-kernel-5.10.46-1.x86.xpak ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa _md5_=70de02a54cbc49b1ccfa306794e5ceb8 diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.10.47 b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.10.47 index d58c2f633f29..ece3b80708e9 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.10.47 +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.10.47 @@ -11,5 +11,5 @@ RDEPEND=!sys-kernel/gentoo-kernel:5.10.47 || ( sys-kernel/installkernel-gentoo s RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.10.47 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.10.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.10-51.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.10-51.extras.tar.xz amd64? ( https://dev.gentoo.org/~mgorny/binpkg/amd64/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.10.47-1.xpak -> gentoo-kernel-5.10.47-1.amd64.xpak ) x86? ( https://dev.gentoo.org/~mgorny/binpkg/x86/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.10.47-1.xpak -> gentoo-kernel-5.10.47-1.x86.xpak ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa _md5_=70de02a54cbc49b1ccfa306794e5ceb8 diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.10.48 b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.10.48 index 92fbf5b08c73..90704887d098 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.10.48 +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.10.48 @@ -11,5 +11,5 @@ RDEPEND=!sys-kernel/gentoo-kernel:5.10.48 || ( sys-kernel/installkernel-gentoo s RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.10.48 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.10.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.10-52.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.10-52.extras.tar.xz amd64? ( https://dev.gentoo.org/~mgorny/binpkg/amd64/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.10.48-1.xpak -> gentoo-kernel-5.10.48-1.amd64.xpak ) x86? ( https://dev.gentoo.org/~mgorny/binpkg/x86/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.10.48-1.xpak -> gentoo-kernel-5.10.48-1.x86.xpak ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa _md5_=70de02a54cbc49b1ccfa306794e5ceb8 diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.12.10 b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.12.10 index 724d1d57df05..07380eacf500 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.12.10 +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.12.10 @@ -11,5 +11,5 @@ RDEPEND=!sys-kernel/gentoo-kernel:5.12.10 || ( sys-kernel/installkernel-gentoo s RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.12.10 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.12.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.12-11.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.12-11.extras.tar.xz amd64? ( https://dev.gentoo.org/~mgorny/binpkg/amd64/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.12.10-1.xpak -> gentoo-kernel-5.12.10-1.amd64.xpak ) x86? ( https://dev.gentoo.org/~mgorny/binpkg/x86/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.12.10-1.xpak -> gentoo-kernel-5.12.10-1.x86.xpak ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa _md5_=17647ae32aae091a1fc3068d824145d0 diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.12.10-r1 b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.12.10-r1 index d7a5a0627ba9..32aa0f168674 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.12.10-r1 +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.12.10-r1 @@ -11,5 +11,5 @@ RDEPEND=!sys-kernel/gentoo-kernel:5.12.10 || ( sys-kernel/installkernel-gentoo s RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.12.10 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.12.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.12-11.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.12-11.extras.tar.xz arm64? ( https://dev.gentoo.org/~sam/binpkg/arm64/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.12.10-1.xpak -> gentoo-kernel-5.12.10-1.arm64.xpak ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa _md5_=933962642b66cce533afd3ff5c4c28e1 diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.12.11 b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.12.11 index 5cbd405e4740..50efe839342f 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.12.11 +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.12.11 @@ -11,5 +11,5 @@ RDEPEND=!sys-kernel/gentoo-kernel:5.12.11 || ( sys-kernel/installkernel-gentoo s RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.12.11 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.12.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.12-12.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.12-12.extras.tar.xz amd64? ( https://dev.gentoo.org/~mgorny/binpkg/amd64/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.12.11-1.xpak -> gentoo-kernel-5.12.11-1.amd64.xpak ) x86? ( https://dev.gentoo.org/~mgorny/binpkg/x86/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.12.11-1.xpak -> gentoo-kernel-5.12.11-1.x86.xpak ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa _md5_=17647ae32aae091a1fc3068d824145d0 diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.12.11-r1 b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.12.11-r1 index e5b7203619f2..1afc09d9837c 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.12.11-r1 +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.12.11-r1 @@ -11,5 +11,5 @@ RDEPEND=!sys-kernel/gentoo-kernel:5.12.11 || ( sys-kernel/installkernel-gentoo s RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.12.11 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.12.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.12-12.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.12-12.extras.tar.xz arm64? ( https://dev.gentoo.org/~sam/binpkg/arm64/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.12.11-1.xpak -> gentoo-kernel-5.12.11-1.arm64.xpak ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa _md5_=933962642b66cce533afd3ff5c4c28e1 diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.12.12 b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.12.12 index 5f3f5789bdf3..dabb50ff6c9b 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.12.12 +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.12.12 @@ -11,5 +11,5 @@ RDEPEND=!sys-kernel/gentoo-kernel:5.12.12 || ( sys-kernel/installkernel-gentoo s RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.12.12 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.12.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.12-13.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.12-13.extras.tar.xz amd64? ( https://dev.gentoo.org/~mgorny/binpkg/amd64/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.12.12-1.xpak -> gentoo-kernel-5.12.12-1.amd64.xpak ) x86? ( https://dev.gentoo.org/~mgorny/binpkg/x86/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.12.12-1.xpak -> gentoo-kernel-5.12.12-1.x86.xpak ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa _md5_=17647ae32aae091a1fc3068d824145d0 diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.12.12-r1 b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.12.12-r1 index 14d685932d9b..d854d12f4696 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.12.12-r1 +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.12.12-r1 @@ -11,5 +11,5 @@ RDEPEND=!sys-kernel/gentoo-kernel:5.12.12 || ( sys-kernel/installkernel-gentoo s RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.12.12 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.12.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.12-13.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.12-13.extras.tar.xz arm64? ( https://dev.gentoo.org/~sam/binpkg/arm64/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.12.12-1.xpak -> gentoo-kernel-5.12.12-1.arm64.xpak ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa _md5_=933962642b66cce533afd3ff5c4c28e1 diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.12.13 b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.12.13 index a36d66fb1dfd..d7bb2039d0fb 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.12.13 +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.12.13 @@ -11,5 +11,5 @@ RDEPEND=!sys-kernel/gentoo-kernel:5.12.13 || ( sys-kernel/installkernel-gentoo s RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.12.13 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.12.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.12-16.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.12-16.extras.tar.xz amd64? ( https://dev.gentoo.org/~mgorny/binpkg/amd64/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.12.13-1.xpak -> gentoo-kernel-5.12.13-1.amd64.xpak ) x86? ( https://dev.gentoo.org/~mgorny/binpkg/x86/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.12.13-1.xpak -> gentoo-kernel-5.12.13-1.x86.xpak ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa _md5_=8040503440faa9331505cbbbbc2a081a diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.12.14 b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.12.14 index bf21b2b72ab9..3a5529d8a045 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.12.14 +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.12.14 @@ -11,5 +11,5 @@ RDEPEND=!sys-kernel/gentoo-kernel:5.12.14 || ( sys-kernel/installkernel-gentoo s RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.12.14 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.12.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.12-17.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.12-17.extras.tar.xz amd64? ( https://dev.gentoo.org/~mgorny/binpkg/amd64/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.12.14-1.xpak -> gentoo-kernel-5.12.14-1.amd64.xpak ) x86? ( https://dev.gentoo.org/~mgorny/binpkg/x86/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.12.14-1.xpak -> gentoo-kernel-5.12.14-1.x86.xpak ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa _md5_=8040503440faa9331505cbbbbc2a081a diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.12.15 b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.12.15 index 5d05c54097e2..6dfcc5124f9d 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.12.15 +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.12.15 @@ -11,5 +11,5 @@ RDEPEND=!sys-kernel/gentoo-kernel:5.12.15 || ( sys-kernel/installkernel-gentoo s RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.12.15 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.12.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.12-18.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.12-18.extras.tar.xz amd64? ( https://dev.gentoo.org/~mgorny/binpkg/amd64/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.12.15-1.xpak -> gentoo-kernel-5.12.15-1.amd64.xpak ) x86? ( https://dev.gentoo.org/~mgorny/binpkg/x86/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.12.15-1.xpak -> gentoo-kernel-5.12.15-1.x86.xpak ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa _md5_=8040503440faa9331505cbbbbc2a081a diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.4.120 b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.4.120 index b68ac8727c3a..c37982ad54f2 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.4.120 +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.4.120 @@ -11,5 +11,5 @@ RDEPEND=!sys-kernel/gentoo-kernel:5.4.120 || ( sys-kernel/installkernel-gentoo s RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.4.120 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.4.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.4-123.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.4-123.extras.tar.xz amd64? ( https://dev.gentoo.org/~mgorny/binpkg/amd64/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.4.120-1.xpak -> gentoo-kernel-5.4.120-1.amd64.xpak ) x86? ( https://dev.gentoo.org/~mgorny/binpkg/x86/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.4.120-1.xpak -> gentoo-kernel-5.4.120-1.x86.xpak ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa _md5_=9939491909982f514495c2fd5fae50b7 diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.4.120-r1 b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.4.120-r1 index 188cb4b89954..29aaab3ed87c 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.4.120-r1 +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.4.120-r1 @@ -11,5 +11,5 @@ RDEPEND=!sys-kernel/gentoo-kernel:5.4.120 || ( sys-kernel/installkernel-gentoo s RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.4.120 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.4.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.4-123.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.4-123.extras.tar.xz arm64? ( https://dev.gentoo.org/~sam/binpkg/arm64/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.4.120-1.xpak -> gentoo-kernel-5.4.120-1.arm64.xpak ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa _md5_=b003d06d924fb794fca5ce42d472a8cc diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.4.125 b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.4.125 index f39a7472b054..1df02d6d7575 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.4.125 +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.4.125 @@ -11,5 +11,5 @@ RDEPEND=!sys-kernel/gentoo-kernel:5.4.125 || ( sys-kernel/installkernel-gentoo s RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.4.125 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.4.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.4-128.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.4-128.extras.tar.xz amd64? ( https://dev.gentoo.org/~mgorny/binpkg/amd64/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.4.125-1.xpak -> gentoo-kernel-5.4.125-1.amd64.xpak ) x86? ( https://dev.gentoo.org/~mgorny/binpkg/x86/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.4.125-1.xpak -> gentoo-kernel-5.4.125-1.x86.xpak ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa _md5_=8040503440faa9331505cbbbbc2a081a diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.4.125-r1 b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.4.125-r1 index 693d212b38ee..35d650b0cd83 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.4.125-r1 +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.4.125-r1 @@ -11,5 +11,5 @@ RDEPEND=!sys-kernel/gentoo-kernel:5.4.125 || ( sys-kernel/installkernel-gentoo s RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.4.125 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.4.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.4-128.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.4-128.extras.tar.xz arm64? ( https://dev.gentoo.org/~sam/binpkg/arm64/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.4.125-1.xpak -> gentoo-kernel-5.4.125-1.arm64.xpak ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa _md5_=10f924d9e2609c47462cf6e6560aebc8 diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.4.126 b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.4.126 index 7aa400b262a3..8c5f326dc153 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.4.126 +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.4.126 @@ -11,5 +11,5 @@ RDEPEND=!sys-kernel/gentoo-kernel:5.4.126 || ( sys-kernel/installkernel-gentoo s RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.4.126 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.4.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.4-129.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.4-129.extras.tar.xz amd64? ( https://dev.gentoo.org/~mgorny/binpkg/amd64/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.4.126-1.xpak -> gentoo-kernel-5.4.126-1.amd64.xpak ) x86? ( https://dev.gentoo.org/~mgorny/binpkg/x86/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.4.126-1.xpak -> gentoo-kernel-5.4.126-1.x86.xpak ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa _md5_=8040503440faa9331505cbbbbc2a081a diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.4.126-r1 b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.4.126-r1 index 9e5375650da3..8611650a437f 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.4.126-r1 +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.4.126-r1 @@ -11,5 +11,5 @@ RDEPEND=!sys-kernel/gentoo-kernel:5.4.126 || ( sys-kernel/installkernel-gentoo s RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.4.126 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.4.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.4-129.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.4-129.extras.tar.xz arm64? ( https://dev.gentoo.org/~sam/binpkg/arm64/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.4.126-1.xpak -> gentoo-kernel-5.4.126-1.arm64.xpak ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa _md5_=10f924d9e2609c47462cf6e6560aebc8 diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.4.127 b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.4.127 index 69538d159b61..61888548f6cb 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.4.127 +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.4.127 @@ -11,5 +11,5 @@ RDEPEND=!sys-kernel/gentoo-kernel:5.4.127 || ( sys-kernel/installkernel-gentoo s RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.4.127 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.4.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.4-130.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.4-130.extras.tar.xz amd64? ( https://dev.gentoo.org/~mgorny/binpkg/amd64/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.4.127-1.xpak -> gentoo-kernel-5.4.127-1.amd64.xpak ) x86? ( https://dev.gentoo.org/~mgorny/binpkg/x86/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.4.127-1.xpak -> gentoo-kernel-5.4.127-1.x86.xpak ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa _md5_=8040503440faa9331505cbbbbc2a081a diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.4.127-r1 b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.4.127-r1 index 853f78585255..97a27083a4b4 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.4.127-r1 +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.4.127-r1 @@ -11,5 +11,5 @@ RDEPEND=!sys-kernel/gentoo-kernel:5.4.127 || ( sys-kernel/installkernel-gentoo s RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.4.127 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.4.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.4-130.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.4-130.extras.tar.xz arm64? ( https://dev.gentoo.org/~sam/binpkg/arm64/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.4.127-1.xpak -> gentoo-kernel-5.4.127-1.arm64.xpak ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa _md5_=10f924d9e2609c47462cf6e6560aebc8 diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.4.128 b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.4.128 index c4af384c7a40..9ce106c77176 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.4.128 +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.4.128 @@ -11,5 +11,5 @@ RDEPEND=!sys-kernel/gentoo-kernel:5.4.128 || ( sys-kernel/installkernel-gentoo s RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.4.128 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.4.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.4-131.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.4-131.extras.tar.xz amd64? ( https://dev.gentoo.org/~mgorny/binpkg/amd64/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.4.128-1.xpak -> gentoo-kernel-5.4.128-1.amd64.xpak ) x86? ( https://dev.gentoo.org/~mgorny/binpkg/x86/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.4.128-1.xpak -> gentoo-kernel-5.4.128-1.x86.xpak ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa _md5_=8040503440faa9331505cbbbbc2a081a diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.4.129 b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.4.129 index 88f1d5ccd1a3..e3d8af6ded6b 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.4.129 +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.4.129 @@ -11,5 +11,5 @@ RDEPEND=!sys-kernel/gentoo-kernel:5.4.129 || ( sys-kernel/installkernel-gentoo s RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.4.129 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.4.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.4-133.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.4-133.extras.tar.xz amd64? ( https://dev.gentoo.org/~mgorny/binpkg/amd64/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.4.129-1.xpak -> gentoo-kernel-5.4.129-1.amd64.xpak ) x86? ( https://dev.gentoo.org/~mgorny/binpkg/x86/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.4.129-1.xpak -> gentoo-kernel-5.4.129-1.x86.xpak ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa _md5_=70de02a54cbc49b1ccfa306794e5ceb8 diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.4.130 b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.4.130 index 02532947d257..991552d46e02 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.4.130 +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.4.130 @@ -11,5 +11,5 @@ RDEPEND=!sys-kernel/gentoo-kernel:5.4.130 || ( sys-kernel/installkernel-gentoo s RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.4.130 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.4.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.4-134.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.4-134.extras.tar.xz amd64? ( https://dev.gentoo.org/~mgorny/binpkg/amd64/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.4.130-1.xpak -> gentoo-kernel-5.4.130-1.amd64.xpak ) x86? ( https://dev.gentoo.org/~mgorny/binpkg/x86/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.4.130-1.xpak -> gentoo-kernel-5.4.130-1.x86.xpak ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa _md5_=70de02a54cbc49b1ccfa306794e5ceb8 diff --git a/metadata/md5-cache/sys-kernel/vanilla-kernel-5.10.43 b/metadata/md5-cache/sys-kernel/vanilla-kernel-5.10.43 index e7d0691b5f9d..a7759f18b7e9 100644 --- a/metadata/md5-cache/sys-kernel/vanilla-kernel-5.10.43 +++ b/metadata/md5-cache/sys-kernel/vanilla-kernel-5.10.43 @@ -12,5 +12,5 @@ REQUIRED_USE=arm? ( savedconfig ) RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.10.43 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.10.43.tar.xz https://github.com/mgorny/gentoo-kernel-config/archive/v5.10.32.tar.gz -> gentoo-kernel-config-5.10.32.tar.gz verify-sig? ( https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.10.43.tar.sign ) amd64? ( https://src.fedoraproject.org/rpms/kernel/raw/836165dd2dff34e4f2c47ca8f9c803002c1e6530/f/kernel-x86_64-fedora.config -> kernel-x86_64-fedora.config.5.10.12 ) arm64? ( https://src.fedoraproject.org/rpms/kernel/raw/836165dd2dff34e4f2c47ca8f9c803002c1e6530/f/kernel-aarch64-fedora.config -> kernel-aarch64-fedora.config.5.10.12 ) ppc64? ( https://src.fedoraproject.org/rpms/kernel/raw/836165dd2dff34e4f2c47ca8f9c803002c1e6530/f/kernel-ppc64le-fedora.config -> kernel-ppc64le-fedora.config.5.10.12 ) x86? ( https://src.fedoraproject.org/rpms/kernel/raw/836165dd2dff34e4f2c47ca8f9c803002c1e6530/f/kernel-i686-fedora.config -> kernel-i686-fedora.config.5.10.12 ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa verify-sig 10c122d0f49c54100ad5e279db0cb43c +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa verify-sig 10c122d0f49c54100ad5e279db0cb43c _md5_=0e2aa050cf08fac5e8c9917b602638a0 diff --git a/metadata/md5-cache/sys-kernel/vanilla-kernel-5.10.44 b/metadata/md5-cache/sys-kernel/vanilla-kernel-5.10.44 index 85dd777c5273..087f83bc5a7e 100644 --- a/metadata/md5-cache/sys-kernel/vanilla-kernel-5.10.44 +++ b/metadata/md5-cache/sys-kernel/vanilla-kernel-5.10.44 @@ -12,5 +12,5 @@ REQUIRED_USE=arm? ( savedconfig ) RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.10.44 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.10.44.tar.xz https://github.com/mgorny/gentoo-kernel-config/archive/v5.10.32.tar.gz -> gentoo-kernel-config-5.10.32.tar.gz verify-sig? ( https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.10.44.tar.sign ) amd64? ( https://src.fedoraproject.org/rpms/kernel/raw/836165dd2dff34e4f2c47ca8f9c803002c1e6530/f/kernel-x86_64-fedora.config -> kernel-x86_64-fedora.config.5.10.12 ) arm64? ( https://src.fedoraproject.org/rpms/kernel/raw/836165dd2dff34e4f2c47ca8f9c803002c1e6530/f/kernel-aarch64-fedora.config -> kernel-aarch64-fedora.config.5.10.12 ) ppc64? ( https://src.fedoraproject.org/rpms/kernel/raw/836165dd2dff34e4f2c47ca8f9c803002c1e6530/f/kernel-ppc64le-fedora.config -> kernel-ppc64le-fedora.config.5.10.12 ) x86? ( https://src.fedoraproject.org/rpms/kernel/raw/836165dd2dff34e4f2c47ca8f9c803002c1e6530/f/kernel-i686-fedora.config -> kernel-i686-fedora.config.5.10.12 ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa verify-sig 10c122d0f49c54100ad5e279db0cb43c +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa verify-sig 10c122d0f49c54100ad5e279db0cb43c _md5_=0e2aa050cf08fac5e8c9917b602638a0 diff --git a/metadata/md5-cache/sys-kernel/vanilla-kernel-5.10.45 b/metadata/md5-cache/sys-kernel/vanilla-kernel-5.10.45 index e803dbe09eb3..ed01ee83a742 100644 --- a/metadata/md5-cache/sys-kernel/vanilla-kernel-5.10.45 +++ b/metadata/md5-cache/sys-kernel/vanilla-kernel-5.10.45 @@ -12,5 +12,5 @@ REQUIRED_USE=arm? ( savedconfig ) RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.10.45 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.10.45.tar.xz https://github.com/mgorny/gentoo-kernel-config/archive/v5.10.32.tar.gz -> gentoo-kernel-config-5.10.32.tar.gz verify-sig? ( https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.10.45.tar.sign ) amd64? ( https://src.fedoraproject.org/rpms/kernel/raw/836165dd2dff34e4f2c47ca8f9c803002c1e6530/f/kernel-x86_64-fedora.config -> kernel-x86_64-fedora.config.5.10.12 ) arm64? ( https://src.fedoraproject.org/rpms/kernel/raw/836165dd2dff34e4f2c47ca8f9c803002c1e6530/f/kernel-aarch64-fedora.config -> kernel-aarch64-fedora.config.5.10.12 ) ppc64? ( https://src.fedoraproject.org/rpms/kernel/raw/836165dd2dff34e4f2c47ca8f9c803002c1e6530/f/kernel-ppc64le-fedora.config -> kernel-ppc64le-fedora.config.5.10.12 ) x86? ( https://src.fedoraproject.org/rpms/kernel/raw/836165dd2dff34e4f2c47ca8f9c803002c1e6530/f/kernel-i686-fedora.config -> kernel-i686-fedora.config.5.10.12 ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa verify-sig 10c122d0f49c54100ad5e279db0cb43c +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa verify-sig 10c122d0f49c54100ad5e279db0cb43c _md5_=0e2aa050cf08fac5e8c9917b602638a0 diff --git a/metadata/md5-cache/sys-kernel/vanilla-kernel-5.10.46 b/metadata/md5-cache/sys-kernel/vanilla-kernel-5.10.46 index 6ee90912fc89..0bbdc3469597 100644 --- a/metadata/md5-cache/sys-kernel/vanilla-kernel-5.10.46 +++ b/metadata/md5-cache/sys-kernel/vanilla-kernel-5.10.46 @@ -12,5 +12,5 @@ REQUIRED_USE=arm? ( savedconfig ) RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.10.46 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.10.46.tar.xz https://github.com/mgorny/gentoo-kernel-config/archive/v5.10.32.tar.gz -> gentoo-kernel-config-5.10.32.tar.gz verify-sig? ( https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.10.46.tar.sign ) amd64? ( https://src.fedoraproject.org/rpms/kernel/raw/836165dd2dff34e4f2c47ca8f9c803002c1e6530/f/kernel-x86_64-fedora.config -> kernel-x86_64-fedora.config.5.10.12 ) arm64? ( https://src.fedoraproject.org/rpms/kernel/raw/836165dd2dff34e4f2c47ca8f9c803002c1e6530/f/kernel-aarch64-fedora.config -> kernel-aarch64-fedora.config.5.10.12 ) ppc64? ( https://src.fedoraproject.org/rpms/kernel/raw/836165dd2dff34e4f2c47ca8f9c803002c1e6530/f/kernel-ppc64le-fedora.config -> kernel-ppc64le-fedora.config.5.10.12 ) x86? ( https://src.fedoraproject.org/rpms/kernel/raw/836165dd2dff34e4f2c47ca8f9c803002c1e6530/f/kernel-i686-fedora.config -> kernel-i686-fedora.config.5.10.12 ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa verify-sig 10c122d0f49c54100ad5e279db0cb43c +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa verify-sig 10c122d0f49c54100ad5e279db0cb43c _md5_=0e2aa050cf08fac5e8c9917b602638a0 diff --git a/metadata/md5-cache/sys-kernel/vanilla-kernel-5.10.47 b/metadata/md5-cache/sys-kernel/vanilla-kernel-5.10.47 index 1e166a1b0af2..b7efa64fb764 100644 --- a/metadata/md5-cache/sys-kernel/vanilla-kernel-5.10.47 +++ b/metadata/md5-cache/sys-kernel/vanilla-kernel-5.10.47 @@ -12,5 +12,5 @@ REQUIRED_USE=arm? ( savedconfig ) RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.10.47 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.10.47.tar.xz https://github.com/mgorny/gentoo-kernel-config/archive/v5.10.32.tar.gz -> gentoo-kernel-config-5.10.32.tar.gz verify-sig? ( https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.10.47.tar.sign ) amd64? ( https://src.fedoraproject.org/rpms/kernel/raw/836165dd2dff34e4f2c47ca8f9c803002c1e6530/f/kernel-x86_64-fedora.config -> kernel-x86_64-fedora.config.5.10.12 ) arm64? ( https://src.fedoraproject.org/rpms/kernel/raw/836165dd2dff34e4f2c47ca8f9c803002c1e6530/f/kernel-aarch64-fedora.config -> kernel-aarch64-fedora.config.5.10.12 ) ppc64? ( https://src.fedoraproject.org/rpms/kernel/raw/836165dd2dff34e4f2c47ca8f9c803002c1e6530/f/kernel-ppc64le-fedora.config -> kernel-ppc64le-fedora.config.5.10.12 ) x86? ( https://src.fedoraproject.org/rpms/kernel/raw/836165dd2dff34e4f2c47ca8f9c803002c1e6530/f/kernel-i686-fedora.config -> kernel-i686-fedora.config.5.10.12 ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa verify-sig 10c122d0f49c54100ad5e279db0cb43c +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa verify-sig 10c122d0f49c54100ad5e279db0cb43c _md5_=0e2aa050cf08fac5e8c9917b602638a0 diff --git a/metadata/md5-cache/sys-kernel/vanilla-kernel-5.10.48 b/metadata/md5-cache/sys-kernel/vanilla-kernel-5.10.48 index 7aa7de1f1af8..584e63b233d2 100644 --- a/metadata/md5-cache/sys-kernel/vanilla-kernel-5.10.48 +++ b/metadata/md5-cache/sys-kernel/vanilla-kernel-5.10.48 @@ -12,5 +12,5 @@ REQUIRED_USE=arm? ( savedconfig ) RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.10.48 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.10.48.tar.xz https://github.com/mgorny/gentoo-kernel-config/archive/v5.10.32.tar.gz -> gentoo-kernel-config-5.10.32.tar.gz verify-sig? ( https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.10.48.tar.sign ) amd64? ( https://src.fedoraproject.org/rpms/kernel/raw/836165dd2dff34e4f2c47ca8f9c803002c1e6530/f/kernel-x86_64-fedora.config -> kernel-x86_64-fedora.config.5.10.12 ) arm64? ( https://src.fedoraproject.org/rpms/kernel/raw/836165dd2dff34e4f2c47ca8f9c803002c1e6530/f/kernel-aarch64-fedora.config -> kernel-aarch64-fedora.config.5.10.12 ) ppc64? ( https://src.fedoraproject.org/rpms/kernel/raw/836165dd2dff34e4f2c47ca8f9c803002c1e6530/f/kernel-ppc64le-fedora.config -> kernel-ppc64le-fedora.config.5.10.12 ) x86? ( https://src.fedoraproject.org/rpms/kernel/raw/836165dd2dff34e4f2c47ca8f9c803002c1e6530/f/kernel-i686-fedora.config -> kernel-i686-fedora.config.5.10.12 ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa verify-sig 10c122d0f49c54100ad5e279db0cb43c +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa verify-sig 10c122d0f49c54100ad5e279db0cb43c _md5_=0e2aa050cf08fac5e8c9917b602638a0 diff --git a/metadata/md5-cache/sys-kernel/vanilla-kernel-5.12.10 b/metadata/md5-cache/sys-kernel/vanilla-kernel-5.12.10 index f58f48ab68aa..e72e2234019d 100644 --- a/metadata/md5-cache/sys-kernel/vanilla-kernel-5.12.10 +++ b/metadata/md5-cache/sys-kernel/vanilla-kernel-5.12.10 @@ -12,5 +12,5 @@ REQUIRED_USE=arm? ( savedconfig ) RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.12.10 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.12.10.tar.xz https://github.com/mgorny/gentoo-kernel-config/archive/v5.10.32.tar.gz -> gentoo-kernel-config-5.10.32.tar.gz verify-sig? ( https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.12.10.tar.sign ) amd64? ( https://src.fedoraproject.org/rpms/kernel/raw/17639df044f5f81bbf267f566426eae4a5187875/f/kernel-x86_64-fedora.config -> kernel-x86_64-fedora.config.5.12.5 ) arm64? ( https://src.fedoraproject.org/rpms/kernel/raw/17639df044f5f81bbf267f566426eae4a5187875/f/kernel-aarch64-fedora.config -> kernel-aarch64-fedora.config.5.12.5 ) ppc64? ( https://src.fedoraproject.org/rpms/kernel/raw/17639df044f5f81bbf267f566426eae4a5187875/f/kernel-ppc64le-fedora.config -> kernel-ppc64le-fedora.config.5.12.5 ) x86? ( https://src.fedoraproject.org/rpms/kernel/raw/17639df044f5f81bbf267f566426eae4a5187875/f/kernel-i686-fedora.config -> kernel-i686-fedora.config.5.12.5 ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa verify-sig 10c122d0f49c54100ad5e279db0cb43c +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa verify-sig 10c122d0f49c54100ad5e279db0cb43c _md5_=5df19398044f74fd0dd076acc605cac3 diff --git a/metadata/md5-cache/sys-kernel/vanilla-kernel-5.12.11 b/metadata/md5-cache/sys-kernel/vanilla-kernel-5.12.11 index 499eda0b946f..d77b5b5d64ed 100644 --- a/metadata/md5-cache/sys-kernel/vanilla-kernel-5.12.11 +++ b/metadata/md5-cache/sys-kernel/vanilla-kernel-5.12.11 @@ -12,5 +12,5 @@ REQUIRED_USE=arm? ( savedconfig ) RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.12.11 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.12.11.tar.xz https://github.com/mgorny/gentoo-kernel-config/archive/v5.10.32.tar.gz -> gentoo-kernel-config-5.10.32.tar.gz verify-sig? ( https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.12.11.tar.sign ) amd64? ( https://src.fedoraproject.org/rpms/kernel/raw/17639df044f5f81bbf267f566426eae4a5187875/f/kernel-x86_64-fedora.config -> kernel-x86_64-fedora.config.5.12.5 ) arm64? ( https://src.fedoraproject.org/rpms/kernel/raw/17639df044f5f81bbf267f566426eae4a5187875/f/kernel-aarch64-fedora.config -> kernel-aarch64-fedora.config.5.12.5 ) ppc64? ( https://src.fedoraproject.org/rpms/kernel/raw/17639df044f5f81bbf267f566426eae4a5187875/f/kernel-ppc64le-fedora.config -> kernel-ppc64le-fedora.config.5.12.5 ) x86? ( https://src.fedoraproject.org/rpms/kernel/raw/17639df044f5f81bbf267f566426eae4a5187875/f/kernel-i686-fedora.config -> kernel-i686-fedora.config.5.12.5 ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa verify-sig 10c122d0f49c54100ad5e279db0cb43c +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa verify-sig 10c122d0f49c54100ad5e279db0cb43c _md5_=5df19398044f74fd0dd076acc605cac3 diff --git a/metadata/md5-cache/sys-kernel/vanilla-kernel-5.12.12 b/metadata/md5-cache/sys-kernel/vanilla-kernel-5.12.12 index be7bf4fa8cba..68a960fbcf18 100644 --- a/metadata/md5-cache/sys-kernel/vanilla-kernel-5.12.12 +++ b/metadata/md5-cache/sys-kernel/vanilla-kernel-5.12.12 @@ -12,5 +12,5 @@ REQUIRED_USE=arm? ( savedconfig ) RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.12.12 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.12.12.tar.xz https://github.com/mgorny/gentoo-kernel-config/archive/v5.10.32.tar.gz -> gentoo-kernel-config-5.10.32.tar.gz verify-sig? ( https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.12.12.tar.sign ) amd64? ( https://src.fedoraproject.org/rpms/kernel/raw/17639df044f5f81bbf267f566426eae4a5187875/f/kernel-x86_64-fedora.config -> kernel-x86_64-fedora.config.5.12.5 ) arm64? ( https://src.fedoraproject.org/rpms/kernel/raw/17639df044f5f81bbf267f566426eae4a5187875/f/kernel-aarch64-fedora.config -> kernel-aarch64-fedora.config.5.12.5 ) ppc64? ( https://src.fedoraproject.org/rpms/kernel/raw/17639df044f5f81bbf267f566426eae4a5187875/f/kernel-ppc64le-fedora.config -> kernel-ppc64le-fedora.config.5.12.5 ) x86? ( https://src.fedoraproject.org/rpms/kernel/raw/17639df044f5f81bbf267f566426eae4a5187875/f/kernel-i686-fedora.config -> kernel-i686-fedora.config.5.12.5 ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa verify-sig 10c122d0f49c54100ad5e279db0cb43c +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa verify-sig 10c122d0f49c54100ad5e279db0cb43c _md5_=5df19398044f74fd0dd076acc605cac3 diff --git a/metadata/md5-cache/sys-kernel/vanilla-kernel-5.12.13 b/metadata/md5-cache/sys-kernel/vanilla-kernel-5.12.13 index fb7eafef6e03..1ed9b1a4a513 100644 --- a/metadata/md5-cache/sys-kernel/vanilla-kernel-5.12.13 +++ b/metadata/md5-cache/sys-kernel/vanilla-kernel-5.12.13 @@ -12,5 +12,5 @@ REQUIRED_USE=arm? ( savedconfig ) RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.12.13 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.12.13.tar.xz https://github.com/mgorny/gentoo-kernel-config/archive/v5.10.32.tar.gz -> gentoo-kernel-config-5.10.32.tar.gz verify-sig? ( https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.12.13.tar.sign ) amd64? ( https://src.fedoraproject.org/rpms/kernel/raw/17639df044f5f81bbf267f566426eae4a5187875/f/kernel-x86_64-fedora.config -> kernel-x86_64-fedora.config.5.12.5 ) arm64? ( https://src.fedoraproject.org/rpms/kernel/raw/17639df044f5f81bbf267f566426eae4a5187875/f/kernel-aarch64-fedora.config -> kernel-aarch64-fedora.config.5.12.5 ) ppc64? ( https://src.fedoraproject.org/rpms/kernel/raw/17639df044f5f81bbf267f566426eae4a5187875/f/kernel-ppc64le-fedora.config -> kernel-ppc64le-fedora.config.5.12.5 ) x86? ( https://src.fedoraproject.org/rpms/kernel/raw/17639df044f5f81bbf267f566426eae4a5187875/f/kernel-i686-fedora.config -> kernel-i686-fedora.config.5.12.5 ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa verify-sig 10c122d0f49c54100ad5e279db0cb43c +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa verify-sig 10c122d0f49c54100ad5e279db0cb43c _md5_=5df19398044f74fd0dd076acc605cac3 diff --git a/metadata/md5-cache/sys-kernel/vanilla-kernel-5.12.14 b/metadata/md5-cache/sys-kernel/vanilla-kernel-5.12.14 index 430b5dc84356..c6bb2e4a300d 100644 --- a/metadata/md5-cache/sys-kernel/vanilla-kernel-5.12.14 +++ b/metadata/md5-cache/sys-kernel/vanilla-kernel-5.12.14 @@ -12,5 +12,5 @@ REQUIRED_USE=arm? ( savedconfig ) RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.12.14 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.12.14.tar.xz https://github.com/mgorny/gentoo-kernel-config/archive/v5.10.32.tar.gz -> gentoo-kernel-config-5.10.32.tar.gz verify-sig? ( https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.12.14.tar.sign ) amd64? ( https://src.fedoraproject.org/rpms/kernel/raw/17639df044f5f81bbf267f566426eae4a5187875/f/kernel-x86_64-fedora.config -> kernel-x86_64-fedora.config.5.12.5 ) arm64? ( https://src.fedoraproject.org/rpms/kernel/raw/17639df044f5f81bbf267f566426eae4a5187875/f/kernel-aarch64-fedora.config -> kernel-aarch64-fedora.config.5.12.5 ) ppc64? ( https://src.fedoraproject.org/rpms/kernel/raw/17639df044f5f81bbf267f566426eae4a5187875/f/kernel-ppc64le-fedora.config -> kernel-ppc64le-fedora.config.5.12.5 ) x86? ( https://src.fedoraproject.org/rpms/kernel/raw/17639df044f5f81bbf267f566426eae4a5187875/f/kernel-i686-fedora.config -> kernel-i686-fedora.config.5.12.5 ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa verify-sig 10c122d0f49c54100ad5e279db0cb43c +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa verify-sig 10c122d0f49c54100ad5e279db0cb43c _md5_=5df19398044f74fd0dd076acc605cac3 diff --git a/metadata/md5-cache/sys-kernel/vanilla-kernel-5.12.15 b/metadata/md5-cache/sys-kernel/vanilla-kernel-5.12.15 index a7f64363ce26..865171d50396 100644 --- a/metadata/md5-cache/sys-kernel/vanilla-kernel-5.12.15 +++ b/metadata/md5-cache/sys-kernel/vanilla-kernel-5.12.15 @@ -12,5 +12,5 @@ REQUIRED_USE=arm? ( savedconfig ) RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.12.15 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.12.15.tar.xz https://github.com/mgorny/gentoo-kernel-config/archive/v5.10.32.tar.gz -> gentoo-kernel-config-5.10.32.tar.gz verify-sig? ( https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.12.15.tar.sign ) amd64? ( https://src.fedoraproject.org/rpms/kernel/raw/17639df044f5f81bbf267f566426eae4a5187875/f/kernel-x86_64-fedora.config -> kernel-x86_64-fedora.config.5.12.5 ) arm64? ( https://src.fedoraproject.org/rpms/kernel/raw/17639df044f5f81bbf267f566426eae4a5187875/f/kernel-aarch64-fedora.config -> kernel-aarch64-fedora.config.5.12.5 ) ppc64? ( https://src.fedoraproject.org/rpms/kernel/raw/17639df044f5f81bbf267f566426eae4a5187875/f/kernel-ppc64le-fedora.config -> kernel-ppc64le-fedora.config.5.12.5 ) x86? ( https://src.fedoraproject.org/rpms/kernel/raw/17639df044f5f81bbf267f566426eae4a5187875/f/kernel-i686-fedora.config -> kernel-i686-fedora.config.5.12.5 ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa verify-sig 10c122d0f49c54100ad5e279db0cb43c +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa verify-sig 10c122d0f49c54100ad5e279db0cb43c _md5_=5df19398044f74fd0dd076acc605cac3 diff --git a/metadata/md5-cache/sys-kernel/vanilla-kernel-5.4.120 b/metadata/md5-cache/sys-kernel/vanilla-kernel-5.4.120 index caddcc0f1800..07c2f7f9f5d0 100644 --- a/metadata/md5-cache/sys-kernel/vanilla-kernel-5.4.120 +++ b/metadata/md5-cache/sys-kernel/vanilla-kernel-5.4.120 @@ -11,5 +11,5 @@ RDEPEND=!sys-kernel/vanilla-kernel-bin:5.4.120 || ( sys-kernel/installkernel-gen RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.4.120 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.4.120.tar.xz https://github.com/mgorny/gentoo-kernel-config/archive/v5.4.114.tar.gz -> gentoo-kernel-config-5.4.114.tar.gz verify-sig? ( https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.4.120.tar.sign ) amd64? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-x86_64.config -> kernel-x86_64.config.5.4.21 ) arm64? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-aarch64.config -> kernel-aarch64.config.5.4.21 ) ppc64? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-ppc64le.config -> kernel-ppc64le.config.5.4.21 ) x86? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-i686.config -> kernel-i686.config.5.4.21 ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa verify-sig 10c122d0f49c54100ad5e279db0cb43c +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa verify-sig 10c122d0f49c54100ad5e279db0cb43c _md5_=1a652dd3004bcc73801b4c105824aafb diff --git a/metadata/md5-cache/sys-kernel/vanilla-kernel-5.4.125 b/metadata/md5-cache/sys-kernel/vanilla-kernel-5.4.125 index ffacd4117d0c..02a349c32aac 100644 --- a/metadata/md5-cache/sys-kernel/vanilla-kernel-5.4.125 +++ b/metadata/md5-cache/sys-kernel/vanilla-kernel-5.4.125 @@ -11,5 +11,5 @@ RDEPEND=!sys-kernel/vanilla-kernel-bin:5.4.125 || ( sys-kernel/installkernel-gen RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.4.125 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.4.125.tar.xz https://github.com/mgorny/gentoo-kernel-config/archive/v5.4.114.tar.gz -> gentoo-kernel-config-5.4.114.tar.gz verify-sig? ( https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.4.125.tar.sign ) amd64? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-x86_64.config -> kernel-x86_64.config.5.4.21 ) arm64? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-aarch64.config -> kernel-aarch64.config.5.4.21 ) ppc64? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-ppc64le.config -> kernel-ppc64le.config.5.4.21 ) x86? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-i686.config -> kernel-i686.config.5.4.21 ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa verify-sig 10c122d0f49c54100ad5e279db0cb43c +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa verify-sig 10c122d0f49c54100ad5e279db0cb43c _md5_=1a652dd3004bcc73801b4c105824aafb diff --git a/metadata/md5-cache/sys-kernel/vanilla-kernel-5.4.126 b/metadata/md5-cache/sys-kernel/vanilla-kernel-5.4.126 index a9b5ab86d24a..b9a9efd9d932 100644 --- a/metadata/md5-cache/sys-kernel/vanilla-kernel-5.4.126 +++ b/metadata/md5-cache/sys-kernel/vanilla-kernel-5.4.126 @@ -11,5 +11,5 @@ RDEPEND=!sys-kernel/vanilla-kernel-bin:5.4.126 || ( sys-kernel/installkernel-gen RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.4.126 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.4.126.tar.xz https://github.com/mgorny/gentoo-kernel-config/archive/v5.4.114.tar.gz -> gentoo-kernel-config-5.4.114.tar.gz verify-sig? ( https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.4.126.tar.sign ) amd64? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-x86_64.config -> kernel-x86_64.config.5.4.21 ) arm64? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-aarch64.config -> kernel-aarch64.config.5.4.21 ) ppc64? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-ppc64le.config -> kernel-ppc64le.config.5.4.21 ) x86? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-i686.config -> kernel-i686.config.5.4.21 ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa verify-sig 10c122d0f49c54100ad5e279db0cb43c +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa verify-sig 10c122d0f49c54100ad5e279db0cb43c _md5_=1a652dd3004bcc73801b4c105824aafb diff --git a/metadata/md5-cache/sys-kernel/vanilla-kernel-5.4.127 b/metadata/md5-cache/sys-kernel/vanilla-kernel-5.4.127 index d5a4357367a5..be23c0245f41 100644 --- a/metadata/md5-cache/sys-kernel/vanilla-kernel-5.4.127 +++ b/metadata/md5-cache/sys-kernel/vanilla-kernel-5.4.127 @@ -11,5 +11,5 @@ RDEPEND=!sys-kernel/vanilla-kernel-bin:5.4.127 || ( sys-kernel/installkernel-gen RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.4.127 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.4.127.tar.xz https://github.com/mgorny/gentoo-kernel-config/archive/v5.4.114.tar.gz -> gentoo-kernel-config-5.4.114.tar.gz verify-sig? ( https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.4.127.tar.sign ) amd64? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-x86_64.config -> kernel-x86_64.config.5.4.21 ) arm64? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-aarch64.config -> kernel-aarch64.config.5.4.21 ) ppc64? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-ppc64le.config -> kernel-ppc64le.config.5.4.21 ) x86? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-i686.config -> kernel-i686.config.5.4.21 ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa verify-sig 10c122d0f49c54100ad5e279db0cb43c +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa verify-sig 10c122d0f49c54100ad5e279db0cb43c _md5_=1a652dd3004bcc73801b4c105824aafb diff --git a/metadata/md5-cache/sys-kernel/vanilla-kernel-5.4.128 b/metadata/md5-cache/sys-kernel/vanilla-kernel-5.4.128 index 66e834955c30..11a6f33b34e8 100644 --- a/metadata/md5-cache/sys-kernel/vanilla-kernel-5.4.128 +++ b/metadata/md5-cache/sys-kernel/vanilla-kernel-5.4.128 @@ -11,5 +11,5 @@ RDEPEND=!sys-kernel/vanilla-kernel-bin:5.4.128 || ( sys-kernel/installkernel-gen RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.4.128 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.4.128.tar.xz https://github.com/mgorny/gentoo-kernel-config/archive/v5.4.114.tar.gz -> gentoo-kernel-config-5.4.114.tar.gz verify-sig? ( https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.4.128.tar.sign ) amd64? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-x86_64.config -> kernel-x86_64.config.5.4.21 ) arm64? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-aarch64.config -> kernel-aarch64.config.5.4.21 ) ppc64? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-ppc64le.config -> kernel-ppc64le.config.5.4.21 ) x86? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-i686.config -> kernel-i686.config.5.4.21 ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa verify-sig 10c122d0f49c54100ad5e279db0cb43c +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa verify-sig 10c122d0f49c54100ad5e279db0cb43c _md5_=1a652dd3004bcc73801b4c105824aafb diff --git a/metadata/md5-cache/sys-kernel/vanilla-kernel-5.4.129 b/metadata/md5-cache/sys-kernel/vanilla-kernel-5.4.129 index 3225c7e2a3df..5eaf94572b63 100644 --- a/metadata/md5-cache/sys-kernel/vanilla-kernel-5.4.129 +++ b/metadata/md5-cache/sys-kernel/vanilla-kernel-5.4.129 @@ -11,5 +11,5 @@ RDEPEND=!sys-kernel/vanilla-kernel-bin:5.4.129 || ( sys-kernel/installkernel-gen RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.4.129 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.4.129.tar.xz https://github.com/mgorny/gentoo-kernel-config/archive/v5.4.114.tar.gz -> gentoo-kernel-config-5.4.114.tar.gz verify-sig? ( https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.4.129.tar.sign ) amd64? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-x86_64.config -> kernel-x86_64.config.5.4.21 ) arm64? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-aarch64.config -> kernel-aarch64.config.5.4.21 ) ppc64? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-ppc64le.config -> kernel-ppc64le.config.5.4.21 ) x86? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-i686.config -> kernel-i686.config.5.4.21 ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa verify-sig 10c122d0f49c54100ad5e279db0cb43c +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa verify-sig 10c122d0f49c54100ad5e279db0cb43c _md5_=1a652dd3004bcc73801b4c105824aafb diff --git a/metadata/md5-cache/sys-kernel/vanilla-kernel-5.4.130 b/metadata/md5-cache/sys-kernel/vanilla-kernel-5.4.130 index 6cb60f4be095..f131cdaab7cb 100644 --- a/metadata/md5-cache/sys-kernel/vanilla-kernel-5.4.130 +++ b/metadata/md5-cache/sys-kernel/vanilla-kernel-5.4.130 @@ -11,5 +11,5 @@ RDEPEND=!sys-kernel/vanilla-kernel-bin:5.4.130 || ( sys-kernel/installkernel-gen RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=5.4.130 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.4.130.tar.xz https://github.com/mgorny/gentoo-kernel-config/archive/v5.4.114.tar.gz -> gentoo-kernel-config-5.4.114.tar.gz verify-sig? ( https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.4.130.tar.sign ) amd64? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-x86_64.config -> kernel-x86_64.config.5.4.21 ) arm64? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-aarch64.config -> kernel-aarch64.config.5.4.21 ) ppc64? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-ppc64le.config -> kernel-ppc64le.config.5.4.21 ) x86? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-i686.config -> kernel-i686.config.5.4.21 ) -_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 39b2c907f0c7cf34b152dcea5c08bc83 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa verify-sig 10c122d0f49c54100ad5e279db0cb43c +_eclasses_=dist-kernel-utils ba761317b3fcd25e34c3fb8e5bf1e45f eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 kernel-build 268738f3065cfa3756c109e3092aaec7 kernel-install 0e50d459e3b8aef7799ea582ded425d5 mount-boot 060ced4c5e0fd737db17cbb609bbf557 multilib 97566c1a256d07b00848aa767e38a352 portability d1186f1e621de7b27ddcae82e6253259 python-any-r1 901d9e22c7a848a1196502edf060f330 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa verify-sig 10c122d0f49c54100ad5e279db0cb43c _md5_=1a652dd3004bcc73801b4c105824aafb diff --git a/metadata/md5-cache/sys-libs/Manifest.gz b/metadata/md5-cache/sys-libs/Manifest.gz index be1ccb7ffe5a..75b9a80e862a 100644 Binary files a/metadata/md5-cache/sys-libs/Manifest.gz and b/metadata/md5-cache/sys-libs/Manifest.gz differ diff --git a/metadata/md5-cache/sys-libs/lwp-2.8 b/metadata/md5-cache/sys-libs/lwp-2.8 index daadfd142eba..1c3b8e395d58 100644 --- a/metadata/md5-cache/sys-libs/lwp-2.8 +++ b/metadata/md5-cache/sys-libs/lwp-2.8 @@ -1,10 +1,9 @@ DEFINED_PHASES=configure install DESCRIPTION=Light-weight process library (used by Coda) -EAPI=6 +EAPI=7 HOMEPAGE=http://www.coda.cs.cmu.edu/ KEYWORDS=~alpha amd64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86 LICENSE=LGPL-2.1 SLOT=1 SRC_URI=http://www.coda.cs.cmu.edu/pub/lwp/src/lwp-2.8.tar.xz -_eclasses_=ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa -_md5_=afe3a09aae7c0f98166fd05671cc6a2e +_md5_=c31d8f3832651da0eb3d5301f6468f4a diff --git a/metadata/md5-cache/www-apache/Manifest.gz b/metadata/md5-cache/www-apache/Manifest.gz index d8bc846a4c73..ea8b5112b86a 100644 Binary files a/metadata/md5-cache/www-apache/Manifest.gz and b/metadata/md5-cache/www-apache/Manifest.gz differ diff --git a/metadata/md5-cache/www-apache/mod_jk-1.2.48 b/metadata/md5-cache/www-apache/mod_jk-1.2.48 index ecd1d7b14874..f547e612aed8 100644 --- a/metadata/md5-cache/www-apache/mod_jk-1.2.48 +++ b/metadata/md5-cache/www-apache/mod_jk-1.2.48 @@ -4,10 +4,10 @@ DEPEND=dev-libs/apr:1= =www-servers/apache-2* DESCRIPTION=Provides an AJP Apache2-JK-connector for the Tomcat servlet engine EAPI=7 HOMEPAGE=https://tomcat.apache.org/connectors-doc/ -KEYWORDS=amd64 ~hppa ~ppc ~sparc x86 +KEYWORDS=amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 LICENSE=Apache-2.0 RDEPEND=dev-libs/apr:1= =www-servers/apache-2* SLOT=0 SRC_URI=mirror://apache/tomcat/tomcat-connectors/jk/tomcat-connectors-1.2.48-src.tar.gz _eclasses_=apache-module 46dd6706a4df4d5086a9c2b19dc2c344 depend.apache d54e0d0bd6b36c476594edc2cee2e332 -_md5_=56c86a5aa83e9a3c0a1e90564c80aeba +_md5_=de07110eec97eedbdc0a1a2e561bc059 diff --git a/metadata/md5-cache/x11-base/Manifest.gz b/metadata/md5-cache/x11-base/Manifest.gz index 2f8c833be208..00a4908594b0 100644 Binary files a/metadata/md5-cache/x11-base/Manifest.gz and b/metadata/md5-cache/x11-base/Manifest.gz differ diff --git a/metadata/md5-cache/x11-base/xorg-server-1.20.11-r3 b/metadata/md5-cache/x11-base/xorg-server-1.20.11-r3 new file mode 100644 index 000000000000..88599074efd7 --- /dev/null +++ b/metadata/md5-cache/x11-base/xorg-server-1.20.11-r3 @@ -0,0 +1,17 @@ +BDEPEND=sys-devel/flex sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.2-r1:1.16 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 x86-winnt? ( >=sys-devel/libtool-2.2.6a sys-devel/m4 >=x11-misc/util-macros-1.18 >=media-fonts/font-util-1.2.0 ) virtual/pkgconfig doc? ( doc? ( || ( app-text/asciidoc dev-ruby/asciidoctor ) app-text/xmlto app-doc/doxygen app-text/docbook-xml-dtd:4.1.2 app-text/docbook-xml-dtd:4.2 app-text/docbook-xml-dtd:4.3 ) ) +DEFINED_PHASES=compile configure install postinst postrm prepare unpack +DEPEND=media-libs/libglvnd[X] dev-libs/openssl:0= >=x11-apps/iceauth-1.0.2 >=x11-apps/rgb-1.0.3 >=x11-apps/xauth-1.0.3 x11-apps/xkbcomp >=x11-libs/libdrm-2.4.89 >=x11-libs/libpciaccess-0.12.901 >=x11-libs/libXau-1.0.4 >=x11-libs/libXdmcp-1.0.2 >=x11-libs/libXfont2-2.0.1 >=x11-libs/libxkbfile-1.0.4 >=x11-libs/libxshmfence-1.1 >=x11-libs/pixman-0.27.2 >=x11-misc/xbitmaps-1.0.1 >=x11-misc/xkeyboard-config-2.4.1-r3 dmx? ( x11-libs/libXt >=x11-libs/libdmx-1.0.99.1 >=x11-libs/libX11-1.1.5 >=x11-libs/libXaw-1.0.4 >=x11-libs/libXext-1.0.99.4 >=x11-libs/libXfixes-5.0 >=x11-libs/libXi-1.2.99.1 >=x11-libs/libXmu-1.0.3 x11-libs/libXrender >=x11-libs/libXres-1.0.3 >=x11-libs/libXtst-1.0.99.2 ) kdrive? ( >=x11-libs/libXext-1.0.5 x11-libs/libXv ) xephyr? ( x11-libs/libxcb[xkb] x11-libs/xcb-util x11-libs/xcb-util-image x11-libs/xcb-util-keysyms x11-libs/xcb-util-renderutil x11-libs/xcb-util-wm ) !minimal? ( >=x11-libs/libX11-1.1.5 >=x11-libs/libXext-1.0.5 >=media-libs/mesa-18[X(+),egl,gbm] >=media-libs/libepoxy-1.5.4[X,egl(+)] ) udev? ( virtual/libudev:= ) unwind? ( sys-libs/libunwind ) >=x11-apps/xinit-1.3.3-r1 systemd? ( sys-apps/dbus sys-apps/systemd ) elogind? ( sys-apps/dbus sys-auth/elogind[pam] sys-auth/pambase[elogind] ) !!x11-drivers/nvidia-drivers[-libglvnd(+)] >=x11-base/xorg-proto-2018.4 >=x11-libs/xtrans-1.3.5 dmx? ( doc? ( || ( www-client/links www-client/lynx www-client/w3m ) ) ) +DESCRIPTION=X.Org X servers +EAPI=7 +HOMEPAGE=https://www.x.org/wiki/ https://gitlab.freedesktop.org/xorg/xserver/xorg-server +IUSE=dmx kdrive wayland xephyr xnest xorg xvfb debug +elogind ipv6 minimal selinux suid systemd test +udev unwind xcsecurity doc +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux +LICENSE=MIT +PDEPEND=xorg? ( >=x11-base/xorg-drivers-1.20 ) +RDEPEND=media-libs/libglvnd[X] dev-libs/openssl:0= >=x11-apps/iceauth-1.0.2 >=x11-apps/rgb-1.0.3 >=x11-apps/xauth-1.0.3 x11-apps/xkbcomp >=x11-libs/libdrm-2.4.89 >=x11-libs/libpciaccess-0.12.901 >=x11-libs/libXau-1.0.4 >=x11-libs/libXdmcp-1.0.2 >=x11-libs/libXfont2-2.0.1 >=x11-libs/libxkbfile-1.0.4 >=x11-libs/libxshmfence-1.1 >=x11-libs/pixman-0.27.2 >=x11-misc/xbitmaps-1.0.1 >=x11-misc/xkeyboard-config-2.4.1-r3 dmx? ( x11-libs/libXt >=x11-libs/libdmx-1.0.99.1 >=x11-libs/libX11-1.1.5 >=x11-libs/libXaw-1.0.4 >=x11-libs/libXext-1.0.99.4 >=x11-libs/libXfixes-5.0 >=x11-libs/libXi-1.2.99.1 >=x11-libs/libXmu-1.0.3 x11-libs/libXrender >=x11-libs/libXres-1.0.3 >=x11-libs/libXtst-1.0.99.2 ) kdrive? ( >=x11-libs/libXext-1.0.5 x11-libs/libXv ) xephyr? ( x11-libs/libxcb[xkb] x11-libs/xcb-util x11-libs/xcb-util-image x11-libs/xcb-util-keysyms x11-libs/xcb-util-renderutil x11-libs/xcb-util-wm ) !minimal? ( >=x11-libs/libX11-1.1.5 >=x11-libs/libXext-1.0.5 >=media-libs/mesa-18[X(+),egl,gbm] >=media-libs/libepoxy-1.5.4[X,egl(+)] ) udev? ( virtual/libudev:= ) unwind? ( sys-libs/libunwind ) >=x11-apps/xinit-1.3.3-r1 systemd? ( sys-apps/dbus sys-apps/systemd ) elogind? ( sys-apps/dbus sys-auth/elogind[pam] sys-auth/pambase[elogind] ) !!x11-drivers/nvidia-drivers[-libglvnd(+)] !systemd? ( gui-libs/display-manager-init ) selinux? ( sec-policy/selinux-xserver ) wayland? ( x11-base/xwayland ) +REQUIRED_USE=!minimal? ( || ( dmx kdrive wayland xephyr xnest xorg xvfb ) ) elogind? ( udev ) ?? ( elogind systemd ) minimal? ( !wayland ) xephyr? ( kdrive ) +RESTRICT=!test? ( test ) +SLOT=0/1.20.11 +SRC_URI=https://www.x.org/releases/individual/xserver/xorg-server-1.20.11.tar.bz2 +_eclasses_=autotools 9e63f92c2a5d867fea55ecb160c7d354 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic 4134b5c0fb719b9161d10bdaba9e09e5 gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e multilib 97566c1a256d07b00848aa767e38a352 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa wrapper 4251d4c84c25f59094fd557e0063a974 xorg-3 212a355607d8ee9cf75132010ead368c +_md5_=97453cad1de2b1a6af21edfecb1802c4 diff --git a/metadata/md5-cache/x11-base/xorg-server-9999 b/metadata/md5-cache/x11-base/xorg-server-9999 index 53227cf19a11..8cf4c4f2252c 100644 --- a/metadata/md5-cache/x11-base/xorg-server-9999 +++ b/metadata/md5-cache/x11-base/xorg-server-9999 @@ -13,4 +13,4 @@ REQUIRED_USE=!minimal? ( || ( dmx kdrive wayland xephyr xnest xorg xvfb ) ) elog RESTRICT=!test? ( test ) SLOT=0/9999 _eclasses_=autotools 9e63f92c2a5d867fea55ecb160c7d354 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic 4134b5c0fb719b9161d10bdaba9e09e5 git-r3 cc875b0c1e9b3bdac1af0f82f3ba29da gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e multilib 97566c1a256d07b00848aa767e38a352 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa wrapper 4251d4c84c25f59094fd557e0063a974 xorg-3 212a355607d8ee9cf75132010ead368c -_md5_=6472a7b58614e24193cd91c249b7278f +_md5_=eaebd3f03ae38892c3097ead06e0ab83 diff --git a/metadata/md5-cache/x11-libs/Manifest.gz b/metadata/md5-cache/x11-libs/Manifest.gz index de7337f2c3d8..732ca9aabbd0 100644 Binary files a/metadata/md5-cache/x11-libs/Manifest.gz and b/metadata/md5-cache/x11-libs/Manifest.gz differ diff --git a/metadata/md5-cache/x11-libs/libxcvt-0.1.0 b/metadata/md5-cache/x11-libs/libxcvt-0.1.0 new file mode 100644 index 000000000000..1fe4fcb3f468 --- /dev/null +++ b/metadata/md5-cache/x11-libs/libxcvt-0.1.0 @@ -0,0 +1,12 @@ +BDEPEND=sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.2-r1:1.16 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 x86-winnt? ( >=sys-devel/libtool-2.2.6a sys-devel/m4 >=x11-misc/util-macros-1.18 >=media-fonts/font-util-1.2.0 ) virtual/pkgconfig >=dev-util/meson-0.56.0 >=dev-util/ninja-1.8.2 dev-util/meson-format-array +DEFINED_PHASES=compile configure install postinst postrm prepare test unpack +DESCRIPTION=X.Org xcvt library and cvt program +EAPI=7 +HOMEPAGE=https://www.x.org/wiki/ https://gitlab.freedesktop.org/xorg/lib/libxcvt +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 +LICENSE=MIT +RDEPEND=!=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.2-r1:1.16 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 >=dev-vcs/git-1.8.2.1[curl] x86-winnt? ( >=sys-devel/libtool-2.2.6a sys-devel/m4 >=x11-misc/util-macros-1.18 >=media-fonts/font-util-1.2.0 ) >=sys-devel/libtool-2.2.6a sys-devel/m4 >=x11-misc/util-macros-1.18 >=media-fonts/font-util-1.2.0 virtual/pkgconfig >=dev-util/meson-0.56.0 >=dev-util/ninja-1.8.2 dev-util/meson-format-array +DEFINED_PHASES=compile configure install postinst postrm prepare test unpack +DESCRIPTION=X.Org xcvt library and cvt program +EAPI=7 +HOMEPAGE=https://www.x.org/wiki/ https://gitlab.freedesktop.org/xorg/lib/libxcvt +LICENSE=MIT +PROPERTIES=live +RDEPEND=!=dev-libs/fribidi-0.19.7[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=dev-libs/glib-2.62.2:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=media-libs/fontconfig-2.12.92:1.0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=media-libs/freetype-2.5.0.1:2=[harfbuzz,png,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=media-libs/harfbuzz-2.0:=[glib(+),introspection?,truetype(+),abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/cairo-1.12.10:=[X?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] introspection? ( >=dev-libs/gobject-introspection-0.9.5:= ) X? ( >=x11-libs/libXrender-0.9.8[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libX11-1.6.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXft-2.3.1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXrender[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) REQUIRED_USE=gtk-doc? ( introspection ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=http://ftp.gnome.org/pub/GNOME/sources/pango/1.48/pango-1.48.7.tar.xz _eclasses_=eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff gnome2-utils c8e3fff820d850c0e003e22208d2eea3 meson 5bc3f1b890f90cc00cf1d1dddc10233e meson-multilib c640b1d57ff5b687118b1e1038e30ecb multibuild 05a584848db4901c97fcd94ae7cc3a97 multilib 97566c1a256d07b00848aa767e38a352 multilib-build effd4508d5e8209273d82d8f67ee93a0 multilib-minimal 7187f259f207bf5b69e4ff01498a7269 multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils a4dab848a4490e8e48cf0baab3e61bc2 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils 27f9a2f19502b925ac117bd657aa2979 -_md5_=6a2421a6998da937227772cadb364b86 +_md5_=497e3a468ca91be4f9ea6f0426026f13 diff --git a/metadata/md5-cache/x11-themes/Manifest.gz b/metadata/md5-cache/x11-themes/Manifest.gz index c8fde45f7bca..5fa89d69a78f 100644 Binary files a/metadata/md5-cache/x11-themes/Manifest.gz and b/metadata/md5-cache/x11-themes/Manifest.gz differ diff --git a/metadata/md5-cache/x11-themes/fedora-backgrounds-34.0.1 b/metadata/md5-cache/x11-themes/fedora-backgrounds-34.0.1 index 2bf01291e93d..f076bc578f93 100644 --- a/metadata/md5-cache/x11-themes/fedora-backgrounds-34.0.1 +++ b/metadata/md5-cache/x11-themes/fedora-backgrounds-34.0.1 @@ -2,8 +2,8 @@ DEFINED_PHASES=- DESCRIPTION=A set of default and supplemental wallpapers for Fedora EAPI=7 HOMEPAGE=https://github.com/fedoradesign/backgrounds -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=CC-BY-SA-4.0 SLOT=34 SRC_URI=https://github.com/fedoradesign/backgrounds/releases/download/v34.0.1/f34-backgrounds-34.0.1.tar.xz -_md5_=d39c7b89f74bb5be841c3ca61636e629 +_md5_=3b891245249816ec196c4c393c1caf9c diff --git a/metadata/md5-cache/x11-themes/numix-icon-theme-circle-21.05.31 b/metadata/md5-cache/x11-themes/numix-icon-theme-circle-21.05.31 new file mode 100644 index 000000000000..be9a8c89c809 --- /dev/null +++ b/metadata/md5-cache/x11-themes/numix-icon-theme-circle-21.05.31 @@ -0,0 +1,12 @@ +DEFINED_PHASES=install postinst postrm preinst prepare +DEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +DESCRIPTION=Icon theme from the Numix project +EAPI=7 +HOMEPAGE=https://github.com/numixproject +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-3 +RDEPEND=x11-themes/numix-icon-theme +SLOT=0 +SRC_URI=https://github.com/numixproject/numix-icon-theme-circle/archive/21.05.31.tar.gz -> numix-icon-theme-circle-21.05.31.tar.gz +_eclasses_=xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils 27f9a2f19502b925ac117bd657aa2979 +_md5_=e8b4ac532a4ad060341c8b62e1b147cb diff --git a/metadata/md5-cache/x11-themes/ubuntu-wallpapers-20.10.3 b/metadata/md5-cache/x11-themes/ubuntu-wallpapers-21.04.1 similarity index 76% rename from metadata/md5-cache/x11-themes/ubuntu-wallpapers-20.10.3 rename to metadata/md5-cache/x11-themes/ubuntu-wallpapers-21.04.1 index 9019af80bb8d..68bb6ed31e51 100644 --- a/metadata/md5-cache/x11-themes/ubuntu-wallpapers-20.10.3 +++ b/metadata/md5-cache/x11-themes/ubuntu-wallpapers-21.04.1 @@ -1,9 +1,9 @@ DEFINED_PHASES=compile install test DESCRIPTION=Ubuntu wallpapers -EAPI=7 +EAPI=8 HOMEPAGE=https://launchpad.net/ubuntu/+source/ubuntu-wallpapers KEYWORDS=amd64 arm x86 LICENSE=CC-BY-SA-3.0 SLOT=0 -SRC_URI=mirror://ubuntu/pool/main/u/ubuntu-wallpapers/ubuntu-wallpapers_20.10.3.orig.tar.gz -_md5_=e607c9401ef0d1f714fb6547b7989a4f +SRC_URI=mirror://ubuntu/pool/main/u/ubuntu-wallpapers/ubuntu-wallpapers_21.04.1.orig.tar.gz +_md5_=687b7ad59e33e563ad550a0dbbd77314 diff --git a/metadata/md5-cache/x11-wm/Manifest.gz b/metadata/md5-cache/x11-wm/Manifest.gz index adf6b65c1130..45b86a25a7fa 100644 Binary files a/metadata/md5-cache/x11-wm/Manifest.gz and b/metadata/md5-cache/x11-wm/Manifest.gz differ diff --git a/metadata/md5-cache/x11-wm/icewm-2.4.0 b/metadata/md5-cache/x11-wm/icewm-2.6.0 similarity index 96% rename from metadata/md5-cache/x11-wm/icewm-2.4.0 rename to metadata/md5-cache/x11-wm/icewm-2.6.0 index c0a56bbcf974..30cd5d9817d9 100644 --- a/metadata/md5-cache/x11-wm/icewm-2.4.0 +++ b/metadata/md5-cache/x11-wm/icewm-2.6.0 @@ -11,6 +11,6 @@ RDEPEND=media-libs/fontconfig x11-libs/libX11 x11-libs/libXcomposite x11-libs/li REQUIRED_USE=|| ( alsa ao ) RESTRICT=test SLOT=0 -SRC_URI=https://github.com/ice-wm/icewm/releases/download/2.4.0/icewm-2.4.0.tar.lz +SRC_URI=https://github.com/ice-wm/icewm/releases/download/2.6.0/icewm-2.6.0.tar.lz _eclasses_=autotools 9e63f92c2a5d867fea55ecb160c7d354 gnuconfig 262062cef0ba4f22b397193da514a350 libtool 241a8f577b9781a42a7421e53448a44e multilib 97566c1a256d07b00848aa767e38a352 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa unpacker 2eeba54233fa41bdb15dcddcb63fba3a _md5_=5babf10b1421abe9fa23bc4253aa2bc3 diff --git a/metadata/md5-cache/x11-wm/mutter-40.2.1 b/metadata/md5-cache/x11-wm/mutter-40.2.1 index 7725955dd875..891f52d538ae 100644 --- a/metadata/md5-cache/x11-wm/mutter-40.2.1 +++ b/metadata/md5-cache/x11-wm/mutter-40.2.1 @@ -1,4 +1,4 @@ -BDEPEND=dev-libs/wayland dev-util/gdbus-codegen dev-util/glib-utils >=sys-devel/gettext-0.19.8 virtual/pkgconfig test? ( app-text/docbook-xml-dtd:4.5 ) wayland? ( >=sys-kernel/linux-headers-4.4 x11-base/xorg-server ) app-arch/xz-utils >=dev-util/meson-0.56.0 >=dev-util/ninja-1.8.2 dev-util/meson-format-array virtual/pkgconfig test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) +BDEPEND=dev-libs/wayland dev-util/gdbus-codegen dev-util/glib-utils >=sys-devel/gettext-0.19.8 virtual/pkgconfig test? ( app-text/docbook-xml-dtd:4.5 ) wayland? ( >=sys-kernel/linux-headers-4.4 || ( x11-libs/libxcvt x11-base/xorg-server[xorg,-minimal] ) ) app-arch/xz-utils >=dev-util/meson-0.56.0 >=dev-util/ninja-1.8.2 dev-util/meson-format-array virtual/pkgconfig test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) DEFINED_PHASES=compile configure install postinst postrm preinst prepare test DEPEND=>=x11-libs/libX11-1.7.0 >=media-libs/graphene-1.10.2[introspection?] >=x11-libs/gtk+-3.19.8:3[X,introspection?] x11-libs/gdk-pixbuf:2 >=x11-libs/pango-1.46[introspection?] >=dev-libs/fribidi-1.0.0 >=x11-libs/cairo-1.14[X] >=gnome-base/gsettings-desktop-schemas-40.0[introspection?] >=dev-libs/glib-2.67.3:2 gnome-base/gnome-settings-daemon >=dev-libs/json-glib-0.12.0[introspection?] gnome-base/gnome-desktop:3= >=x11-libs/libXcomposite-0.4 x11-libs/libXcursor x11-libs/libXdamage x11-libs/libXext >=x11-libs/libXfixes-3 >=x11-libs/libXi-1.7.4 x11-libs/libXtst x11-libs/libxkbfile x11-misc/xkeyboard-config >=x11-libs/libxkbcommon-0.4.3[X] x11-libs/libXrender >=x11-libs/libXrandr-1.5.0 x11-libs/libxcb x11-libs/libXinerama x11-libs/libXau x11-libs/libICE >=dev-libs/atk-2.5.3[introspection?] >=media-libs/libcanberra-0.26 sys-apps/dbus media-libs/mesa[X(+),egl] sysprof? ( >=dev-util/sysprof-capture-3.40.1:4 ) wayland? ( >=dev-libs/wayland-protocols-1.19 >=dev-libs/wayland-1.18.0 x11-libs/libdrm:= >=media-libs/mesa-17.3[egl,gbm,wayland,gles2] >=dev-libs/libinput-1.15.0 systemd? ( sys-apps/systemd ) elogind? ( sys-auth/elogind ) x11-base/xorg-server[wayland] video_cards_nvidia? ( gui-libs/egl-wayland ) ) udev? ( >=dev-libs/libgudev-232:= >=virtual/libudev-232-r1:= ) x11-libs/libSM input_devices_wacom? ( >=dev-libs/libwacom-0.13 ) >=x11-libs/startup-notification-0.7 screencast? ( >=media-video/pipewire-0.3.21:0/0.3 ) introspection? ( >=dev-libs/gobject-introspection-1.54:= ) x11-base/xorg-proto sysprof? ( >=dev-util/sysprof-common-3.38.0 ) dev-util/desktop-file-utils x11-misc/shared-mime-info DESCRIPTION=GNOME 3 compositing window manager based on Clutter @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0/8 SRC_URI=mirror://gnome/sources/mutter/40/mutter-40.2.1.tar.xz _eclasses_=eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff gnome.org b5c48cddff1da36a205d924d722b28c9 gnome2-utils c8e3fff820d850c0e003e22208d2eea3 meson 5bc3f1b890f90cc00cf1d1dddc10233e multilib 97566c1a256d07b00848aa767e38a352 multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils a4dab848a4490e8e48cf0baab3e61bc2 python-utils-r1 2f5967e7ced9abfa71ff7b0ea8d61b3a strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa udev 26207b5d4f4708920b9fcb7302d94068 virtualx 0a780e1ab49c75da33a78ede35ab8f9c wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils 27f9a2f19502b925ac117bd657aa2979 -_md5_=b82de4f0130a0d220b0eb74c627d844b +_md5_=82998e39177f073eca6b144a68a0882b diff --git a/metadata/md5-cache/xfce-base/Manifest.gz b/metadata/md5-cache/xfce-base/Manifest.gz index 88f56b20d438..e23173443ba1 100644 Binary files a/metadata/md5-cache/xfce-base/Manifest.gz and b/metadata/md5-cache/xfce-base/Manifest.gz differ diff --git a/metadata/md5-cache/xfce-base/xfce4-panel-4.16.3 b/metadata/md5-cache/xfce-base/xfce4-panel-4.16.3 index 55504bc8fbcc..9322e59ad693 100644 --- a/metadata/md5-cache/xfce-base/xfce4-panel-4.16.3 +++ b/metadata/md5-cache/xfce-base/xfce4-panel-4.16.3 @@ -5,11 +5,11 @@ DESCRIPTION=Panel for the Xfce desktop environment EAPI=7 HOMEPAGE=https://www.xfce.org/projects/ IUSE=+dbusmenu introspection vala -KEYWORDS=~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux ~x86-solaris +KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux ~x86-solaris LICENSE=GPL-2+ LGPL-2.1+ RDEPEND=>=dev-libs/glib-2.50 >=x11-libs/cairo-1 >=x11-libs/gtk+-3.22:3[introspection?] x11-libs/libX11 x11-libs/libwnck:3 >=xfce-base/exo-0.11.2:= >=xfce-base/garcon-0.5:= >=xfce-base/libxfce4ui-4.15.8:= >=xfce-base/libxfce4util-4.15.6:=[introspection?,vala?] >=xfce-base/xfconf-4.13:= dbusmenu? ( >=dev-libs/libdbusmenu-16.04.0[gtk3] ) introspection? ( dev-libs/gobject-introspection:= ) REQUIRED_USE=vala? ( introspection ) SLOT=0 SRC_URI=https://archive.xfce.org/src/xfce/xfce4-panel/4.16/xfce4-panel-4.16.3.tar.bz2 _eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff multilib 97566c1a256d07b00848aa767e38a352 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 9ea1c67b6f8315fdc2568abb674519aa vala 03f1f33473c1c770f4bffe2e342cd1df wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils 27f9a2f19502b925ac117bd657aa2979 -_md5_=ec9628343d7cfa49b59c8da4489fa23f +_md5_=8d6f27812361c46b2e9e0e4ceb5807ab diff --git a/metadata/md5-cache/xfce-base/xfce4-settings-4.16.0 b/metadata/md5-cache/xfce-base/xfce4-settings-4.16.0 deleted file mode 100644 index 37f4a2e55fa9..000000000000 --- a/metadata/md5-cache/xfce-base/xfce4-settings-4.16.0 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=dev-util/gdbus-codegen dev-util/intltool virtual/pkgconfig sys-devel/gettext x11-base/xorg-proto -DEFINED_PHASES=configure postinst postrm setup -DEPEND=python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) >=dev-libs/glib-2.50 media-libs/fontconfig >=x11-libs/gtk+-3.20:3 x11-libs/libX11 >=x11-libs/libXcursor-1.1 >=x11-libs/libXi-1.3 >=x11-libs/libXrandr-1.2 >=xfce-base/garcon-0.2:= >=xfce-base/exo-4.15.1:= >=xfce-base/libxfce4ui-4.15.1:= >=xfce-base/libxfce4util-4.15.2:= >=xfce-base/xfconf-4.13:= colord? ( x11-misc/colord:= ) libcanberra? ( >=media-libs/libcanberra-0.25[sound] ) input_devices_libinput? ( x11-drivers/xf86-input-libinput ) libnotify? ( >=x11-libs/libnotify-0.7 ) upower? ( >=sys-power/upower-0.9.23 ) xklavier? ( >=x11-libs/libxklavier-5 ) !=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) >=dev-libs/glib-2.50 media-libs/fontconfig >=x11-libs/gtk+-3.20:3 x11-libs/libX11 >=x11-libs/libXcursor-1.1 >=x11-libs/libXi-1.3 >=x11-libs/libXrandr-1.2 >=xfce-base/garcon-0.2:= >=xfce-base/exo-4.15.1:= >=xfce-base/libxfce4ui-4.15.1:= >=xfce-base/libxfce4util-4.15.2:= >=xfce-base/xfconf-4.13:= colord? ( x11-misc/colord:= ) libcanberra? ( >=media-libs/libcanberra-0.25[sound] ) input_devices_libinput? ( x11-drivers/xf86-input-libinput ) libnotify? ( >=x11-libs/libnotify-0.7 ) upower? ( >=sys-power/upower-0.9.23 ) xklavier? ( >=x11-libs/libxklavier-5 ) !=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) >=dev-libs/glib-2.50 media-libs/fontconfig >=x11-libs/gtk+-3.20:3 x11-libs/libX11 >=x11-libs/libXcursor-1.1 >=x11-libs/libXi-1.3 >=x11-libs/libXrandr-1.2 >=xfce-base/garcon-0.2:= >=xfce-base/exo-4.15.1:= >=xfce-base/libxfce4ui-4.15.1:= >=xfce-base/libxfce4util-4.15.2:= >=xfce-base/xfconf-4.13:= colord? ( x11-misc/colord:= ) libcanberra? ( >=media-libs/libcanberra-0.25[sound] ) input_devices_libinput? ( x11-drivers/xf86-input-libinput ) libnotify? ( >=x11-libs/libnotify-0.7 ) upower? ( >=sys-power/upower-0.9.23 ) xklavier? ( >=x11-libs/libxklavier-5 ) !=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) >=dev-libs/glib-2.50 media-libs/fontconfig >=x11-libs/gtk+-3.20:3 x11-libs/libX11 >=x11-libs/libXcursor-1.1 >=x11-libs/libXi-1.3 >=x11-libs/libXrandr-1.2 >=xfce-base/garcon-0.2:= >=xfce-base/exo-4.15.1:= >=xfce-base/libxfce4ui-4.15.1:= >=xfce-base/libxfce4util-4.15.2:= >=xfce-base/xfconf-4.13:= colord? ( x11-misc/colord:= ) libcanberra? ( >=media-libs/libcanberra-0.25[sound] ) input_devices_libinput? ( x11-drivers/xf86-input-libinput ) libnotify? ( >=x11-libs/libnotify-0.7 ) upower? ( >=sys-power/upower-0.9.23 ) xklavier? ( >=x11-libs/libxklavier-5 ) !=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) >=dev-libs/glib-2.50 media-libs/fontconfig >=x11-libs/gtk+-3.20:3 x11-libs/libX11 >=x11-libs/libXcursor-1.1 >=x11-libs/libXi-1.3 >=x11-libs/libXrandr-1.2 >=xfce-base/garcon-0.2:= >=xfce-base/exo-4.15.1:= >=xfce-base/libxfce4ui-4.15.1:= >=xfce-base/libxfce4util-4.15.2:= >=xfce-base/xfconf-4.13:= colord? ( x11-misc/colord:= ) libcanberra? ( >=media-libs/libcanberra-0.25[sound] ) input_devices_libinput? ( x11-drivers/xf86-input-libinput ) libnotify? ( >=x11-libs/libnotify-0.7 ) upower? ( >=sys-power/upower-0.9.23 ) xklavier? ( >=x11-libs/libxklavier-5 ) !Google Summer of Code https://wiki.gentoo.org/wiki/Project:GSoC The central project to unite efforts for Google Summer of Code participation + + heroxbd@gentoo.org + Benda Xu + 2021 Mentor + mattst88@gentoo.org Matt Turner diff --git a/metadata/timestamp b/metadata/timestamp index 93435aec3bd4..1a349fb5ea50 100644 --- a/metadata/timestamp +++ b/metadata/timestamp @@ -1 +1 @@ -Wed Jul 7 08:39:12 PM UTC 2021 +Thu Jul 8 11:39:11 AM UTC 2021 diff --git a/metadata/timestamp.chk b/metadata/timestamp.chk index 4b4fd7c47b95..a560ee17afaf 100644 --- a/metadata/timestamp.chk +++ b/metadata/timestamp.chk @@ -1 +1 @@ -Wed, 07 Jul 2021 21:00:01 +0000 +Thu, 08 Jul 2021 12:00:01 +0000 diff --git a/metadata/timestamp.commit b/metadata/timestamp.commit index 37770c92aee1..1a7d81a78112 100644 --- a/metadata/timestamp.commit +++ b/metadata/timestamp.commit @@ -1 +1 @@ -17c99e0bcaa5ed97c1e737d0c1bae60c1d35a69c 1625688284 2021-07-07T20:04:44+00:00 +4c495d491adc5356de170885f1e0a0428f23d59c 1625742477 2021-07-08T11:07:57+00:00 diff --git a/metadata/timestamp.x b/metadata/timestamp.x index 68622fa2d724..b5795e91df4a 100644 --- a/metadata/timestamp.x +++ b/metadata/timestamp.x @@ -1 +1 @@ -1625690101 Wed 07 Jul 2021 08:35:01 PM UTC +1625744101 Thu 08 Jul 2021 11:35:01 AM UTC diff --git a/metadata/xml-schema/timestamp.chk b/metadata/xml-schema/timestamp.chk index 068ffcc70f93..71e87fb1405c 100644 --- a/metadata/xml-schema/timestamp.chk +++ b/metadata/xml-schema/timestamp.chk @@ -1 +1 @@ -Wed, 07 Jul 2021 20:39:12 +0000 +Thu, 08 Jul 2021 11:39:11 +0000 diff --git a/net-misc/Manifest.gz b/net-misc/Manifest.gz index 9d15df89e356..92e9bbc842e0 100644 Binary files a/net-misc/Manifest.gz and b/net-misc/Manifest.gz differ diff --git a/net-misc/wol/wol-0.7.1-r2.ebuild b/net-misc/wol/wol-0.7.1-r2.ebuild index 00f3b222ff49..4c9eb1184f11 100644 --- a/net-misc/wol/wol-0.7.1-r2.ebuild +++ b/net-misc/wol/wol-0.7.1-r2.ebuild @@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/ahh/${P}.tar.gz" LICENSE="GPL-2+" SLOT="0" -KEYWORDS="amd64 arm ~arm64 ~hppa ~ia64 ppc ppc64 ~sparc x86" +KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~sparc x86" IUSE="nls" PATCHES=( "${FILESDIR}/${P}-musl.patch" ) diff --git a/net-p2p/Manifest.gz b/net-p2p/Manifest.gz index e335545cdf9e..33a344c4dfb1 100644 Binary files a/net-p2p/Manifest.gz and b/net-p2p/Manifest.gz differ diff --git a/net-p2p/mktorrent/Manifest b/net-p2p/mktorrent/Manifest index 6751181ee26b..f8ab0acc15a9 100644 --- a/net-p2p/mktorrent/Manifest +++ b/net-p2p/mktorrent/Manifest @@ -1 +1,2 @@ DIST mktorrent-4c221a05d949a3767a2671de139c6014909daf6b.tar.gz 24574 BLAKE2B e7dcc17aca52c8d1f9d816ce3e89bea5c2b1d7759dba6a00578960b253652506b7e61855d769440056aaa6b0719e6856108ca5b80977152746a648862c71e97b SHA512 49ba2697373a1b40829d50d66faaaeb57fa3893e97283ec2844b447b8e4cf2713d7c0e76e49d3893475f5ce298c3215249751defe0f952d2c52df1bf68f7706c +DIST mktorrent-de7d011b35458de1472665f50b96c9cf6c303f39.tar.gz 27939 BLAKE2B 3fbf2c98829be21394b6517f2548925fdc83c9199a209aed39a6ba5f31174e34a3290b8c01eaf55e13acd2f15100cf9ecb20073d5fa9d4d1e3b2fb7641f3418d SHA512 4194d73958ba0d43e88a167c46a24e2a92e94b43682f96079a7317fb77f9e48477eddc1556a9785e5c7e5e1745efa7679d1b6b2b41c0ba2aa6df9dae4d3eb489 diff --git a/net-p2p/mktorrent/mktorrent-1.1_p20210130.ebuild b/net-p2p/mktorrent/mktorrent-1.1_p20210130.ebuild new file mode 100644 index 000000000000..5de284de9187 --- /dev/null +++ b/net-p2p/mktorrent/mktorrent-1.1_p20210130.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit toolchain-funcs + +DESCRIPTION="Simple command line utility to create BitTorrent metainfo files" +HOMEPAGE="https://github.com/pobrn/mktorrent" + +if [[ ${PV} == *9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/pobrn/mktorrent" +else + COMMIT_ID="de7d011b35458de1472665f50b96c9cf6c303f39" + SRC_URI="https://github.com/pobrn/${PN}/archive/${COMMIT_ID}.tar.gz -> ${PN}-${COMMIT_ID}.tar.gz" + S="${WORKDIR}/${PN}-${COMMIT_ID}" +fi + +KEYWORDS="~amd64 ~arm ~x86" +LICENSE="GPL-2+" +SLOT="0" +IUSE="threads +ssl debug" + +RDEPEND=" + ssl? ( dev-libs/openssl:0= ) +" + +DEPEND="${RDEPEND}" + +src_compile() { + tc-export CC + + local myemakeargs=( + USE_LARGE_FILES=1 + DEBUG=$(usex debug) + USE_OPENSSL=$(usex ssl) + USE_PTHREADS=$(usex threads) + ) + emake "${myemakeargs[@]}" +} + +src_install() { + dobin ${PN} + dodoc README +} diff --git a/net-wireless/Manifest.gz b/net-wireless/Manifest.gz index 4045d066afcf..0ed8af909a5c 100644 Binary files a/net-wireless/Manifest.gz and b/net-wireless/Manifest.gz differ diff --git a/net-wireless/blueman/Manifest b/net-wireless/blueman/Manifest index c9cafe4c742d..b6f55837c10e 100644 --- a/net-wireless/blueman/Manifest +++ b/net-wireless/blueman/Manifest @@ -1,2 +1 @@ -DIST blueman-2.1.4.tar.xz 983816 BLAKE2B de8d475b0aec5b037df43fdb76ebbf4fdb05367f166c14cda818badf49376f2a91de246f991167a57ecaa82a84ac84b4e91f600237c35d86e27431a760192996 SHA512 b8b54942092c1984cfac0cf73e2ac23f7693cb3ee0aa4cfaab1fa0282de4afd539f6860d5541523b542956b2efa31da3ec012dcc39d92fd699d0b8479df641ff DIST blueman-2.2.1.tar.xz 1570992 BLAKE2B b6d2296b68990c25e6d8077b513ebd3915152522fdf66bb5d887a90cf98e8835d993caf89a93089947ff1f6470075b9b6643ee0169ba86e46d190c09fbc6942a SHA512 7668a68470e7b5ab8e5cd774c89a7ae347de4193e293b5f2a467407fcb625e07a482f986fd7b672b763c297a0c0692c1da53dcc4ae75ec7fa118b180be623104 diff --git a/net-wireless/blueman/blueman-2.1.4.ebuild b/net-wireless/blueman/blueman-2.1.4.ebuild deleted file mode 100644 index 34209ec79cbc..000000000000 --- a/net-wireless/blueman/blueman-2.1.4.ebuild +++ /dev/null @@ -1,131 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="7" - -PYTHON_COMPAT=( python3_{7..9} ) -inherit autotools gnome2-utils linux-info python-single-r1 systemd xdg-utils - -DESCRIPTION="Simple and intuitive GTK+ Bluetooth Manager" -HOMEPAGE="https://github.com/blueman-project/blueman" - -if [[ ${PV} == "9999" ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/blueman-project/blueman.git" -else - SRC_URI="https://github.com/blueman-project/${PN}/releases/download/${PV/_/.}/${P/_/.}.tar.xz" - S=${WORKDIR}/${P/_/.} - KEYWORDS="amd64 arm arm64 ppc ppc64 x86" -fi - -# icons are GPL-2 -# source files are mixed GPL-3+ and GPL-2+ -LICENSE="GPL-3+ GPL-2" -SLOT="0" -IUSE="appindicator network nls policykit pulseaudio" - -DEPEND=" - $(python_gen_cond_dep ' - dev-python/pygobject:3[${PYTHON_MULTI_USEDEP}] - ') - >=net-wireless/bluez-5:= - ${PYTHON_DEPS}" -BDEPEND=" - $(python_gen_cond_dep ' - dev-python/cython[${PYTHON_MULTI_USEDEP}] - ') - virtual/pkgconfig - nls? ( dev-util/intltool sys-devel/gettext )" -RDEPEND="${DEPEND} - $(python_gen_cond_dep ' - dev-python/pycairo[${PYTHON_MULTI_USEDEP}] - ') - sys-apps/dbus - x11-libs/gtk+:3[introspection] - x11-libs/libnotify[introspection] - || ( - x11-themes/adwaita-icon-theme - x11-themes/faenza-icon-theme - x11-themes/mate-icon-theme - ) - appindicator? ( dev-libs/libappindicator:3[introspection] ) - network? ( - net-firewall/iptables - || ( - sys-apps/net-tools - sys-apps/iproute2 - ) - || ( - net-dns/dnsmasq - net-misc/dhcp - >=net-misc/networkmanager-0.8 - ) - ) - policykit? ( sys-auth/polkit ) - pulseaudio? ( - || ( - media-sound/pulseaudio[bluetooth] - media-sound/pulseaudio-modules-bt - ) - ) -" - -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -pkg_pretend() { - if use network; then - local CONFIG_CHECK="~BRIDGE ~IP_NF_IPTABLES - ~IP_NF_NAT ~IP_NF_TARGET_MASQUERADE" - check_extra_config - fi -} - -pkg_setup() { - python-single-r1_pkg_setup -} - -src_prepare() { - default - # replace py-compile to fix py3 - [[ ${PV} == 9999 ]] && eautoreconf || eautomake -} - -src_configure() { - local myconf=( - --disable-runtime-deps-check - --disable-static - --with-systemdsystemunitdir="$(systemd_get_systemunitdir)" - --with-systemduserunitdir="$(systemd_get_userunitdir)" - --with-dhcp-config="/etc/dhcp/dhcpd.conf" - $(use_enable appindicator) - $(use_enable policykit polkit) - $(use_enable nls) - $(use_enable pulseaudio) - # thunar integration is a single data file with no extra deps - # so install it unconditionally - --enable-thunar-sendto - ) - econf "${myconf[@]}" -} - -src_install() { - default - - if use policykit; then - # Allow users in plugdev group to modify connections - insinto /usr/share/polkit-1/rules.d - doins "${FILESDIR}/01-org.blueman.rules" - fi - - find "${D}" -name '*.la' -delete || die -} - -pkg_postinst() { - xdg_icon_cache_update - gnome2_schemas_update -} - -pkg_postrm() { - xdg_icon_cache_update - gnome2_schemas_update -} diff --git a/net-wireless/blueman/blueman-2.2.1.ebuild b/net-wireless/blueman/blueman-2.2.1.ebuild index 3684a53acc84..34209ec79cbc 100644 --- a/net-wireless/blueman/blueman-2.2.1.ebuild +++ b/net-wireless/blueman/blueman-2.2.1.ebuild @@ -15,7 +15,7 @@ if [[ ${PV} == "9999" ]] ; then else SRC_URI="https://github.com/blueman-project/${PN}/releases/download/${PV/_/.}/${P/_/.}.tar.xz" S=${WORKDIR}/${P/_/.} - KEYWORDS="amd64 arm ~arm64 ppc ppc64 x86" + KEYWORDS="amd64 arm arm64 ppc ppc64 x86" fi # icons are GPL-2 diff --git a/net-wireless/bluez/Manifest b/net-wireless/bluez/Manifest index 4bc25fa2af74..1320549d38b6 100644 --- a/net-wireless/bluez/Manifest +++ b/net-wireless/bluez/Manifest @@ -1,2 +1,2 @@ DIST bluez-5.58.tar.xz 2060368 BLAKE2B 157780f83181d89fb126face5e9794bc0de8196f43d57d079fc09ae7e45e7ef21bf404e834d844da28d06f9a29cb92f11c310dbbcb7f60e845a335a558d7190c SHA512 159b554e0afd56af5da6f8333383f2fdf96d77a0e82d762bf4b37786e7312b7e61fbbae0f18b26442a606e0a232f48e0f45a4b38b95de36c7daf384f582315a3 -DIST bluez-5.59.tar.xz 2123104 BLAKE2B 59e063ffc0cd810a151f49c2d8b3e1dca46eef038dfe112bfc0524e111e00cfea78557f3d1ccf657882b76158ee9249291f9fc6e6a4cce851e0e6dc43f707398 SHA512 506ce28459a82614e5f6c55235b84e5780a9bfa821904fd40ee2928a503978248368069c57a283db9dd81f48d78f45e00d95a7c52d1538d3f5c858a29424304f +DIST bluez-5.60.tar.xz 2124312 BLAKE2B 52cd08192cbfb7adc2e11f270442af62307dbf3cb940554f77e1ec4c30036ca1c05970d7d48719d3036173135f2b14123f2d0aad8147f0a919773d211238a11e SHA512 069e054360b4ab72f1daa033572f0fd822fb0f47e52069f4f3dcdfecfa312b9a5366cc04967e639aef39b980c0e1007389f1ee757e7c3bae43a5e66f8ed21a6b diff --git a/net-wireless/bluez/bluez-5.59-r1.ebuild b/net-wireless/bluez/bluez-5.60.ebuild similarity index 99% rename from net-wireless/bluez/bluez-5.59-r1.ebuild rename to net-wireless/bluez/bluez-5.60.ebuild index 898115e910a6..9f2c32a2449b 100644 --- a/net-wireless/bluez/bluez-5.59-r1.ebuild +++ b/net-wireless/bluez/bluez-5.60.ebuild @@ -63,9 +63,6 @@ RDEPEND="${DEPEND} RESTRICT="!test? ( test )" PATCHES=( - # avdtp: Fix parsing capabilities (from 'master') - "${FILESDIR}"/${P}-a2dp-parsing.patch - # Try both udevadm paths to cover udev/systemd vs. eudev locations (#539844) # http://www.spinics.net/lists/linux-bluetooth/msg58739.html # https://bugs.gentoo.org/539844 diff --git a/net-wireless/bluez/files/bluez-5.59-a2dp-parsing.patch b/net-wireless/bluez/files/bluez-5.59-a2dp-parsing.patch deleted file mode 100644 index 40569ec9805c..000000000000 --- a/net-wireless/bluez/files/bluez-5.59-a2dp-parsing.patch +++ /dev/null @@ -1,38 +0,0 @@ -From 0388794dc5fdb73a4ea88bcf148de0a12b4364d4 Mon Sep 17 00:00:00 2001 -From: Archie Pusaka -Date: Thu, 17 Jun 2021 08:53:34 +0800 -Subject: avdtp: Fix parsing capabilities - -This patch fixes size comparison and variable misassignment. - -Reviewed-by: Alain Michaud -Reviewed-by: Michael Sun ---- - profiles/audio/avdtp.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/profiles/audio/avdtp.c b/profiles/audio/avdtp.c -index c7bf99f42..5d13104c1 100644 ---- a/profiles/audio/avdtp.c -+++ b/profiles/audio/avdtp.c -@@ -1323,7 +1323,7 @@ static GSList *caps_to_list(uint8_t *data, size_t size, - - cap = (struct avdtp_service_capability *)data; - -- if (sizeof(*cap) + cap->length >= size) { -+ if (sizeof(*cap) + cap->length > size) { - error("Invalid capability data in getcap resp"); - break; - } -@@ -1345,7 +1345,7 @@ static GSList *caps_to_list(uint8_t *data, size_t size, - switch (cap->category) { - case AVDTP_MEDIA_CODEC: - if (codec) -- *codec = cap; -+ *codec = cpy; - break; - case AVDTP_DELAY_REPORTING: - if (delay_reporting) --- -cgit 1.2.3-1.el7 - diff --git a/profiles/Manifest.gz b/profiles/Manifest.gz index f31b0d7f1621..8a9b1f9fbdbd 100644 Binary files a/profiles/Manifest.gz and b/profiles/Manifest.gz differ diff --git a/profiles/use.local.desc b/profiles/use.local.desc index 69f1ecd21884..4f0d7bea508f 100644 --- a/profiles/use.local.desc +++ b/profiles/use.local.desc @@ -2049,6 +2049,7 @@ dev-libs/libevent:malloc-replacement - Support for replacing the memory manageme dev-libs/libevent:mbedtls - Support for net-libs/mbedtls encryption dev-libs/libevent:ssl - Support for dev-libs/openssl encryption dev-libs/libevent:verbose-debug - Support for verbose debug logging +dev-libs/libffi:exec-static-trampoline - Don't rely on dynamic code generation for trampolines. dev-libs/libffi:pax-kernel - Use PaX emulated trampolines, for we can't use PROT_EXEC dev-libs/libffi:pax_kernel - DEPRECATED alias for 'pax-kernel'. Do not use. dev-libs/libffi-compat:pax-kernel - Use PaX emulated trampolines, for we can't use PROT_EXEC @@ -3870,7 +3871,7 @@ media-fonts/terminus-font:a-like-o - Changes view of letter 'a' - a looks like o media-fonts/terminus-font:center-tilde - Place the '~' character vertically centered on the line instead of to the top. media-fonts/terminus-font:distinct-l - ll2 variant with more distinctive l (lowercase L) media-fonts/terminus-font:otf - Install Open Type Font (OTF) (required for HarfBuzz backend) -media-fonts/terminus-font:pcf - Install Portable Compiled Font (PCF) (required for X11) +media-fonts/terminus-font:pcf - Install Portable Compiled Font (PCF) (X11 bitmap fonts) media-fonts/terminus-font:pcf-unicode-only - Remove non-unicode PCF fonts that could be problematic. See bug #520222. media-fonts/terminus-font:psf - Install PC Screen Font (PSF) with unicode data (for linux console) media-fonts/terminus-font:quote - Changes view of quotes: symmetric ` and ' instead of asymmetric one (see homepage) diff --git a/sci-libs/Manifest.gz b/sci-libs/Manifest.gz index b0657bd43c6c..6a45d6450d2b 100644 Binary files a/sci-libs/Manifest.gz and b/sci-libs/Manifest.gz differ diff --git a/sci-libs/rtree/Manifest b/sci-libs/rtree/Manifest index 5dfbd7f55310..5a4104bccd94 100644 --- a/sci-libs/rtree/Manifest +++ b/sci-libs/rtree/Manifest @@ -1,2 +1 @@ -DIST Rtree-0.9.4.tar.gz 62017 BLAKE2B 72a979a3b9b9e9e1d18ea8646bbf860413c18420ce40946108c4f2f0e59fcb5bb64971a57936a92714e02e13419f7dc594b2371e4b44a4fd6a3e3986c19f7d85 SHA512 59981ffefedac1162faaa86ea10d7d5503da46c7ae9588a57e1a49214043de5f41bd4836965651d4cd22e7959c37cc6d586d9912568a2aaf693a0afb7895b429 DIST Rtree-0.9.7.tar.gz 44877 BLAKE2B 4ee5ad4c478ada448a8faa5ba29bdfbb67bc2f688cb8c6f465f4637fbd890cbd997f24573b25a936b7ceb503cc0b7684a1932e6ac91a85e4c37730ee9a6d39f0 SHA512 35b39e29f6d2b9cf4e774191bed69ade515680d07213f0ba74748da11ba916b41c93dfc4f489d7320855f3722ac8b5b58bac4614ea95e6230fcffe33f4332607 diff --git a/sci-libs/rtree/rtree-0.9.4-r1.ebuild b/sci-libs/rtree/rtree-0.9.4-r1.ebuild deleted file mode 100644 index 26223a2fe4f8..000000000000 --- a/sci-libs/rtree/rtree-0.9.4-r1.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{7..9} ) -DISTUTILS_USE_SETUPTOOLS=rdepend - -inherit distutils-r1 - -MY_PN="Rtree" -MY_P="${MY_PN}-${PV}" - -DESCRIPTION="R-Tree spatial index for Python GIS" -HOMEPAGE="https://rtree.readthedocs.io" -SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" -LICENSE="MIT" - -KEYWORDS="~amd64 ~x86" -SLOT="0" - -S=${WORKDIR}/${MY_P} - -RDEPEND="sci-libs/libspatialindex" - -distutils_enable_sphinx docs/source - -distutils_enable_tests pytest - -DEPEND+=" - test? ( dev-python/numpy[${PYTHON_USEDEP}] ) -" diff --git a/sci-misc/Manifest.gz b/sci-misc/Manifest.gz index 15aaf56e9121..417254d90921 100644 Binary files a/sci-misc/Manifest.gz and b/sci-misc/Manifest.gz differ diff --git a/sci-misc/boinc/Manifest b/sci-misc/boinc/Manifest index f6fa833c3e16..214c7d2ddfbd 100644 --- a/sci-misc/boinc/Manifest +++ b/sci-misc/boinc/Manifest @@ -1,3 +1,3 @@ -DIST boinc-7.16.14.tar.gz 49623696 BLAKE2B dde4163040d122cf4707e4747b18120f64c31af5ea4ca778709d9dd3c2fb019eb10ecb6ee367b73ea245cb5ed93bac710f268db2e0408b32120c750915473575 SHA512 9315cd8344571ac64eecf12676a2d3d6c021577ecee7a92eff253185f7ddf5bf4d64503a819c625afafd258ad28c3879839016c431aa3099083a90194c7e6454 DIST boinc-7.16.16.tar.gz 49599131 BLAKE2B 819ab85c19a684144711f77e669b892aa73c006b81c1d7ef7adbd9d580e1e8473ae27b52dc17953ee677c70fc78ed15df936afd740e629715f30f2b81d84ea6f SHA512 dd7042e176d6506c70de7866556ae73b2f45734df92038086d5b0414751f3da08dc571c49f0c26d747d3fb2577674d3ff8cdec7d3563861eaaaa5af9c1db0a0e +DIST boinc-7.16.17.tar.gz 49628624 BLAKE2B 87e266a29506ecaa41fd18a2521b08c291548a4e31f7748001e5214e6f1fada1ded8bb8b559635d4f9c7c256cd7829dcf9132c02448c559d5ceb13524ca42e0f SHA512 e9882f37ad5c83ed020155c8192228322932f83b88ed00d025dcda63bff2dca109ecdcbaf98b48c4522b841f545f32352e5c158ae0a41de0a1f2941ac8135221 DIST boinc.tif 288208 BLAKE2B 156a99f08dcabc62a46874830600b9d237e64b650b8edf35db67b82006a67039a3965707194e8f0b25cfd65138b8700c0bfb877507418393b9cd3df32e94d260 SHA512 548e19b87fd70dbeb05687320b86aad39981c161b5b5b7e02fc3ce886d4c464c9bb763d5652d9895dd505ce247c7ff4490caa3d407e28f54ce889ffbab22d046 diff --git a/sci-misc/boinc/boinc-7.16.14.ebuild b/sci-misc/boinc/boinc-7.16.17.ebuild similarity index 97% rename from sci-misc/boinc/boinc-7.16.14.ebuild rename to sci-misc/boinc/boinc-7.16.17.ebuild index 97890ccde30f..44f5b5d810ad 100644 --- a/sci-misc/boinc/boinc-7.16.14.ebuild +++ b/sci-misc/boinc/boinc-7.16.17.ebuild @@ -29,7 +29,7 @@ REQUIRED_USE="^^ ( curl_ssl_gnutls curl_ssl_openssl ) " # libcurl must not be using an ssl backend boinc does not support. # If the libcurl ssl backend changes, boinc should be recompiled. -COMMON_DEPEND=" +DEPEND=" acct-group/boinc acct-user/boinc >=app-misc/ca-certificates-20080809 @@ -54,21 +54,18 @@ COMMON_DEPEND=" virtual/jpeg ) " -DEPEND="${RDEPEND} - app-text/docbook-xml-dtd:4.4 +BDEPEND="app-text/docbook-xml-dtd:4.4 app-text/docbook2X sys-devel/gettext X? ( virtual/imagemagick-tools[png,tiff] ) " -RDEPEND="${COMMON_DEPEND} +RDEPEND="${DEPEND} !app-admin/quickswitch " PATCHES=( # >=x11-libs/wxGTK-3.0.2.0-r3 has webview removed, bug 587462 "${FILESDIR}"/${PN}-${MY_PV}-fix_webview.patch - # bug #732024 - "${FILESDIR}"/${PN}-${MY_PV}-remove-usr_lib.patch ) pkg_setup() { diff --git a/sys-apps/Manifest.gz b/sys-apps/Manifest.gz index 8f3aabed5e9c..9334e06cb726 100644 Binary files a/sys-apps/Manifest.gz and b/sys-apps/Manifest.gz differ diff --git a/sys-apps/cpuid/cpuid-20201006.ebuild b/sys-apps/cpuid/cpuid-20201006-r1.ebuild similarity index 86% rename from sys-apps/cpuid/cpuid-20201006.ebuild rename to sys-apps/cpuid/cpuid-20201006-r1.ebuild index df1d0117c3b7..6c29a01ce82b 100644 --- a/sys-apps/cpuid/cpuid-20201006.ebuild +++ b/sys-apps/cpuid/cpuid-20201006-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -13,8 +13,10 @@ LICENSE="GPL-2+" SLOT="0" KEYWORDS="amd64 x86" -BDEPEND="dev-lang/perl" -DEPEND="app-arch/gzip" +BDEPEND=" + app-arch/gzip + dev-lang/perl +" DOCS=( "ChangeLog" "FUTURE" ) diff --git a/sys-apps/systemd-tmpfiles/systemd-tmpfiles-248.3.ebuild b/sys-apps/systemd-tmpfiles/systemd-tmpfiles-248.3.ebuild index 7f7ac1e1f576..9b9579d77a8f 100644 --- a/sys-apps/systemd-tmpfiles/systemd-tmpfiles-248.3.ebuild +++ b/sys-apps/systemd-tmpfiles/systemd-tmpfiles-248.3.ebuild @@ -20,7 +20,7 @@ SRC_URI="https://github.com/systemd/${MY_PN}/archive/v${PV}.tar.gz -> ${MY_PN}-$ LICENSE="BSD-2 GPL-2 LGPL-2.1 MIT public-domain" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" IUSE="selinux test" RESTRICT="!test? ( test )" diff --git a/sys-block/Manifest.gz b/sys-block/Manifest.gz index e9598f2c5306..d1aee2f26002 100644 Binary files a/sys-block/Manifest.gz and b/sys-block/Manifest.gz differ diff --git a/sys-block/blktrace/Manifest b/sys-block/blktrace/Manifest index 15d068dc51f8..0d52fe09a161 100644 --- a/sys-block/blktrace/Manifest +++ b/sys-block/blktrace/Manifest @@ -1,2 +1 @@ -DIST blktrace-1.2.0.tar.bz2 395193 BLAKE2B 8f8505f27985f0451f75ced0e438a88758482227e83ba8de235986ab3f116cf38d5aec340d1e7ce3dc3aa5a97c0bd4c46265687976e7326a54ea2e7cce4afc82 SHA512 ce82c8010ca5c2868746d8eb7c6a107fc7382c05df949eeff79e612f5b1a98301a5aa5ab39de0766ea1c074f95e378ba985401cbeba9a296e3182da7d7a23b86 DIST blktrace-1.3.0.tar.bz2 396669 BLAKE2B ab340b27421ec423c8e5bd9fd719f97e06c30366ce95560adea644d10737f41d2c2f16e4c6503b65ef8fedeec7d997de6f47f0d3f2542c5065fe7846f8d18966 SHA512 4cc3d8e0d77e934bd70f447e1bb462400d3c9982460802f093d260e3cb69a66c6f61a63a05af55b84c35c5bdf18027e571d55cebea8c89d0be6d00c7ca9b9174 diff --git a/sys-block/blktrace/blktrace-1.2.0.ebuild b/sys-block/blktrace/blktrace-1.2.0.ebuild deleted file mode 100644 index ee5ebdfdceb7..000000000000 --- a/sys-block/blktrace/blktrace-1.2.0.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" - -inherit toolchain-funcs flag-o-matic linux-info - -MY_PN="blktrace" -MY_P="${MY_PN}-${PV}" - -DESCRIPTION="show detailed info about what is happening on a block device io queue" -HOMEPAGE="https://git.kernel.dk/cgit/blktrace/" -SRC_URI="https://brick.kernel.dk/snaps/${MY_P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~arm ppc x86" -IUSE="doc" - -RDEPEND="dev-libs/libaio" -# This is a Linux specific app! -DEPEND="${RDEPEND} - sys-kernel/linux-headers - doc? ( - virtual/latex-base - >=app-text/texlive-core-2014 - ) -" -S="${WORKDIR}/${MY_P}" - -CONFIG_CHECK="~BLK_DEV_IO_TRACE" -WARNING_BLK_DEV_IO_TRACE="you need to enable BLK_DEV_IO_TRACE kernel option if you want to gather traces from this machine" - -PATCHES=( - "${FILESDIR}"/${P}-overlapping-io-stats.patch - "${FILESDIR}"/${PN}-1.2.0-ldflags.patch #335741 - "${FILESDIR}"/${PN}-1.2.0-parallel-build.patch #335741 -) - -src_compile() { - append-cppflags -DLVM_REMAP_WORKAROUND -W -I"${S}" - emake CC="$(tc-getCC)" CFLAGS="${CFLAGS} ${CPPFLAGS}" - if use doc; then - export VARTEXFONTS="${T}/fonts" - emake docs - fi -} - -src_install() { - emake install CC="$(tc-getCC)" CFLAGS="${CFLAGS} ${CPPFLAGS}" DESTDIR="${ED}" prefix="/usr" mandir="/usr/share/man" - einstalldocs - use doc && dodoc doc/blktrace.pdf btt/doc/btt.pdf -} diff --git a/sys-block/blktrace/files/blktrace-1.2.0-ldflags.patch b/sys-block/blktrace/files/blktrace-1.2.0-ldflags.patch deleted file mode 100644 index b8e2aebfff4f..000000000000 --- a/sys-block/blktrace/files/blktrace-1.2.0-ldflags.patch +++ /dev/null @@ -1,89 +0,0 @@ -http://git.kernel.dk/?p=blktrace.git;a=commit;h=d1398e339585f6750f7158c50c98861b68dddc8b - -From 6d8c3d7a10f62b26514a56b25a3744c5f35219a6 Mon Sep 17 00:00:00 2001 -From: "Robin H. Johnson" -Date: Tue, 23 Jan 2018 17:40:48 -0500 -Subject: [PATCH] respect LDFLAGS when linking programs - ---- - Makefile | 10 +++++----- - btreplay/Makefile | 4 ++-- - btt/Makefile | 2 +- - iowatcher/Makefile | 2 +- - 4 files changed, 9 insertions(+), 9 deletions(-) - -diff --git a/Makefile b/Makefile -index fdbded02ee0a..68de59183a73 100644 ---- a/Makefile -+++ b/Makefile -@@ -26,19 +26,19 @@ btreplay/btreplay: - $(CC) -o $*.o -c $(ALL_CFLAGS) $< - - blkparse: blkparse.o blkparse_fmt.o rbtree.o act_mask.o -- $(CC) $(ALL_CFLAGS) -o $@ $(filter %.o,$^) -+ $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ $(filter %.o,$^) - - blktrace: blktrace.o act_mask.o -- $(CC) $(ALL_CFLAGS) -o $@ $(filter %.o,$^) $(LIBS) -+ $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ $(filter %.o,$^) $(LIBS) - - verify_blkparse: verify_blkparse.o -- $(CC) $(ALL_CFLAGS) -o $@ $(filter %.o,$^) -+ $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ $(filter %.o,$^) - - blkrawverify: blkrawverify.o -- $(CC) $(ALL_CFLAGS) -o $@ $(filter %.o,$^) -+ $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ $(filter %.o,$^) - - blkiomon: blkiomon.o rbtree.o -- $(CC) $(ALL_CFLAGS) -o $@ $(filter %.o,$^) $(LIBS) -lrt -+ $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ $(filter %.o,$^) $(LIBS) -lrt - - $(PROGS): | depend - -diff --git a/btreplay/Makefile b/btreplay/Makefile -index 2998182401e7..f574a2976ec1 100644 ---- a/btreplay/Makefile -+++ b/btreplay/Makefile -@@ -32,10 +32,10 @@ clean: docsclean - $(CC) $(CFLAGS) -c -o $*.o $< - - btrecord: btrecord.o -- $(CC) $(CFLAGS) -o $@ $(filter %.o,$^) -+ $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(filter %.o,$^) - - btreplay: btreplay.o -- $(CC) $(CFLAGS) -o $@ $(filter %.o,$^) $(LIBS) -+ $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(filter %.o,$^) $(LIBS) - - depend: - @$(CC) -MM $(CFLAGS) *.c 1> .depend -diff --git a/btt/Makefile b/btt/Makefile -index df7a3de6b3fb..32075573954c 100644 ---- a/btt/Makefile -+++ b/btt/Makefile -@@ -38,7 +38,7 @@ clean: docsclean - $(CC) $(CFLAGS) -c -o $*.o $< - - btt: $(OBJS) -- $(CC) $(CFLAGS) -o $@ $(filter %.o,$^) $(LIBS) -+ $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(filter %.o,$^) $(LIBS) - - ifneq ($(wildcard .depend),) - include .depend -diff --git a/iowatcher/Makefile b/iowatcher/Makefile -index e013556f3ae1..a224a0848cc8 100644 ---- a/iowatcher/Makefile -+++ b/iowatcher/Makefile -@@ -19,7 +19,7 @@ all: $(ALL) - $(CC) -o $*.o -c $(ALL_CFLAGS) $< - - iowatcher: blkparse.o plot.o main.o tracers.o mpstat.o fio.o -- $(CC) $(ALL_CFLAGS) -o $@ $(filter %.o,$^) -lm -lrt -+ $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ $(filter %.o,$^) -lm -lrt - - depend: - @$(CC) -MM $(ALL_CFLAGS) *.c 1> .depend --- -2.15.1 - diff --git a/sys-block/blktrace/files/blktrace-1.2.0-overlapping-io-stats.patch b/sys-block/blktrace/files/blktrace-1.2.0-overlapping-io-stats.patch deleted file mode 100644 index 11c495efbc0c..000000000000 --- a/sys-block/blktrace/files/blktrace-1.2.0-overlapping-io-stats.patch +++ /dev/null @@ -1,68 +0,0 @@ -http://git.kernel.dk/?p=blktrace.git;a=commit;h=8fc451c6b0b9a7db7c376ea6865c35321e561f00 - -From 8fc451c6b0b9a7db7c376ea6865c35321e561f00 Mon Sep 17 00:00:00 2001 -From: Gwendal Grignou -Date: Fri, 18 Aug 2017 15:00:22 -0700 -Subject: [PATCH] btt: Fix overlapping IO stats. - -Keep scanning the tree for overlapping IO otherwise Q2G and process -traces will be incorrect. - -Let assume we have 2 IOs: - -A A+a -|---------------------------------------| - B B+b - |-----------------| - -In the red/black tree we have: - - o -> [A,A+a] - / \ - left right - / \ - [...]o o -> [B, B+b] - -In the current code, if we would not be able to find [B+b] in the tree: -B is greater than A, so we won't go left -B+b is smaller than A+a, so we are not going right either. - -When we have a [X, X+x] IO to look for: -We need to check for right when either: - X+x >= A+a (for merged IO) -and - X > A (for overlapping IO) - -TEST=Check with a trace with overlapping IO: Q2C and Q2G are expected. - -Signed-off-by: Gwendal Grignou -Signed-off-by: Jens Axboe ---- - btt/dip_rb.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/btt/dip_rb.c b/btt/dip_rb.c -index 2aa7ffcc763b..6efef6c03b8f 100644 ---- a/btt/dip_rb.c -+++ b/btt/dip_rb.c -@@ -57,7 +57,7 @@ struct io *rb_find_sec(struct rb_root *root, __u64 sec) - __iop = rb_entry(n, struct io, rb_node); - if (sec < BIT_START(__iop)) - n = n->rb_left; -- else if (sec >= BIT_END(__iop)) -+ else if (sec > BIT_START(__iop)) - n = n->rb_right; - else - return __iop; -@@ -82,7 +82,7 @@ void rb_foreach(struct rb_node *n, struct io *iop, - } - if (iop_s < this_s) - rb_foreach(n->rb_left, iop, fnc, head); -- if (this_e < iop_e) -+ if ((this_e < iop_e) || (this_s < iop_s)) - rb_foreach(n->rb_right, iop, fnc, head); - } - } --- -2.15.1 - diff --git a/sys-block/blktrace/files/blktrace-1.2.0-parallel-build.patch b/sys-block/blktrace/files/blktrace-1.2.0-parallel-build.patch deleted file mode 100644 index 129f04107fa1..000000000000 --- a/sys-block/blktrace/files/blktrace-1.2.0-parallel-build.patch +++ /dev/null @@ -1,71 +0,0 @@ -http://git.kernel.dk/?p=blktrace.git;a=commit;h=519fd9a5d08d85f3d9cb4192d624fe8351e40232 - -From 4569544261be495bdec0574d7729c85a62dabad7 Mon Sep 17 00:00:00 2001 -From: "Robin H. Johnson" -Date: Thu, 3 Feb 2011 03:07:06 +0000 -Subject: [PATCH] fix parallel build failures - -When building in parallel, the btreplay/btrecord and btreplay/btreplay -targets cause make to kick off two jobs for `make -C btreplay` and they -sometimes end up clobbering each other. We could fix this by making one -a dependency of the other, but it's a bit cleaner to refactor things to -be based on subdirs. This way changes in subdirs also get noticed: - $ touch btreplay/*.[ch] - $ make - - -Signed-off-by: Robin H. Johnson -Signed-off-by: Mike Frysinger ---- - Makefile | 24 ++++++++++-------------- - 1 file changed, 10 insertions(+), 14 deletions(-) - -diff --git a/Makefile b/Makefile -index 68de59183a73..5917814d0344 100644 ---- a/Makefile -+++ b/Makefile -@@ -4,23 +4,19 @@ ALL_CFLAGS = $(CFLAGS) -D_GNU_SOURCE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 - PROGS = blkparse blktrace verify_blkparse blkrawverify blkiomon - LIBS = -lpthread - SCRIPTS = btrace -+SUBDIRS = btreplay btt iowatcher - --ALL = $(PROGS) $(SCRIPTS) btt/btt btreplay/btrecord btreplay/btreplay \ -+ALL = $(PROGS) $(SCRIPTS) -+INSTALL_ALL = $(ALL) btt/btt btreplay/btrecord btreplay/btreplay \ - btt/bno_plot.py iowatcher/iowatcher - --all: $(ALL) -+all: $(ALL) $(SUBDIRS) - --btt/btt: -- $(MAKE) -C btt -- --iowatcher/iowatcher: -- $(MAKE) -C iowatcher -- --btreplay/btrecord: -- $(MAKE) -C btreplay -- --btreplay/btreplay: -- $(MAKE) -C btreplay -+# We always descend into subdirs because they contain their own dependency -+# information which we don't track in this top level Makefile. -+$(SUBDIRS): -+ $(MAKE) -C $@ -+.PHONY: $(SUBDIRS) - - %.o: %.c - $(CC) -o $*.o -c $(ALL_CFLAGS) $< -@@ -85,7 +81,7 @@ install: all - $(INSTALL) -m 755 -d $(DESTDIR)$(bindir) - $(INSTALL) -m 755 -d $(DESTDIR)$(mandir)/man1 - $(INSTALL) -m 755 -d $(DESTDIR)$(mandir)/man8 -- $(INSTALL) -m 755 $(ALL) $(DESTDIR)$(bindir) -+ $(INSTALL) -m 755 $(INSTALL_ALL) $(DESTDIR)$(bindir) - $(INSTALL) -m 644 doc/*.1 $(DESTDIR)$(mandir)/man1 - $(INSTALL) -m 644 doc/*.8 $(DESTDIR)$(mandir)/man8 - --- -2.15.1 - diff --git a/sys-devel/Manifest.gz b/sys-devel/Manifest.gz index 9cdcf9537d23..062dd9224bee 100644 Binary files a/sys-devel/Manifest.gz and b/sys-devel/Manifest.gz differ diff --git a/sys-devel/distcc/distcc-3.4.ebuild b/sys-devel/distcc/distcc-3.4.ebuild index 23516be1cd78..00e2ef66449c 100644 --- a/sys-devel/distcc/distcc-3.4.ebuild +++ b/sys-devel/distcc/distcc-3.4.ebuild @@ -14,7 +14,7 @@ SRC_URI="https://github.com/distcc/distcc/releases/download/v${PV}/${P}.tar.gz" LICENSE="GPL-2+" SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv ~s390 sparc x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv ~s390 sparc x86" IUSE="gssapi gtk hardened ipv6 selinux xinetd zeroconf" REQUIRED_USE="${PYTHON_REQUIRED_USE}" diff --git a/sys-devel/gcc/gcc-10.3.0-r2.ebuild b/sys-devel/gcc/gcc-10.3.0-r2.ebuild index 4ad3b3ca407c..6fa2c485813b 100644 --- a/sys-devel/gcc/gcc-10.3.0-r2.ebuild +++ b/sys-devel/gcc/gcc-10.3.0-r2.ebuild @@ -7,7 +7,7 @@ PATCH_VER="3" inherit toolchain -#KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" RDEPEND="" BDEPEND="${CATEGORY}/binutils" diff --git a/sys-devel/gcc/gcc-11.1.0-r2.ebuild b/sys-devel/gcc/gcc-11.1.0-r2.ebuild index b0cbe26c743d..0d4965f29fee 100644 --- a/sys-devel/gcc/gcc-11.1.0-r2.ebuild +++ b/sys-devel/gcc/gcc-11.1.0-r2.ebuild @@ -7,7 +7,7 @@ PATCH_VER="3" inherit toolchain -#KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" RDEPEND="" BDEPEND="${CATEGORY}/binutils" diff --git a/sys-devel/gcc/gcc-8.5.0-r1.ebuild b/sys-devel/gcc/gcc-8.5.0-r1.ebuild index 5141e9aa3b31..dbaece69b165 100644 --- a/sys-devel/gcc/gcc-8.5.0-r1.ebuild +++ b/sys-devel/gcc/gcc-8.5.0-r1.ebuild @@ -7,7 +7,7 @@ PATCH_VER="2" inherit toolchain -#KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" RDEPEND="" DEPEND="${RDEPEND} diff --git a/sys-kernel/Manifest.gz b/sys-kernel/Manifest.gz index 652c94757291..12f87173df41 100644 Binary files a/sys-kernel/Manifest.gz and b/sys-kernel/Manifest.gz differ diff --git a/sys-kernel/gentoo-kernel/files/5.10.47-ppc64-kvm.patch b/sys-kernel/gentoo-kernel/files/5.10.47-ppc64-kvm.patch new file mode 100644 index 000000000000..59a7c7e75814 --- /dev/null +++ b/sys-kernel/gentoo-kernel/files/5.10.47-ppc64-kvm.patch @@ -0,0 +1,56 @@ +From 25edcc50d76c834479d11fcc7de46f3da4d95121 Mon Sep 17 00:00:00 2001 +From: Fabiano Rosas +Date: Thu, 4 Feb 2021 17:05:17 -0300 +Subject: [PATCH] KVM: PPC: Book3S HV: Save and restore FSCR in the P9 path + +The Facility Status and Control Register is a privileged SPR that +defines the availability of some features in problem state. Since it +can be written by the guest, we must restore it to the previous host +value after guest exit. + +This restoration is currently done by taking the value from +current->thread.fscr, which in the P9 path is not enough anymore +because the guest could context switch the QEMU thread, causing the +guest-current value to be saved into the thread struct. + +The above situation manifested when running a QEMU linked against a +libc with System Call Vectored support, which causes scv +instructions to be run by QEMU early during the guest boot (during +SLOF), at which point the FSCR is 0 due to guest entry. After a few +scv calls (1 to a couple hundred), the context switching happens and +the QEMU thread runs with the guest value, resulting in a Facility +Unavailable interrupt. + +This patch saves and restores the host value of FSCR in the inner +guest entry loop in a way independent of current->thread.fscr. The old +way of doing it is still kept in place because it works for the old +entry path. + +Signed-off-by: Fabiano Rosas +Signed-off-by: Paul Mackerras +--- + arch/powerpc/kvm/book3s_hv.c | 4 ++++ + 1 file changed, 4 insertions(+) + +diff --git a/arch/powerpc/kvm/book3s_hv.c b/arch/powerpc/kvm/book3s_hv.c +index 89c686c17f0606..f6d470157fcb62 100644 +--- a/arch/powerpc/kvm/book3s_hv.c ++++ b/arch/powerpc/kvm/book3s_hv.c +@@ -3611,6 +3611,7 @@ static int kvmhv_p9_guest_entry(struct kvm_vcpu *vcpu, u64 time_limit, + unsigned long host_tidr = mfspr(SPRN_TIDR); + unsigned long host_iamr = mfspr(SPRN_IAMR); + unsigned long host_amr = mfspr(SPRN_AMR); ++ unsigned long host_fscr = mfspr(SPRN_FSCR); + s64 dec; + u64 tb; + int trap, save_pmu; +@@ -3751,6 +3752,9 @@ static int kvmhv_p9_guest_entry(struct kvm_vcpu *vcpu, u64 time_limit, + if (host_amr != vcpu->arch.amr) + mtspr(SPRN_AMR, host_amr); + ++ if (host_fscr != vcpu->arch.fscr) ++ mtspr(SPRN_FSCR, host_fscr); ++ + msr_check_and_set(MSR_FP | MSR_VEC | MSR_VSX); + store_fp_state(&vcpu->arch.fp); + #ifdef CONFIG_ALTIVEC diff --git a/sys-kernel/gentoo-kernel/gentoo-kernel-5.10.47.ebuild b/sys-kernel/gentoo-kernel/gentoo-kernel-5.10.47.ebuild index 484c3c53d625..85ca3ef0d124 100644 --- a/sys-kernel/gentoo-kernel/gentoo-kernel-5.10.47.ebuild +++ b/sys-kernel/gentoo-kernel/gentoo-kernel-5.10.47.ebuild @@ -55,6 +55,7 @@ src_prepare() { local PATCHES=( # meh, genpatches have no directory "${WORKDIR}"/*.patch + "${FILESDIR}"/5.10.47-ppc64-kvm.patch ) default diff --git a/sys-kernel/gentoo-kernel/gentoo-kernel-5.10.48.ebuild b/sys-kernel/gentoo-kernel/gentoo-kernel-5.10.48.ebuild index 5151cab9b14f..50cb582f5f92 100644 --- a/sys-kernel/gentoo-kernel/gentoo-kernel-5.10.48.ebuild +++ b/sys-kernel/gentoo-kernel/gentoo-kernel-5.10.48.ebuild @@ -55,6 +55,9 @@ src_prepare() { local PATCHES=( # meh, genpatches have no directory "${WORKDIR}"/*.patch + # NOTE: please ppc64 kvm patch while it applies + # should land to genpatches or upstream at .49 or .50 + "${FILESDIR}"/5.10.47-ppc64-kvm.patch ) default diff --git a/sys-libs/Manifest.gz b/sys-libs/Manifest.gz index e6d5db4087a8..302e130eaa69 100644 Binary files a/sys-libs/Manifest.gz and b/sys-libs/Manifest.gz differ diff --git a/sys-libs/lwp/lwp-2.8.ebuild b/sys-libs/lwp/lwp-2.8.ebuild index 42499946341a..fae40ac99897 100644 --- a/sys-libs/lwp/lwp-2.8.ebuild +++ b/sys-libs/lwp/lwp-2.8.ebuild @@ -1,8 +1,7 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 -inherit ltprune +EAPI=7 DESCRIPTION="Light-weight process library (used by Coda)" HOMEPAGE="http://www.coda.cs.cmu.edu/" @@ -11,7 +10,6 @@ SRC_URI="http://www.coda.cs.cmu.edu/pub/lwp/src/${P}.tar.xz" LICENSE="LGPL-2.1" SLOT="1" KEYWORDS="~alpha amd64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86" -IUSE="" PATCHES=( "${FILESDIR}"/${P}-ia64.patch @@ -23,5 +21,5 @@ src_configure() { src_install() { default - prune_libtool_files + find "${ED}" -name '*.la' -delete || die } diff --git a/www-apache/Manifest.gz b/www-apache/Manifest.gz index 16cb456c40f8..27d68018bd29 100644 Binary files a/www-apache/Manifest.gz and b/www-apache/Manifest.gz differ diff --git a/www-apache/mod_jk/mod_jk-1.2.48.ebuild b/www-apache/mod_jk/mod_jk-1.2.48.ebuild index e3747b500c7e..f84c81d573c1 100644 --- a/www-apache/mod_jk/mod_jk-1.2.48.ebuild +++ b/www-apache/mod_jk/mod_jk-1.2.48.ebuild @@ -14,7 +14,7 @@ S="${WORKDIR}/${MY_P}/native" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="amd64 ~hppa ~ppc ~sparc x86" +KEYWORDS="amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86" DEPEND="dev-libs/apr:1=" RDEPEND="${DEPEND}" diff --git a/x11-base/Manifest.gz b/x11-base/Manifest.gz index cab36294c066..207e8eb47f14 100644 Binary files a/x11-base/Manifest.gz and b/x11-base/Manifest.gz differ diff --git a/x11-base/xorg-server/xorg-server-1.20.11-r3.ebuild b/x11-base/xorg-server/xorg-server-1.20.11-r3.ebuild new file mode 100644 index 000000000000..29069a22532d --- /dev/null +++ b/x11-base/xorg-server/xorg-server-1.20.11-r3.ebuild @@ -0,0 +1,220 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +XORG_DOC=doc +inherit xorg-3 multilib flag-o-matic toolchain-funcs +EGIT_REPO_URI="https://gitlab.freedesktop.org/xorg/xserver.git" + +DESCRIPTION="X.Org X servers" +SLOT="0/${PV}" +if [[ ${PV} != 9999* ]]; then + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" +fi + +IUSE_SERVERS="dmx kdrive wayland xephyr xnest xorg xvfb" +IUSE="${IUSE_SERVERS} debug +elogind ipv6 minimal selinux suid systemd test +udev unwind xcsecurity" +RESTRICT="!test? ( test )" + +CDEPEND=" + media-libs/libglvnd[X] + dev-libs/openssl:0= + >=x11-apps/iceauth-1.0.2 + >=x11-apps/rgb-1.0.3 + >=x11-apps/xauth-1.0.3 + x11-apps/xkbcomp + >=x11-libs/libdrm-2.4.89 + >=x11-libs/libpciaccess-0.12.901 + >=x11-libs/libXau-1.0.4 + >=x11-libs/libXdmcp-1.0.2 + >=x11-libs/libXfont2-2.0.1 + >=x11-libs/libxkbfile-1.0.4 + >=x11-libs/libxshmfence-1.1 + >=x11-libs/pixman-0.27.2 + >=x11-misc/xbitmaps-1.0.1 + >=x11-misc/xkeyboard-config-2.4.1-r3 + dmx? ( + x11-libs/libXt + >=x11-libs/libdmx-1.0.99.1 + >=x11-libs/libX11-1.1.5 + >=x11-libs/libXaw-1.0.4 + >=x11-libs/libXext-1.0.99.4 + >=x11-libs/libXfixes-5.0 + >=x11-libs/libXi-1.2.99.1 + >=x11-libs/libXmu-1.0.3 + x11-libs/libXrender + >=x11-libs/libXres-1.0.3 + >=x11-libs/libXtst-1.0.99.2 + ) + kdrive? ( + >=x11-libs/libXext-1.0.5 + x11-libs/libXv + ) + xephyr? ( + x11-libs/libxcb[xkb] + x11-libs/xcb-util + x11-libs/xcb-util-image + x11-libs/xcb-util-keysyms + x11-libs/xcb-util-renderutil + x11-libs/xcb-util-wm + ) + !minimal? ( + >=x11-libs/libX11-1.1.5 + >=x11-libs/libXext-1.0.5 + >=media-libs/mesa-18[X(+),egl,gbm] + >=media-libs/libepoxy-1.5.4[X,egl(+)] + ) + udev? ( virtual/libudev:= ) + unwind? ( sys-libs/libunwind ) + >=x11-apps/xinit-1.3.3-r1 + systemd? ( + sys-apps/dbus + sys-apps/systemd + ) + elogind? ( + sys-apps/dbus + sys-auth/elogind[pam] + sys-auth/pambase[elogind] + ) + !!x11-drivers/nvidia-drivers[-libglvnd(+)] +" +DEPEND="${CDEPEND} + >=x11-base/xorg-proto-2018.4 + >=x11-libs/xtrans-1.3.5 + dmx? ( + doc? ( + || ( + www-client/links + www-client/lynx + www-client/w3m + ) + ) + ) +" +RDEPEND="${CDEPEND} + !systemd? ( gui-libs/display-manager-init ) + selinux? ( sec-policy/selinux-xserver ) + wayland? ( x11-base/xwayland ) +" +BDEPEND=" + sys-devel/flex +" +PDEPEND=" + xorg? ( >=x11-base/xorg-drivers-$(ver_cut 1-2) )" + +REQUIRED_USE="!minimal? ( + || ( ${IUSE_SERVERS} ) + ) + elogind? ( udev ) + ?? ( elogind systemd ) + minimal? ( !wayland ) + xephyr? ( kdrive )" + +UPSTREAMED_PATCHES=( +) + +PATCHES=( + "${UPSTREAMED_PATCHES[@]}" + "${FILESDIR}"/${PN}-1.12-unloadsubmodule.patch + # needed for new eselect-opengl, bug #541232 + "${FILESDIR}"/${PN}-1.18-support-multiple-Files-sections.patch +) + +src_configure() { + # localstatedir is used for the log location; we need to override the default + # from ebuild.sh + # sysconfdir is used for the xorg.conf location; same applies + # NOTE: fop is used for doc generating; and I have no idea if Gentoo + # package it somewhere + local XORG_CONFIGURE_OPTIONS=( + $(use_enable ipv6) + $(use_enable debug) + $(use_enable dmx) + $(use_enable kdrive) + $(use_enable test unit-tests) + $(use_enable unwind libunwind) + $(use_enable !minimal record) + $(use_enable !minimal xfree86-utils) + $(use_enable !minimal dri) + $(use_enable !minimal dri2) + $(use_enable !minimal dri3) + $(use_enable !minimal glamor) + $(use_enable !minimal glx) + $(use_enable xcsecurity) + $(use_enable xephyr) + $(use_enable xnest) + $(use_enable xorg) + $(use_enable xvfb) + $(use_enable udev config-udev) + $(use_with doc doxygen) + $(use_with doc xmlto) + $(use_with systemd systemd-daemon) + --disable-xwayland + --enable-libdrm + --sysconfdir="${EPREFIX}"/etc/X11 + --localstatedir="${EPREFIX}"/var + --with-fontrootdir="${EPREFIX}"/usr/share/fonts + --with-xkb-output="${EPREFIX}"/var/lib/xkb + --disable-config-hal + --disable-linux-acpi + --without-dtrace + --without-fop + --with-os-vendor=Gentoo + --with-sha1=libcrypto + CPP="$(tc-getPROG CPP cpp)" + ) + + if use systemd || use elogind; then + XORG_CONFIGURE_OPTIONS+=( + --enable-systemd-logind + --disable-install-setuid + $(use_enable suid suid-wrapper) + ) + else + XORG_CONFIGURE_OPTIONS+=( + --disable-systemd-logind + --disable-suid-wrapper + $(use_enable suid install-setuid) + ) + fi + + xorg-3_src_configure +} + +server_based_install() { + if ! use xorg; then + rm -f "${ED}"/usr/share/man/man1/Xserver.1x \ + "${ED}"/usr/$(get_libdir)/xserver/SecurityPolicy \ + "${ED}"/usr/$(get_libdir)/pkgconfig/xorg-server.pc \ + "${ED}"/usr/share/man/man1/Xserver.1x || die + fi +} + +src_install() { + xorg-3_src_install + + server_based_install + + if ! use minimal && use xorg; then + # Install xorg.conf.example into docs + dodoc "${S}"/hw/xfree86/xorg.conf.example + + rm \ + "${ED}"/usr/bin/cvt \ + "${ED}"/usr/share/man/man1/cvt.1 || die + fi + + # install the @x11-module-rebuild set for Portage + insinto /usr/share/portage/config/sets + newins "${FILESDIR}"/xorg-sets.conf xorg.conf + + find "${ED}"/var -type d -empty -delete || die +} + +pkg_postrm() { + # Get rid of module dir to ensure opengl-update works properly + if [[ -z ${REPLACED_BY_VERSION} && -e ${EROOT}/usr/$(get_libdir)/xorg/modules ]]; then + rm -rf "${EROOT}"/usr/$(get_libdir)/xorg/modules + fi +} diff --git a/x11-base/xorg-server/xorg-server-9999.ebuild b/x11-base/xorg-server/xorg-server-9999.ebuild index 8ef940835973..22242af2138c 100644 --- a/x11-base/xorg-server/xorg-server-9999.ebuild +++ b/x11-base/xorg-server/xorg-server-9999.ebuild @@ -200,6 +200,10 @@ src_install() { if ! use minimal && use xorg; then # Install xorg.conf.example into docs dodoc "${S}"/hw/xfree86/xorg.conf.example + + rm \ + "${ED}"/usr/bin/cvt \ + "${ED}"/usr/share/man/man1/cvt.1 || die fi # install the @x11-module-rebuild set for Portage diff --git a/x11-libs/Manifest.gz b/x11-libs/Manifest.gz index 387dc99ea885..1f16c0fcece7 100644 Binary files a/x11-libs/Manifest.gz and b/x11-libs/Manifest.gz differ diff --git a/x11-libs/libxcvt/Manifest b/x11-libs/libxcvt/Manifest new file mode 100644 index 000000000000..c82809b13145 --- /dev/null +++ b/x11-libs/libxcvt/Manifest @@ -0,0 +1 @@ +DIST libxcvt-0.1.0.tar.xz 7912 BLAKE2B 31653a085fc8c60ff3eb1cb3749e382f2b98b1aa967bfe6f4e8ec94536b35ec73f0d8cbd76be782f46c81255c166a889141dfebb41448db5ad8e29797b340d3b SHA512 c2ca7abfc2954cf4427e0b3c3e302aad438525118dc9fa2047fce2bce6578863696387af8eb7adfad40af6313d9d9c87a9dcaf7e026e8049d48118063f6f0088 diff --git a/x11-libs/libxcvt/libxcvt-0.1.0.ebuild b/x11-libs/libxcvt/libxcvt-0.1.0.ebuild new file mode 100644 index 000000000000..0ad3f5af940d --- /dev/null +++ b/x11-libs/libxcvt/libxcvt-0.1.0.ebuild @@ -0,0 +1,20 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +XORG_TARBALL_SUFFIX="xz" + +inherit xorg-3 meson + +if [[ ${PV} != *9999* ]]; then + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" +fi + +DESCRIPTION="X.Org xcvt library and cvt program" + +RDEPEND="! + + + + x11@gentoo.org + X11 + + diff --git a/x11-libs/pango/pango-1.48.7.ebuild b/x11-libs/pango/pango-1.48.7.ebuild index ff1938e54039..5f44d49490dd 100644 --- a/x11-libs/pango/pango-1.48.7.ebuild +++ b/x11-libs/pango/pango-1.48.7.ebuild @@ -11,7 +11,7 @@ SRC_URI="http://ftp.gnome.org/pub/GNOME/sources/pango/$(ver_cut 1-2)/${P}.tar.xz LICENSE="LGPL-2+ FTL" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv sparc ~x86" IUSE="gtk-doc +introspection sysprof test X" RESTRICT="!test? ( test )" diff --git a/x11-themes/Manifest.gz b/x11-themes/Manifest.gz index 90485cc15776..bf089b949335 100644 Binary files a/x11-themes/Manifest.gz and b/x11-themes/Manifest.gz differ diff --git a/x11-themes/fedora-backgrounds/fedora-backgrounds-34.0.1.ebuild b/x11-themes/fedora-backgrounds/fedora-backgrounds-34.0.1.ebuild index 9bf0aa0956d2..3e12c33b7b27 100644 --- a/x11-themes/fedora-backgrounds/fedora-backgrounds-34.0.1.ebuild +++ b/x11-themes/fedora-backgrounds/fedora-backgrounds-34.0.1.ebuild @@ -13,7 +13,7 @@ SRC_URI="https://github.com/fedoradesign/backgrounds/releases/download/v${PV}/${ # Review on each bump, files Attribution* LICENSE="CC-BY-SA-4.0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="" SLOT="$(ver_cut 1)" diff --git a/x11-themes/numix-icon-theme-circle/Manifest b/x11-themes/numix-icon-theme-circle/Manifest index 09e5e9bbdc9f..356455ff244c 100644 --- a/x11-themes/numix-icon-theme-circle/Manifest +++ b/x11-themes/numix-icon-theme-circle/Manifest @@ -1,3 +1,4 @@ DIST numix-icon-theme-circle-19.09.20.tar.gz 2193017 BLAKE2B 495f4b2c1cb74ac43d59515ed03d9b4032fe3453f37fb20bd09c24aa3e1037654967149372cdc3294f0d21b2ae5d95e43604864b7fd7520bb626ce58ec333769 SHA512 bc0e80953e646c305d8af9f2360389850f7f67b5bfc35501c137f07dbb99db146e4de6e2afaa711b8eafe83315ab5f392ce1276bd54a431516c21171da20a9ff DIST numix-icon-theme-circle-20.09.19.tar.gz 2359130 BLAKE2B bae28a49db5cd748961d985db4bac9e783657b5caae8aea0a43437735e31fd80969af56b9e995a8076d058d77c32e64a855785c427c9504e68ac4afc82a0c7a9 SHA512 729401e79ff81a211494d4a595dc95e82aab115ffd02a6bd8b1df06556a0a8ebc2c0c72f298353ced2ed80adc1294d786fa79192d8621ad99549c3a736fa33ed DIST numix-icon-theme-circle-21.04.14.tar.gz 2412868 BLAKE2B af9cef54a08192ab4bb43e12e8ed71175c264516cd99d1009143d07a5c7c83b0283317b7a02869ec4b5396e24faff5b2f95b4f8ef86539eab08cacd57f485ebd SHA512 d36a8625c1e090504abb26cec03362bc8088d3591fa607d835f3235a917838597d5bfa700c10dc301d18ca99733db72deb0036988c1b859175047da9bd5b9de3 +DIST numix-icon-theme-circle-21.05.31.tar.gz 2407170 BLAKE2B 820ae38a08f36d4afcfd514b928cdcfdf2ef5b8c82a1468acb7ab1b2701f360957f65a3b7a88da91eef758de5ec3b339aba75c31bad93c29d19d086bfbf2e9bb SHA512 dd045df209b6ccd59ae19137e564613c4a70297bd1f026aa12ebf7c89e28bdba69e0aa1b5d5393409a92c692baceb7ba26360980985a98153396fa3f9d8d369a diff --git a/x11-themes/numix-icon-theme-circle/numix-icon-theme-circle-21.05.31.ebuild b/x11-themes/numix-icon-theme-circle/numix-icon-theme-circle-21.05.31.ebuild new file mode 100644 index 000000000000..b88a914a434f --- /dev/null +++ b/x11-themes/numix-icon-theme-circle/numix-icon-theme-circle-21.05.31.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit xdg + +DESCRIPTION="Icon theme from the Numix project" +HOMEPAGE="https://github.com/numixproject" +SRC_URI="https://github.com/numixproject/numix-icon-theme-circle/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND="x11-themes/numix-icon-theme" + +src_install() { + insinto /usr/share/icons + doins -r Numix-Circle{,-Light} +} diff --git a/x11-themes/ubuntu-wallpapers/Manifest b/x11-themes/ubuntu-wallpapers/Manifest index 9b846c577c77..79733c2d5db3 100644 --- a/x11-themes/ubuntu-wallpapers/Manifest +++ b/x11-themes/ubuntu-wallpapers/Manifest @@ -1 +1 @@ -DIST ubuntu-wallpapers_20.10.3.orig.tar.gz 228597178 BLAKE2B 83cbe7ed38a6c8a7b4c1bb6ff0f3e42ce355c7d6ba46d33b7a9227ecdb5dad6dd3192d8ff4ebc414188b361719e3c48c979b87d2ba11417726ad1f46b73de332 SHA512 b66cc0b447ae66f9791369e4c76cdf3bbaf1a6f316e7bc30a1721469c227221162cf764234dc4913d1679b842eb83e3ea32a53680c512ede998ce604af2034de +DIST ubuntu-wallpapers_21.04.1.orig.tar.gz 235198866 BLAKE2B 6facece4b46071b25ca05a0af97cde3e6174b332a3adb5483ba9871651848087286eb8b46088a215daeceffa53259be0a549d1021f749911430e75ec121a98e0 SHA512 466ea79166aef82fd6893e5e5c27e5315488d4ac6f07d6f828a14f8c4d8e2af1805ebd66ae0cf36bde76dc8c4d063284c68acc8bc429668e3cc0f9a2af2eb84a diff --git a/x11-themes/ubuntu-wallpapers/ubuntu-wallpapers-20.10.3.ebuild b/x11-themes/ubuntu-wallpapers/ubuntu-wallpapers-21.04.1.ebuild similarity index 99% rename from x11-themes/ubuntu-wallpapers/ubuntu-wallpapers-20.10.3.ebuild rename to x11-themes/ubuntu-wallpapers/ubuntu-wallpapers-21.04.1.ebuild index 64464d8c2eaf..09a6e6c50205 100644 --- a/x11-themes/ubuntu-wallpapers/ubuntu-wallpapers-20.10.3.ebuild +++ b/x11-themes/ubuntu-wallpapers/ubuntu-wallpapers-21.04.1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 DESCRIPTION="Ubuntu wallpapers" HOMEPAGE="https://launchpad.net/ubuntu/+source/ubuntu-wallpapers" diff --git a/x11-wm/Manifest.gz b/x11-wm/Manifest.gz index f3915ff7eb15..d44ab47839a7 100644 Binary files a/x11-wm/Manifest.gz and b/x11-wm/Manifest.gz differ diff --git a/x11-wm/icewm/Manifest b/x11-wm/icewm/Manifest index 1054974c2311..58f22b6df0fe 100644 --- a/x11-wm/icewm/Manifest +++ b/x11-wm/icewm/Manifest @@ -1,3 +1,3 @@ DIST icewm-2.3.4.tar.lz 1708239 BLAKE2B d19a7864642795b93a8d30a63c6ba0dcac4ee9b9e3a2b9e314e115aea8200f688ed46f70268f16d09c8c7a02c4ac9653c3937d1b029bdc5b69ddd5d3fba658c9 SHA512 97d613c3dda84bc52d6b31772df5422aef84b6055b7240e90e5e1a5433d0250ad8fde7a01c4d5c3e714265fed4a3feefde3d6e6b4e1433896c16d2b4708edb1a -DIST icewm-2.4.0.tar.lz 1718250 BLAKE2B 6ed4893d11ba7957c34585ec345d2ceaf23ceecf1d87e59c73cae0d730104a1f4850744d097cd4f00eb29cbfa413b9933d840cee55c36831f7acad571929b76f SHA512 2ac7509ce64a7d7772e12220f935f2511f8a9160bc9672421d81c49dcabc90d22559558811a11697f4e7c45a23a788b4d73032d2e1201c1dc502897ba6e9c965 DIST icewm-2.5.0.tar.lz 1722504 BLAKE2B caf5d61559dd5bb25583bebeaca82e54049e2a97d8e5eeb93942908481f68614cfe55afd4041b5d60e58e732fef1694f67c5918a130bc55b252ebae67a51482a SHA512 1f59b4dbe90ca47031e5abf999cdb23a8e9ea956d5a76a0dde9b3489dec4530bf0ce72e10b337615d0bcadf04007b00a7db6f43082504bef65b109f9115d9f52 +DIST icewm-2.6.0.tar.lz 1722772 BLAKE2B 4d7055b77d88d0731517b668f525161a97b571f68cf0b2944e9b364653cb022f0b29d664ccc9539d1807005ab8954aa3ce31244911c2fafaa673ef5afeb447f1 SHA512 fe491c8c59aa530d48a20134857c787eccfeda5bd9529e063d865bd3c5f243ef41fbecba40aa06e7fa8037af89839958095debebc5d9b1acc9b5670bd0e12eb6 diff --git a/x11-wm/icewm/icewm-2.4.0.ebuild b/x11-wm/icewm/icewm-2.6.0.ebuild similarity index 100% rename from x11-wm/icewm/icewm-2.4.0.ebuild rename to x11-wm/icewm/icewm-2.6.0.ebuild diff --git a/x11-wm/mutter/mutter-40.2.1.ebuild b/x11-wm/mutter/mutter-40.2.1.ebuild index 62bbdb155ee3..e981a487b659 100644 --- a/x11-wm/mutter/mutter-40.2.1.ebuild +++ b/x11-wm/mutter/mutter-40.2.1.ebuild @@ -82,7 +82,7 @@ DEPEND="${DEPEND} x11-base/xorg-proto sysprof? ( >=dev-util/sysprof-common-3.38.0 ) " -# wayland bdepend for wayland-scanner, xorg-server for cvt utility +# wayland bdepend for wayland-scanner, and either libxcvt or xorg-server[xorg,-minimal] for the cvt binary BDEPEND=" dev-libs/wayland dev-util/gdbus-codegen @@ -90,8 +90,13 @@ BDEPEND=" >=sys-devel/gettext-0.19.8 virtual/pkgconfig test? ( app-text/docbook-xml-dtd:4.5 ) - wayland? ( >=sys-kernel/linux-headers-4.4 - x11-base/xorg-server ) + wayland? ( + >=sys-kernel/linux-headers-4.4 + || ( + x11-libs/libxcvt + x11-base/xorg-server[xorg,-minimal] + ) + ) " PATCHES=( diff --git a/xfce-base/Manifest.gz b/xfce-base/Manifest.gz index 3f419f2ac86d..476ecc37ef29 100644 Binary files a/xfce-base/Manifest.gz and b/xfce-base/Manifest.gz differ diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.16.3.ebuild b/xfce-base/xfce4-panel/xfce4-panel-4.16.3.ebuild index d4aa70bb0903..6613dfce02a7 100644 --- a/xfce-base/xfce4-panel/xfce4-panel-4.16.3.ebuild +++ b/xfce-base/xfce4-panel/xfce4-panel-4.16.3.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2" LICENSE="GPL-2+ LGPL-2.1+" SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux ~x86-solaris" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux ~x86-solaris" IUSE="+dbusmenu introspection vala" REQUIRED_USE="vala? ( introspection )" diff --git a/xfce-base/xfce4-settings/Manifest b/xfce-base/xfce4-settings/Manifest index 177ce311b071..49f4aa183aef 100644 --- a/xfce-base/xfce4-settings/Manifest +++ b/xfce-base/xfce4-settings/Manifest @@ -1,3 +1 @@ -DIST xfce4-settings-4.16.0.tar.bz2 1492754 BLAKE2B 10bfa7ce556547a4a41e1a3691ea3e41b9de57bd21760a91424cd27469917264ce00ae7324ee1d81bdf27f6b275415af932d63aeba4e80de729e42df1cbff488 SHA512 38c06e4d4c0963019c20a3afadb0dc1bde8d1b477bcff2d0253e29beb5e4a8b5ae9d058b544cec6fe2bfc2c1d44f74283c94538eda25436d58db0754f112a238 -DIST xfce4-settings-4.16.1.tar.bz2 1496053 BLAKE2B dd4176a5edc6a52c885ec80d4f5855ba7ea0ed6a70180f8b15d9754a246a097c82eeba4fb52b3ff1f551c905c21073c153fac3a4c47259710fae9cef8a95f45e SHA512 0f918ea61dfa71816366663114250ca97bb7e41f3cbd0e569b12e8271641f1b2b622ad17f9a185a30f638093328db0c6d175b7e7d03de56963b19e44eb29383c DIST xfce4-settings-4.16.2.tar.bz2 1500270 BLAKE2B 04915db8071050a841f972e54ecb3119638b0cc3d806d1e17e5ae23c90bb7819d33cfa349c1273a5493538d8c66543ba07e469e8b929c6e0479ddc9cd476e0d9 SHA512 48908318f8c20f9f0f5e83556c4a86a1c8c963f37d4627aa051f00b537a87a6575b35ddb6bc91108a41312dcf2e90d6dff8259a624ed23cc04649887828141ed diff --git a/xfce-base/xfce4-settings/xfce4-settings-4.16.0.ebuild b/xfce-base/xfce4-settings/xfce4-settings-4.16.0.ebuild deleted file mode 100644 index 319ea8937db7..000000000000 --- a/xfce-base/xfce4-settings/xfce4-settings-4.16.0.ebuild +++ /dev/null @@ -1,66 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{7..9} ) -inherit python-single-r1 xdg-utils - -DESCRIPTION="Configuration system for the Xfce desktop environment" -HOMEPAGE="https://www.xfce.org/projects/" -SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux" -IUSE="colord input_devices_libinput libcanberra libnotify upower +xklavier" -REQUIRED_USE=${PYTHON_REQUIRED_USE} - -RDEPEND=" - ${PYTHON_DEPS} - >=dev-libs/glib-2.50 - media-libs/fontconfig - >=x11-libs/gtk+-3.20:3 - x11-libs/libX11 - >=x11-libs/libXcursor-1.1 - >=x11-libs/libXi-1.3 - >=x11-libs/libXrandr-1.2 - >=xfce-base/garcon-0.2:= - >=xfce-base/exo-4.15.1:= - >=xfce-base/libxfce4ui-4.15.1:= - >=xfce-base/libxfce4util-4.15.2:= - >=xfce-base/xfconf-4.13:= - colord? ( x11-misc/colord:= ) - libcanberra? ( >=media-libs/libcanberra-0.25[sound] ) - input_devices_libinput? ( x11-drivers/xf86-input-libinput ) - libnotify? ( >=x11-libs/libnotify-0.7 ) - upower? ( >=sys-power/upower-0.9.23 ) - xklavier? ( >=x11-libs/libxklavier-5 ) - !