diff --git a/Manifest.files.gz b/Manifest.files.gz index ad5284494520..6ccea2f72e59 100644 Binary files a/Manifest.files.gz and b/Manifest.files.gz differ diff --git a/app-admin/Manifest.gz b/app-admin/Manifest.gz index 292695e55603..dcc3ba9e240a 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 e58991434bf1..c6fe48cba10e 100644 --- a/app-admin/awscli/Manifest +++ b/app-admin/awscli/Manifest @@ -8,3 +8,4 @@ DIST awscli-1.22.93.tar.gz 2187925 BLAKE2B c4b13aada04aea6b320c9b93c83cce11a4081 DIST awscli-1.22.94.tar.gz 2194607 BLAKE2B 985ce46ac8c3a12abc983fda4d424dbfa5c5da26c5552af9895079bc1aaa925e7f0c35f469f6b7f917007e162ce340adc68e4ae1c79f72c673bdf965ee550cfa SHA512 d34ad97d50de64591f0239de94b81d2ab77f8f4e284a356abe684bcd4c4d8f4a2d5e47d67e7b59322898d4f5b3503991eb550a424f894001aec547fe07e58923 DIST awscli-1.22.96.tar.gz 2195648 BLAKE2B 57793e65d63151b150015ef90784140a9d473618849500d81bcb94582c5bc7a66b52337148b3f5c4c6b7196d2ab302fa0592dda3d83f2ff3d4fe845d687d18cf SHA512 71fb2bbc3586868566996cb807d01e582d181d96e52754c7052fc93040124ac7a73813f10fb1b660458772155aaa4f0a4294a583d429717e0bf1f6b785f5b963 DIST awscli-1.22.97.tar.gz 2193983 BLAKE2B f2e0efbb2332d4c405d5e97ba35426424d932a013114492890018d3419349e23aa3c8301f6c29bd8eaa662145b07ceaa30c22e41aad38012ca307400075600ca SHA512 00426aab19fcdf3241850b09d4d5dd6a1460e3ec9baa37cf203068dc6ca0fddd4fe3de7e4e93e8e6539608351777e00692bb8b9d2c362ceeacc55071cd53f422 +DIST awscli-1.22.98.tar.gz 2195040 BLAKE2B 08af6d73a9a719d358bbe60f0d7194ff80c2574d9ca4fb5f3ba0d050a63773aa97077784434f89d502aabe6b67c2aa328e9d291c0204038789f59fd78b8b4965 SHA512 2522e6b0f1b8fca8974ab06d69863b2a286c42e4d0b8939c6580b945beae1bc9d74f65f1de714c46ef4bb1ad154d4cbf37e88b05458961cd6bf6953474358b60 diff --git a/app-admin/awscli/awscli-1.22.98.ebuild b/app-admin/awscli/awscli-1.22.98.ebuild new file mode 100644 index 000000000000..2040c8cb81d2 --- /dev/null +++ b/app-admin/awscli/awscli-1.22.98.ebuild @@ -0,0 +1,66 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..10} ) + +inherit bash-completion-r1 distutils-r1 multiprocessing + +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" + +# awscli 1.22.55 → botocore 1.24.0 +# so botocore is x.(y+2).(z-55) +BOTOCORE_PV="$(ver_cut 1).$(( $(ver_cut 2) + 2)).$(( $(ver_cut 3-) - 55))" +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/pytest-xdist[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest + +src_prepare() { + # do not rely on bundled deps in botocore (sic!) + find -name '*.py' -exec sed -i \ + -e 's:from botocore[.]vendored import:import:' \ + -e 's:from botocore[.]vendored[.]:from :' \ + {} + || die + # strip overzealous upper bounds on requirements + sed -i -e 's:,<[0-9.]*::' -e 's:==:>=:' setup.py || die + distutils-r1_src_prepare +} + +python_test() { + # integration tests require AWS credentials and Internet access + epytest tests/{functional,unit} \ + -n "$(makeopts_jobs "${MAKEOPTS}" "$(get_nproc)")" +} + +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-backup/Manifest.gz b/app-backup/Manifest.gz index 9d0699753e02..413e73402f60 100644 Binary files a/app-backup/Manifest.gz and b/app-backup/Manifest.gz differ diff --git a/app-backup/borgmatic/borgmatic-1.5.24.ebuild b/app-backup/borgmatic/borgmatic-1.5.24.ebuild index f48f145dc769..4b88643aa9ca 100644 --- a/app-backup/borgmatic/borgmatic-1.5.24.ebuild +++ b/app-backup/borgmatic/borgmatic-1.5.24.ebuild @@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="GPL-3" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~riscv" +KEYWORDS="amd64 ~arm ~arm64 ~riscv" # borg is called as an external tool, hence no pythonic stuff RDEPEND="app-backup/borgbackup diff --git a/app-emacs/Manifest.gz b/app-emacs/Manifest.gz index bfd22154fcf1..89833b9b28a8 100644 Binary files a/app-emacs/Manifest.gz and b/app-emacs/Manifest.gz differ diff --git a/app-emacs/buttercup/buttercup-1.24.ebuild b/app-emacs/buttercup/buttercup-1.24.ebuild index dd3441cae617..a10a06a28765 100644 --- a/app-emacs/buttercup/buttercup-1.24.ebuild +++ b/app-emacs/buttercup/buttercup-1.24.ebuild @@ -14,7 +14,7 @@ S="${WORKDIR}"/emacs-buttercup-${PV} LICENSE="GPL-3+" SLOT="0" -KEYWORDS="~amd64" +KEYWORDS="~amd64 ~x86" # https://github.com/jorgenschaefer/emacs-buttercup/pull/210 PATCHES=( "${FILESDIR}"/${PN}-1.24-properties-equal.patch ) diff --git a/app-emacs/noflet/noflet-0.0.15_p20141102.ebuild b/app-emacs/noflet/noflet-0.0.15_p20141102-r1.ebuild similarity index 92% rename from app-emacs/noflet/noflet-0.0.15_p20141102.ebuild rename to app-emacs/noflet/noflet-0.0.15_p20141102-r1.ebuild index 07221b00caff..461c04cef26d 100644 --- a/app-emacs/noflet/noflet-0.0.15_p20141102.ebuild +++ b/app-emacs/noflet/noflet-0.0.15_p20141102-r1.ebuild @@ -17,6 +17,9 @@ LICENSE="GPL-3+" SLOT="0" KEYWORDS="~amd64 ~x86" +RDEPEND="app-emacs/dash" +BDEPEND="${RDEPEND}" + DOCS=( README.creole ) PATCHES=( "${FILESDIR}"/${PN}-fix-requires.patch ) diff --git a/dev-java/Manifest.gz b/dev-java/Manifest.gz index 68e403487722..adb323ab3d59 100644 Binary files a/dev-java/Manifest.gz and b/dev-java/Manifest.gz differ diff --git a/dev-java/antlr-tool/antlr-tool-4.9.3.ebuild b/dev-java/antlr-tool/antlr-tool-4.9.3.ebuild index 835e4633d53d..3d4f0e5b9450 100644 --- a/dev-java/antlr-tool/antlr-tool-4.9.3.ebuild +++ b/dev-java/antlr-tool/antlr-tool-4.9.3.ebuild @@ -82,7 +82,7 @@ src_prepare() { } src_compile() { - ebegin "Generating ANTLR 3 parsers" + einfo "Generating ANTLR 3 parsers" "${MY_JAVA}" -cp "$(java-pkg_getjars \ --build-only --with-dependencies antlr-tool-3.5)" \ org.antlr.Tool $(find "${JAVA_SRC_DIR[@]}" -name "*.g") || @@ -109,7 +109,7 @@ src_test() { CP+=":${res_dir}" done - ebegin "Generating ANTLR 4 parsers for tests" + einfo "Generating ANTLR 4 parsers for tests" pushd runtime-testsuite/test > /dev/null || die "Failed to enter runtime test source directory" g4_files=( $(find * -name "*.g4") ) diff --git a/dev-java/fontbox/fontbox-1.7.1-r2.ebuild b/dev-java/fontbox/fontbox-1.7.1-r2.ebuild index 0f32b29e1928..6125efbc8ddb 100644 --- a/dev-java/fontbox/fontbox-1.7.1-r2.ebuild +++ b/dev-java/fontbox/fontbox-1.7.1-r2.ebuild @@ -42,6 +42,14 @@ src_prepare() { } src_test() { + # junit.framework.AssertionFailedError: + # No tests found in org.apache.fontbox.cff.Type1CharStringTest + rm src/test/java/org/apache/fontbox/cff/Type1CharStringTest.java || die + + # junit.framework.AssertionFailedError: + # No tests found in org.apache.fontbox.cff.Type1FontUtilTest + rm src/test/java/org/apache/fontbox/cff/Type1FontUtilTest.java || die + java-pkg-2_src_test } diff --git a/dev-java/freehep-graphicsbase/Manifest b/dev-java/freehep-graphicsbase/Manifest deleted file mode 100644 index 9ab19829d002..000000000000 --- a/dev-java/freehep-graphicsbase/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST freehep-vectorgraphics-2.4.tar.gz 4118379 BLAKE2B c8a5840ebab43398a6f87f97855a38f843b0e05267f5446b5f22a0c0124c98717c00801fe93ef3b541b2c53d07176ab1319a27ad26ed177b6dded11e3fa2e7bb SHA512 b5cf083cc6951e7c4b438d5e648f61ca20b23e02163a8cfc4669beaaec2fa9e33338b0ba6875bfe4a3864ac48f9774acfedc2a3b2f59a7488ef99a4817e39382 diff --git a/dev-java/freehep-graphicsbase/freehep-graphicsbase-2.4.ebuild b/dev-java/freehep-graphicsbase/freehep-graphicsbase-2.4.ebuild deleted file mode 100644 index 75ea8d477b41..000000000000 --- a/dev-java/freehep-graphicsbase/freehep-graphicsbase-2.4.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -MY_PN="freehep-vectorgraphics" -MY_P="${MY_PN}-${PV}" -JAVA_PKG_IUSE="doc source" - -inherit java-pkg-2 java-pkg-simple - -DESCRIPTION="High Energy Physics Java library - FreeHEP Graphics Base Library" -HOMEPAGE="http://java.freehep.org/" -SRC_URI="https://github.com/freehep/${MY_PN}/archive/${MY_P}.tar.gz" -LICENSE="Apache-2.0 LGPL-2.1" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="test" -RESTRICT="!test? ( test )" - -CDEPEND="dev-java/freehep-io:0 - dev-java/junit:4" - -DEPEND="${CDEPEND} - >=virtual/jdk-1.7" - -RDEPEND="${CDEPEND} - >=virtual/jre-1.7" - -S="${WORKDIR}/${MY_PN}-${MY_P}/${PN}" -JAVA_SRC_DIR="src/main/java" -JAVA_GENTOO_CLASSPATH="freehep-io,junit-4" - -src_compile() { - java-pkg-simple_src_compile - java-pkg_addres ${PN}.jar src/main/resources -} - -src_test() { - local DIR=src/test/java - local CP="${DIR}:${PN}.jar:$(java-pkg_getjars ${JAVA_GENTOO_CLASSPATH})" - local TESTS=$(find ${DIR} -name "*Test.java" ! -name "ExportFileTypeTest.java") - TESTS="${TESTS//src\/test\/java\/}" - TESTS="${TESTS//.java}" - TESTS="${TESTS//\//.}" - - ejavac -cp "${CP}" -d ${DIR} $(find ${DIR} -name "*.java") - ejunit4 -classpath "${CP}" ${TESTS} -} diff --git a/dev-java/freehep-graphicsbase/metadata.xml b/dev-java/freehep-graphicsbase/metadata.xml deleted file mode 100644 index 496b6e6faccc..000000000000 --- a/dev-java/freehep-graphicsbase/metadata.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - java@gentoo.org - Java - - - freehep/freehep-vectorgraphics - - diff --git a/dev-java/freehep-io/Manifest b/dev-java/freehep-io/Manifest deleted file mode 100644 index ec866c6b4d7c..000000000000 --- a/dev-java/freehep-io/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST freehep-io-2.2.2.tar.gz 76935 BLAKE2B 11468effa883c44f4376bac7282881942209cd5769545083bd761489f31eceec96c909d452f2a056172c8fee65917895acb34c18583d771a258883e4e12c3906 SHA512 1cc7cab3d9648b119aa8c637c84cd985adc0f9dd2cdd153021500831325d719ef5fa41d8964ccbeed3af95b87e09c4886597c0ede1370a209f6807932636b0ee diff --git a/dev-java/freehep-io/freehep-io-2.2.2.ebuild b/dev-java/freehep-io/freehep-io-2.2.2.ebuild deleted file mode 100644 index 12bf7791effb..000000000000 --- a/dev-java/freehep-io/freehep-io-2.2.2.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -JAVA_PKG_IUSE="doc source" - -inherit java-pkg-2 java-pkg-simple - -DESCRIPTION="High Energy Physics Java library - FreeHEP I/O Library" -HOMEPAGE="http://java.freehep.org/" -SRC_URI="https://github.com/freehep/${PN}/archive/${P}.tar.gz" -LICENSE="Apache-2.0 LGPL-2.1" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="test" -RESTRICT="!test? ( test )" - -DEPEND=">=virtual/jdk-1.7 - test? ( dev-java/junit:4 )" - -RDEPEND=">=virtual/jre-1.7" - -S="${WORKDIR}/${PN}-${P}" -JAVA_SRC_DIR="src/main/java" - -src_test() { - local DIR=src/test/java - local CP="${DIR}:${PN}.jar:$(java-pkg_getjars junit-4)" - local TESTS=$(find ${DIR} -name "*Test.java" ! -name "Abstract*") - TESTS="${TESTS//src\/test\/java\/}" - TESTS="${TESTS//.java}" - TESTS="${TESTS//\//.}" - - ejavac -cp "${CP}" -d ${DIR} $(find ${DIR} -name "*.java") - ejunit4 -classpath "${CP}" ${TESTS} -} diff --git a/dev-java/freehep-io/metadata.xml b/dev-java/freehep-io/metadata.xml deleted file mode 100644 index ed1a26e8a4fd..000000000000 --- a/dev-java/freehep-io/metadata.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - java@gentoo.org - Java - - - freehep/freehep-io - - diff --git a/dev-java/glassfish-interceptor-api/Manifest b/dev-java/glassfish-interceptor-api/Manifest deleted file mode 100644 index 2a6533b9feaa..000000000000 --- a/dev-java/glassfish-interceptor-api/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST glassfish-interceptor-api-3.1.tar.xz 14600 BLAKE2B ef46f503a0a44650750f9cc53b51d02219779e2b1891c46179e07566a7ed359cb8ac455d2819bd22c5af7a78f33861a32e26c2cf977ebdac46f172e144c536dd SHA512 674f53d53afb63799c579b0ec177a009178315fb62f027441da14ceb5d6fa07408840ad82aa8fa7be31b53d43b53ff28ffb1617d644c989bc4ac17ce5e626563 diff --git a/dev-java/glassfish-interceptor-api/files/glassfish-interceptor-api-3.1-build.xml.patch b/dev-java/glassfish-interceptor-api/files/glassfish-interceptor-api-3.1-build.xml.patch deleted file mode 100644 index 1a912da629c2..000000000000 --- a/dev-java/glassfish-interceptor-api/files/glassfish-interceptor-api-3.1-build.xml.patch +++ /dev/null @@ -1,10 +0,0 @@ ---- a/maven-build.xml -+++ b/maven-build.xml -@@ -166,7 +166,6 @@ - - diff --git a/dev-java/glassfish-interceptor-api/glassfish-interceptor-api-3.1.ebuild b/dev-java/glassfish-interceptor-api/glassfish-interceptor-api-3.1.ebuild deleted file mode 100644 index 33ed4ef1f8d2..000000000000 --- a/dev-java/glassfish-interceptor-api/glassfish-interceptor-api-3.1.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" - -JAVA_PKG_IUSE="doc source" - -inherit java-pkg-2 java-ant-2 - -TOMEE_PV="1.5.2" - -DESCRIPTION="Project GlassFish Interceptor API" -HOMEPAGE="https://glassfish.java.net/" -SRC_URI="https://dev.gentoo.org/~tomwij/files/dist/${P}.tar.xz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 x86 ~amd64-linux" - -CDEPEND="" - -DEPEND=">=virtual/jdk-1.7 - ${CDEPEND}" - -RDEPEND=">=virtual/jre-1.7 - ${CDEPEND}" - -JAVA_ANT_REWRITE_CLASSPATH="true" -EANT_GENTOO_CLASSPATH="" -JAVA_PKG_BSFIX_NAME="maven-build.xml" - -java_prepare() { - epatch "${FILESDIR}"/${P}-build.xml.patch -} - -src_install() { - java-pkg_newjar target/javax.interceptor-api-${PV}.jar - - use doc && java-pkg_dojavadoc target/site/apidocs - use source && java-pkg_dosrc src/main/java/javax -} diff --git a/dev-java/glassfish-interceptor-api/metadata.xml b/dev-java/glassfish-interceptor-api/metadata.xml deleted file mode 100644 index 6021501589e0..000000000000 --- a/dev-java/glassfish-interceptor-api/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - java@gentoo.org - Java - - diff --git a/dev-java/gnu-classpath/Manifest b/dev-java/gnu-classpath/Manifest deleted file mode 100644 index ffb9d0662305..000000000000 --- a/dev-java/gnu-classpath/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST classpath-0.98.tar.gz 11021342 BLAKE2B 8bd0c55153569b34dfde767233ed48f6ebf0f507d34d991a410b0e40a2ddfbd20d4568697265f8544823337f568a916288e92c096b39fcd5c67afc82ddfc3cc3 SHA512 0d98f87cd78c166d566ecd8d0372f2d6cdf422e8c4c806ca01d3a77dafbdd80ee936de78a2c5d4226174027efdc053fe92669514bdd8acb3290a7b3ec002d31f diff --git a/dev-java/gnu-classpath/files/gnu-classpath-0.98-freetype-2.5.3-support.patch b/dev-java/gnu-classpath/files/gnu-classpath-0.98-freetype-2.5.3-support.patch deleted file mode 100644 index 42828e2a4b8f..000000000000 --- a/dev-java/gnu-classpath/files/gnu-classpath-0.98-freetype-2.5.3-support.patch +++ /dev/null @@ -1,32 +0,0 @@ ---- ./native/jni/gtk-peer/gnu_java_awt_peer_gtk_FreetypeGlyphVector.c.orig 2014-03-18 10:35:50.904133661 +0100 -+++ ./native/jni/gtk-peer/gnu_java_awt_peer_gtk_FreetypeGlyphVector.c 2014-03-18 10:37:03.808131298 +0100 -@@ -42,8 +42,9 @@ - #include - #include - #include --#include --#include -+#include -+#include FT_GLYPH_H -+#include FT_OUTLINE_H - #include "jcl.h" - #include "gdkfont.h" - #include "gnu_java_awt_peer_gtk_FreetypeGlyphVector.h" ---- ./native/jni/gtk-peer/gnu_java_awt_peer_gtk_GdkFontPeer.c.orig 2014-03-18 10:37:12.048131031 +0100 -+++ ./native/jni/gtk-peer/gnu_java_awt_peer_gtk_GdkFontPeer.c 2014-03-18 10:37:58.416129528 +0100 -@@ -39,10 +39,11 @@ - #include - #include - #include --#include --#include --#include --#include -+#include -+#include FT_GLYPH_H -+#include FT_OUTLINE_H -+#include FT_TYPES_H -+#include FT_TRUETYPE_TABLES_H - #include "gdkfont.h" - #include "gtkpeer.h" - #include "gnu_java_awt_peer_gtk_GdkFontPeer.h" \ No newline at end of file diff --git a/dev-java/gnu-classpath/gnu-classpath-0.98-r6.ebuild b/dev-java/gnu-classpath/gnu-classpath-0.98-r6.ebuild deleted file mode 100644 index 618fe63fb741..000000000000 --- a/dev-java/gnu-classpath/gnu-classpath-0.98-r6.ebuild +++ /dev/null @@ -1,115 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit epatch java-pkg-2 multilib - -MY_P=${P/gnu-/} -DESCRIPTION="Free core class libraries for use with Java VMs and compilers" -SRC_URI="mirror://gnu/classpath/${MY_P}.tar.gz" -HOMEPAGE="https://www.gnu.org/software/classpath" - -LICENSE="GPL-2-with-linking-exception" -SLOT="0.98" -KEYWORDS="amd64 ppc64 x86 ~amd64-linux ~x86-linux" - -IUSE="alsa debug doc dssi examples gconf +gjdoc gmp gtk xml" -REQUIRED_USE="doc? ( gjdoc )" - -RDEPEND="alsa? ( media-libs/alsa-lib ) - dssi? ( >=media-libs/dssi-0.9 ) - gconf? ( gnome-base/gconf:2= ) - gjdoc? ( >=dev-java/antlr-2.7.7-r7:0 ) - gmp? ( >=dev-libs/gmp-4.2.4:0= ) - gtk? ( - >=x11-libs/gtk+-2.8:2= - dev-libs/glib:2= - media-libs/freetype:2= - >=x11-libs/cairo-1.1.9:= - x11-libs/libICE - x11-libs/libSM - x11-libs/libX11 - x11-libs/libXrandr - x11-libs/libXrender - x11-libs/libXtst - x11-libs/pango - ) - xml? ( >=dev-libs/libxml2-2.6.8:2= >=dev-libs/libxslt-1.1.11 )" - -DEPEND="app-arch/zip - gtk? ( - x11-base/xorg-proto - x11-libs/libXrender - >=x11-libs/libXtst-1.1.0 - ) - >=virtual/jdk-1.5 - ${RDEPEND}" - -RDEPEND=">=virtual/jre-1.5 - ${RDEPEND}" - -S=${WORKDIR}/${MY_P} - -java_prepare() { - epatch "${FILESDIR}"/${P}-freetype-2.5.3-support.patch -} - -src_configure() { - # don't use econf, because it ends up putting things under /usr, which may - # collide with other slots of classpath - local myconf - if use gjdoc; then - local antlr=$(java-pkg_getjar antlr antlr.jar) - myconf="--with-antlr-jar=${antlr}" - fi - - if use doc; then - # Avoid a cyclic dependency on gjdoc by building gjdoc before - # the docs. First we need to trick configure. Hack alert! - echo -e "#!/bin/sh\necho gjdoc 0.8" > tools/gjdoc.build || die - chmod 755 tools/gjdoc.build || die - fi - - ANTLR= ./configure \ - $(use_enable alsa) \ - $(use_enable debug ) \ - $(use_enable examples) \ - $(use_enable gconf gconf-peer) \ - $(use_enable gjdoc) \ - $(use_enable gmp) \ - $(use_enable gtk gtk-peer) \ - $(use_enable xml xmlj) \ - $(use_enable dssi ) \ - $(use_with doc gjdoc "${S}/tools/gjdoc.build") \ - --enable-jni \ - --disable-plugin \ - --host=${CHOST} \ - --prefix="${EPREFIX}"/usr/${PN}-${SLOT} \ - --disable-Werror \ - ${myconf} || die "configure failed" -} - -src_compile() { - if use doc; then - # Build gjdoc before the docs. We need to hack the real gjdoc - # script to run from the build directory instead. - sed -r "s:^(tools_dir=).*:\1${S}/tools:" tools/gjdoc > tools/gjdoc.build || die - emake -C lib - emake -C tools - fi - - default -} - -src_install() { - emake DESTDIR="${D}" install - dodoc AUTHORS BUGS ChangeLog* HACKING NEWS README THANKYOU TODO - java-pkg_regjar /usr/${P}/share/classpath/glibj.zip - - if use doc; then - # Strangely the Makefile doesn't install these. - insinto /usr/${PN}-${SLOT}/share/classpath/api - doins -r doc/api/html/* - fi -} diff --git a/dev-java/gnu-classpath/metadata.xml b/dev-java/gnu-classpath/metadata.xml deleted file mode 100644 index 9f8cf8c4062b..000000000000 --- a/dev-java/gnu-classpath/metadata.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - java@gentoo.org - Java - - - Build with ALSA javax.sound.midi provider - Build with DSSI javax.sound.midi provider - Build with GConf preferences backend - Build with GMP backend for java.math.BigInteger - Build GJDoc, a documentation generator - Build with Gtk+ AWT peers - Build with native XML backend - - diff --git a/dev-java/gwt/gwt-2.9.0-r2.ebuild b/dev-java/gwt/gwt-2.9.0-r3.ebuild similarity index 94% rename from dev-java/gwt/gwt-2.9.0-r2.ebuild rename to dev-java/gwt/gwt-2.9.0-r3.ebuild index dee867ac74da..a86cdb15be16 100644 --- a/dev-java/gwt/gwt-2.9.0-r2.ebuild +++ b/dev-java/gwt/gwt-2.9.0-r3.ebuild @@ -1,17 +1,17 @@ # Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 JAVA_PKG_IUSE="source" -inherit java-pkg-2 java-ant-2 java-utils-2 +inherit java-pkg-2 java-ant-2 GWT_TOOLS_COMMIT="194772ed94078802d8030136796de344eb1fdbe1" GWT_TOOLS_PN="tools" DESCRIPTION="Google Web Toolkit library" -HOMEPAGE="http://www.gwtproject.org/" +HOMEPAGE="https://www.gwtproject.org/" SRC_URI="https://github.com/gwtproject/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz https://github.com/gwtproject/${GWT_TOOLS_PN}/archive/${GWT_TOOLS_COMMIT}.tar.gz -> ${PN}-${GWT_TOOLS_PN}-${GWT_TOOLS_COMMIT}.tar.gz" # While the test suite does compile and does execute with an exit status of 0, @@ -24,7 +24,7 @@ LICENSE="Apache-2.0" KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" CDEPEND=" - dev-java/guava:20 + dev-java/guava:0 dev-java/rhino:1.6 dev-java/asm:9 dev-java/eclipse-ecj:4.15 @@ -43,7 +43,7 @@ JAVA_ANT_REWRITE_CLASSPATH="yes" EANT_BUILD_TARGET="build" EANT_GENTOO_CLASSPATH=" asm-9 - guava-20 + guava rhino-1.6 eclipse-ecj-4.15 validation-api-1.0 diff --git a/dev-java/invokebinder/Manifest b/dev-java/invokebinder/Manifest deleted file mode 100644 index d0c88ffac6ee..000000000000 --- a/dev-java/invokebinder/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST invokebinder-1.6.tar.gz 36027 BLAKE2B b1a676063690500ae0a2c39eed7828d115074fd18ac88338e6078413d837f91e5a1a9a5beb2da976f82315fc6fb63de6f3df47e82c2e7589d4689986d78e3fa1 SHA512 cacdd6dd5fe74bbba940be1b3d53b183adc247b74e89cc0784805b2ad2c63d12ca1abe20bacf0a90ea50db7574e43d4ac52b5a46e61912e5153e2ac2f6bc559a diff --git a/dev-java/invokebinder/files/invokebinder-1.6-build.xml b/dev-java/invokebinder/files/invokebinder-1.6-build.xml deleted file mode 100644 index 55c846cf0427..000000000000 --- a/dev-java/invokebinder/files/invokebinder-1.6-build.xml +++ /dev/null @@ -1,230 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - =================================== WARNING =================================== - JUnit is not present in the test classpath or your $ANT_HOME/lib directory. Tests not executed. - =============================================================================== - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/dev-java/invokebinder/invokebinder-1.6.ebuild b/dev-java/invokebinder/invokebinder-1.6.ebuild deleted file mode 100644 index 6eafa55d1d55..000000000000 --- a/dev-java/invokebinder/invokebinder-1.6.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" - -JAVA_PKG_IUSE="doc source test" - -inherit java-pkg-2 java-ant-2 - -DESCRIPTION="Provide a friendly DSL for binding method handles" -HOMEPAGE="https://github.com/headius/invokebinder" -SRC_URI="https://github.com/headius/${PN}/archive/${P}.tar.gz" - -SLOT="0" -KEYWORDS="amd64 x86" -LICENSE="Apache-2.0" - -S="${WORKDIR}/${PN}-${P}" - -DEPEND=">=virtual/jdk-1.7 - test? ( - dev-java/ant-junit:0 - )" -RDEPEND=">=virtual/jre-1.7" - -JAVA_ANT_REWRITE_CLASSPATH="yes" -EANT_TEST_TARGET="test" - -java_prepare() { - cp "${FILESDIR}"/${P}-build.xml build.xml || die -} - -src_test() { - java-pkg-2_src_test -} - -src_install() { - java-pkg_newjar "target/${P}.jar" "${PN}.jar" - use source && java-pkg_dosrc src/main/java/com - if use doc; then - java-pkg_dojavadoc target/site/apidocs - dodoc README.markdown - fi -} diff --git a/dev-java/invokebinder/metadata.xml b/dev-java/invokebinder/metadata.xml deleted file mode 100644 index d097145e4f4e..000000000000 --- a/dev-java/invokebinder/metadata.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - java@gentoo.org - Java - - - headius/invokebinder - - diff --git a/dev-java/java-apicheck/Manifest b/dev-java/java-apicheck/Manifest deleted file mode 100644 index 99c6c70cb769..000000000000 --- a/dev-java/java-apicheck/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST java-apicheck-0_p20150907.tar.gz 1550 BLAKE2B 75d53337c6ead56927897ec26f7c475296564e737eb91c66f330aefed8f0675b27c23cbbf34a27d15e42e3e3a74ac078465b7dd6030faf1fe3d09cd1f45d7255 SHA512 68a3a5443ea26840a526c2e53451e47e441f6ec15b2ddffef8f5d63a50f1129d18cd65506ecfe0bbf3f9829514697648eff8f64e558f0bd5376b0bf2add70b70 diff --git a/dev-java/java-apicheck/java-apicheck-0_p20150907.ebuild b/dev-java/java-apicheck/java-apicheck-0_p20150907.ebuild deleted file mode 100644 index 2e81654149b2..000000000000 --- a/dev-java/java-apicheck/java-apicheck-0_p20150907.ebuild +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" - -DESCRIPTION="Command line tool to check Java packages for API compatibility" -HOMEPAGE="https://github.com/gentoo/java-apicheck/" -SRC_URI="https://github.com/gentoo/java-apicheck/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="" - -RDEPEND=" - dev-java/japitools - dev-java/java-config - " - -src_install() { - dobin ${PN} -} diff --git a/dev-java/java-apicheck/metadata.xml b/dev-java/java-apicheck/metadata.xml deleted file mode 100644 index 02873abc63b1..000000000000 --- a/dev-java/java-apicheck/metadata.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - java@gentoo.org - Java - - - gentoo/java-apicheck - - diff --git a/dev-java/jboss-marshalling-river/Manifest b/dev-java/jboss-marshalling-river/Manifest deleted file mode 100644 index 7dcc17fff70c..000000000000 --- a/dev-java/jboss-marshalling-river/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST jboss-marshalling-river-1.3.0.CR9-sources.jar 45310 BLAKE2B 87eced675dbdb0d645ae4f3321954142922053008a650a9604b32c5e850c280c16d941997874c420e48e894e9f63c6441e6b3cd629fcfe7ad31ae13abb6f41e7 SHA512 0ff0ba48f8e4c1e76d378843aeae4793992fc200cf6d5aeeeec7341ddcd6bc3c93915ccb2bddbf3996661ff21e3a992e232c0721ec4469c5347811afabec4351 diff --git a/dev-java/jboss-marshalling-river/jboss-marshalling-river-1.3.0.ebuild b/dev-java/jboss-marshalling-river/jboss-marshalling-river-1.3.0.ebuild deleted file mode 100644 index 89c496f77cee..000000000000 --- a/dev-java/jboss-marshalling-river/jboss-marshalling-river-1.3.0.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" - -JAVA_PKG_IUSE="doc source" - -inherit java-pkg-2 java-pkg-simple - -DESCRIPTION="River protocol implementation for JBoss Marshalling" -HOMEPAGE="https://jbossmarshalling.jboss.org/" -SRC_URI="https://download.jboss.org/jbossmarshalling/${P}.CR9-sources.jar" -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~amd64" - -CDEPEND="~dev-java/jboss-marshalling-${PV}:0" - -RDEPEND="${CDEPEND} - >=virtual/jre-1.7" - -DEPEND="${CDEPEND} - >=virtual/jdk-1.7 - app-arch/unzip" - -JAVA_GENTOO_CLASSPATH="jboss-marshalling" - -src_compile() { - java-pkg-simple_src_compile - java-pkg_addres ${PN}.jar . -} diff --git a/dev-java/jboss-marshalling-river/metadata.xml b/dev-java/jboss-marshalling-river/metadata.xml deleted file mode 100644 index 6021501589e0..000000000000 --- a/dev-java/jboss-marshalling-river/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - java@gentoo.org - Java - - diff --git a/dev-java/jboss-marshalling-serial/Manifest b/dev-java/jboss-marshalling-serial/Manifest deleted file mode 100644 index 61818ebafdfa..000000000000 --- a/dev-java/jboss-marshalling-serial/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST jboss-marshalling-serial-1.3.0.CR9-sources.jar 33627 BLAKE2B 76a6d6656c456ef5b4a4acbb659f52280d63b48aea46ff4fd190f8a9b5852157e37ce511a1af87007b04f03401082dd5e9a0d540ba27ac02567e7e50f04ebc33 SHA512 23343b43d2d81fb3f9d22e82d04e3c215cf0357fe369ac316a602b4599f84602bdd38fd50c8378050b1d031db2ad31405fc38bc93ef7a9327d63a29dd73ee144 diff --git a/dev-java/jboss-marshalling-serial/jboss-marshalling-serial-1.3.0.ebuild b/dev-java/jboss-marshalling-serial/jboss-marshalling-serial-1.3.0.ebuild deleted file mode 100644 index d62b7906fcb7..000000000000 --- a/dev-java/jboss-marshalling-serial/jboss-marshalling-serial-1.3.0.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" - -JAVA_PKG_IUSE="doc source" - -inherit java-pkg-2 java-pkg-simple - -DESCRIPTION="Serial protocol implementation for JBoss Marshalling" -HOMEPAGE="https://jbossmarshalling.jboss.org/" -SRC_URI="https://download.jboss.org/jbossmarshalling/${P}.CR9-sources.jar" -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~amd64" - -CDEPEND="~dev-java/jboss-marshalling-${PV}:0" - -RDEPEND="${CDEPEND} - >=virtual/jre-1.7" - -DEPEND="${CDEPEND} - >=virtual/jdk-1.7 - app-arch/unzip" - -JAVA_GENTOO_CLASSPATH="jboss-marshalling" - -src_compile() { - java-pkg-simple_src_compile - java-pkg_addres ${PN}.jar . -} diff --git a/dev-java/jboss-marshalling-serial/metadata.xml b/dev-java/jboss-marshalling-serial/metadata.xml deleted file mode 100644 index 6021501589e0..000000000000 --- a/dev-java/jboss-marshalling-serial/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - java@gentoo.org - Java - - diff --git a/dev-java/reflections/Manifest b/dev-java/reflections/Manifest index 370bec9b0906..accc0725d1d8 100644 --- a/dev-java/reflections/Manifest +++ b/dev-java/reflections/Manifest @@ -1 +1,2 @@ DIST reflections-0.9.10-sources.jar 53049 BLAKE2B 23491098dc648206161d983148bf11a1c4523df0593c903f9dbf03672b481d85aabaed7733a5d829b7f334e51d53dadde3fd439e62f9873ceb11f49f40a2cfef SHA512 940b80ed43aa900177e6c3551980eafe10f7ea16a1e5c0d24fc8c1e29f1e0155aae83e24f60af10f9743449ed38d2d3b211f3668fafbd95a6a2cb9c5581f56bf +DIST reflections-0.9.12.tar.gz 48235 BLAKE2B c82bd69f4433d8db738fcd32dd7fbf643984917622853b1886e15b906a91579de0193daf0fc1a9642c12d13de8236acf3e1f1409a18713b37c6e705a3cae34bd SHA512 8f8c7603ab73b599c6e2160f42b61c4e0eedef9981c06124bba0437d6636e7bf8a916784e266754562dc17f4d3ccf8df6c9ba707d1a7c38d97dc5eea9138064f diff --git a/dev-java/reflections/reflections-0.9.12.ebuild b/dev-java/reflections/reflections-0.9.12.ebuild new file mode 100644 index 000000000000..81b492eaeeb4 --- /dev/null +++ b/dev-java/reflections/reflections-0.9.12.ebuild @@ -0,0 +1,99 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +# Skeleton command: +# java-ebuilder --generate-ebuild --workdir . --pom pom.xml --download-uri https://github.com/ronmamo/reflections/archive/0.9.12.tar.gz --slot 0 --keywords "~amd64 ~arm ~arm64 ~ppc64 ~x86" --ebuild reflections-0.9.12.ebuild + +EAPI=8 + +JAVA_PKG_IUSE="doc source test" +MAVEN_ID="org.reflections:reflections:0.9.12" +JAVA_TESTING_FRAMEWORKS="junit-4" + +inherit java-pkg-2 java-pkg-simple + +DESCRIPTION="Reflections - a Java runtime metadata analysis" +HOMEPAGE="https://github.com/ronmamo/reflections" +SRC_URI="https://github.com/ronmamo/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="WTFPL-2 BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" + +# Common dependencies +# POM: pom.xml +# com.google.code.gson:gson:2.8.6 -> >=dev-java/gson-2.8.8:2.6 +# org.dom4j:dom4j:2.1.1 -> >=dev-java/dom4j-2.1.3:1 +# org.javassist:javassist:3.26.0-GA -> !!!suitable-mavenVersion-not-found!!! +# org.slf4j:slf4j-api:1.7.30 -> >=dev-java/slf4j-api-1.7.30:0 +# org.slf4j:slf4j-simple:1.7.24 -> >=dev-java/slf4j-simple-1.7.30:0 + +CP_DEPEND=" + dev-java/dom4j:1 + dev-java/gson:2.6 + dev-java/javassist:3 + dev-java/slf4j-api:0 + dev-java/slf4j-simple:0 +" + +# Compile dependencies +# POM: pom.xml +# javax.servlet:servlet-api:2.5 -> java-virtuals/servlet-api:2.5 +# POM: pom.xml +# test? junit:junit:4.13 -> >=dev-java/junit-4.13.2:4 + +DEPEND=" + java-virtuals/servlet-api:2.5 + >=virtual/jdk-1.8:* + ${CP_DEPEND} +" + +RDEPEND=" + >=virtual/jre-1.8:* + ${CP_DEPEND}" + +S="${WORKDIR}/${P}" + +JAVA_CLASSPATH_EXTRA="servlet-api-2.5" +JAVA_SRC_DIR=( "src/main/java" ) + +JAVA_TEST_GENTOO_CLASSPATH="junit-4" +JAVA_TEST_SRC_DIR=( "src/test/java" ) +JAVA_TEST_RESOURCE_DIRS=( "src/test/resources" ) +JAVA_TEST_EXCLUDES=( + # Upstream does not run this test + "org.reflections.TestModel" + # 1) testMethodParameterNames(org.reflections.ReflectionsCollectTest) + # org.reflections.ReflectionsException: Scanner MethodParameterNamesScanner was not configured + # at org.reflections.Store.get(Store.java:39) + # at org.reflections.Store.get(Store.java:61) + # at org.reflections.Store.get(Store.java:46) + # at org.reflections.Reflections.getMethodParamNames(Reflections.java:579) + # at org.reflections.ReflectionsTest.testMethodParameterNames(ReflectionsTest.java:239) + org.reflections.ReflectionsCollectTest + # 2) testMethodParameterNames(org.reflections.ReflectionsParallelTest) + # org.reflections.ReflectionsException: Scanner MethodParameterNamesScanner was not configured + # at org.reflections.Store.get(Store.java:39) + # at org.reflections.Store.get(Store.java:61) + # at org.reflections.Store.get(Store.java:46) + # at org.reflections.Reflections.getMethodParamNames(Reflections.java:579) + # at org.reflections.ReflectionsTest.testMethodParameterNames(ReflectionsTest.java:239) + org.reflections.ReflectionsParallelTest + # 3) testMethodParameterNames(org.reflections.ReflectionsTest) + # org.reflections.ReflectionsException: Scanner MethodParameterNamesScanner was not configured + # at org.reflections.Store.get(Store.java:39) + # at org.reflections.Store.get(Store.java:61) + # at org.reflections.Store.get(Store.java:46) + # at org.reflections.Reflections.getMethodParamNames(Reflections.java:579) + # at org.reflections.ReflectionsTest.testMethodParameterNames(ReflectionsTest.java:239) + org.reflections.ReflectionsTest + # + # https://github.com/ronmamo/reflections/issues/277#issuecomment-927152981 + # scanner was not configured exception - this is a known issue in 0.9.12, a simple workaround is to + # check if the getStore() contains index for the scanner before querying. next version 0.10 fixes this. +) + +src_install() { + default # https://bugs.gentoo.org/789582 + java-pkg-simple_src_install +} diff --git a/dev-lang/Manifest.gz b/dev-lang/Manifest.gz index 58119edcb2eb..181839e14b71 100644 Binary files a/dev-lang/Manifest.gz and b/dev-lang/Manifest.gz differ diff --git a/dev-lang/rust-bin/rust-bin-1.59.0.ebuild b/dev-lang/rust-bin/rust-bin-1.59.0.ebuild index 5d9d12d2ebc0..41bdeded4d58 100644 --- a/dev-lang/rust-bin/rust-bin-1.59.0.ebuild +++ b/dev-lang/rust-bin/rust-bin-1.59.0.ebuild @@ -17,7 +17,7 @@ SRC_URI="$(rust_all_arch_uris ${MY_P}) LICENSE="|| ( MIT Apache-2.0 ) BSD-1 BSD-2 BSD-4 UoI-NCSA" SLOT="stable" -KEYWORDS="~amd64 ~arm arm64 ~ppc ppc64 ~riscv ~x86" +KEYWORDS="amd64 ~arm arm64 ~ppc ppc64 ~riscv x86" IUSE="clippy cpu_flags_x86_sse2 doc prefix rls rust-src rustfmt" DEPEND="" diff --git a/dev-lang/rust/rust-1.59.0.ebuild b/dev-lang/rust/rust-1.59.0.ebuild index 7d886da88dcf..d2b38c2af876 100644 --- a/dev-lang/rust/rust-1.59.0.ebuild +++ b/dev-lang/rust/rust-1.59.0.ebuild @@ -19,7 +19,7 @@ else SLOT="stable/${ABI_VER}" MY_P="rustc-${PV}" SRC="${MY_P}-src.tar.xz" - KEYWORDS="~amd64 ~arm arm64 ppc64 ~riscv ~x86" + KEYWORDS="amd64 ~arm arm64 ppc64 ~riscv x86" fi RUST_STAGE0_VERSION="1.$(($(ver_cut 2) - 1)).1" diff --git a/dev-libs/Manifest.gz b/dev-libs/Manifest.gz index ec3eb2cd27e3..bc2818525f96 100644 Binary files a/dev-libs/Manifest.gz and b/dev-libs/Manifest.gz differ diff --git a/dev-libs/libinput/Manifest b/dev-libs/libinput/Manifest index 4ffa65558dbe..025970ebb5cf 100644 --- a/dev-libs/libinput/Manifest +++ b/dev-libs/libinput/Manifest @@ -1,2 +1,3 @@ DIST libinput-1.19.3.tar.xz 655164 BLAKE2B a07d91603a3d4e759aad25ee46b11dbee47eb013a2361f1b70acd616fee0ed9660e6fa8773948d6acf3686179fd7aaf76bf8285f3dc3137a4b1b605ec0e4d6d2 SHA512 f4b776d0da78c687ba21b430a04941ac6b43f68970c82ec9f7360358fdea5ed6a873948ce66a25bcdd64d4b95fa4bf705cc24dbc25c7c0f5fd2d0efbd763f298 DIST libinput-1.20.0.tar.gz 982547 BLAKE2B 6a30ec5473b7271b89a50cb5147900928bc1ac370cb30bb7a9282517f9ced1973e7f83e864a865c840a1f1fe447459c329b8966211cafcd28f8d1285a36de593 SHA512 b92345809f4e18b2335e3c377d1a8edda523462ff23fba6abcc5f8cf01b80fc4c6e4e06886088788c4b04873d37da210876f201bb81203af2f9f614bc659e6eb +DIST libinput-1.20.1.tar.gz 983069 BLAKE2B 8e63e286c0c4284f4a61129d8b6394e7ca9f2018c6a2781a7fe4b7389120dcaf5c101ccfb4b0b869afc489999e954ce244213b5d206ff546d698068e738ac853 SHA512 91f6d6957b16d76807b376d4f81333ed16218fd37b090417d03a2e551d1f5b2c734d891d267bcdc4314cd698d7830f2f467389a9af58155e4e97a86002c8db78 diff --git a/dev-libs/libinput/libinput-1.20.1.ebuild b/dev-libs/libinput/libinput-1.20.1.ebuild new file mode 100644 index 000000000000..c14415db2dff --- /dev/null +++ b/dev-libs/libinput/libinput-1.20.1.ebuild @@ -0,0 +1,88 @@ +# Copyright 2014-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +PYTHON_COMPAT=( python3_{8..10} ) + +inherit meson python-any-r1 udev + +DESCRIPTION="Library to handle input devices in Wayland" +HOMEPAGE="https://www.freedesktop.org/wiki/Software/libinput/ https://gitlab.freedesktop.org/libinput/libinput" +SRC_URI="https://gitlab.freedesktop.org/${PN}/${PN}/-/archive/${PV}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0/10" +[[ "$(ver_cut 3)" -gt 900 ]] || \ +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +IUSE="doc input_devices_wacom test" +RESTRICT="!test? ( test )" + +BDEPEND=" + virtual/pkgconfig + doc? ( + $(python_gen_any_dep ' + dev-python/commonmark[${PYTHON_USEDEP}] + dev-python/recommonmark[${PYTHON_USEDEP}] + dev-python/sphinx[${PYTHON_USEDEP}] + >=dev-python/sphinx_rtd_theme-0.2.4[${PYTHON_USEDEP}] + ') + >=app-doc/doxygen-1.8.3 + >=media-gfx/graphviz-2.38.0 + ) +" +# test? ( dev-util/valgrind ) +RDEPEND=" + input_devices_wacom? ( >=dev-libs/libwacom-0.27 ) + >=dev-libs/libevdev-1.9.902 + >=sys-libs/mtdev-1.1 + virtual/libudev:= + virtual/udev +" +DEPEND="${RDEPEND} + test? ( >=dev-libs/check-0.9.10 )" + +python_check_deps() { + has_version -b "dev-python/commonmark[${PYTHON_USEDEP}]" && \ + has_version -b "dev-python/recommonmark[${PYTHON_USEDEP}]" && \ + has_version -b "dev-python/sphinx[${PYTHON_USEDEP}]" && \ + has_version -b ">=dev-python/sphinx_rtd_theme-0.2.4[${PYTHON_USEDEP}]" +} + +pkg_setup() { + use doc && python-any-r1_pkg_setup +} + +src_prepare() { + default + sed "s@, '-Werror'@@" -i meson.build || die #744250 +} + +src_configure() { + # gui can be built but will not be installed + local emesonargs=( + -Ddebug-gui=false + $(meson_use doc documentation) + $(meson_use input_devices_wacom libwacom) + $(meson_use test tests) + -Dudev-dir="${EPREFIX}$(get_udevdir)" + ) + meson_src_configure +} + +src_install() { + meson_src_install + if use doc ; then + docinto html + dodoc -r "${BUILD_DIR}"/Documentation/. + fi +} + +pkg_postinst() { + pkgname="dev-python/python-libevdev" + if [[ -z "${REPLACING_VERSIONS}" ]] && ! has_version "${pkgname}" ; then + einfo "${pkgname} must be installed to use the" + einfo "libinput measure and libinput replay tools." + fi + + udevadm hwdb --update --root="${ROOT}" +} diff --git a/dev-libs/quazip/Manifest b/dev-libs/quazip/Manifest index dbe68bf12763..f382b0c66d22 100644 --- a/dev-libs/quazip/Manifest +++ b/dev-libs/quazip/Manifest @@ -1 +1,2 @@ DIST quazip-1.2.tar.gz 155878 BLAKE2B cfd5505509863dfdfcc88cf9f50aeff0ee0c1391412dc8aeb34ab020debd8a29279563323a0ca13a8d3b8b026518f5d079b8fa989aca20a9bec083c6dd4e3695 SHA512 3f4b1a4194ca286163b1c17880ea471a341dcc05d758ee8f3d1e540d0f6aed7ac18200450187034c46b4fab1da39111dca534d75859701259406a6dd50205386 +DIST quazip-1.3.tar.gz 156138 BLAKE2B a9002bdfab39fc1516160b0073fd3d59a65a66eda98240b9a2936d4423b21b40dd9360122950a54dc18236bc2aaf4e1e2d761ba145f6dbd5014cf72a287fbb3b SHA512 3861a9084059576ff2690e8b911394b0286a60542ab021a4cc588537a60ea3a186ed7903c76544698001fa383dfd0de96bdfed433abaefc44158d3b30ab16fe2 diff --git a/dev-libs/quazip/files/quazip-1.3-cmake.patch b/dev-libs/quazip/files/quazip-1.3-cmake.patch new file mode 100644 index 000000000000..016bd97f1dc0 --- /dev/null +++ b/dev-libs/quazip/files/quazip-1.3-cmake.patch @@ -0,0 +1,84 @@ +From 9d9e4e7c2076f0ab1a482ae32203aa336dc4ba9b Mon Sep 17 00:00:00 2001 +From: Thiago Donato Ferreira +Date: Mon, 18 Apr 2022 12:08:55 -0300 +Subject: [PATCH] Add CTest patch + +Signed-off-by: Thiago Donato Ferreira +--- + CMakeLists.txt | 32 +++++++++++++++++++------------- + 1 file changed, 19 insertions(+), 13 deletions(-) + +diff --git a/CMakeLists.txt b/CMakeLists.txt +index a3eaf1a..71f2748 100644 +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -11,7 +11,6 @@ set(QUAZIP_LIB_SOVERSION 1.3.0) + option(BUILD_SHARED_LIBS "" ON) + option(QUAZIP_INSTALL "" ON) + option(QUAZIP_USE_QT_ZLIB "" OFF) +-option(QUAZIP_ENABLE_TESTS "Build QuaZip tests" OFF) + + # Set the default value of `${QUAZIP_QT_MAJOR_VERSION}`. + # We search quietly for Qt6, Qt5 and Qt4 in that order. +@@ -34,6 +33,8 @@ endif() + + set(QUAZIP_QT_MAJOR_VERSION ${QT_VERSION_MAJOR} CACHE STRING "Qt version to use (4, 5 or 6), defaults to ${QT_VERSION_MAJOR}") + ++include(CTest) ++ + if(NOT CMAKE_BUILD_TYPE) + set(CMAKE_BUILD_TYPE RELEASE) + endif() +@@ -50,23 +51,29 @@ set(QUAZIP_DIR_NAME QuaZip-Qt${QUAZIP_QT_MAJOR_VERSION}-${QUAZIP_LIB_VERSION}) + set(QUAZIP_PACKAGE_NAME QuaZip-Qt${QUAZIP_QT_MAJOR_VERSION}) + + if(QUAZIP_QT_MAJOR_VERSION EQUAL 6) +- find_package(Qt6 REQUIRED COMPONENTS Core Core5Compat +- OPTIONAL_COMPONENTS Network Test) ++ find_package(Qt6 REQUIRED COMPONENTS Core Core5Compat) + set(QUAZIP_LIB_LIBRARIES Qt6::Core Qt6::Core5Compat) +- set(QUAZIP_TEST_QT_LIBRARIES Qt6::Core Qt6::Core5Compat Qt6::Network Qt6::Test) + set(QUAZIP_PKGCONFIG_REQUIRES "zlib, Qt6Core") ++ if (BUILD_TESTING) ++ find_package(Qt6 REQUIRED COMPONENTS Network Test) ++ set(QUAZIP_TEST_QT_LIBRARIES Qt6::Core Qt6::Core5Compat Qt6::Network Qt6::Test) ++ endif() + elseif(QUAZIP_QT_MAJOR_VERSION EQUAL 5) +- find_package(Qt5 REQUIRED COMPONENTS Core +- OPTIONAL_COMPONENTS Network Test) ++ find_package(Qt5 REQUIRED COMPONENTS Core) + set(QUAZIP_LIB_LIBRARIES Qt5::Core) +- set(QUAZIP_TEST_QT_LIBRARIES Qt5::Core Qt5::Network Qt5::Test) +- set(QUAZIP_PKGCONFIG_REQUIRES "zlib, Qt5Core") ++ set(QUAZIP_PKGCONFIG_REQUIRES "zlib, Qt5Core") ++ if (BUILD_TESTING) ++ find_package(Qt5 REQUIRED COMPONENTS Network Test) ++ set(QUAZIP_TEST_QT_LIBRARIES Qt5::Core Qt5::Network Qt5::Test) ++ endif() + elseif(QUAZIP_QT_MAJOR_VERSION EQUAL 4) +- find_package(Qt4 4.5.0 REQUIRED COMPONENTS QtCore +- OPTIONAL_COMPONENTS QtNetwork QtTest) ++ find_package(Qt4 4.5.0 REQUIRED COMPONENTS QtCore) + set(QUAZIP_LIB_LIBRARIES Qt4::QtCore) +- set(QUAZIP_TEST_QT_LIBRARIES Qt4::QtCore Qt4::QtNetwork Qt4::QtTest) + set(QUAZIP_PKGCONFIG_REQUIRES "zlib, QtCore") ++ if (BUILD_TESTING) ++ find_package(Qt4 REQUIRED COMPONENTS Network Test) ++ set(QUAZIP_TEST_QT_LIBRARIES Qt4::QtCore Qt4::QtNetwork Qt4::QtTest) ++ endif() + else() + message(FATAL_ERROR "Qt version ${QUAZIP_QT_MAJOR_VERSION} is not supported") + endif() +@@ -88,8 +95,7 @@ endif() + + add_subdirectory(quazip) + +-if(QUAZIP_ENABLE_TESTS) ++if(BUILD_TESTING) + message(STATUS "Building QuaZip tests") +- enable_testing() + add_subdirectory(qztest) + endif() +-- +2.35.1 + diff --git a/dev-libs/quazip/quazip-1.3.ebuild b/dev-libs/quazip/quazip-1.3.ebuild new file mode 100644 index 000000000000..43b0ab41e9e2 --- /dev/null +++ b/dev-libs/quazip/quazip-1.3.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="Simple C++ wrapper over Gilles Vollant's ZIP/UNZIP package" +HOMEPAGE="https://stachenov.github.io/quazip/" +SRC_URI="https://github.com/stachenov/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="LGPL-2.1-with-linking-exception" +SLOT="0/1" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux" +IUSE="test" + +RESTRICT="!test? ( test )" + +COMMON_DEPEND=" + dev-qt/qtcore:5 + sys-libs/zlib[minizip] +" +DEPEND="${COMMON_DEPEND} + test? ( + dev-qt/qtnetwork:5 + dev-qt/qttest:5 + ) +" +RDEPEND="${COMMON_DEPEND} + !=dev-libs/quazip-1.1-r0:1 +" + +PATCHES=( "${FILESDIR}/${P}-cmake.patch" ) + +src_configure() { + local mycmakeargs=( + -DBUILD_TESTING=$(usex test) + ) + + cmake_src_configure +} + +src_compile() { + cmake_src_compile + + use test && cmake_build qztest +} diff --git a/dev-python/Manifest.gz b/dev-python/Manifest.gz index 6b955fb055af..78c2b2e88edd 100644 Binary files a/dev-python/Manifest.gz and b/dev-python/Manifest.gz differ diff --git a/dev-python/PyPDF2/Manifest b/dev-python/PyPDF2/Manifest index 06001fa2585d..309272d05797 100644 --- a/dev-python/PyPDF2/Manifest +++ b/dev-python/PyPDF2/Manifest @@ -1,2 +1,3 @@ DIST PyPDF2-1.27.5.gh.tar.gz 2053469 BLAKE2B 1a01289145574a4551f1fa237e4c790dd866088787f5bc9afb529ea99424f4d211f1913737cf4a2c744ceae90568ca26612cc4956ff1eda5840624e41df76d78 SHA512 c1f77c7ea46e866da104cf05421ccf15870db07923ff5860a6b44c944d599b38e98d33d6042a155b0698ecd100d1c6f57aa7bb8904dd08e679f6560a578d4488 DIST PyPDF2-1.27.6.gh.tar.gz 2092950 BLAKE2B 786d5102275d6c04628d76fd0225d453aa8f74cb0a6e135f3d56ed1143c114144aa9daef17e5971ce9e4c14cc01016125107717296d76cf7eb34c1cadbdd42cd SHA512 bf1c60453e6a98a50c382cf967fc7aa1fb8dffc14d426f97bc0e41c34a6534930849fe053c8debe585b3877eadca9f8b43f803b1f01586f6c693a1eefe43e3dd +DIST PyPDF2-1.27.7.gh.tar.gz 2093013 BLAKE2B 5637094972228ad1a5790f36f71e3fd8a694c9fd99bad7874a03f299ca0bb6198064f6756552cac41127fd67a827ca191e6de56281b25c13629a99edcdac7685 SHA512 dbcb944f3bafb0c0e81842e92e8a72609c85c271eba83841ee5bc901119178a6a4ff503a4796014854a75137b9f8f25a245d55a550e770b9f78daf8e1e92dcba diff --git a/dev-python/PyPDF2/PyPDF2-1.27.5.ebuild b/dev-python/PyPDF2/PyPDF2-1.27.5.ebuild index 4a8334893cf7..bc5f5bcf3cd5 100644 --- a/dev-python/PyPDF2/PyPDF2-1.27.5.ebuild +++ b/dev-python/PyPDF2/PyPDF2-1.27.5.ebuild @@ -21,19 +21,9 @@ SRC_URI=" LICENSE="BSD-2" SLOT="0" KEYWORDS="amd64 ~arm64 ~ppc64 x86" -IUSE="examples" BDEPEND=" dev-python/pillow[${PYTHON_USEDEP}] " distutils_enable_tests pytest - -src_install() { - if use examples; then - docinto examples - dodoc -r Sample_Code/. - docompress -x /usr/share/doc/${PF}/examples - fi - distutils-r1_src_install -} diff --git a/dev-python/PyPDF2/PyPDF2-1.27.7.ebuild b/dev-python/PyPDF2/PyPDF2-1.27.7.ebuild new file mode 100644 index 000000000000..b644bee3ad2f --- /dev/null +++ b/dev-python/PyPDF2/PyPDF2-1.27.7.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..10} ) + +inherit distutils-r1 + +DESCRIPTION="Python library to work with PDF files" +HOMEPAGE=" + https://pypi.org/project/PyPDF2/ + https://github.com/py-pdf/PyPDF2/ +" +SRC_URI=" + https://github.com/py-pdf/PyPDF2/archive/${PV}.tar.gz + -> ${P}.gh.tar.gz +" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86" +IUSE="examples" + +BDEPEND=" + dev-python/pillow[${PYTHON_USEDEP}] +" + +distutils_enable_tests pytest + +src_install() { + if use examples; then + docinto examples + dodoc -r Sample_Code/. + docompress -x /usr/share/doc/${PF}/examples + fi + distutils-r1_src_install +} diff --git a/dev-python/astroid/Manifest b/dev-python/astroid/Manifest index ca92d9a27300..6cb4d6fe01e5 100644 --- a/dev-python/astroid/Manifest +++ b/dev-python/astroid/Manifest @@ -1,2 +1,3 @@ DIST astroid-2.11.2.tar.gz 412621 BLAKE2B e43be65b733a5de5d027920e8e4db0365a3af98614739f0a56dcf95ef6c1c3a9e104b52c1fad4477bccd460850cf6bab6f38014aaa6891e8d04720d4a52b79d8 SHA512 5b33cb3594513804c6933a888297ed54c42cb52274c7fe49060368e3fac62be8f3febcb822aa9267a5a0a99a32932912ebc4640a7d10288b7021955fe0277c0d +DIST astroid-2.11.3.tar.gz 413237 BLAKE2B 0758e0a2069e969e1509d0935883f1deba6b3c55af0edcb3146be7dd39eab40e9a71ef517c5114c49c191f545da73340d074df1cc107094c6450f9d2448932db SHA512 ea215a4fee747ab49735d3b8a084500b9127c831f0a737d6610128211750920e68741dc888d8d799422636b7acb014e1a1f3f629db87c445781c4cfaf57dd062 DIST astroid-2.9.3.tar.gz 409069 BLAKE2B 152dbe8ab2fee3964dc8cc714a5ba48c71b5994c77d1e20683bcf028483aca22d5be5772e72d056cfd3d1f59562b447366d61fc35a2b67d545f069a8f7975e84 SHA512 7bb3bf2d456c0d22325444e641961c34eaddcddf50c97ee9f5b5c8755232cf1b65a315258403b40bb7dcad15c4f9b6b73ab0eb607525a48a65f52406969eca04 diff --git a/dev-python/astroid/astroid-2.11.3.ebuild b/dev-python/astroid/astroid-2.11.3.ebuild new file mode 100644 index 000000000000..313a897a7376 --- /dev/null +++ b/dev-python/astroid/astroid-2.11.3.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..10} ) + +inherit distutils-r1 + +DESCRIPTION="Abstract Syntax Tree for logilab packages" +HOMEPAGE=" + https://github.com/PyCQA/astroid/ + https://pypi.org/project/astroid/" +SRC_URI=" + https://github.com/PyCQA/astroid/archive/v${PV}.tar.gz + -> ${P}.tar.gz +" + +LICENSE="LGPL-2.1+" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" + +# Version specified in __pkginfo__.py. +RDEPEND=" + >=dev-python/lazy-object-proxy-1.4.0[${PYTHON_USEDEP}] + dev-python/setuptools[${PYTHON_USEDEP}] + >=dev-python/typing-extensions-3.10[${PYTHON_USEDEP}] + =.*':':" setup.py || die + + # unbundle deps + rm -r botocore/vendored || die + find -name '*.py' -exec sed -i \ + -e 's:from botocore[.]vendored import:import:' \ + -e 's:from botocore[.]vendored[.]:from :' \ + {} + || die + + distutils-r1_src_prepare +} + +python_test() { + local EPYTEST_DESELECT=( + # rely on bundled six + tests/functional/test_six_imports.py::test_no_bare_six_imports + tests/functional/test_six_threading.py::test_six_thread_safety + ) + + epytest tests/{functional,unit} \ + -n "$(makeopts_jobs "${MAKEOPTS}" "$(get_nproc)")" +} diff --git a/dev-python/cachecontrol/Manifest b/dev-python/cachecontrol/Manifest index fb7a8d106e67..17bc6ba4532d 100644 --- a/dev-python/cachecontrol/Manifest +++ b/dev-python/cachecontrol/Manifest @@ -1 +1,2 @@ DIST cachecontrol-0.12.10.gh.tar.gz 39944 BLAKE2B a760db75384a48a21506d7bcc9edc63dd5b8f7b09ba4ff7afb968c7df3a505a9c6e5eece6e275ec1c9d49763a36124f7221123739fe07695ac2b0bbfb62e948c SHA512 3374a2b0cd42d6f3975b42de46e7aaf92a15403b65aaf53ba14102d6ce68bad85dc4d8f0eaa294604b54ee3e2b1d7d3c56c1dac8e717de41cc7be6d880afc1e7 +DIST cachecontrol-0.12.11.gh.tar.gz 41338 BLAKE2B 09ce2336216b69dbe9796d658db9f5b0d378259484cba3a78ecd789843e19683adc2b1b90d579cea8700d07ed55a93ecc3a56e5da2c8ab025e5084d2847d4dbf SHA512 be1c91f58edda36192f1267a8fdfdc50685ff57da5d84f5348b608982327993333f18f5c318a20cf258b16d2bc83272ba58317e8c4c44a84d5d1f93b522dfc8b diff --git a/dev-python/cachecontrol/cachecontrol-0.12.11.ebuild b/dev-python/cachecontrol/cachecontrol-0.12.11.ebuild new file mode 100644 index 000000000000..415ebf228fa9 --- /dev/null +++ b/dev-python/cachecontrol/cachecontrol-0.12.11.ebuild @@ -0,0 +1,37 @@ +# Copyright 2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..10} pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="httplib2 caching for requests" +HOMEPAGE=" + https://pypi.org/project/CacheControl/ + https://github.com/ionrock/cachecontrol/ +" +SRC_URI=" + https://github.com/ionrock/cachecontrol/archive/v${PV}.tar.gz + -> ${P}.gh.tar.gz +" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND=" + >=dev-python/msgpack-0.5.2[${PYTHON_USEDEP}] + dev-python/requests[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + dev-python/cherrypy[${PYTHON_USEDEP}] + dev-python/lockfile[${PYTHON_USEDEP}] + dev-python/mock[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest diff --git a/dev-python/dns-lexicon/Manifest b/dev-python/dns-lexicon/Manifest index f4c2edc515f5..43fd3ad8a1fe 100644 --- a/dev-python/dns-lexicon/Manifest +++ b/dev-python/dns-lexicon/Manifest @@ -4,3 +4,4 @@ DIST dns-lexicon-3.8.5.tar.gz 7850115 BLAKE2B 27dfb837385e370142d82bc682627fa96e DIST dns-lexicon-3.9.0.tar.gz 7843652 BLAKE2B de6339c8f739d00aefca831adfccaed3914c0d9103e7dd5a175215761a27e29eca3c2e26c08239df2e6a34afbe7228013cab7123572c6481ed4e31fa2a20236d SHA512 4bc26018e0702345e86fa352eddff89358b34e878864e6273e89798cce81c4ef9e4ff06a1298481c8496237bb26d8d7c3286c82aac99117a49faa64ea329c307 DIST dns-lexicon-3.9.2.tar.gz 7833249 BLAKE2B 48ea6da7f47f6de72bf1d11c1226e2e31001ffe08f45ed3b1b0ca42ea134076c0fe4025fa38c4eca9255ef7f4f005555b2dbfa0116680c4d112c2bc37e603090 SHA512 f4052e2837ee43ce8aaadc9e5adbb522f2a9035a5d1813b35c3bd84fb651e10a42594529328d12153d086f2b8d84bb35eb4af2425010df4e8784f4972de00027 DIST dns-lexicon-3.9.4.tar.gz 8358079 BLAKE2B d029044ca1afed1e392c3f73fbace9019f94a2be4126dcde991f7a279bed60d00225a97e584268540219c1ceb4a33cb244baa6fd9769db937e25c50cd8c76aa5 SHA512 5a982a4727fbe88fbc5a505c6ce4712d455fc208dbb3917f74cb6a2a9d7f1891afc39badd6cef200c336aec220da6de435f0680ab972e6e40dac27b5388dc391 +DIST dns-lexicon-3.9.5.tar.gz 8375382 BLAKE2B 4d2cb0a5272cf4d5f12124ac4ceb77864b5a9a29131e48ad43603bdfed3a4e6201166e5783f15c57d38a4747e97612441b6731b926dd2d05080a890d5062f4f1 SHA512 60c7722a1e894f95b24cceffd5224cad55287db944d36168c759b9f31aae0117803d1972f5ade405a85bccd58551a51aff3db0ba52bbc52600d5ec43a955f003 diff --git a/dev-python/dns-lexicon/dns-lexicon-3.9.5.ebuild b/dev-python/dns-lexicon/dns-lexicon-3.9.5.ebuild new file mode 100644 index 000000000000..66eb3c517a29 --- /dev/null +++ b/dev-python/dns-lexicon/dns-lexicon-3.9.5.ebuild @@ -0,0 +1,61 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=poetry +PYTHON_COMPAT=( python3_{8..10} ) + +inherit distutils-r1 optfeature + +DESCRIPTION="Manipulate DNS records on various DNS providers in a standardized/agnostic way" +HOMEPAGE="https://pypi.org/project/dns-lexicon/" +SRC_URI=" + https://github.com/AnalogJ/lexicon/archive/v${PV}.tar.gz + -> ${P}.tar.gz +" +S="${WORKDIR}/lexicon-${PV}" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + dev-python/beautifulsoup4[${PYTHON_USEDEP}] + dev-python/requests[${PYTHON_USEDEP}] + dev-python/tldextract[${PYTHON_USEDEP}] + dev-python/cryptography[${PYTHON_USEDEP}] + dev-python/pyyaml[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + dev-python/boto3[${PYTHON_USEDEP}] + dev-python/zeep[${PYTHON_USEDEP}] + dev-python/vcrpy[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest + +EPYTEST_IGNORE=( + # Requires the "localzone" module + lexicon/tests/providers/test_localzone.py + # Requires the "softlayer" module + lexicon/tests/providers/test_softlayer.py + # Requires the "transip" module + lexicon/tests/providers/test_transip.py + # Requires the "oci" module + lexicon/tests/providers/test_oci.py + # Uses tldextract which needs Internet access to download its database + lexicon/tests/providers/test_auto.py +) + +pkg_postinst() { + if [[ -z ${REPLACING_VERSIONS} ]]; then + optfeature_header \ + "Install the following packages to enable support for additional DNS providers:" + optfeature Gransy dev-python/zeep + optfeature Route53 dev-python/boto3 + optfeature DDNS dev-python/dnspython + fi +} diff --git a/dev-python/flask-security/Manifest b/dev-python/flask-security/Manifest index 89896a834bbe..8eee8e2441c8 100644 --- a/dev-python/flask-security/Manifest +++ b/dev-python/flask-security/Manifest @@ -1,2 +1,3 @@ DIST flask-security-3.4.5.gh.tar.gz 348928 BLAKE2B 9890227e9775c4a28fc364affb0bf767407463d514f6dc3cd359dd8a026e8325d943a547f294f6363a276f9e7d97336c526dd45f4549c7cfaff2d6ef9ef0316a SHA512 f9ac7f46b2e1ab7dbb44ba925b01e16304e8f8d6d5d56f4e558d07b80dfffa59f04c2597e17c00a7d7ae11be3a97c78ccf8d79993b7451be4a7f75f85bc89f6f DIST flask-security-4.1.3.gh.tar.gz 408609 BLAKE2B ef4b270d62de75fdcf51d1247960df85deca1699fdbfb73592a5711f9bb56f71a2f2de12a8d8c0eccdaccfef11a578cf9bd9abbf52bdacfe4bfc10f9adda0acc SHA512 92a0e7fce95eb4eb04baa9a11ee88ab3b8e88952aa6300bf8245cecfcc90657c83bbe93e1c3b19d62642a346b30f5912dd424e59a81023637f3183a61e8cf91c +DIST flask-security-4.1.4.gh.tar.gz 408532 BLAKE2B 5fd401da8a907ff56ab7fe1fc79ec586222c26d60d921534afea4743cbc6840098f8a1d231741f83f061e2a4f747c4937be848aa4bfee8b3cf4bc06a8928e437 SHA512 d9ec87d1d2baa11b00db437135060630ea06451d96057fc8712ced8bc433fb6779f7b2561ad1c96d8f192a43acdc93dddf7f44ec75f89297204fd1796dcad1df diff --git a/dev-python/flask-security/flask-security-4.1.4.ebuild b/dev-python/flask-security/flask-security-4.1.4.ebuild new file mode 100644 index 000000000000..7461c5995d62 --- /dev/null +++ b/dev-python/flask-security/flask-security-4.1.4.ebuild @@ -0,0 +1,66 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..10} ) + +inherit distutils-r1 + +DESCRIPTION="Simple security for Flask apps" +HOMEPAGE=" + https://github.com/Flask-Middleware/flask-security/ + https://pypi.org/project/Flask-Security-Too/" +SRC_URI=" + https://github.com/Flask-Middleware/flask-security/archive/${PV}.tar.gz + -> ${P}.gh.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~riscv ~x86" + +RDEPEND=" + >=dev-python/bleach-3.3.1[${PYTHON_USEDEP}] + >=dev-python/blinker-1.4[${PYTHON_USEDEP}] + dev-python/cachetools[${PYTHON_USEDEP}] + >=dev-python/flask-1.1.1[${PYTHON_USEDEP}] + >=dev-python/flask-babelex-0.9.3[${PYTHON_USEDEP}] + >=dev-python/flask-login-0.4.1[${PYTHON_USEDEP}] + >=dev-python/flask-principal-0.4.0[${PYTHON_USEDEP}] + >=dev-python/flask-wtf-0.14.3[${PYTHON_USEDEP}] + >=dev-python/itsdangerous-1.1.0[${PYTHON_USEDEP}] + >=dev-python/passlib-1.7.2[${PYTHON_USEDEP}] + >=dev-python/python-email-validator-1.1.1[${PYTHON_USEDEP}] +" + +BDEPEND=" + dev-python/Babel[${PYTHON_USEDEP}] + test? ( + >=dev-python/argon2-cffi-19.1.0[${PYTHON_USEDEP}] + >=dev-python/bcrypt-3.1.5[${PYTHON_USEDEP}] + dev-python/bleach[${PYTHON_USEDEP}] + >=dev-python/cryptography-2.3.1[${PYTHON_USEDEP}] + >=dev-python/flask-mail-0.9.1[${PYTHON_USEDEP}] + >=dev-python/flask-sqlalchemy-2.3[${PYTHON_USEDEP}] + >=dev-python/mongomock-3.19.0[${PYTHON_USEDEP}] + >=dev-python/peewee-3.11.2[${PYTHON_USEDEP}] + >=dev-python/phonenumbers-8.11.1[${PYTHON_USEDEP}] + >=dev-python/psycopg-2.8.4:2[${PYTHON_USEDEP}] + >=dev-python/pymysql-0.9.3[${PYTHON_USEDEP}] + >=dev-python/pyqrcode-1.2[${PYTHON_USEDEP}] + >=dev-python/zxcvbn-4.4.28[${PYTHON_USEDEP}] + >=dev-python/pony-0.7.11[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest + +src_prepare() { + sed -i -e 's@--cache-clear@-p no:httpbin@' pytest.ini || die + distutils-r1_src_prepare +} + +python_configure_all() { + esetup.py compile_catalog +} diff --git a/dev-python/fonttools/fonttools-4.31.2.ebuild b/dev-python/fonttools/fonttools-4.31.2.ebuild index 887fadc7cfe4..d811eb1b01f5 100644 --- a/dev-python/fonttools/fonttools-4.31.2.ebuild +++ b/dev-python/fonttools/fonttools-4.31.2.ebuild @@ -15,7 +15,7 @@ SRC_URI="https://github.com/fonttools/fonttools/archive/${PV}.tar.gz -> ${P}.tar LICENSE="BSD" SLOT="0" -KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~ppc ppc64 ~riscv ~sparc x86 ~x64-macos" +KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ppc ppc64 ~riscv sparc x86 ~x64-macos" RDEPEND=">=dev-python/fs-2.4.9[${PYTHON_USEDEP}]" BDEPEND="${RDEPEND} diff --git a/dev-python/google-api-python-client/Manifest b/dev-python/google-api-python-client/Manifest index effffbfba768..dc1571ed4af2 100644 --- a/dev-python/google-api-python-client/Manifest +++ b/dev-python/google-api-python-client/Manifest @@ -2,3 +2,4 @@ DIST google-api-python-client-2.41.0.tar.gz 29608471 BLAKE2B 5a6f9eb414f02b9528d DIST google-api-python-client-2.42.0.tar.gz 29772877 BLAKE2B f478a719c3a6ef2f78d1fa16c231d47f2d72b55e67746612579f644b92dbd93ebd7f320f0684d85c1c1e253ed2f5163d7f6ce2904343bbe7a4f6746889663970 SHA512 e55cd75dec478a3410829a7eb7ee5478b52b44450d4ade69e3a7ee11b30e5ab5690c93ff6444f4b723db6cd1f26ac70553b3f1b9c77dc0b428db271b773faa9f DIST google-api-python-client-2.43.0.tar.gz 29820752 BLAKE2B d0f7337f2d63d9db2da3526670a5f034103cb1b2e3eefcc77fea6d15258d185c06c238662de6d304e73b4f9ea25f8b202386eae8b7b94d7c52ad2b6c15d2ea76 SHA512 0e59f22b0c03d1b29247219e39a83bf6b637afe3eddfa302ecd34acc30bebb850f771e4b7b5c24e5a607ddd74ef6833fe0597465776d00675ed868612ebd1d70 DIST google-api-python-client-2.44.0.tar.gz 29961288 BLAKE2B 3bb7d421c76180009c7105d693edc32c5f6af7d853cf9f70d18001976e854c343d6d9e03ad5210562a1c1c17c5127b6d96d2b12128997a8007bc027eb10c841d SHA512 8a12684117a1bdd6b72ec6fce2e7d1e48115e05788e39c8aaad8f6095e4bdc3245f6c471044e6b0e6983210f8cd0328bb9ef459f55c4c9b973a89a658a30677b +DIST google-api-python-client-2.45.0.tar.gz 30011332 BLAKE2B e8a734a7aea1152ac92427de7059fa59216ba96c5fc68976b341fe0fcdd8851cbbcf1eb8e9cdc37cd18eec5cce0e8f87d3832b0df39c8795f3363f61c457a17e SHA512 b0adabae6ea29390fa7506cd7b846b8499591e49ecb247818b7304683c4ea3def25203a106b371ceff5e576c84f3ab207ffd428cb7b1b543b170c2ef0ea731d4 diff --git a/dev-python/google-api-python-client/google-api-python-client-2.45.0.ebuild b/dev-python/google-api-python-client/google-api-python-client-2.45.0.ebuild new file mode 100644 index 000000000000..9ffc1aa432ce --- /dev/null +++ b/dev-python/google-api-python-client/google-api-python-client-2.45.0.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..10} ) + +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-api-core-2.3.1[${PYTHON_USEDEP}] + >=dev-python/google-auth-1.35.0[${PYTHON_USEDEP}] + >=dev-python/google-auth-httplib2-0.1.0[${PYTHON_USEDEP}] + >=dev-python/uritemplate-3.0.0[${PYTHON_USEDEP}] + PyECLib + pyeclib diff --git a/dev-python/PyECLib/PyECLib-1.6.0-r1.ebuild b/dev-python/pyeclib/pyeclib-1.6.0-r1.ebuild similarity index 95% rename from dev-python/PyECLib/PyECLib-1.6.0-r1.ebuild rename to dev-python/pyeclib/pyeclib-1.6.0-r1.ebuild index 487777ee0854..c3c2fba942f5 100644 --- a/dev-python/PyECLib/PyECLib-1.6.0-r1.ebuild +++ b/dev-python/pyeclib/pyeclib-1.6.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 diff --git a/dev-python/pyeclib/pyeclib-1.6.1.ebuild b/dev-python/pyeclib/pyeclib-1.6.1.ebuild new file mode 100644 index 000000000000..0709af870095 --- /dev/null +++ b/dev-python/pyeclib/pyeclib-1.6.1.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..10} ) + +inherit distutils-r1 optfeature + +DESCRIPTION="Messaging API for RPC and notifications over different messaging transports" +HOMEPAGE=" + https://opendev.org/openstack/pyeclib/ + https://pypi.org/project/pyeclib/ +" +SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86" + +DEPEND=" + dev-libs/liberasurecode +" +RDEPEND=" + ${DEPEND} +" +BDEPEND=" + test? ( + dev-python/six[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests unittest + +src_prepare() { + # https://review.opendev.org/c/openstack/pyeclib/+/798010 + sed -e '/library_dirs/d' -i setup.py || die + distutils-r1_src_prepare +} + +pkg_postinst() { + optfeature "jerasure backend" dev-libs/jerasure +} diff --git a/dev-python/readme_renderer/Manifest b/dev-python/readme_renderer/Manifest index 86f48242c847..3b039604d723 100644 --- a/dev-python/readme_renderer/Manifest +++ b/dev-python/readme_renderer/Manifest @@ -1 +1,2 @@ DIST readme_renderer-34.0.tar.gz 28835 BLAKE2B 556088064a27ca0ab556102a9bc7026f5089e8a326631c0b7d3d5d0906b63191fac1f4f473c5c3229c0357b090bb63c8bbf0cab66e793c5de0d8eb8da696d2db SHA512 835beadb6dd98793cfce1a1691c66121ad2df9d205d9e1415bf8555495460af7003c9153a58fe5ea0909541b305d2fc4a39120f395805514e11fe391783447a3 +DIST readme_renderer-35.0.tar.gz 27224 BLAKE2B bb58a6cb39aace47714aa351c710663ca9f43f04055e21a5ea3954b2d1fff58dce073b0a41bdfb07f34ffe16f2fbba9ba59c2a6b8f84c0eacfb7d9f7cd881380 SHA512 29377cea5a029f7c4cf2ec0362771a280936e84fc39117c13fc6557172581570af298520ea6f5df53260e1da539ebe3fe4183bd1fb5620af48824bee04fefc75 diff --git a/dev-python/readme_renderer/readme_renderer-35.0.ebuild b/dev-python/readme_renderer/readme_renderer-35.0.ebuild new file mode 100644 index 000000000000..004ab4751ef9 --- /dev/null +++ b/dev-python/readme_renderer/readme_renderer-35.0.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..10} pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="a library for rendering \"readme\" descriptions for Warehouse" +HOMEPAGE=" + https://github.com/pypa/readme_renderer/ + https://pypi.org/project/readme-renderer/ +" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86 ~x64-macos" + +RDEPEND=" + >=dev-python/bleach-2.1.0[${PYTHON_USEDEP}] + >=dev-python/docutils-0.13.1[${PYTHON_USEDEP}] + >=dev-python/pygments-2.5.2[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( dev-python/mock[${PYTHON_USEDEP}] ) +" + +DOCS=( README.rst ) + +distutils_enable_tests pytest diff --git a/dev-python/secretstorage/Manifest b/dev-python/secretstorage/Manifest index 5e3b4b0f85c8..936689d80892 100644 --- a/dev-python/secretstorage/Manifest +++ b/dev-python/secretstorage/Manifest @@ -1 +1,2 @@ DIST SecretStorage-3.3.1.tar.gz 19566 BLAKE2B 0b1ab822ee29f3d56148b558b3029fd882f1d10ceb3e026586de2e9bc72b7ac1b35df11052117a7c07524ca72d004ef56d99c845bc3600984fe84e5300f3dfee SHA512 5e874d08c9e00626a217db96b131884daf92429a91f690b32f62052747275ad0effbe2b4abe048e67fe7f81df97507f8375408898ff986e6f883b5fdfbf2a76c +DIST SecretStorage-3.3.2.tar.gz 19285 BLAKE2B 17089e61a9549f4547faa8c6f7f711f5e4b3ba9ac0bf7787c3384d4920c5cd02704bab86fd4b7abe4ad9b93098b1668cf89901f4a0760023e274c8daf009d5a4 SHA512 f04a35925f86fec25435554083ac0d4b21b88cbc19b67a4c744247e659bc767675a52d18b33be557e99593922aecb0c261ec40803c61e089ff35b6c8b541ac63 diff --git a/dev-python/secretstorage/secretstorage-3.3.2.ebuild b/dev-python/secretstorage/secretstorage-3.3.2.ebuild new file mode 100644 index 000000000000..25280f6334e9 --- /dev/null +++ b/dev-python/secretstorage/secretstorage-3.3.2.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( pypy3 python3_{8..10} ) + +inherit distutils-r1 + +MY_PN="SecretStorage" + +DESCRIPTION="Python bindings to FreeDesktop.org Secret Service API" +HOMEPAGE=" + https://github.com/mitya57/secretstorage/ + https://pypi.org/project/SecretStorage/ +" +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz" +S="${WORKDIR}/${MY_PN}-${PV}" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux" + +RDEPEND=" + dev-python/cryptography[${PYTHON_USEDEP}] + >=dev-python/jeepney-0.6[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + !hppa? ( !sparc? ( + gnome-base/gnome-keyring + sys-apps/dbus + ) + ) ) +" + +distutils_enable_tests unittest +distutils_enable_sphinx docs \ + dev-python/alabaster + +src_test() { + case ${ARCH} in + hppa|sparc) + einfo "gnome-keyring is not supported on ${ARCH}, skipping tests" + return + ;; + esac + + distutils-r1_src_test +} + +python_test() { + dbus-run-session "${EPYTHON}" -m unittest discover -v -s tests \ + || die "tests failed with ${EPYTHON}" +} diff --git a/dev-python/setuptools/setuptools-60.10.0.ebuild b/dev-python/setuptools/setuptools-60.10.0.ebuild index 346a00c6f30a..9b9401cf5cd4 100644 --- a/dev-python/setuptools/setuptools-60.10.0.ebuild +++ b/dev-python/setuptools/setuptools-60.10.0.ebuild @@ -18,7 +18,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~ppc ppc64 ~riscv ~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 ~ia64 ~m68k ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="test" RESTRICT="!test? ( test )" @@ -89,7 +89,7 @@ python_test() { local -x SETUPTOOLS_USE_DISTUTILS=stdlib # keep in sync with python_gen_cond_dep above! - has "${EPYTHON}" python3.{8..10} pypy3 || continue + has "${EPYTHON}" python3.{8..10} pypy3 || return local EPYTEST_DESELECT=( # network diff --git a/dev-python/setuptools/setuptools-60.5.0.ebuild b/dev-python/setuptools/setuptools-60.5.0.ebuild index 86d902558886..dc855eb59064 100644 --- a/dev-python/setuptools/setuptools-60.5.0.ebuild +++ b/dev-python/setuptools/setuptools-60.5.0.ebuild @@ -66,7 +66,7 @@ python_test() { local -x SETUPTOOLS_USE_DISTUTILS=stdlib # keep in sync with python_gen_cond_dep above! - has "${EPYTHON}" python3.{8..10} pypy3 || continue + has "${EPYTHON}" python3.{8..10} pypy3 || return distutils_install_for_testing local EPYTEST_DESELECT=( diff --git a/dev-python/setuptools/setuptools-60.9.2.ebuild b/dev-python/setuptools/setuptools-60.9.2.ebuild index 771a1740a041..824ccd965cc4 100644 --- a/dev-python/setuptools/setuptools-60.9.2.ebuild +++ b/dev-python/setuptools/setuptools-60.9.2.ebuild @@ -88,7 +88,7 @@ python_test() { local -x SETUPTOOLS_USE_DISTUTILS=stdlib # keep in sync with python_gen_cond_dep above! - has "${EPYTHON}" python3.{8..10} pypy3 || continue + has "${EPYTHON}" python3.{8..10} pypy3 || return local EPYTEST_DESELECT=( # network diff --git a/dev-python/setuptools/setuptools-61.3.0.ebuild b/dev-python/setuptools/setuptools-61.3.0.ebuild index 1f21e4970f84..297662e04bc9 100644 --- a/dev-python/setuptools/setuptools-61.3.0.ebuild +++ b/dev-python/setuptools/setuptools-61.3.0.ebuild @@ -100,7 +100,7 @@ python_test() { local -x SETUPTOOLS_USE_DISTUTILS=stdlib # keep in sync with python_gen_cond_dep above! - has "${EPYTHON}" python3.{8..10} pypy3 || continue + has "${EPYTHON}" python3.{8..10} pypy3 || return local EPYTEST_DESELECT=( # network diff --git a/dev-python/setuptools/setuptools-61.3.1-r1.ebuild b/dev-python/setuptools/setuptools-61.3.1-r1.ebuild index add5da08ce1c..722c799e855f 100644 --- a/dev-python/setuptools/setuptools-61.3.1-r1.ebuild +++ b/dev-python/setuptools/setuptools-61.3.1-r1.ebuild @@ -99,7 +99,7 @@ python_test() { local -x SETUPTOOLS_USE_DISTUTILS=stdlib # keep in sync with python_gen_cond_dep above! - has "${EPYTHON}" python3.{8..10} pypy3 || continue + has "${EPYTHON}" python3.{8..10} pypy3 || return local EPYTEST_DESELECT=( # network diff --git a/dev-python/setuptools/setuptools-62.0.0.ebuild b/dev-python/setuptools/setuptools-62.0.0.ebuild index 0bcb480a73c4..c790346b25a3 100644 --- a/dev-python/setuptools/setuptools-62.0.0.ebuild +++ b/dev-python/setuptools/setuptools-62.0.0.ebuild @@ -99,7 +99,7 @@ python_test() { local -x SETUPTOOLS_USE_DISTUTILS=stdlib # keep in sync with python_gen_cond_dep above! - has "${EPYTHON}" python3.{8..10} pypy3 || continue + has "${EPYTHON}" python3.{8..10} pypy3 || return local EPYTEST_DESELECT=( # network diff --git a/dev-python/setuptools/setuptools-62.1.0.ebuild b/dev-python/setuptools/setuptools-62.1.0.ebuild index 6b7d4e64e2c0..812e47a1a262 100644 --- a/dev-python/setuptools/setuptools-62.1.0.ebuild +++ b/dev-python/setuptools/setuptools-62.1.0.ebuild @@ -99,7 +99,7 @@ python_test() { local -x SETUPTOOLS_USE_DISTUTILS=stdlib # keep in sync with python_gen_cond_dep above! - has "${EPYTHON}" python3.{8..10} pypy3 || continue + has "${EPYTHON}" python3.{8..10} pypy3 || return local EPYTEST_DESELECT=( # network diff --git a/dev-python/zstd/Manifest b/dev-python/zstd/Manifest index a775391b336d..ba609473e791 100644 --- a/dev-python/zstd/Manifest +++ b/dev-python/zstd/Manifest @@ -1,3 +1,4 @@ DIST zstd-1.5.1.0.tar.gz 604039 BLAKE2B 5f3e2f2848d67d2455bab721d011946fa8138729566243046e2b294e51c1144a0a0576f9e64e15472c8da4b45514a052a751b2ac3d87f17301ab634f560bf19a SHA512 4775f9db3b924116272060fd46885a601ec5153b350974ef5fe41878f10aad0fee428f053ce71aaf881eb73bfc11ae1d89148f65447fc6febe3f53a50ffa0a63 DIST zstd-1.5.2.0.tar.gz 605453 BLAKE2B 1564bf6f5d37ca5c55a161373f10ff99ffc942abf3d177bf15943570bc30367f0d6aee88cbfd28f1a57483945e0d3de5fde0dfc78bc2b0066faef12de2684fbd SHA512 99df709b889732dc5d6e682e79c52731b918458ccf720431a6afc757dd4cd58bd3ffe1ad45158d28a87d7baaa883fd074cb94717e023ee80eef1561d651504e1 DIST zstd-1.5.2.2.tar.gz 605458 BLAKE2B b302edd73d303dffe66564217b03c4477e2679788ab58782bd620ae8e5e0410da3c672715622ad5cff1bfd24835bfe61255b1df4ba7c6d452c08dee42d45a1e0 SHA512 fc5d60db491adefbf9af5d46600701075418986ffe5042d74eae75e2d1ec3347141dea3bf0a384f87ffbf833be398157f9b3d7277e6a30994b1287b14b6a2d21 +DIST zstd-1.5.2.4.tar.gz 606443 BLAKE2B fcde9a6cf7195fa9ab50ae93c5401a2d92bafa3f1a8f960ad30f107cf8b63c8b7c8c78bf74bba21d33163df311dcff9d405ad4fb15c7b6ef3e6aeb3596236f14 SHA512 387055d86998c0eca22c8037e2c2e6a85b5e82e5adae3a5bc67f84c4f808b9493817fbc5c94929776a400cff1b7859302db1bd128418ab22e6c0c0f9276e2ff4 diff --git a/dev-python/zstd/zstd-1.5.2.4.ebuild b/dev-python/zstd/zstd-1.5.2.4.ebuild new file mode 100644 index 000000000000..50e49e6df52e --- /dev/null +++ b/dev-python/zstd/zstd-1.5.2.4.ebuild @@ -0,0 +1,34 @@ +# Copyright 2020-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..10} ) + +inherit distutils-r1 + +DESCRIPTION="Simple python bindings to Yann Collet ZSTD compression library" +HOMEPAGE=" + https://github.com/sergey-dryabzhinsky/python-zstd/ + https://pypi.org/project/zstd/ +" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86" + +DEPEND=" + app-arch/zstd:= +" +RDEPEND=" + ${DEPEND} + ! -Date: Fri, 3 May 2019 18:17:05 +0200 -Subject: [PATCH] Remove non working test - -Some test are not working + fix for master ---- - tests/commands/test_global.py | 7 ------- - 1 file changed, 7 deletions(-) - -diff --git a/tests/commands/test_global.py b/tests/commands/test_global.py -index 94ad0672..379f87b8 100644 ---- a/tests/commands/test_global.py -+++ b/tests/commands/test_global.py -@@ -121,13 +121,6 @@ class TestExternalCommand(unittest.TestCase): - await cmd.apply(ui) - ui.notify.assert_not_called() - -- @utilities.async_test -- async def test_no_spawn_no_stdin_attached(self): -- ui = utilities.make_ui() -- cmd = g_commands.ExternalCommand('test -t 0', refocus=False) -- await cmd.apply(ui) -- ui.notify.assert_not_called() -- - @utilities.async_test - async def test_no_spawn_stdin_attached(self): - ui = utilities.make_ui() --- -2.24.1 - diff --git a/mail-client/thunderbird/Manifest b/mail-client/thunderbird/Manifest index 48353258f877..6c40512eef03 100644 --- a/mail-client/thunderbird/Manifest +++ b/mail-client/thunderbird/Manifest @@ -127,3 +127,67 @@ DIST thunderbird-91.8.0-vi.xpi 725527 BLAKE2B 63e83e534406ff29e949211db05e9e4a17 DIST thunderbird-91.8.0-zh-CN.xpi 730902 BLAKE2B f9b38733993da2958ac981c150fcbb0482909cb9930f9c0b00dd5392a66730ccf4ec0e64c384da0cda249a6758626131ee5651fd7113a59b90d12e6ade84908a SHA512 02642d349dd7abd54c6462c32db381777f863077de102e35d7b9a96f33b2447e83237592bff7ab7ddd8486714477fc144532887f0e25bde8a2d81bec5f4b2948 DIST thunderbird-91.8.0-zh-TW.xpi 731944 BLAKE2B 96af2bc372640dd48408f261f05bb2a751404510606cb939e6142009a3cdeaf87f956120f82956504525d4a3e81a56d1ea3146490ea0a0443fd72c36bffe25e1 SHA512 3c0bbef2af7330e7ee760c22cb2d90f8adb1ba522309ab946745f5ecd734bf094633b943367c5d5235021d6bc000e5569df8e41380f582f7df8500b9eec40fa5 DIST thunderbird-91.8.0.source.tar.xz 404452336 BLAKE2B d045244b587bec6a35561cfa1de0edfdd898e2f5b03373053fcab7584ecd3f3fbddd618763732ce320920de6f3af4033b19f7970e0a87cdd70c21daba4d0791b SHA512 147c7ad68b0a32cc0fd4405935836af1fa77bbce6a1e367b51ef9871e7fc2a8fe908a1d200be34326f4f339d272e62f619b75680201fe82d301ddd02e23824d5 +DIST thunderbird-91.8.1-af.xpi 561895 BLAKE2B 14609f1e3d08e90bd8fbfcb241982602ea70906bf121cbc4008aba07cc062e1aa3b0334d458d2e045155419d2437c22d23afa5e5bff77b3cc1a2cdced33258ce SHA512 698673f6afb6285806bae6c88a619d20ec654d2cd1fc525500022f0300b113a0601be53391ca714b49addb7a8d8be84382892aaf3427fd971925f68e0001bf11 +DIST thunderbird-91.8.1-ar.xpi 665730 BLAKE2B 4a45222fb69435f7736b2fba9c7154b53f74fa8a9a54e51191dbdff6417c3b9ea5dc1d31e80ac51cd050c356266a4957ea4af2f1d57fa17de462ef6e324bb5d2 SHA512 66c40dd5d43b84ab9aaf2f9bf01dd9e9855bad531022c0c03c018dab4be15d13098fcfcddae7e4b26dbff64f851c26f59985577e8d09cb7ba03a8b303befcb7c +DIST thunderbird-91.8.1-ast.xpi 580511 BLAKE2B 08b8a68e138e43df82f9051d455959b35408e52441106c1d18db6e4c7c948336fb9d5803ac63efaf0ef0d76733548be15102e607d342d0dc841a4510baa881e3 SHA512 9477df1858b8b42ebb693681d57bffab925a02ba0be6815d82d65f273c5d52d4915ea129df88c9a992741099df770ac570bc6e169252ef265348ac972765eea6 +DIST thunderbird-91.8.1-be.xpi 695198 BLAKE2B 9d285fd5a9acca811f5f1ac8c9ee2125d0383766cca63ada56ee78170ab717b7f8d0996df2cb2b206ccc15564f875719901a96a256d1aab3428618f6e451f69f SHA512 e144d5d1a4c3a37209df9108aeebe544c4bcc33c5d1754884f8378eaddf958886f97b14857346fcf8a472ad78f24af1c2d1cb399fbe73e28d0282e08d04c227f +DIST thunderbird-91.8.1-bg.xpi 690996 BLAKE2B 730e21841eb94099813c293b47bd5d75b5bb9a155faa7e7f3d884916ea013a7ca0805f9a9964202afe3b4a4bb053f2cf7179a0d69e3438bfa69a26babd7f2314 SHA512 a7e697f83877961f0e687b6c57e9ed3f0b5a5de4cf6089357adbaf1343ec35f4f4bddeb25e4b60bbb93bf2dca364143034286c1cb4c2cc3af0c74186f09a2a18 +DIST thunderbird-91.8.1-br.xpi 620588 BLAKE2B ed8128865f0291f9efd0637f158e4f96f57326783328437d26212c80814e2440c5078f33bd38e489ed1585bd59151114c2713a516145581de33aacb11a0d1e06 SHA512 1453278f382276bdb6d5344318d7a6b76bfcc863801552d2b4a01f5bd7aa00c218ea604fa1f1e003b74d5721b833b267af7a4cfc4960be21ec940174cb66e547 +DIST thunderbird-91.8.1-ca.xpi 645975 BLAKE2B caa6d57e9deb1cda73df13e24e9515d4d0fab33af96b53d206aa5c7353f76702204785bbc9029356ea3bfd2d937a945d5522c6a803656b1797884331f4c4c125 SHA512 6279ec4103c5f8cde8d87fa67911e8d3453663b0093c5b57c6ae04ebf01f0d4d838b08b0effe72ad1bb92bb926f3cfffea6c906e1c700a8d5e0284179b17b97f +DIST thunderbird-91.8.1-cak.xpi 652066 BLAKE2B 0d26242f82d173fd232f310dff495212a1c8b909045d5c7b1845331da6012affa51f88a574c37c2c08b369ac644297b02dd7ca87e2c8133c8aa0fd092b2f3910 SHA512 998e7e960c7752b36e523f1302a5f4a74469c2232c531f7dcafe155b0824ded6908ed9865bb10bc5f7dfb4d5d99744c0430ef8a2a96502a5b41431949e9a5f37 +DIST thunderbird-91.8.1-cs.xpi 711939 BLAKE2B e30ef7bcaf968d7fefc7a4f6eb91d80df9cf9c7c5d4419fb35b6fae3b382c600f1b0538defcc75652d6b3349bc374701d9586bd03c26298bff2cfd1f5a640096 SHA512 0e7593fbd9c81b026496efb8f2ab95654587ff7fc7bd377594eae866c98d06d032a3a17464fad1645f4414edd7c994d5ee4e400e86cf504bb86eccd8f252a71c +DIST thunderbird-91.8.1-cy.xpi 688889 BLAKE2B c4a259fc29248879226314930822669cbaaee9ca917828274862e6abe1453bd950cade07785d82a91ac009348c090214e6affe9037588b29e2706ba9ebae8c76 SHA512 28119e65a361689be5fe4ae6ee3b823c50420dea2d940911f6861d4c72b466e92aec2c9a8be93b4bde09d499bbf325bf43f3876fd2962a5b9f2fa7a886f69ec8 +DIST thunderbird-91.8.1-da.xpi 674444 BLAKE2B cbf5789e902e4ca5eb9da0a98b80878b85ebfda610b3f80909f0cfa3a3d2dc307a37201d6cc3f2d06d124d14cb8ada2f1a0303cc96aa57c09ff1d8e563f46605 SHA512 e0e89b9ffef527b7f4df3f8d769b9497efdf1a83bfc126e1a9503609b2982d398caada36004ed4d5a72a33a3fa40e8bef913ea14a8a4bbabfb82aad5c38561c9 +DIST thunderbird-91.8.1-de.xpi 697527 BLAKE2B 1c615a420f3d703d6418bc803d7245bc065ccdac46bccb07f5ed4a253217bb0ed98512bc43021494f503801a8906c1850e275cd2d89d7b267e0344a435d47c69 SHA512 14848fa076d633271ea4ec336c3ce41755f658b51a67d62237a8e544378957a036f56c456ce9cf88735569ab80af4cb80e184da654d62ee548bd23822fce5872 +DIST thunderbird-91.8.1-dsb.xpi 724000 BLAKE2B eee8db5ac1def0e0d9494a12bf68b3ae3b130cb7935ade0416d99824125572ae70c025c6cc785e8dd6953a6eeb6bb7ce2b14fd7ddb0bb1214ca43987a6c059b4 SHA512 a4828d6fc9546bc51c5bf128c87d891c9659e24f21fb6a7ea4bb12d4a3bd4c8f66423a855fbf4ef4dfbf3129a9854cff19f17c4f80bc3cb4b014356f45775eae +DIST thunderbird-91.8.1-el.xpi 821180 BLAKE2B bdc426dd01161604c9b7821be13713b43250de0985dbfe772ddd99c5370d4b621d0632901a7964be620ba4b5b392827ffbb2f6497afa9c507611d84b83c58f1a SHA512 994f03d1367e6b3fe70bd8b1772bbd255505136613f89b13c5dc00fccbe3170ef6220c59dd73bc81555a0cc7a8017fae2d472b5385401a56ca504c407c9c1302 +DIST thunderbird-91.8.1-en-CA.xpi 647814 BLAKE2B cfa4742f70af6d2213fc2989d69f88c6f306de7df3245bec63c7635c93f1a78553ad40cf9c4a74e88bf95ae51f6cc54122e488024da4af91d713b97e54416a01 SHA512 91aba2780958f5deb1d21422d9d53b206cbb95252b25cfa0af6a595978e7eda315f3dbcf0c30ca1b7ef5467cf82fc8687926f2c9d29ece2f01b2fbdc6100fcd7 +DIST thunderbird-91.8.1-en-GB.xpi 650551 BLAKE2B d6cf78547657cd0f1a1b5c769bf32d6927226e3113f4b15c226bbd0887db7d56704800206babc9f359c662974ad9bb83fa1f868c22d4596d8c823bfaf8514899 SHA512 994ecb8b0452dec85df199e9c0db1b6485c420c8a1cb77eccdc805dbadf43dc86dc64ccc1c35582b30fc2e1d625d35ef5add718808e4e7489ac680fe3eec5652 +DIST thunderbird-91.8.1-es-AR.xpi 700496 BLAKE2B bdf7548afebed5470ae837c0eee8fd9116b568e27c41fec89ad514f8bd3a4cdaa1a6164c90144533f41cfa9318447651647623ee34c8393b524d2bd9ca284dcc SHA512 3093813a60726feea716c6b46660509baa5fc732e0b54765be6429bf2b00dfa5a9dcd7cef69a5a7c963ce9900f0bdc791db20fdc322b67c72f6826cc2a2a5f02 +DIST thunderbird-91.8.1-es-ES.xpi 630920 BLAKE2B f6933e1b7b79c9c7bfa5dfb4ee3509abb4c3f113df4fdcec6def90e12a527dd31079261bfa6bf5554bbe0cfb1327a6d7a381d73d4b92b55511758c4da6dc8197 SHA512 612c108fc89e84e979154dbcdcd00b246ecdbcba2f4637e19a586ada0d7ebf436f13986b83cef07a8a83e5697079fc6e170434ed83e5c29202cd6d264e1b10db +DIST thunderbird-91.8.1-et.xpi 672170 BLAKE2B 516d9ca90bc685d29a6be630253619a07623b10b10b5a3ada23b1775f9bda69dd365c3fd25f4bccfad9072c256fb90c48d00bcb4cb36c8ee8a6aecd0030cb32b SHA512 7f2a5f1c1204d5857153b5d11eb76ac1b05a9fba810b0a38768438862c0c21ccc51bbee96e3c4da3217c839049b2fec72f0d30c6fafed4b71d31d00b7e176b13 +DIST thunderbird-91.8.1-eu.xpi 678263 BLAKE2B 4d5ad3bf2b5568973cee14d7488e82a7fbcd9379baf03ab6602b531971c3cf84ed1ef9da62bdb2d41669b28ee582058085e82add75168dc38cc379db6ff09584 SHA512 a9e64dc7de976bcdbd9f0b9d0c5f5bb256120a127ae7346015a43dffa8c0d2cd55a2c523100124b736796f81707ac29f9e34e217e45725790815f277a699b2c6 +DIST thunderbird-91.8.1-fi.xpi 676630 BLAKE2B b2e7ab580d9a25aa12413f005916734c171f2694cad57ee6c42ccca5b77f11076049ee5a63f2d1e12b29bcc595d25c34ceed7fd84317417ab2de90dd0ad5ea8d SHA512 bfd003432f8a4cbf490504279df1000ee13bbc94cf3f0ce46d20ccd2a373c9901a26b2ee1063681e6324537736678b0f8b7ec4465d517fd0870644863ed2a5a8 +DIST thunderbird-91.8.1-fr.xpi 711453 BLAKE2B d4a2981c22f57f310b49a3a7c948b8962f3452c72d3463e15c3791c47e2a6d30d6eddf44bb50e9954e041a325ca78a039164c840b4811b26b9beefe657777e1f SHA512 5baeb10395354631562764c59f09518edb48ff30e7612e5f01b5f334e6c07bad743372ead87566b2d15837e9213306fe93a078bcb4719a6718d45986f35fc8b4 +DIST thunderbird-91.8.1-fy-NL.xpi 691880 BLAKE2B 4d441c6e221af369fce9c9fa3ffd077107c474583fccd895c0859469dcc4abde4464a7b447e5348b615e612072b818bb951cf2892cba5fbeb327b60207f8023e SHA512 a0484ba202847e62f50319f26169b126726335ac41c69345225421f8790f6c73b5119b53746cbfa4251545542fcb20fdb1b4deb0e9060fb2082f03733af8d302 +DIST thunderbird-91.8.1-ga-IE.xpi 613124 BLAKE2B 208f198b7ac1977298ee3ca897a9219db3c6767710bbe4aa06388db235f83ec80f45eaa8d1d8bec56c9fad4bbdb7669ed373f585dbd2a7cb62c7a672ff92db0c SHA512 a39e8007b71b008a64fba4006c2d71cfc908abafb2fc9449c22a771782b1ea2da911361c6c52caab2de97ddbfd2e5d5fb1b65a147aa7d5f3cd9834f047e69d47 +DIST thunderbird-91.8.1-gd.xpi 640649 BLAKE2B 88b82b4af9adc31cfa4df37a0a6aaa29baae1f409439d7876cc5ec46569812fbac4062b4efa31b16cd22d5f38493740f620b800f8a76e16a4ba05aa9d01d8c99 SHA512 9d1bac64333b2082edb5ee8b9b6e494a25b750f1accab74c2c79bb582408bb776a6bd83b078f2b59ccab445ed2c9f8bffa4089f51ecb18982891a53e7b3751be +DIST thunderbird-91.8.1-gl.xpi 677790 BLAKE2B 9bda1d1eda601e86eaf41a398a6b9c5c2520aa5c8424b252b61141faa94f314909af29e597244db3f56372f8bf5a972165fc07516776cd7da3a08bec06b2f64c SHA512 b0a33d1a5c142b132ae26b11b7258f3707be7c680b4bda6d2a817636aae3b106f6d400484e88368b6acf272b46e274dc6105aaa7be5e2f20833647f46ffc0e33 +DIST thunderbird-91.8.1-he.xpi 673191 BLAKE2B 82bfb2ad34c3e56c27a7588b5fbaa2f91fbd842679f9916e1609a9bb974730a36db1a15e63e4fc544492f91fdba4cfd369ee1903ad30202a0399c21836a53102 SHA512 f99d2da0f3c89d0edb3e49b8c6fa7e8055209ba19678f3412a0ace06001b4b9eb45f11d76819b8032b32d9f325b14dca3882aa7cdb727b4dbce714934cc732b8 +DIST thunderbird-91.8.1-hr.xpi 653581 BLAKE2B e0d63d2038dc4f3a36d2681aa27f41a2a86d2e3ffa3e172612ba3413120f6cdc9f84b124cc3a90cfbc557104ac63a5e381c1a5ebdc3620b7823902ec29b7e1e0 SHA512 852759d628c80b7d155faeb9e90301e1db614c5f1162a2a811597372c22bf1e3631fefb3fe4edcaa5a54584fe89af0ebf3979adb4174a83cc7ec2edc71f22b34 +DIST thunderbird-91.8.1-hsb.xpi 720812 BLAKE2B be7cbf2f592eff523d128488a55b615264997f6ed0e520aee9eb1985cec7d90df1b251466b03ffee4c6ee16d4087634098ca2b9f4af1f13c0d057ab57862484b SHA512 23b8919329e20f700ee35774f295078767be660d12139eb09d1f1230a76cc320f0d63cf93dc7bec4f02921b4aadae5d10f7f06eafdbbcaa1c9b6f909a1477456 +DIST thunderbird-91.8.1-hu.xpi 723399 BLAKE2B bf7e4a440cde8399c76cd36319840ac270a44780f207ceeb91969fd08bee1711143a1861950a77b9d8c60b7e43f3503ba70f129e7d2852db93fbe0ab0541b826 SHA512 bf85f6a83099f4d359506e0a7784576cfa0a544e75762473840ce73c5741fe207cd01897d8d83d464808c13636b05b363578296dc9840aeeb3f88142a5715915 +DIST thunderbird-91.8.1-id.xpi 648250 BLAKE2B 6f6563ec51a1838c2693f5dfe5ec5868f27d42d430feaae1bc134581fb34a4708cd3903fe95ab6cda49337a21ee29cbcbce84698506164def7a18322b0e5b90a SHA512 64b32c0561a8edde514718ff1061a9e815910026caf58e671c8406ac183a12abd4b4f5ed03c09e0a46e1dd4ff960bea0332b002a2b2fc1dbc2db292cf530b92f +DIST thunderbird-91.8.1-is.xpi 682262 BLAKE2B aef838ff9ce0331c75096a9733a94307b0fde8d07f835e2b0c98be2e5da43d627406c68467d3aed043761af4bfb5d5390ce4c5a9061e3ebff28d71670d53b41b SHA512 8af554d31b2769f3e39c829627fbd623fe1292359bd86057b7aea9e5c5013f687eddd47b0dcd83d1d97d2e7143cd07b3ae6646140fcc2979382a79298494bdb5 +DIST thunderbird-91.8.1-it.xpi 613334 BLAKE2B 27545126c484efab1c12f2b9ea9fdd053cb38e4a598a363a70335b6ceece23b4498551fa3fb55b58cb5e3905645709e65b3c637d489a6ab1616bc64c91b52898 SHA512 aae751711ce8964adfe9aa431a145b4a93db2301043f49de21028dce6fdab74670a0779fd59177ce974ddef23d830cf06112b033ff2b68793cc2c6ee2b1651d8 +DIST thunderbird-91.8.1-ja.xpi 756466 BLAKE2B 2127ab26a321e0622e77243d86a935d4713f728bdf7e0e4681611033cb164dfe9bad2a01a3811631ede74a5fc7fa913151a39bc9ca977e71fc02e7ba13622e8b SHA512 5b852e842fb4b811cf57baeed0eefa9efb60bf898a5d521554b376f41c3b350be8cf2d058757076dbbf7fbe0adf5e7581acedc09662a2d2940f7fd31a5e5a77b +DIST thunderbird-91.8.1-ka.xpi 762629 BLAKE2B fa766ae093dfee966f4a4f1ce9cfdf9bf09706ce1ef21ba28d9565a3977870ff1486978fbd37b2bdc34d8c3fc776c65fdd88e49470d5cee0a5894a75d5a22582 SHA512 e558c45a0064bf49809235ae0008a5f7ff51b26cf5285b59554c2506453b836d31a52a8842758b6392c4e8e357d8c8723ce7277b5e53043b86bf2445bf37b629 +DIST thunderbird-91.8.1-kab.xpi 677086 BLAKE2B dc2703b82c606e5d65474bf3962d5874b94b6e5fe9a893653ed06d926eaf315b6a707e13f25f786a8c479a2ef50bae45aff37c8382843015d557606619240791 SHA512 2b2212a7ed9a398af417f1f2e1457d8f6d035b4459f09154ab1e82e57606e03e1e52adfedaefe3b586c79ac5d97261b41504b5413bf3eaca6e498513f300f378 +DIST thunderbird-91.8.1-kk.xpi 745524 BLAKE2B 7c8a3d4f4e21d45c5bb51d8636bf891ca225824118c57d09e22037ec703705e199b278e7d203f9034dc95734db55465877fb060ba97b5f52229c9af73d3093e6 SHA512 17e9cf08529e5637a30cd65feb4fc39a2c65d4ffd0674fb67788cdf8c2a3d3830c5135813f73d1b1e6179369a263fb4f8fcc7500e11d86af919da86eb055f48e +DIST thunderbird-91.8.1-ko.xpi 704768 BLAKE2B 419e11fcee81bf9f89a2f972a513ca2e6cb06e095d5be2001a81d1607aff3758ade4ab693142650cc1e0efa9e84543909afa47476b65614945b1237fe93e14d2 SHA512 0d3b28c36bbb3a1b3c29fc4cb92cf0a1913f5284bdb10cc8f7fbe02433a6fc4c2ccb78fa6591bc24479ec8a4dd3ba571ea9d90b1d7e9bc36535a88fb53fbf4df +DIST thunderbird-91.8.1-lt.xpi 696045 BLAKE2B aa8fa41aee59091476e0f11bc909561a4d4b34f501306c863c29042c12e6663faeb62fb2142a7be8d65e14e7afa850998f98c26e0d5e4c037cbd9af9370dbe61 SHA512 e618ed502cc84216e11185e46695b061641607f77b75983de909f7c22f4f05e30671c5baf71cde638a7d5c400bb839a8c124e869453cf3d404b5807b1036c5e0 +DIST thunderbird-91.8.1-lv.xpi 618523 BLAKE2B b5f08da5c1d1161523e3eed709635f4effceb26cc31b7b3f84d7fd10f8ed2aa96ebc4d27314fe6a2e918af6002c0665523a0c936a38051b5fb47fa05725da806 SHA512 26bbcea3ef620529a63307f415e4c4db819025832b5528ad021f190497e22b82739b5cb31b03c6a3f134cd9ca439896b4cdd07abbd6f536a40d7fbd3f8c2e556 +DIST thunderbird-91.8.1-ms.xpi 578080 BLAKE2B 92b46f9710b69184de643bb2343991a6ea3da23ad365a6d80e03e89d7a4aa21e8a021883c070dd7f3ce593c3629c96c09bed52079a734e1b555839df9f9709d6 SHA512 acd4f35c3de92d6d67a5b4329340daa0c1d82a7ef6ecefe94dfeb0ef049dc92a2fb6a92ced709165ff2dd768d4577b9576aa9ca1624aab14bb3fd1bdbd43fcec +DIST thunderbird-91.8.1-nb-NO.xpi 653326 BLAKE2B 7a3257c89c54778cb484e88d3fae1813c7622a433556d6ca4cdfbfca64706a16bf8fd4cdb8e28a3edf70e8c1776672c1c8bfed79e436d10c5da787f32276e320 SHA512 c0a8b54748b68ad029353c3074513b5fe6dfe37d1cf61ccad64740cd3793c5b375c4449288f47dc5709ee8c423b95d8771bcbdd3e16d20b2c31e4db8b771c1c2 +DIST thunderbird-91.8.1-nl.xpi 685343 BLAKE2B 50f71447380ee7b83e5db62fec810047447dcabe398e1cdb0d6aae111c6f0ec6685fa7992195c5d64656a4246ebb9ef0b906897d6b56d5b7b3e0bccc132fb84f SHA512 6ec5dd50ff93d786452b15ee1c1ec9fb560cf422beffb9828008da54928f38a7d51402350adeb8cc7e20dd32374e2fdd891c3e685f1463ae94f2140e246e4ac9 +DIST thunderbird-91.8.1-nn-NO.xpi 658571 BLAKE2B 1a26063d8ac822fbf751dbca589752ba24042e734775b46af207cc1c55a60e0bde3e10dbb6ec999a82b90ae65402463d25bdc587681cf9e8514a6ba925c173bd SHA512 5369d9187cb1350d97609c51b2dfcf9968b6e2e16ca67a5807308de59d6bb78b3244d1db59e9590781e54f119ec7c80fd7ea02abb737a137a64d4625c1a2e7c3 +DIST thunderbird-91.8.1-pa-IN.xpi 652335 BLAKE2B 1b71aadefe236514ed30b549d59ae1721db5761302d90f2e14b028c0b65f887ddf3063514e34a239e48b5f775bfa4089b71fcc961c4530d66b3ff3aab358515f SHA512 f98526d0704155f699b307936b073f9629c1bd2ff4b3165291107ed346773860c0896713bf309acbade556986387f99c165eaeff062d02d039bb8cdb5295dfb8 +DIST thunderbird-91.8.1-pl.xpi 694113 BLAKE2B c23ed1f6147d8e88c97746996bcd29460f6415c8a2308e5f1068f440bde375c55e146dbb047ec14fd9a52ae321fd8793f43ef758dac11045ff8635617400fc34 SHA512 2de6dec6e88557a29970e57c48883640ebfec951293a7dc46dc2301fcaeec55f0651414663f1dd1ad8cbd9d3506a540637e8191d892c0211a1363e9d6a4ceb91 +DIST thunderbird-91.8.1-pt-BR.xpi 694133 BLAKE2B bc2fdff6d457404c190c03b4aa549dee3665fc54a56b72747f8b21534387e4c0912b91573357143b17da716b7093e7f1ba868ab0887a8c8639e781809b96fcfc SHA512 23bc0d9a7848f1627760e90c41d350349037724b938ec785b5e0b2c07608c9cd702f9bfcf633dfe753e5f7551287898d08669ddfa1391b9cdf0cc1191e485c89 +DIST thunderbird-91.8.1-pt-PT.xpi 674674 BLAKE2B d81e6d9af772b6a266f1997a3aa76e2c6d3749d0686578e3ebaab052cb78e820548a2589dc778ae41f44a7d4245fb28a8f63c1f12363430b423db556df0fddd8 SHA512 da583a0fa99265f11b1016c54d0f97755ae0e132d188d7c6a39b2418930cc110abef5a293626db879e2f417232bcf7c93e690f6fd45560f18bf156d87a6d2a2d +DIST thunderbird-91.8.1-rm.xpi 687615 BLAKE2B d0e04fcdca37bbbefd61944366ee11766bc02e88ff7fef8714fd02dfc80f57a862a696787258dfd7ef905b6b68a36e02e808ce4c6eb80bff2f0cb7cfc36dc565 SHA512 e1433036f33f7c920a0df39ad1a3dec4862ea942610463a75ccb2223080db6fe1eabb4af03c8991f7e87ab6ddad8e70ae68f847b0138ec1e0e5e6558c42ac59a +DIST thunderbird-91.8.1-ro.xpi 661347 BLAKE2B 142ec1faaf1b946810edc642d31d65fbc4309d6d52a35329a82c13d9ef74f35ce002f670479803b49dad1ac924e0b942258d752a6ed88f7c8464ab5736c7a58c SHA512 3be36a4cbae3852fd688c34f7b6ee72fb08b4fb1dd86adcf508ea2f6c8c5eb6a5c282842f017b92fc18245faffc4f7ef9ee4861a33ca12010bbd3f3c86882e2f +DIST thunderbird-91.8.1-ru.xpi 793372 BLAKE2B 5aa64a35a4e835e7b778a54f2ff7d25222cc844580cd1a8506a6d08d2cb985bf450d6e45cb2398398b16c9cb125da1565a96de4f7560ed40c34de7a2396c7949 SHA512 9fc20be6e16a261fc56415a443e7e65e6eae7db5e917331b9a7127b2116b0eda6c746646795da62d4e49b0c871b76999bb396bc3e8aaaf9d8b1ebea46c640dc8 +DIST thunderbird-91.8.1-sk.xpi 721093 BLAKE2B 5d9d3ef339760d0f62645f22d6c8f45be8d6b0ba67a2590e04ab33f9474b595fcab44654fbe66162206abc751ffbea95c8d95828400fb5283f34a153ee3cb45b SHA512 173260faa9ea1f4fcbdae152b0dc1cfc26aab445a46bd9e5b834e864dd124e2a3b8fbba95fb0445fec8ff77357d1d3c7d9b8a45a30c32bb6b6846fbdc1016c35 +DIST thunderbird-91.8.1-sl.xpi 682544 BLAKE2B 17da03bb52e8fade2f50010eb2a0486472e01556ebdacc65e98e487e54f8617c1e76483b282f394bc4fd9ef4b9a6c706d35ea12f10d205515682477bac5faaca SHA512 4bc30c15daef990a7b7c3404472d8d333caaf2b94151398bcaf0a05a21899be461d5d561ddd339d1b3ba71e3fe27018e515e869fd6f0b69070e21d233772c0f8 +DIST thunderbird-91.8.1-sq.xpi 703626 BLAKE2B 6649a2c92017ac0a0d7080f89c58b2bc0d6ee4c0b7f7ff2e4ea8952b35b51c430a4b1ec6be3614df8d17643d1087bed3a8ec8678ad87c606b1f6331121ee589e SHA512 5d489bba80cc651517f862cdfe5642e225bd4662c196493c0060f50cef4bb2f109092e3d131317e006c4fad4dfff74bffa9a7b076389f162d44c24163ad26c63 +DIST thunderbird-91.8.1-sr.xpi 710564 BLAKE2B 5a1ee7a9ece65dc2ca57655f1a6e67f47274560e0b479386b2e021c4e07f4f2aa3066e09a97baadd1b2e0f953e3be100b12601353114878e32131e08a7210fa7 SHA512 ae6eb4f020b45069b52429bebb974bcb39bcd2a9b874a96b7e9ad1811ef66f920cc5329ba56c6b9f42e9d9def23dfb7f451e173db5d93c5aa152a61f2a2e535f +DIST thunderbird-91.8.1-sv-SE.xpi 690968 BLAKE2B 153ff5a6ebf9244bb3121d4fffa8d2d5c285f7b2f03f55d5349b00093d2359d07d192ada953edc12eb032b2785fb4d0c4fab205ed9e1cc7d52610067bb4fcbbf SHA512 4f3f660e8b3322e4037e6c1f401b863da179a2507df4c83253155cbc97f120c7b68027dc0bcac079deda647a666987958765a4186525a1af5acf1dd05f6ea9f6 +DIST thunderbird-91.8.1-th.xpi 748756 BLAKE2B b1ffeecf89f4cfe8057efaf4ae447476fe3d3bc304e459776c4ec649331f309d7d7583c40098d180d86a2bbd3a6f9bace731747b6d48525a959039ec1d06c773 SHA512 ce428d16c8089c96cb589889d4642caf7f4fd11842b64ba4570189fe41f608fa68ec07e8a0857281581fd1a770b4b7e95502801c255023a7009352f617bac293 +DIST thunderbird-91.8.1-tr.xpi 699653 BLAKE2B a07e8e25793c8a4235ed9b8d9e13a8ba2e9363fd739d2ba94fd56af7aaf18b8b43b4ef03269599d27b60b436dbaa03156c4cbd199b31867437c48bbb674f786d SHA512 e02886bad42d759b1c80dcd2134a8e72f880eb38524b23800f0004e814d7e3d58d5c6f2209d804dcafa76dc801c5fb0b493a986a0260655cab0c1afeadf4208f +DIST thunderbird-91.8.1-uk.xpi 798482 BLAKE2B 00fa04d3b1979847e1f4082ab9e1be94931912d57c215adaebbc81ffdf365bfc7a43c99ea34f422da564819c18e1bd3afe5437b269731bd179f73c0358402f82 SHA512 6cde9d0c554c5e7764e7fc27727200356a124d96f8325bc8cf0f7bcaa380900bdbf32173ca78a0db74868b295c68c0ce4026715ea99f06269b7d418fae3a4744 +DIST thunderbird-91.8.1-uz.xpi 595925 BLAKE2B 47cddedc7984524fbe414a5fd6fac5d87170403f0f460efe596215f8f5aecef70e2fcf0160cba8598ec23c408bfbe1750ccdcf139af3101b9f8d22b1b3137eed SHA512 5b551680aaa9a0a2b482fd3c9e3bb6dc0b661184952e29417ecaf46955ad4667331b97f8cd373c4d7ecc080a5a26709caee02e79585cb3d40e731bc3c9d4ee4d +DIST thunderbird-91.8.1-vi.xpi 725526 BLAKE2B 3511130169dc5687234e037e35048446b7fee995d7faafe3ceaff8fd1c80e7ce378f17af7cb9605bd8f9de6e7a90a29177dedb1dd04d834eb26259ae328d2ec1 SHA512 ac1b3342d1094291e25899a8b48bd0bcd7dd3a9e72d3bd854b9dff6441174cd131809891c283b83b1e6e53ec82148428f6bf8bd23b2e811198beb16c2caa7bf1 +DIST thunderbird-91.8.1-zh-CN.xpi 730901 BLAKE2B 6001708f9760a81f34bfacf5216c383b8f8726364cb56e70d144f37d42a2d72983c27804eae0bf9f1f45558c8e65058ab7c27af59606b9507325f919e3e3c73f SHA512 aaa6ccd11325fed781d67f0a004c60c1beb1c902c7746a7c7a945abb2424a5afcbd10cf09655e6872754884ad2de062d012eb9de5fb687bd04074ebceeed2932 +DIST thunderbird-91.8.1-zh-TW.xpi 731944 BLAKE2B 3d09cfe5ba5a23c85745d006c4669485b37b2452f4a0f4e7cc7e5de1ad4cd183682225dca812bc31d474772b525440f125b2f41835d0f017f5ca990124062103 SHA512 c0047a86346a509a73002f89d3b34db76436cb4e09f736dca3f61513a710a632248a6eb8e9b0e8fb3ec3311f49d99d688b827b7723e693e3750b6fdbb050cf54 +DIST thunderbird-91.8.1.source.tar.xz 403849008 BLAKE2B 77cc2304c656c317e367a9037b6bbbabf382a7be0643ba9ef7e3e95ae5ee7c1f1540c990065973988ce6cd2041a392306be00d0297ee448562fd3529347b6678 SHA512 1591f3e9c76c1f2ea7fa5e194a7d030c8657a7855a95c8a177e8067c5aa838f0d8ca2652cd049b4bc88d0c9e604285a47b0c8316c190e2ceadfc1130d1e4de6c diff --git a/mail-client/thunderbird/thunderbird-91.8.1.ebuild b/mail-client/thunderbird/thunderbird-91.8.1.ebuild new file mode 100644 index 000000000000..9aeb25dc77a6 --- /dev/null +++ b/mail-client/thunderbird/thunderbird-91.8.1.ebuild @@ -0,0 +1,1145 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +FIREFOX_PATCHSET="firefox-91esr-patches-06j.tar.xz" + +LLVM_MAX_SLOT=14 + +PYTHON_COMPAT=( python3_{8..10} ) +PYTHON_REQ_USE="ncurses,sqlite,ssl" + +WANT_AUTOCONF="2.1" + +VIRTUALX_REQUIRED="pgo" + +MOZ_ESR= + +MOZ_PV=${PV} +MOZ_PV_SUFFIX= +if [[ ${PV} =~ (_(alpha|beta|rc).*)$ ]] ; then + MOZ_PV_SUFFIX=${BASH_REMATCH[1]} + + # Convert the ebuild version to the upstream Mozilla version + MOZ_PV="${MOZ_PV/_alpha/a}" # Handle alpha for SRC_URI + MOZ_PV="${MOZ_PV/_beta/b}" # Handle beta for SRC_URI + MOZ_PV="${MOZ_PV%%_rc*}" # Handle rc for SRC_URI +fi + +if [[ -n ${MOZ_ESR} ]] ; then + # ESR releases have slightly different version numbers + MOZ_PV="${MOZ_PV}esr" +fi + +MOZ_PN="${PN%-bin}" +MOZ_P="${MOZ_PN}-${MOZ_PV}" +MOZ_PV_DISTFILES="${MOZ_PV}${MOZ_PV_SUFFIX}" +MOZ_P_DISTFILES="${MOZ_PN}-${MOZ_PV_DISTFILES}" + +inherit autotools check-reqs desktop flag-o-matic gnome2-utils \ + llvm multiprocessing optfeature pax-utils python-any-r1 toolchain-funcs \ + virtualx xdg + +MOZ_SRC_BASE_URI="https://archive.mozilla.org/pub/${MOZ_PN}/releases/${MOZ_PV}" + +if [[ ${PV} == *_rc* ]] ; then + MOZ_SRC_BASE_URI="https://archive.mozilla.org/pub/${MOZ_PN}/candidates/${MOZ_PV}-candidates/build${PV##*_rc}" +fi + +PATCH_URIS=( + https://dev.gentoo.org/~{juippis,polynomial-c,whissi}/mozilla/patchsets/${FIREFOX_PATCHSET} +) + +SRC_URI="${MOZ_SRC_BASE_URI}/source/${MOZ_P}.source.tar.xz -> ${MOZ_P_DISTFILES}.source.tar.xz + ${PATCH_URIS[@]}" + +DESCRIPTION="Thunderbird Mail Client" +HOMEPAGE="https://www.thunderbird.net/" + +KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86" + +SLOT="0" +LICENSE="MPL-2.0 GPL-2 LGPL-2.1" + +IUSE="+clang cpu_flags_arm_neon dbus debug eme-free hardened hwaccel" +IUSE+=" jack lto +openh264 pgo pulseaudio sndio selinux" +IUSE+=" +system-av1 +system-harfbuzz +system-icu +system-jpeg +system-libevent +system-libvpx system-png +system-webp" +IUSE+=" wayland wifi" + +REQUIRED_USE="debug? ( !system-av1 ) + pgo? ( lto ) + wifi? ( dbus )" + +BDEPEND="${PYTHON_DEPS} + app-arch/unzip + app-arch/zip + >=dev-util/cbindgen-0.19.0 + >=net-libs/nodejs-10.23.1 + virtual/pkgconfig + >=virtual/rust-1.51.0 + || ( + ( + sys-devel/clang:14 + sys-devel/llvm:14 + clang? ( + =sys-devel/lld-14* + pgo? ( =sys-libs/compiler-rt-sanitizers-14*[profile] ) + ) + ) + ( + sys-devel/clang:13 + sys-devel/llvm:13 + clang? ( + =sys-devel/lld-13* + pgo? ( =sys-libs/compiler-rt-sanitizers-13*[profile] ) + ) + ) + ( + sys-devel/clang:12 + sys-devel/llvm:12 + clang? ( + =sys-devel/lld-12* + pgo? ( =sys-libs/compiler-rt-sanitizers-12*[profile] ) + ) + ) + ( + sys-devel/clang:11 + sys-devel/llvm:11 + clang? ( + =sys-devel/lld-11* + pgo? ( =sys-libs/compiler-rt-sanitizers-11*[profile] ) + ) + ) + ) + amd64? ( >=dev-lang/nasm-2.13 ) + x86? ( >=dev-lang/nasm-2.13 )" + +COMMON_DEPEND=" + >=dev-libs/nss-3.68 + >=dev-libs/nspr-4.32 + dev-libs/atk + dev-libs/expat + >=x11-libs/cairo-1.10[X] + >=x11-libs/gtk+-3.4.0:3[X] + x11-libs/gdk-pixbuf + >=x11-libs/pango-1.22.0 + >=media-libs/mesa-10.2:* + media-libs/fontconfig + >=media-libs/freetype-2.4.10 + kernel_linux? ( !pulseaudio? ( media-libs/alsa-lib ) ) + virtual/freedesktop-icon-theme + >=x11-libs/pixman-0.19.2 + >=dev-libs/glib-2.26:2 + >=sys-libs/zlib-1.2.3 + >=dev-libs/libffi-3.0.10:= + media-video/ffmpeg + x11-libs/libX11 + x11-libs/libxcb:= + x11-libs/libXcomposite + x11-libs/libXdamage + x11-libs/libXext + x11-libs/libXfixes + x11-libs/libXrender + x11-libs/libXt + dbus? ( + sys-apps/dbus + dev-libs/dbus-glib + ) + system-av1? ( + >=media-libs/dav1d-0.8.1:= + >=media-libs/libaom-1.0.0:= + ) + system-harfbuzz? ( + >=media-libs/harfbuzz-2.8.1:0= + >=media-gfx/graphite2-1.3.13 + ) + system-icu? ( >=dev-libs/icu-69.1:= ) + system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1 ) + system-libevent? ( >=dev-libs/libevent-2.0:0=[threads] ) + system-libvpx? ( >=media-libs/libvpx-1.8.2:0=[postproc] ) + system-png? ( >=media-libs/libpng-1.6.35:0=[apng] ) + system-webp? ( >=media-libs/libwebp-1.1.0:0= ) + wifi? ( + kernel_linux? ( + sys-apps/dbus + dev-libs/dbus-glib + net-misc/networkmanager + ) + ) + jack? ( virtual/jack ) + selinux? ( sec-policy/selinux-mozilla ) + sndio? ( media-sound/sndio )" + +RDEPEND="${COMMON_DEPEND} + jack? ( virtual/jack ) + openh264? ( media-libs/openh264:*[plugin] ) + pulseaudio? ( + || ( + media-sound/pulseaudio + >=media-sound/apulse-0.1.12-r4 + ) + ) + selinux? ( sec-policy/selinux-mozilla ) + !&2 + return 1 + fi + + if use clang ; then + if ! has_version -b "=sys-devel/lld-${LLVM_SLOT}*" ; then + einfo "=sys-devel/lld-${LLVM_SLOT}* is missing! Cannot use LLVM slot ${LLVM_SLOT} ..." >&2 + return 1 + fi + + if use pgo ; then + if ! has_version -b "=sys-libs/compiler-rt-sanitizers-${LLVM_SLOT}*" ; then + einfo "=sys-libs/compiler-rt-sanitizers-${LLVM_SLOT}* is missing! Cannot use LLVM slot ${LLVM_SLOT} ..." >&2 + return 1 + fi + fi + fi + + einfo "Using LLVM slot ${LLVM_SLOT} to build" >&2 +} + +MOZ_LANGS=( + af ar ast be bg br ca cak cs cy da de dsb + el en-CA en-GB en-US es-AR es-ES et eu + fi fr fy-NL ga-IE gd gl he hr hsb hu + id is it ja ka kab kk ko lt lv ms nb-NO nl nn-NO + pa-IN pl pt-BR pt-PT rm ro ru + sk sl sq sr sv-SE th tr uk uz vi zh-CN zh-TW +) + +mozilla_set_globals() { + # https://bugs.gentoo.org/587334 + local MOZ_TOO_REGIONALIZED_FOR_L10N=( + fy-NL ga-IE gu-IN hi-IN hy-AM nb-NO ne-NP nn-NO pa-IN sv-SE + ) + + local lang xflag + for lang in "${MOZ_LANGS[@]}" ; do + # en and en_US are handled internally + if [[ ${lang} == en ]] || [[ ${lang} == en-US ]] ; then + continue + fi + + # strip region subtag if $lang is in the list + if has ${lang} "${MOZ_TOO_REGIONALIZED_FOR_L10N[@]}" ; then + xflag=${lang%%-*} + else + xflag=${lang} + fi + + SRC_URI+=" l10n_${xflag/[_@]/-}? (" + SRC_URI+=" ${MOZ_SRC_BASE_URI}/linux-x86_64/xpi/${lang}.xpi -> ${MOZ_P_DISTFILES}-${lang}.xpi" + SRC_URI+=" )" + IUSE+=" l10n_${xflag/[_@]/-}" + done +} +mozilla_set_globals + +moz_clear_vendor_checksums() { + debug-print-function ${FUNCNAME} "$@" + + if [[ ${#} -ne 1 ]] ; then + die "${FUNCNAME} requires exact one argument" + fi + + einfo "Clearing cargo checksums for ${1} ..." + + sed -i \ + -e 's/\("files":{\)[^}]*/\1/' \ + "${S}"/third_party/rust/${1}/.cargo-checksum.json \ + || die +} + +moz_install_xpi() { + debug-print-function ${FUNCNAME} "$@" + + if [[ ${#} -lt 2 ]] ; then + die "${FUNCNAME} requires at least two arguments" + fi + + local DESTDIR=${1} + shift + + insinto "${DESTDIR}" + + local emid xpi_file xpi_tmp_dir + for xpi_file in "${@}" ; do + emid= + xpi_tmp_dir=$(mktemp -d --tmpdir="${T}") + + # Unpack XPI + unzip -qq "${xpi_file}" -d "${xpi_tmp_dir}" || die + + # Determine extension ID + if [[ -f "${xpi_tmp_dir}/install.rdf" ]] ; then + emid=$(sed -n -e '/install-manifest/,$ { /em:id/!d; s/.*[\">]\([^\"<>]*\)[\"<].*/\1/; p; q }' "${xpi_tmp_dir}/install.rdf") + [[ -z "${emid}" ]] && die "failed to determine extension id from install.rdf" + elif [[ -f "${xpi_tmp_dir}/manifest.json" ]] ; then + emid=$(sed -n -e 's/.*"id": "\([^"]*\)".*/\1/p' "${xpi_tmp_dir}/manifest.json") + [[ -z "${emid}" ]] && die "failed to determine extension id from manifest.json" + else + die "failed to determine extension id" + fi + + einfo "Installing ${emid}.xpi into ${ED}${DESTDIR} ..." + newins "${xpi_file}" "${emid}.xpi" + done +} + +mozconfig_add_options_ac() { + debug-print-function ${FUNCNAME} "$@" + + if [[ ${#} -lt 2 ]] ; then + die "${FUNCNAME} requires at least two arguments" + fi + + local reason=${1} + shift + + local option + for option in ${@} ; do + echo "ac_add_options ${option} # ${reason}" >>${MOZCONFIG} + done +} + +mozconfig_add_options_mk() { + debug-print-function ${FUNCNAME} "$@" + + if [[ ${#} -lt 2 ]] ; then + die "${FUNCNAME} requires at least two arguments" + fi + + local reason=${1} + shift + + local option + for option in ${@} ; do + echo "mk_add_options ${option} # ${reason}" >>${MOZCONFIG} + done +} + +mozconfig_use_enable() { + debug-print-function ${FUNCNAME} "$@" + + if [[ ${#} -lt 1 ]] ; then + die "${FUNCNAME} requires at least one arguments" + fi + + local flag=$(use_enable "${@}") + mozconfig_add_options_ac "$(use ${1} && echo +${1} || echo -${1})" "${flag}" +} + +mozconfig_use_with() { + debug-print-function ${FUNCNAME} "$@" + + if [[ ${#} -lt 1 ]] ; then + die "${FUNCNAME} requires at least one arguments" + fi + + local flag=$(use_with "${@}") + mozconfig_add_options_ac "$(use ${1} && echo +${1} || echo -${1})" "${flag}" +} + +pkg_pretend() { + if [[ ${MERGE_TYPE} != binary ]] ; then + if use pgo ; then + if ! has usersandbox $FEATURES ; then + die "You must enable usersandbox as X server can not run as root!" + fi + fi + + # Ensure we have enough disk space to compile + if use pgo || use lto || use debug ; then + CHECKREQS_DISK_BUILD="13500M" + else + CHECKREQS_DISK_BUILD="6400M" + fi + + check-reqs_pkg_pretend + fi +} + +pkg_setup() { + if [[ ${MERGE_TYPE} != binary ]] ; then + if use pgo ; then + if ! has userpriv ${FEATURES} ; then + eerror "Building ${PN} with USE=pgo and FEATURES=-userpriv is not supported!" + fi + fi + + # Ensure we have enough disk space to compile + if use pgo || use lto || use debug ; then + CHECKREQS_DISK_BUILD="13500M" + else + CHECKREQS_DISK_BUILD="6400M" + fi + + check-reqs_pkg_setup + + llvm_pkg_setup + + if use clang && use lto ; then + local version_lld=$(ld.lld --version 2>/dev/null | awk '{ print $2 }') + [[ -n ${version_lld} ]] && version_lld=$(ver_cut 1 "${version_lld}") + [[ -z ${version_lld} ]] && die "Failed to read ld.lld version!" + + local version_llvm_rust=$(rustc -Vv 2>/dev/null | grep -F -- 'LLVM version:' | awk '{ print $3 }') + [[ -n ${version_llvm_rust} ]] && version_llvm_rust=$(ver_cut 1 "${version_llvm_rust}") + [[ -z ${version_llvm_rust} ]] && die "Failed to read used LLVM version from rustc!" + + if ver_test "${version_lld}" -ne "${version_llvm_rust}" ; then + eerror "Rust is using LLVM version ${version_llvm_rust} but ld.lld version belongs to LLVM version ${version_lld}." + eerror "You will be unable to link ${CATEGORY}/${PN}. To proceed you have the following options:" + eerror " - Manually switch rust version using 'eselect rust' to match used LLVM version" + eerror " - Switch to dev-lang/rust[system-llvm] which will guarantee matching version" + eerror " - Build ${CATEGORY}/${PN} without USE=lto" + die "LLVM version used by Rust (${version_llvm_rust}) does not match with ld.lld version (${version_lld})!" + fi + fi + + if ! use clang && [[ $(gcc-major-version) -eq 11 ]] \ + && ! has_version -b ">sys-devel/gcc-11.1.0:11" ; then + # bug 792705 + eerror "Using GCC 11 to compile firefox is currently known to be broken (see bug #792705)." + die "Set USE=clang or select "${S}"/api-google.key || die + echo -n "${MOZ_API_KEY_LOCATION//gGaPi/}" > "${S}"/api-location.key || die + echo -n "${MOZ_API_KEY_MOZILLA//m0ap1/}" > "${S}"/api-mozilla.key || die + + xdg_src_prepare +} + +src_configure() { + # Show flags set at the beginning + einfo "Current BINDGEN_CFLAGS:\t${BINDGEN_CFLAGS:-no value set}" + einfo "Current CFLAGS:\t\t${CFLAGS:-no value set}" + einfo "Current CXXFLAGS:\t\t${CXXFLAGS:-no value set}" + einfo "Current LDFLAGS:\t\t${LDFLAGS:-no value set}" + einfo "Current RUSTFLAGS:\t\t${RUSTFLAGS:-no value set}" + + local have_switched_compiler= + if use clang && ! tc-is-clang ; then + # Force clang + einfo "Enforcing the use of clang due to USE=clang ..." + have_switched_compiler=yes + AR=llvm-ar + CC=${CHOST}-clang + CXX=${CHOST}-clang++ + NM=llvm-nm + RANLIB=llvm-ranlib + elif ! use clang && ! tc-is-gcc ; then + # Force gcc + have_switched_compiler=yes + einfo "Enforcing the use of gcc due to USE=-clang ..." + AR=gcc-ar + CC=${CHOST}-gcc + CXX=${CHOST}-g++ + NM=gcc-nm + RANLIB=gcc-ranlib + fi + + if [[ -n "${have_switched_compiler}" ]] ; then + # Because we switched active compiler we have to ensure + # that no unsupported flags are set + strip-unsupported-flags + fi + + # Ensure we use correct toolchain + export HOST_CC="$(tc-getBUILD_CC)" + export HOST_CXX="$(tc-getBUILD_CXX)" + tc-export CC CXX LD AR NM OBJDUMP RANLIB PKG_CONFIG + + # Pass the correct toolchain paths through cbindgen + if tc-is-cross-compiler ; then + export BINDGEN_CFLAGS="${SYSROOT:+--sysroot=${ESYSROOT}} --target=${CHOST} ${BINDGEN_CFLAGS-}" + fi + + # Set MOZILLA_FIVE_HOME + export MOZILLA_FIVE_HOME="/usr/$(get_libdir)/${PN}" + + # python/mach/mach/mixin/process.py fails to detect SHELL + export SHELL="${EPREFIX}/bin/bash" + + # Set state path + export MOZBUILD_STATE_PATH="${BUILD_DIR}" + + # Set MOZCONFIG + export MOZCONFIG="${S}/.mozconfig" + + # Initialize MOZCONFIG + mozconfig_add_options_ac '' --enable-application=comm/mail + + # Set Gentoo defaults + export MOZILLA_OFFICIAL=1 + + mozconfig_add_options_ac 'Gentoo default' \ + --allow-addon-sideload \ + --disable-cargo-incremental \ + --disable-crashreporter \ + --disable-install-strip \ + --disable-strip \ + --disable-updater \ + --enable-js-shell \ + --enable-official-branding \ + --enable-release \ + --enable-system-ffi \ + --enable-system-pixman \ + --host="${CBUILD:-${CHOST}}" \ + --libdir="${EPREFIX}/usr/$(get_libdir)" \ + --prefix="${EPREFIX}/usr" \ + --target="${CHOST}" \ + --without-ccache \ + --with-intl-api \ + --with-libclang-path="$(llvm-config --libdir)" \ + --with-system-nspr \ + --with-system-nss \ + --with-system-zlib \ + --with-toolchain-prefix="${CHOST}-" \ + --with-unsigned-addon-scopes=app,system \ + --x-includes="${SYSROOT}${EPREFIX}/usr/include" \ + --x-libraries="${SYSROOT}${EPREFIX}/usr/$(get_libdir)" + + # Set update channel + local update_channel=release + [[ -n ${MOZ_ESR} ]] && update_channel=esr + mozconfig_add_options_ac '' --update-channel=${update_channel} + + if ! use x86 && [[ ${CHOST} != armv*h* ]] ; then + mozconfig_add_options_ac '' --enable-rust-simd + fi + + if [[ -s "${S}/api-google.key" ]] ; then + local key_origin="Gentoo default" + if [[ $(cat "${S}/api-google.key" | md5sum | awk '{ print $1 }') != 709560c02f94b41f9ad2c49207be6c54 ]] ; then + key_origin="User value" + fi + + mozconfig_add_options_ac "${key_origin}" \ + --with-google-safebrowsing-api-keyfile="${S}/api-google.key" + else + einfo "Building without Google API key ..." + fi + + if [[ -s "${S}/api-location.key" ]] ; then + local key_origin="Gentoo default" + if [[ $(cat "${S}/api-location.key" | md5sum | awk '{ print $1 }') != ffb7895e35dedf832eb1c5d420ac7420 ]] ; then + key_origin="User value" + fi + + mozconfig_add_options_ac "${key_origin}" \ + --with-google-location-service-api-keyfile="${S}/api-location.key" + else + einfo "Building without Location API key ..." + fi + + if [[ -s "${S}/api-mozilla.key" ]] ; then + local key_origin="Gentoo default" + if [[ $(cat "${S}/api-mozilla.key" | md5sum | awk '{ print $1 }') != 3927726e9442a8e8fa0e46ccc39caa27 ]] ; then + key_origin="User value" + fi + + mozconfig_add_options_ac "${key_origin}" \ + --with-mozilla-api-keyfile="${S}/api-mozilla.key" + else + einfo "Building without Mozilla API key ..." + fi + + mozconfig_use_with system-av1 + mozconfig_use_with system-harfbuzz + mozconfig_use_with system-harfbuzz system-graphite2 + mozconfig_use_with system-icu + mozconfig_use_with system-jpeg + mozconfig_use_with system-libevent system-libevent "${SYSROOT}${EPREFIX}/usr" + mozconfig_use_with system-libvpx + mozconfig_use_with system-png + mozconfig_use_with system-webp + + mozconfig_use_enable dbus + + use eme-free && mozconfig_add_options_ac '+eme-free' --disable-eme + + if use hardened ; then + mozconfig_add_options_ac "+hardened" --enable-hardening + append-ldflags "-Wl,-z,relro -Wl,-z,now" + fi + + mozconfig_use_enable jack + + mozconfig_use_enable pulseaudio + # force the deprecated alsa sound code if pulseaudio is disabled + if use kernel_linux && ! use pulseaudio ; then + mozconfig_add_options_ac '-pulseaudio' --enable-alsa + fi + + mozconfig_use_enable sndio + + mozconfig_use_enable wifi necko-wifi + + if use wayland ; then + mozconfig_add_options_ac '+wayland' --enable-default-toolkit=cairo-gtk3-wayland + else + mozconfig_add_options_ac '' --enable-default-toolkit=cairo-gtk3 + fi + + if use lto ; then + if use clang ; then + # Upstream only supports lld when using clang + mozconfig_add_options_ac "forcing ld=lld due to USE=clang and USE=lto" --enable-linker=lld + + mozconfig_add_options_ac '+lto' --enable-lto=cross + else + # ld.gold is known to fail: + # /usr/lib/gcc/x86_64-pc-linux-gnu/11.2.1/../../../../x86_64-pc-linux-gnu/bin/ld.gold: internal error in set_xindex, at /var/tmp/portage/sys-devel/binutils-2.37_p1-r1/work/binutils-2.37/gold/object.h:1050 + + # ThinLTO is currently broken, see bmo#1644409 + mozconfig_add_options_ac '+lto' --enable-lto=full + mozconfig_add_options_ac "linker is set to bfd" --enable-linker=bfd + fi + + if use pgo ; then + mozconfig_add_options_ac '+pgo' MOZ_PGO=1 + + if use clang ; then + # Used in build/pgo/profileserver.py + export LLVM_PROFDATA="llvm-profdata" + fi + fi + else + # Avoid auto-magic on linker + if use clang ; then + # This is upstream's default + mozconfig_add_options_ac "forcing ld=lld due to USE=clang" --enable-linker=lld + else + mozconfig_add_options_ac "linker is set to bfd" --enable-linker=bfd + fi + fi + + # LTO flag was handled via configure + filter-flags '-flto*' + + mozconfig_use_enable debug + if use debug ; then + mozconfig_add_options_ac '+debug' --disable-optimize + else + if is-flag '-g*' ; then + if use clang ; then + mozconfig_add_options_ac 'from CFLAGS' --enable-debug-symbols=$(get-flag '-g*') + else + mozconfig_add_options_ac 'from CFLAGS' --enable-debug-symbols + fi + else + mozconfig_add_options_ac 'Gentoo default' --disable-debug-symbols + fi + + if is-flag '-O0' ; then + mozconfig_add_options_ac "from CFLAGS" --enable-optimize=-O0 + elif is-flag '-O4' ; then + mozconfig_add_options_ac "from CFLAGS" --enable-optimize=-O4 + elif is-flag '-O3' ; then + mozconfig_add_options_ac "from CFLAGS" --enable-optimize=-O3 + elif is-flag '-O1' ; then + mozconfig_add_options_ac "from CFLAGS" --enable-optimize=-O1 + elif is-flag '-Os' ; then + mozconfig_add_options_ac "from CFLAGS" --enable-optimize=-Os + else + mozconfig_add_options_ac "Gentoo default" --enable-optimize=-O2 + fi + fi + + # Debug flag was handled via configure + filter-flags '-g*' + + # Optimization flag was handled via configure + filter-flags '-O*' + + # Modifications to better support ARM, bug #553364 + if use cpu_flags_arm_neon ; then + mozconfig_add_options_ac '+cpu_flags_arm_neon' --with-fpu=neon + + if ! tc-is-clang ; then + # thumb options aren't supported when using clang, bug 666966 + mozconfig_add_options_ac '+cpu_flags_arm_neon' \ + --with-thumb=yes \ + --with-thumb-interwork=no + fi + fi + + if [[ ${CHOST} == armv*h* ]] ; then + mozconfig_add_options_ac 'CHOST=armv*h*' --with-float-abi=hard + + if ! use system-libvpx ; then + sed -i \ + -e "s|softfp|hard|" \ + "${S}"/media/libvpx/moz.build \ + || die + fi + fi + + if use clang ; then + # https://bugzilla.mozilla.org/show_bug.cgi?id=1482204 + # https://bugzilla.mozilla.org/show_bug.cgi?id=1483822 + # toolkit/moz.configure Elfhack section: target.cpu in ('arm', 'x86', 'x86_64') + local disable_elf_hack= + if use amd64 ; then + disable_elf_hack=yes + elif use x86 ; then + disable_elf_hack=yes + elif use arm ; then + disable_elf_hack=yes + fi + + if [[ -n ${disable_elf_hack} ]] ; then + mozconfig_add_options_ac 'elf-hack is broken when using Clang' --disable-elf-hack + fi + elif tc-is-gcc ; then + if ver_test $(gcc-fullversion) -ge 10 ; then + einfo "Forcing -fno-tree-loop-vectorize to workaround GCC bug, see bug 758446 ..." + append-cxxflags -fno-tree-loop-vectorize + fi + fi + + # Additional ARCH support + case "${ARCH}" in + arm) + # Reduce the memory requirements for linking + if use clang ; then + # Nothing to do + :; + elif tc-ld-is-gold || use lto ; then + append-ldflags -Wl,--no-keep-memory + else + append-ldflags -Wl,--no-keep-memory -Wl,--reduce-memory-overheads + fi + ;; + esac + + if ! use elibc_glibc ; then + mozconfig_add_options_ac '!elibc_glibc' --disable-jemalloc + fi + + # Allow elfhack to work in combination with unstripped binaries + # when they would normally be larger than 2GiB. + append-ldflags "-Wl,--compress-debug-sections=zlib" + + # Make revdep-rebuild.sh happy; Also required for musl + append-ldflags -Wl,-rpath="${MOZILLA_FIVE_HOME}",--enable-new-dtags + + # Pass $MAKEOPTS to build system + export MOZ_MAKE_FLAGS="${MAKEOPTS}" + + # Use system's Python environment + export MACH_USE_SYSTEM_PYTHON=1 + + # Disable notification when build system has finished + export MOZ_NOSPAM=1 + + # Portage sets XARGS environment variable to "xargs -r" by default which + # breaks build system's check_prog() function which doesn't support arguments + mozconfig_add_options_ac 'Gentoo default' "XARGS=${EPREFIX}/usr/bin/xargs" + + # Set build dir + mozconfig_add_options_mk 'Gentoo default' "MOZ_OBJDIR=${BUILD_DIR}" + + # Show flags we will use + einfo "Build BINDGEN_CFLAGS:\t${BINDGEN_CFLAGS:-no value set}" + einfo "Build CFLAGS:\t\t${CFLAGS:-no value set}" + einfo "Build CXXFLAGS:\t\t${CXXFLAGS:-no value set}" + einfo "Build LDFLAGS:\t\t${LDFLAGS:-no value set}" + einfo "Build RUSTFLAGS:\t\t${RUSTFLAGS:-no value set}" + + # Handle EXTRA_CONF and show summary + local ac opt hash reason + + # Apply EXTRA_ECONF entries to $MOZCONFIG + if [[ -n ${EXTRA_ECONF} ]] ; then + IFS=\! read -a ac <<<${EXTRA_ECONF// --/\!} + for opt in "${ac[@]}"; do + mozconfig_add_options_ac "EXTRA_ECONF" --${opt#--} + done + fi + + echo + echo "==========================================================" + echo "Building ${PF} with the following configuration" + grep ^ac_add_options "${MOZCONFIG}" | while read ac opt hash reason; do + [[ -z ${hash} || ${hash} == \# ]] \ + || die "error reading mozconfig: ${ac} ${opt} ${hash} ${reason}" + printf " %-30s %s\n" "${opt}" "${reason:-mozilla.org default}" + done + echo "==========================================================" + echo + + ./mach configure || die +} + +src_compile() { + local virtx_cmd= + + if use pgo ; then + virtx_cmd=virtx + + # Reset and cleanup environment variables used by GNOME/XDG + gnome2_environment_reset + + addpredict /root + fi + + local -x GDK_BACKEND=x11 + + ${virtx_cmd} ./mach build --verbose \ + || die +} + +src_install() { + # xpcshell is getting called during install + pax-mark m \ + "${BUILD_DIR}"/dist/bin/xpcshell \ + "${BUILD_DIR}"/dist/bin/${PN} \ + "${BUILD_DIR}"/dist/bin/plugin-container + + DESTDIR="${D}" ./mach install || die + + # Upstream cannot ship symlink but we can (bmo#658850) + rm "${ED}${MOZILLA_FIVE_HOME}/${PN}-bin" || die + dosym ${PN} ${MOZILLA_FIVE_HOME}/${PN}-bin + + # Don't install llvm-symbolizer from sys-devel/llvm package + if [[ -f "${ED}${MOZILLA_FIVE_HOME}/llvm-symbolizer" ]] ; then + rm -v "${ED}${MOZILLA_FIVE_HOME}/llvm-symbolizer" || die + fi + + # Install policy (currently only used to disable application updates) + insinto "${MOZILLA_FIVE_HOME}/distribution" + newins "${FILESDIR}"/distribution.ini distribution.ini + newins "${FILESDIR}"/disable-auto-update.policy.json policies.json + + # Install system-wide preferences + local PREFS_DIR="${MOZILLA_FIVE_HOME}/defaults/pref" + insinto "${PREFS_DIR}" + newins "${FILESDIR}"/gentoo-default-prefs.js gentoo-prefs.js + + local GENTOO_PREFS="${ED}${PREFS_DIR}/gentoo-prefs.js" + + # Set dictionary path to use system hunspell + cat >>"${GENTOO_PREFS}" <<-EOF || die "failed to set spellchecker.dictionary_path pref" + pref("spellchecker.dictionary_path", "${EPREFIX}/usr/share/myspell"); + EOF + + # Force hwaccel prefs if USE=hwaccel is enabled + if use hwaccel ; then + cat "${FILESDIR}"/gentoo-hwaccel-prefs.js \ + >>"${GENTOO_PREFS}" \ + || die "failed to add prefs to force hardware-accelerated rendering to all-gentoo.js" + fi + + # Force the graphite pref if USE=system-harfbuzz is enabled, since the pref cannot disable it + if use system-harfbuzz ; then + cat >>"${GENTOO_PREFS}" <<-EOF || die "failed to set gfx.font_rendering.graphite.enabled pref" + sticky_pref("gfx.font_rendering.graphite.enabled", true); + EOF + fi + + # Install language packs + local langpacks=( $(find "${WORKDIR}/language_packs" -type f -name '*.xpi') ) + if [[ -n "${langpacks}" ]] ; then + moz_install_xpi "${MOZILLA_FIVE_HOME}/distribution/extensions" "${langpacks[@]}" + fi + + # Install icons + local icon_srcdir="${S}/comm/mail/branding/thunderbird" + local icon_symbolic_file="${icon_srcdir}/TB-symbolic.svg" + + insinto /usr/share/icons/hicolor/symbolic/apps + newins "${icon_symbolic_file}" ${PN}-symbolic.svg + + local icon size + for icon in "${icon_srcdir}"/default*.png ; do + size=${icon%.png} + size=${size##*/default} + + if [[ ${size} -eq 48 ]] ; then + newicon "${icon}" ${PN}.png + fi + + newicon -s ${size} "${icon}" ${PN}.png + done + + # Install menu + local app_name="Mozilla ${MOZ_PN^}" + local desktop_file="${FILESDIR}/icon/${PN}-r2.desktop" + local desktop_filename="${PN}.desktop" + local exec_command="${PN}" + local icon="${PN}" + local use_wayland="false" + + if use wayland ; then + use_wayland="true" + fi + + cp "${desktop_file}" "${WORKDIR}/${PN}.desktop-template" || die + + sed -i \ + -e "s:@NAME@:${app_name}:" \ + -e "s:@EXEC@:${exec_command}:" \ + -e "s:@ICON@:${icon}:" \ + "${WORKDIR}/${PN}.desktop-template" \ + || die + + newmenu "${WORKDIR}/${PN}.desktop-template" "${desktop_filename}" + + rm "${WORKDIR}/${PN}.desktop-template" || die + + # Install wrapper script + [[ -f "${ED}/usr/bin/${PN}" ]] && rm "${ED}/usr/bin/${PN}" + newbin "${FILESDIR}/${PN}-r1.sh" ${PN} + + # Update wrapper + sed -i \ + -e "s:@PREFIX@:${EPREFIX}/usr:" \ + -e "s:@MOZ_FIVE_HOME@:${MOZILLA_FIVE_HOME}:" \ + -e "s:@APULSELIB_DIR@:${apulselib}:" \ + -e "s:@DEFAULT_WAYLAND@:${use_wayland}:" \ + "${ED}/usr/bin/${PN}" \ + || die +} + +pkg_preinst() { + xdg_pkg_preinst + + # If the apulse libs are available in MOZILLA_FIVE_HOME then apulse + # does not need to be forced into the LD_LIBRARY_PATH + if use pulseaudio && has_version ">=media-sound/apulse-0.1.12-r4" ; then + einfo "APULSE found; Generating library symlinks for sound support ..." + local lib + pushd "${ED}${MOZILLA_FIVE_HOME}" &>/dev/null || die + for lib in ../apulse/libpulse{.so{,.0},-simple.so{,.0}} ; do + # A quickpkg rolled by hand will grab symlinks as part of the package, + # so we need to avoid creating them if they already exist. + if [[ ! -L ${lib##*/} ]] ; then + ln -s "${lib}" ${lib##*/} || die + fi + done + popd &>/dev/null || die + fi +} + +pkg_postinst() { + xdg_pkg_postinst + + if use pulseaudio && has_version ">=media-sound/apulse-0.1.12-r4" ; then + elog "Apulse was detected at merge time on this system and so it will always be" + elog "used for sound. If you wish to use pulseaudio instead please unmerge" + elog "media-sound/apulse." + elog + fi + + local show_doh_information + local show_shortcut_information + + if [[ -z "${REPLACING_VERSIONS}" ]] ; then + # New install; Tell user that DoH is disabled by default + show_doh_information=yes + show_shortcut_information=no + else + local replacing_version + for replacing_version in ${REPLACING_VERSIONS} ; do + if ver_test "${replacing_version}" -lt 91.0 ; then + # Tell user that we no longer install a shortcut + # per supported display protocol + show_shortcut_information=yes + fi + done + fi + + if [[ -n "${show_doh_information}" ]] ; then + elog + elog "Note regarding Trusted Recursive Resolver aka DNS-over-HTTPS (DoH):" + elog "Due to privacy concerns (encrypting DNS might be a good thing, sending all" + elog "DNS traffic to Cloudflare by default is not a good idea and applications" + elog "should respect OS configured settings), \"network.trr.mode\" was set to 5" + elog "(\"Off by choice\") by default." + elog "You can enable DNS-over-HTTPS in ${PN^}'s preferences." + fi + + if [[ -n "${show_shortcut_information}" ]] ; then + elog + elog "Since ${PN}-91.0 we no longer install multiple shortcuts for" + elog "each supported display protocol. Instead we will only install" + elog "one generic Mozilla ${PN^} shortcut." + elog "If you still want to be able to select between running Mozilla ${PN^}" + elog "on X11 or Wayland, you have to re-create these shortcuts on your own." + fi + + optfeature_header "Optional runtime features:" + optfeature "encrypted chat support" net-libs/libotr +} diff --git a/media-plugins/Manifest.gz b/media-plugins/Manifest.gz index b4f2d135a0b5..e6e2409956b8 100644 Binary files a/media-plugins/Manifest.gz and b/media-plugins/Manifest.gz differ diff --git a/media-plugins/vdr-mplayer/vdr-mplayer-0.10.2-r2.ebuild b/media-plugins/vdr-mplayer/vdr-mplayer-0.10.2-r2.ebuild index b4c5d4ef33e6..d3d0a34dbf4b 100644 --- a/media-plugins/vdr-mplayer/vdr-mplayer-0.10.2-r2.ebuild +++ b/media-plugins/vdr-mplayer/vdr-mplayer-0.10.2-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 2021 Gentoo Authors +# Copyright 2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -17,7 +17,7 @@ IUSE="" DEPEND=">=media-video/vdr-1.4.2" RDEPEND="${DEPEND} - || ( media-video/mplay-sh >=media-video/mplayer-sh-0.8.6-r1 ) + media-video/mplay-sh sys-apps/util-linux" S=${WORKDIR}/mp3-${PV} diff --git a/media-sound/Manifest.gz b/media-sound/Manifest.gz index 4aa38fa17582..0bf06d09f2e2 100644 Binary files a/media-sound/Manifest.gz and b/media-sound/Manifest.gz differ diff --git a/media-sound/easyeffects/easyeffects-6.2.4.ebuild b/media-sound/easyeffects/easyeffects-6.2.4.ebuild index fe870ff42fa7..cfdaafbd3930 100644 --- a/media-sound/easyeffects/easyeffects-6.2.4.ebuild +++ b/media-sound/easyeffects/easyeffects-6.2.4.ebuild @@ -13,7 +13,7 @@ if [[ ${PV} == *9999 ]]; then EGIT_REPO_URI="https://github.com/wwmm/easyeffects" else SRC_URI="https://github.com/wwmm/easyeffects/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" + KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~x86" fi LICENSE="GPL-3" diff --git a/media-video/Manifest.gz b/media-video/Manifest.gz index 0a3d085372b6..6ceab7364f5d 100644 Binary files a/media-video/Manifest.gz and b/media-video/Manifest.gz differ diff --git a/media-video/mplayer-sh/Manifest b/media-video/mplayer-sh/Manifest deleted file mode 100644 index f35174f84896..000000000000 --- a/media-video/mplayer-sh/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST mplayer.sh-0.8.7.tar.gz 7851 BLAKE2B b7dbaf93c509a3d2bb38f226dafed2261ddadbff24a6e450f3fe2cf5cb5208bb3e89a1830fc3e59d674e9b045360208e7c221498e32f228be9c6e0147aef2588 SHA512 5e83dd2f83b104f7043d828b713e34f47c9a42a93324424c802d4d448b770e36515accf67bd67ce7461201b5e9cd5596da2bbd182eccef9578c9b31b5fed50d9 diff --git a/media-video/mplayer-sh/files/mplayer-sh-0.8.7-parameter-aid.diff b/media-video/mplayer-sh/files/mplayer-sh-0.8.7-parameter-aid.diff deleted file mode 100644 index 3de61e76cd1b..000000000000 --- a/media-video/mplayer-sh/files/mplayer-sh-0.8.7-parameter-aid.diff +++ /dev/null @@ -1,84 +0,0 @@ ---- mplayer.sh.orig 2007-02-11 16:34:07.000000000 +0100 -+++ mplayer.sh 2007-05-05 18:17:48.000000000 +0200 -@@ -12,6 +12,7 @@ - # - calculate USE_SPEED with 30 fps instead of 29.97 - # - use '-vf' and '-af' instead of '-vop' and '-aop', as the - # latter are deprecated -+# - add -aid to mplayer when AID is given (Matthias Schwarzott ) - # - # 0.8.6 - fixed a copy'n'paste bug regarding the subtitle background - # alpha color (thanks to Christian Haider) -@@ -215,6 +216,11 @@ - fi - debugvar REMOTE "$REMOTE" - -+ if test -n "${AID}"; then -+ AUDIO="-aid ${AID}" -+ fi -+ debugvar AUDIO "${AUDIO}" -+ - if ! test -z "$USERDEF"; then echolog "*** Use Option USERDEF at your own risk!"; fi - debugvar USERDEF "$USERDEF" - -@@ -485,15 +491,24 @@ - declare -i NEW_X NEW_Y - declare -i HALF_Y FULL_Y - declare ORIG_FPS NEW_FPS ORIG_ASPECT VIDEO_FORMAT AUDIO_CODEC --declare CMDLINE AOUT REMOTE USERDEF SUFFIX -+declare CMDLINE AOUT REMOTE AUDIO USERDEF SUFFIX - declare FILE="$1" --declare SLAVE="$2" -+shift - declare -a XResPAL[0] - declare -a XResNTSC[0] - declare FDSTR="" - declare SUBTITLES="" - declare DETC="" - -+while [[ -n $1 ]]; do -+ case ${1} in -+ SLAVE) SLAVE=SLAVE ;; -+ AID) AID=${2}; shift ;; -+ esac -+ -+ shift -+done -+ - echolog "*** Starting mplayer.sh Version $VERSION" - - if test -z "$FILE"; then echolog "*** USAGE: mplayer.sh "; exit; fi -@@ -511,18 +526,18 @@ - if test \( "$FILE" == "$DVDFiles/DVD" -o "$FILE" == "$DVDFiles/VCD" \) -a -n "$DVDFiles" -a -n "$DVD"; then - if test "$FILE" == "$DVDFiles/DVD"; then - $USEAC3 && AOUT="$AC3AOUT" -- CMDLINE="$MPLAYER -vo $VO $AOUT -alang $DVDLANG $DVDOPTIONS $FDSTR $CACHESTR $REMOTE $USERDEF -dvd-device $DVD dvd://" -+ CMDLINE="$MPLAYER -vo $VO $AOUT -alang $DVDLANG $DVDOPTIONS $FDSTR $CACHESTR $AUDIO $REMOTE $USERDEF -dvd-device $DVD dvd://" - fi - if test "$FILE" == "$DVDFiles/VCD"; then -- CMDLINE="$MPLAYER -vo $VO $AOUT $VCDOPTIONS $FDSTR $CACHESTR $REMOTE $USERDEF -cdrom-device $DVD vcd://" -+ CMDLINE="$MPLAYER -vo $VO $AOUT $VCDOPTIONS $FDSTR $CACHESTR $AUDIO $REMOTE $USERDEF -cdrom-device $DVD vcd://" - fi - unset FILE - elif test "${SUFFIX}" == ".cue"; then - if $MPLAYER_V1; then -- CMDLINE="$MPLAYER -vo $VO $AOUT $FDSTR $CACHESTR $REMOTE $USERDEF cue://$FILE:2" -+ CMDLINE="$MPLAYER -vo $VO $AOUT $FDSTR $CACHESTR $AUDIO $REMOTE $USERDEF cue://$FILE:2" - unset FILE - else -- CMDLINE="$MPLAYER -vo $VO $AOUT $FDSTR $CACHESTR $REMOTE $USERDEF -vcd 2 -cuefile" -+ CMDLINE="$MPLAYER -vo $VO $AOUT $FDSTR $CACHESTR $AUDIO $REMOTE $USERDEF -vcd 2 -cuefile" - fi - else - # Try to determine the video attributes -@@ -552,9 +567,9 @@ - \( $NTSC -a $NEW_FPS == "30" -a \( \( $ORIG_X == "352" -a $ORIG_Y == "240" \) -o \( $ORIG_Y == "480" -a \ - \( $ORIG_X == "352" -o $ORIG_X == "480" -o $ORIG_X == "512" -o $ORIG_X == "544" -o $ORIG_X == "640" -o $ORIG_X == "704" -o $ORIG_X == "720" \) \) \) \) \ - \) ; then -- CMDLINE="$MPLAYER -vo $VO $AOUT $FDSTR $CACHESTR $REMOTE $USERDEF" -+ CMDLINE="$MPLAYER -vo $VO $AOUT $FDSTR $CACHESTR $AUDIO $REMOTE $USERDEF" - else -- CMDLINE="$MPLAYER -vo $VO $AOUT -vf scale=$NEW_X:${NEW_Y}${DETC},expand=$NEW_X:$REAL_Y:-1:-1:1,$VOP:$NEW_FPS $SPEED $FDSTR $CACHESTR $REMOTE $SUBTITLES $USERDEF $FORCEIDX" -+ CMDLINE="$MPLAYER -vo $VO $AOUT -vf scale=$NEW_X:${NEW_Y}${DETC},expand=$NEW_X:$REAL_Y:-1:-1:1,$VOP:$NEW_FPS $SPEED $FDSTR $CACHESTR $AUDIO $REMOTE $SUBTITLES $USERDEF $FORCEIDX" - fi - fi - diff --git a/media-video/mplayer-sh/metadata.xml b/media-video/mplayer-sh/metadata.xml deleted file mode 100644 index 2b167a7461de..000000000000 --- a/media-video/mplayer-sh/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - vdr@gentoo.org - Gentoo VDR Project - - diff --git a/media-video/mplayer-sh/mplayer-sh-0.8.7.ebuild b/media-video/mplayer-sh/mplayer-sh-0.8.7.ebuild deleted file mode 100644 index c5826b56616a..000000000000 --- a/media-video/mplayer-sh/mplayer-sh-0.8.7.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" - -inherit epatch - -RESTRICT="mirror bindist" - -DESCRIPTION="Video Disk Recorder Mplayer API Script" -HOMEPAGE="http://batleth.sapienti-sat.org/projects/VDR/" -SRC_URI="http://batleth.sapienti-sat.org/projects/VDR/versions/mplayer.sh-${PV}.tar.gz" - -KEYWORDS="~amd64 x86" -SLOT="0" -LICENSE="all-rights-reserved" -IUSE="" - -RDEPEND=">=media-video/mplayer-0.1.20070321" - -S=${WORKDIR} - -src_prepare() { - epatch "${FILESDIR}/${P}-parameter-aid.diff" - - sed -i "s:^declare CFGFIL.*$:declare CFGFIL=\"\/etc\/vdr\/plugins\/mplayer\/mplayer.sh.conf\":" mplayer.sh - sed -i mplayer.sh.conf -e "s:^LIRCRC.*$:LIRCRC=\/etc\/lircd.conf:" \ - -e "s:^MPLAYER=.*$:MPLAYER=\/usr\/bin\/mplayer:" -} - -src_install() { - - insinto /etc/vdr/plugins/mplayer - doins mplayer.sh.conf - - into /usr/share/vdr/mplayer - dobin mplayer.sh - - dodir /etc/vdr/plugins/DVD-VCD - touch "${D}"/etc/vdr/plugins/DVD-VCD/{DVD,VCD} - fowners vdr:vdr /etc/vdr/plugins/DVD-VCD/{DVD,VCD} -} diff --git a/media-video/pipewire/pipewire-0.3.49.ebuild b/media-video/pipewire/pipewire-0.3.49.ebuild index 6a066b48013e..2c5d7c42cf3d 100644 --- a/media-video/pipewire/pipewire-0.3.49.ebuild +++ b/media-video/pipewire/pipewire-0.3.49.ebuild @@ -19,7 +19,7 @@ else SRC_URI="https://gitlab.freedesktop.org/${PN}/${PN}/-/archive/${PV}/${P}.tar.gz" fi - KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86" + KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86" fi DESCRIPTION="Multimedia processing graphs" diff --git a/media-video/wireplumber/wireplumber-0.4.9.ebuild b/media-video/wireplumber/wireplumber-0.4.9.ebuild index 6d3a6544520e..881ec5cebaaf 100644 --- a/media-video/wireplumber/wireplumber-0.4.9.ebuild +++ b/media-video/wireplumber/wireplumber-0.4.9.ebuild @@ -13,7 +13,7 @@ if [[ ${PV} == 9999 ]]; then inherit git-r3 else SRC_URI="https://gitlab.freedesktop.org/pipewire/${PN}/-/archive/${PV}/${P}.tar.gz" - KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86" + KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86" fi DESCRIPTION="Replacement for pipewire-media-session" diff --git a/metadata/Manifest.gz b/metadata/Manifest.gz index 7d645a74c4b8..cf6ab43b3494 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 9eb83d1cf1b3..50f51d2b186f 100644 --- a/metadata/dtd/timestamp.chk +++ b/metadata/dtd/timestamp.chk @@ -1 +1 @@ -Wed, 20 Apr 2022 06:09:06 +0000 +Wed, 20 Apr 2022 10:39:07 +0000 diff --git a/metadata/glsa/timestamp.chk b/metadata/glsa/timestamp.chk index 15315d3346ca..50f51d2b186f 100644 --- a/metadata/glsa/timestamp.chk +++ b/metadata/glsa/timestamp.chk @@ -1 +1 @@ -Wed, 20 Apr 2022 06:09:07 +0000 +Wed, 20 Apr 2022 10:39:07 +0000 diff --git a/metadata/md5-cache/Manifest.gz b/metadata/md5-cache/Manifest.gz index 5e3e46b5fa42..56d8a85a9b41 100644 Binary files a/metadata/md5-cache/Manifest.gz and b/metadata/md5-cache/Manifest.gz differ diff --git a/metadata/md5-cache/app-admin/Manifest.gz b/metadata/md5-cache/app-admin/Manifest.gz index dc2bad158e45..bad49871d9fe 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.22.98 b/metadata/md5-cache/app-admin/awscli-1.22.98 new file mode 100644 index 000000000000..cc85f1320d1a --- /dev/null +++ b/metadata/md5-cache/app-admin/awscli-1.22.98 @@ -0,0 +1,15 @@ +BDEPEND=test? ( dev-python/pytest-xdist[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) test? ( >=dev-python/botocore-1.24.43[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/pytest-7.0.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) >=dev-python/installer-0.4.0_p20220124[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/tomli-1.2.3[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-60.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/wheel[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=8 +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.24.43[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.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.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.22.98.tar.gz -> awscli-1.22.98.tar.gz +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=59519942ae5dec05b6326b5ab95639f7 diff --git a/metadata/md5-cache/app-backup/Manifest.gz b/metadata/md5-cache/app-backup/Manifest.gz index 6e48ff778d53..b0f237763824 100644 Binary files a/metadata/md5-cache/app-backup/Manifest.gz and b/metadata/md5-cache/app-backup/Manifest.gz differ diff --git a/metadata/md5-cache/app-backup/borgmatic-1.5.24 b/metadata/md5-cache/app-backup/borgmatic-1.5.24 index 24f8fe6b15cf..1a8d0db219a3 100644 --- a/metadata/md5-cache/app-backup/borgmatic-1.5.24 +++ b/metadata/md5-cache/app-backup/borgmatic-1.5.24 @@ -4,7 +4,7 @@ DESCRIPTION=Automatically create, prune and verify backups with borgbackup EAPI=8 HOMEPAGE=https://torsion.org/borgmatic/ IUSE=test python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 -KEYWORDS=~amd64 ~arm ~arm64 ~riscv +KEYWORDS=amd64 ~arm ~arm64 ~riscv LICENSE=GPL-3 RDEPEND=app-backup/borgbackup python_single_target_python3_8? ( =dev-lang/python-3.8.12_p1-r1:3.8 ) python_single_target_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) REQUIRED_USE=^^ ( python_single_target_python3_8 python_single_target_python3_9 python_single_target_python3_10 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/b/borgmatic/borgmatic-1.5.24.tar.gz _eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-single-r1 a5747fe6dc0651d95cb78eddd5e160a8 python-utils-r1 59dddabd6a41ab69723654916142f63b systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=b3ad8c669582520723e81fd241436178 +_md5_=9105e67e67da41db8f74b72d9f788e86 diff --git a/metadata/md5-cache/app-emacs/Manifest.gz b/metadata/md5-cache/app-emacs/Manifest.gz index 3d65a928fc0c..8aa6fcef686a 100644 Binary files a/metadata/md5-cache/app-emacs/Manifest.gz and b/metadata/md5-cache/app-emacs/Manifest.gz differ diff --git a/metadata/md5-cache/app-emacs/buttercup-1.24 b/metadata/md5-cache/app-emacs/buttercup-1.24 index 9f6e936c10a2..e727d8014c10 100644 --- a/metadata/md5-cache/app-emacs/buttercup-1.24 +++ b/metadata/md5-cache/app-emacs/buttercup-1.24 @@ -3,10 +3,10 @@ DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpa DESCRIPTION=Behaviour-driven Elisp testing EAPI=8 HOMEPAGE=https://github.com/jorgenschaefer/emacs-buttercup -KEYWORDS=~amd64 +KEYWORDS=~amd64 ~x86 LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-24.3:* SLOT=0 SRC_URI=https://github.com/jorgenschaefer/emacs-buttercup/archive/v1.24.tar.gz -> buttercup-1.24.tar.gz _eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 -_md5_=1db0eb9fb1c4d0ae9a6547e5da2e478a +_md5_=27776e6ed8356c1a3edc2015ee158d18 diff --git a/metadata/md5-cache/app-emacs/noflet-0.0.15_p20141102 b/metadata/md5-cache/app-emacs/noflet-0.0.15_p20141102-r1 similarity index 77% rename from metadata/md5-cache/app-emacs/noflet-0.0.15_p20141102 rename to metadata/md5-cache/app-emacs/noflet-0.0.15_p20141102-r1 index 612bd8455809..a13859c7c247 100644 --- a/metadata/md5-cache/app-emacs/noflet-0.0.15_p20141102 +++ b/metadata/md5-cache/app-emacs/noflet-0.0.15_p20141102-r1 @@ -1,12 +1,12 @@ -BDEPEND=>=app-editors/emacs-23.1:* +BDEPEND=app-emacs/dash >=app-editors/emacs-23.1:* DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack DESCRIPTION=Dynamic, local advice for Emacs-Lisp code EAPI=8 HOMEPAGE=https://github.com/nicferrier/emacs-noflet/ KEYWORDS=~amd64 ~x86 LICENSE=GPL-3+ -RDEPEND=>=app-editors/emacs-23.1:* +RDEPEND=app-emacs/dash >=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://github.com/nicferrier/emacs-noflet/archive/7ae84dc3257637af7334101456dafe1759c6b68a.tar.gz -> noflet-0.0.15_p20141102.tar.gz _eclasses_=elisp c1c17e9c24d72d3bd58c611de8116fb6 elisp-common e7aaa047873789f549ea3df2f04b2145 -_md5_=ff25f172ce63901a0ccf74a54708fd78 +_md5_=f8cd23397a47a99d0d0b8381fbe2df8d diff --git a/metadata/md5-cache/dev-java/Manifest.gz b/metadata/md5-cache/dev-java/Manifest.gz index f5f3c268e017..cec6767fe347 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/antlr-tool-4.9.3 b/metadata/md5-cache/dev-java/antlr-tool-4.9.3 index c983bbec4a24..36b8a6fbce71 100644 --- a/metadata/md5-cache/dev-java/antlr-tool-4.9.3 +++ b/metadata/md5-cache/dev-java/antlr-tool-4.9.3 @@ -11,4 +11,4 @@ RESTRICT=!test? ( test ) SLOT=4 SRC_URI=https://github.com/antlr/antlr4/archive/4.9.3.tar.gz -> antlr-4.9.3.tar.gz https://repo1.maven.org/maven2/org/antlr/antlr4/4.9.3/antlr4-4.9.3-sources.jar -> antlr-tool-4.9.3-sources.jar _eclasses_=java-pkg-2 3b09e051fc2045a0f0b9471b87d4f8bd java-pkg-simple 8a2b8811bad7877b5ec349bddeceabb6 java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae -_md5_=ee8dfd42f251eedddfefa85db193a19b +_md5_=ffc0a7a373c6934a5c70e4561bad36f7 diff --git a/metadata/md5-cache/dev-java/fontbox-1.7.1-r2 b/metadata/md5-cache/dev-java/fontbox-1.7.1-r2 index ad610a396c3e..5c2196241a0f 100644 --- a/metadata/md5-cache/dev-java/fontbox-1.7.1-r2 +++ b/metadata/md5-cache/dev-java/fontbox-1.7.1-r2 @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=1.7 SRC_URI=https://archive.apache.org/dist/pdfbox/1.7.1/pdfbox-1.7.1-src.zip -> fontbox-1.7.1.zip _eclasses_=java-ant-2 5cf479aa9e0ac9cc55899f2762c2aaa0 java-pkg-2 3b09e051fc2045a0f0b9471b87d4f8bd java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=86a6fb781b6380f5cc34cf17f1321b4c +_md5_=dd402d7e46cf2a11b258af9b523e10b0 diff --git a/metadata/md5-cache/dev-java/freehep-graphicsbase-2.4 b/metadata/md5-cache/dev-java/freehep-graphicsbase-2.4 deleted file mode 100644 index 2e2675e7931f..000000000000 --- a/metadata/md5-cache/dev-java/freehep-graphicsbase-2.4 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile install preinst prepare setup test -DEPEND=dev-java/freehep-io:0 dev-java/junit:4 >=virtual/jdk-1.7 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -DESCRIPTION=High Energy Physics Java library - FreeHEP Graphics Base Library -EAPI=5 -HOMEPAGE=http://java.freehep.org/ -IUSE=test doc source -KEYWORDS=~amd64 ~x86 -LICENSE=Apache-2.0 LGPL-2.1 -RDEPEND=dev-java/freehep-io:0 dev-java/junit:4 >=virtual/jre-1.7 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/freehep/freehep-vectorgraphics/archive/freehep-vectorgraphics-2.4.tar.gz -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff java-pkg-2 3b09e051fc2045a0f0b9471b87d4f8bd java-pkg-simple 8a2b8811bad7877b5ec349bddeceabb6 java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 4a33c9008e5ee30cb8840a3fdc24df2b preserve-libs a8e50acee31b5759b4df1f7707cae54b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vcs-clean d271b7bc7e6a009758d7d4ef749174e3 versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4a1902f969e5718126434fc35f3a0d9c -_md5_=1cf26d6ffbea1cb6752b5ae75e522ec5 diff --git a/metadata/md5-cache/dev-java/freehep-io-2.2.2 b/metadata/md5-cache/dev-java/freehep-io-2.2.2 deleted file mode 100644 index 97c03c3157fa..000000000000 --- a/metadata/md5-cache/dev-java/freehep-io-2.2.2 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile install preinst prepare setup test -DEPEND=>=virtual/jdk-1.7 test? ( dev-java/junit:4 ) >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -DESCRIPTION=High Energy Physics Java library - FreeHEP I/O Library -EAPI=5 -HOMEPAGE=http://java.freehep.org/ -IUSE=test doc source -KEYWORDS=~amd64 ~x86 -LICENSE=Apache-2.0 LGPL-2.1 -RDEPEND=>=virtual/jre-1.7 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/freehep/freehep-io/archive/freehep-io-2.2.2.tar.gz -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff java-pkg-2 3b09e051fc2045a0f0b9471b87d4f8bd java-pkg-simple 8a2b8811bad7877b5ec349bddeceabb6 java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 4a33c9008e5ee30cb8840a3fdc24df2b preserve-libs a8e50acee31b5759b4df1f7707cae54b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vcs-clean d271b7bc7e6a009758d7d4ef749174e3 versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4a1902f969e5718126434fc35f3a0d9c -_md5_=23af37d098ba8f89cc67ee2fed568c04 diff --git a/metadata/md5-cache/dev-java/glassfish-interceptor-api-3.1 b/metadata/md5-cache/dev-java/glassfish-interceptor-api-3.1 deleted file mode 100644 index 86b55c9dbb28..000000000000 --- a/metadata/md5-cache/dev-java/glassfish-interceptor-api-3.1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install preinst prepare setup -DEPEND=>=virtual/jdk-1.7 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2:0 dev-java/javatoolkit -DESCRIPTION=Project GlassFish Interceptor API -EAPI=5 -HOMEPAGE=https://glassfish.java.net/ -IUSE=doc source -KEYWORDS=amd64 x86 ~amd64-linux -LICENSE=Apache-2.0 -RDEPEND=>=virtual/jre-1.7 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -SLOT=0 -SRC_URI=https://dev.gentoo.org/~tomwij/files/dist/glassfish-interceptor-api-3.1.tar.xz -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff java-ant-2 5cf479aa9e0ac9cc55899f2762c2aaa0 java-pkg-2 3b09e051fc2045a0f0b9471b87d4f8bd java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 4a33c9008e5ee30cb8840a3fdc24df2b preserve-libs a8e50acee31b5759b4df1f7707cae54b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vcs-clean d271b7bc7e6a009758d7d4ef749174e3 versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4a1902f969e5718126434fc35f3a0d9c -_md5_=a2a5d2853eec8cc4ae3eefd2915f6c16 diff --git a/metadata/md5-cache/dev-java/gnu-classpath-0.98-r6 b/metadata/md5-cache/dev-java/gnu-classpath-0.98-r6 deleted file mode 100644 index 8265f7f3873c..000000000000 --- a/metadata/md5-cache/dev-java/gnu-classpath-0.98-r6 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install preinst prepare setup -DEPEND=app-arch/zip gtk? ( x11-base/xorg-proto x11-libs/libXrender >=x11-libs/libXtst-1.1.0 ) >=virtual/jdk-1.5 alsa? ( media-libs/alsa-lib ) dssi? ( >=media-libs/dssi-0.9 ) gconf? ( gnome-base/gconf:2= ) gjdoc? ( >=dev-java/antlr-2.7.7-r7:0 ) gmp? ( >=dev-libs/gmp-4.2.4:0= ) gtk? ( >=x11-libs/gtk+-2.8:2= dev-libs/glib:2= media-libs/freetype:2= >=x11-libs/cairo-1.1.9:= x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXrandr x11-libs/libXrender x11-libs/libXtst x11-libs/pango ) xml? ( >=dev-libs/libxml2-2.6.8:2= >=dev-libs/libxslt-1.1.11 ) >=dev-java/java-config-2.2.0-r3 -DESCRIPTION=Free core class libraries for use with Java VMs and compilers -EAPI=5 -HOMEPAGE=https://www.gnu.org/software/classpath -IUSE=alsa debug doc dssi examples gconf +gjdoc gmp gtk xml -KEYWORDS=amd64 ppc64 x86 ~amd64-linux ~x86-linux -LICENSE=GPL-2-with-linking-exception -RDEPEND=>=virtual/jre-1.5 alsa? ( media-libs/alsa-lib ) dssi? ( >=media-libs/dssi-0.9 ) gconf? ( gnome-base/gconf:2= ) gjdoc? ( >=dev-java/antlr-2.7.7-r7:0 ) gmp? ( >=dev-libs/gmp-4.2.4:0= ) gtk? ( >=x11-libs/gtk+-2.8:2= dev-libs/glib:2= media-libs/freetype:2= >=x11-libs/cairo-1.1.9:= x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXrandr x11-libs/libXrender x11-libs/libXtst x11-libs/pango ) xml? ( >=dev-libs/libxml2-2.6.8:2= >=dev-libs/libxslt-1.1.11 ) >=dev-java/java-config-2.2.0-r3 -REQUIRED_USE=doc? ( gjdoc ) -SLOT=0.98 -SRC_URI=mirror://gnu/classpath/classpath-0.98.tar.gz -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff java-pkg-2 3b09e051fc2045a0f0b9471b87d4f8bd java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 4a33c9008e5ee30cb8840a3fdc24df2b preserve-libs a8e50acee31b5759b4df1f7707cae54b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vcs-clean d271b7bc7e6a009758d7d4ef749174e3 versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4a1902f969e5718126434fc35f3a0d9c -_md5_=fa64c51164cfb4ccf6304f23bfe05222 diff --git a/metadata/md5-cache/dev-java/gwt-2.9.0-r2 b/metadata/md5-cache/dev-java/gwt-2.9.0-r3 similarity index 57% rename from metadata/md5-cache/dev-java/gwt-2.9.0-r2 rename to metadata/md5-cache/dev-java/gwt-2.9.0-r3 index 52fff865add0..956ca84d6970 100644 --- a/metadata/md5-cache/dev-java/gwt-2.9.0-r2 +++ b/metadata/md5-cache/dev-java/gwt-2.9.0-r3 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install preinst prepare setup test -DEPEND=dev-java/guava:20 dev-java/rhino:1.6 dev-java/asm:9 dev-java/eclipse-ecj:4.15 dev-java/validation-api:1.0 virtual/jdk:1.8 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2:0 dev-java/javatoolkit +DEPEND=dev-java/guava:0 dev-java/rhino:1.6 dev-java/asm:9 dev-java/eclipse-ecj:4.15 dev-java/validation-api:1.0 virtual/jdk:1.8 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2:0 dev-java/javatoolkit DESCRIPTION=Google Web Toolkit library -EAPI=7 -HOMEPAGE=http://www.gwtproject.org/ +EAPI=8 +HOMEPAGE=https://www.gwtproject.org/ IUSE=source KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux LICENSE=Apache-2.0 -RDEPEND=dev-java/guava:20 dev-java/rhino:1.6 dev-java/asm:9 dev-java/eclipse-ecj:4.15 dev-java/validation-api:1.0 >=virtual/jre-1.8:* >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) +RDEPEND=dev-java/guava:0 dev-java/rhino:1.6 dev-java/asm:9 dev-java/eclipse-ecj:4.15 dev-java/validation-api:1.0 >=virtual/jre-1.8:* >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) RESTRICT=mirror test SLOT=2.8 SRC_URI=https://github.com/gwtproject/gwt/archive/2.9.0.tar.gz -> gwt-2.9.0.tar.gz https://github.com/gwtproject/tools/archive/194772ed94078802d8030136796de344eb1fdbe1.tar.gz -> gwt-tools-194772ed94078802d8030136796de344eb1fdbe1.tar.gz _eclasses_=java-ant-2 5cf479aa9e0ac9cc55899f2762c2aaa0 java-pkg-2 3b09e051fc2045a0f0b9471b87d4f8bd java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=7ea26f99294ce414392ab83cdced6a3f +_md5_=ff32efc4c783593995d5cb71417aa35b diff --git a/metadata/md5-cache/dev-java/invokebinder-1.6 b/metadata/md5-cache/dev-java/invokebinder-1.6 deleted file mode 100644 index 4293750dc035..000000000000 --- a/metadata/md5-cache/dev-java/invokebinder-1.6 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install preinst prepare setup test -DEPEND=>=virtual/jdk-1.7 test? ( dev-java/ant-junit:0 ) >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2:0 dev-java/javatoolkit -DESCRIPTION=Provide a friendly DSL for binding method handles -EAPI=5 -HOMEPAGE=https://github.com/headius/invokebinder -IUSE=doc source test -KEYWORDS=amd64 x86 -LICENSE=Apache-2.0 -RDEPEND=>=virtual/jre-1.7 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/headius/invokebinder/archive/invokebinder-1.6.tar.gz -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff java-ant-2 5cf479aa9e0ac9cc55899f2762c2aaa0 java-pkg-2 3b09e051fc2045a0f0b9471b87d4f8bd java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 4a33c9008e5ee30cb8840a3fdc24df2b preserve-libs a8e50acee31b5759b4df1f7707cae54b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vcs-clean d271b7bc7e6a009758d7d4ef749174e3 versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4a1902f969e5718126434fc35f3a0d9c -_md5_=7adf737eb0720dc8b5f7fc6517a3d30c diff --git a/metadata/md5-cache/dev-java/java-apicheck-0_p20150907 b/metadata/md5-cache/dev-java/java-apicheck-0_p20150907 deleted file mode 100644 index 9a98e2b4f198..000000000000 --- a/metadata/md5-cache/dev-java/java-apicheck-0_p20150907 +++ /dev/null @@ -1,10 +0,0 @@ -DEFINED_PHASES=install -DESCRIPTION=Command line tool to check Java packages for API compatibility -EAPI=5 -HOMEPAGE=https://github.com/gentoo/java-apicheck/ -KEYWORDS=amd64 x86 -LICENSE=GPL-2+ -RDEPEND=dev-java/japitools dev-java/java-config -SLOT=0 -SRC_URI=https://github.com/gentoo/java-apicheck/archive/0_p20150907.tar.gz -> java-apicheck-0_p20150907.tar.gz -_md5_=ec2abe84c6585f61f67841324d147a3c diff --git a/metadata/md5-cache/dev-java/jboss-marshalling-river-1.3.0 b/metadata/md5-cache/dev-java/jboss-marshalling-river-1.3.0 deleted file mode 100644 index 4a490bbb9104..000000000000 --- a/metadata/md5-cache/dev-java/jboss-marshalling-river-1.3.0 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile install preinst prepare setup test -DEPEND=~dev-java/jboss-marshalling-1.3.0:0 >=virtual/jdk-1.7 app-arch/unzip >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -DESCRIPTION=River protocol implementation for JBoss Marshalling -EAPI=5 -HOMEPAGE=https://jbossmarshalling.jboss.org/ -IUSE=doc source -KEYWORDS=~amd64 -LICENSE=Apache-2.0 -RDEPEND=~dev-java/jboss-marshalling-1.3.0:0 >=virtual/jre-1.7 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -SLOT=0 -SRC_URI=https://download.jboss.org/jbossmarshalling/jboss-marshalling-river-1.3.0.CR9-sources.jar -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff java-pkg-2 3b09e051fc2045a0f0b9471b87d4f8bd java-pkg-simple 8a2b8811bad7877b5ec349bddeceabb6 java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 4a33c9008e5ee30cb8840a3fdc24df2b preserve-libs a8e50acee31b5759b4df1f7707cae54b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vcs-clean d271b7bc7e6a009758d7d4ef749174e3 versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4a1902f969e5718126434fc35f3a0d9c -_md5_=07ace6e1c91f5d4860d5fc9f52bc43c8 diff --git a/metadata/md5-cache/dev-java/jboss-marshalling-serial-1.3.0 b/metadata/md5-cache/dev-java/jboss-marshalling-serial-1.3.0 deleted file mode 100644 index 367c84218464..000000000000 --- a/metadata/md5-cache/dev-java/jboss-marshalling-serial-1.3.0 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile install preinst prepare setup test -DEPEND=~dev-java/jboss-marshalling-1.3.0:0 >=virtual/jdk-1.7 app-arch/unzip >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -DESCRIPTION=Serial protocol implementation for JBoss Marshalling -EAPI=5 -HOMEPAGE=https://jbossmarshalling.jboss.org/ -IUSE=doc source -KEYWORDS=~amd64 -LICENSE=Apache-2.0 -RDEPEND=~dev-java/jboss-marshalling-1.3.0:0 >=virtual/jre-1.7 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -SLOT=0 -SRC_URI=https://download.jboss.org/jbossmarshalling/jboss-marshalling-serial-1.3.0.CR9-sources.jar -_eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi7-ver 1a0a60ad07c8b32d2faba2d085dc0f24 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff java-pkg-2 3b09e051fc2045a0f0b9471b87d4f8bd java-pkg-simple 8a2b8811bad7877b5ec349bddeceabb6 java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 4a33c9008e5ee30cb8840a3fdc24df2b preserve-libs a8e50acee31b5759b4df1f7707cae54b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vcs-clean d271b7bc7e6a009758d7d4ef749174e3 versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4a1902f969e5718126434fc35f3a0d9c -_md5_=0574fb7d6eb3073d5939fd8c43d40db8 diff --git a/metadata/md5-cache/dev-java/reflections-0.9.12 b/metadata/md5-cache/dev-java/reflections-0.9.12 new file mode 100644 index 000000000000..b5cb0dc8fc9f --- /dev/null +++ b/metadata/md5-cache/dev-java/reflections-0.9.12 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile install preinst prepare setup test +DEPEND=java-virtuals/servlet-api:2.5 >=virtual/jdk-1.8:* dev-java/dom4j:1 dev-java/gson:2.6 dev-java/javassist:3 dev-java/slf4j-api:0 dev-java/slf4j-simple:0 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) test? ( dev-java/junit:4 ) +DESCRIPTION=Reflections - a Java runtime metadata analysis +EAPI=8 +HOMEPAGE=https://github.com/ronmamo/reflections +IUSE=doc source test +KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~x86 +LICENSE=WTFPL-2 BSD-2 +RDEPEND=>=virtual/jre-1.8:* dev-java/dom4j:1 dev-java/gson:2.6 dev-java/javassist:3 dev-java/slf4j-api:0 dev-java/slf4j-simple:0 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/ronmamo/reflections/archive/0.9.12.tar.gz -> reflections-0.9.12.tar.gz +_eclasses_=java-pkg-2 3b09e051fc2045a0f0b9471b87d4f8bd java-pkg-simple 8a2b8811bad7877b5ec349bddeceabb6 java-utils-2 92b5a4d196abffe2dbe3bdc1cf4ef2ae +_md5_=6332516bf7d64f82b7fcd98912f0856a diff --git a/metadata/md5-cache/dev-lang/Manifest.gz b/metadata/md5-cache/dev-lang/Manifest.gz index 25370aeccb58..026fed29f5fd 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/rust-1.59.0 b/metadata/md5-cache/dev-lang/rust-1.59.0 index f8f83bd0380e..3c7c96445a6e 100644 --- a/metadata/md5-cache/dev-lang/rust-1.59.0 +++ b/metadata/md5-cache/dev-lang/rust-1.59.0 @@ -5,7 +5,7 @@ DESCRIPTION=Systems programming language from Mozilla EAPI=7 HOMEPAGE=https://www.rust-lang.org/ IUSE=clippy cpu_flags_x86_sse2 debug dist doc miri nightly parallel-compiler rls rustfmt rust-src system-bootstrap system-llvm test wasm llvm_targets_AArch64 llvm_targets_AMDGPU llvm_targets_ARM llvm_targets_AVR llvm_targets_BPF llvm_targets_Hexagon llvm_targets_Lanai llvm_targets_Mips llvm_targets_MSP430 llvm_targets_NVPTX llvm_targets_PowerPC llvm_targets_RISCV llvm_targets_Sparc llvm_targets_SystemZ llvm_targets_WebAssembly llvm_targets_X86 llvm_targets_XCore abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 verify-sig -KEYWORDS=~amd64 ~arm arm64 ppc64 ~riscv ~x86 +KEYWORDS=amd64 ~arm arm64 ppc64 ~riscv x86 LICENSE=|| ( MIT Apache-2.0 ) BSD-1 BSD-2 BSD-4 UoI-NCSA RDEPEND=>=app-arch/xz-utils-5.2 net-misc/curl:=[http2,ssl] sys-libs/zlib:= dev-libs/openssl:0= elibc_musl? ( sys-libs/libunwind:= ) system-llvm? ( || ( ( llvm_targets_AArch64? ( sys-devel/llvm:13[llvm_targets_AArch64(-)] ) llvm_targets_AMDGPU? ( sys-devel/llvm:13[llvm_targets_AMDGPU(-)] ) llvm_targets_ARM? ( sys-devel/llvm:13[llvm_targets_ARM(-)] ) llvm_targets_AVR? ( sys-devel/llvm:13[llvm_targets_AVR(-)] ) llvm_targets_BPF? ( sys-devel/llvm:13[llvm_targets_BPF(-)] ) llvm_targets_Hexagon? ( sys-devel/llvm:13[llvm_targets_Hexagon(-)] ) llvm_targets_Lanai? ( sys-devel/llvm:13[llvm_targets_Lanai(-)] ) llvm_targets_Mips? ( sys-devel/llvm:13[llvm_targets_Mips(-)] ) llvm_targets_MSP430? ( sys-devel/llvm:13[llvm_targets_MSP430(-)] ) llvm_targets_NVPTX? ( sys-devel/llvm:13[llvm_targets_NVPTX(-)] ) llvm_targets_PowerPC? ( sys-devel/llvm:13[llvm_targets_PowerPC(-)] ) llvm_targets_RISCV? ( sys-devel/llvm:13[llvm_targets_RISCV(-)] ) llvm_targets_Sparc? ( sys-devel/llvm:13[llvm_targets_Sparc(-)] ) llvm_targets_SystemZ? ( sys-devel/llvm:13[llvm_targets_SystemZ(-)] ) llvm_targets_WebAssembly? ( sys-devel/llvm:13[llvm_targets_WebAssembly(-)] ) llvm_targets_X86? ( sys-devel/llvm:13[llvm_targets_X86(-)] ) llvm_targets_XCore? ( sys-devel/llvm:13[llvm_targets_XCore(-)] ) ) ) =app-eselect/eselect-rust-20190311 REQUIRED_USE=x86? ( cpu_flags_x86_sse2 ) SLOT=stable SRC_URI=abi_x86_64? ( elibc_glibc? ( https://static.rust-lang.org/dist/rust-1.59.0-x86_64-unknown-linux-gnu.tar.xz verify-sig? ( https://static.rust-lang.org/dist/rust-1.59.0-x86_64-unknown-linux-gnu.tar.xz.asc ) ) elibc_musl? ( https://static.rust-lang.org/dist/rust-1.59.0-x86_64-unknown-linux-musl.tar.xz verify-sig? ( https://static.rust-lang.org/dist/rust-1.59.0-x86_64-unknown-linux-musl.tar.xz.asc ) ) ) arm? ( https://static.rust-lang.org/dist/rust-1.59.0-arm-unknown-linux-gnueabi.tar.xz verify-sig? ( https://static.rust-lang.org/dist/rust-1.59.0-arm-unknown-linux-gnueabi.tar.xz.asc ) https://static.rust-lang.org/dist/rust-1.59.0-arm-unknown-linux-gnueabihf.tar.xz verify-sig? ( https://static.rust-lang.org/dist/rust-1.59.0-arm-unknown-linux-gnueabihf.tar.xz.asc ) https://static.rust-lang.org/dist/rust-1.59.0-armv7-unknown-linux-gnueabihf.tar.xz verify-sig? ( https://static.rust-lang.org/dist/rust-1.59.0-armv7-unknown-linux-gnueabihf.tar.xz.asc ) ) arm64? ( elibc_glibc? ( https://static.rust-lang.org/dist/rust-1.59.0-aarch64-unknown-linux-gnu.tar.xz verify-sig? ( https://static.rust-lang.org/dist/rust-1.59.0-aarch64-unknown-linux-gnu.tar.xz.asc ) ) elibc_musl? ( https://static.rust-lang.org/dist/rust-1.59.0-aarch64-unknown-linux-musl.tar.xz verify-sig? ( https://static.rust-lang.org/dist/rust-1.59.0-aarch64-unknown-linux-musl.tar.xz.asc ) ) ) mips? ( https://static.rust-lang.org/dist/rust-1.59.0-mips-unknown-linux-gnu.tar.xz verify-sig? ( https://static.rust-lang.org/dist/rust-1.59.0-mips-unknown-linux-gnu.tar.xz.asc ) https://static.rust-lang.org/dist/rust-1.59.0-mipsel-unknown-linux-gnu.tar.xz verify-sig? ( https://static.rust-lang.org/dist/rust-1.59.0-mipsel-unknown-linux-gnu.tar.xz.asc ) https://static.rust-lang.org/dist/rust-1.59.0-mips64-unknown-linux-gnuabi64.tar.xz verify-sig? ( https://static.rust-lang.org/dist/rust-1.59.0-mips64-unknown-linux-gnuabi64.tar.xz.asc ) ) ppc? ( https://static.rust-lang.org/dist/rust-1.59.0-powerpc-unknown-linux-gnu.tar.xz verify-sig? ( https://static.rust-lang.org/dist/rust-1.59.0-powerpc-unknown-linux-gnu.tar.xz.asc ) ) ppc64? ( https://static.rust-lang.org/dist/rust-1.59.0-powerpc64-unknown-linux-gnu.tar.xz verify-sig? ( https://static.rust-lang.org/dist/rust-1.59.0-powerpc64-unknown-linux-gnu.tar.xz.asc ) https://static.rust-lang.org/dist/rust-1.59.0-powerpc64le-unknown-linux-gnu.tar.xz verify-sig? ( https://static.rust-lang.org/dist/rust-1.59.0-powerpc64le-unknown-linux-gnu.tar.xz.asc ) ) s390? ( https://static.rust-lang.org/dist/rust-1.59.0-s390x-unknown-linux-gnu.tar.xz verify-sig? ( https://static.rust-lang.org/dist/rust-1.59.0-s390x-unknown-linux-gnu.tar.xz.asc ) ) abi_x86_32? ( https://static.rust-lang.org/dist/rust-1.59.0-i686-unknown-linux-gnu.tar.xz verify-sig? ( https://static.rust-lang.org/dist/rust-1.59.0-i686-unknown-linux-gnu.tar.xz.asc ) ) riscv? ( https://static.rust-lang.org/dist/rust-1.59.0-riscv64gc-unknown-linux-gnu.tar.xz verify-sig? ( https://static.rust-lang.org/dist/rust-1.59.0-riscv64gc-unknown-linux-gnu.tar.xz.asc ) ) rust-src? ( https://static.rust-lang.org/dist/2022-02-24/rust-src-1.59.0.tar.xz ) _eclasses_=multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multilib-build 05f207909a804c9174bc39a00547d598 multilib-minimal 4b0f1857965db8869a729948d5277e0b prefix eab3c99d77fe00506c109c8a736186f7 rust-toolchain 9e3a9f96182f7084ca9c6e173d2f2f5c toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 verify-sig 0748d665fa664a87add00152ed046e16 -_md5_=9affee506990bf4524fedd6d0c37de08 +_md5_=d4555ccd13224d8645d337c09cfbe26f diff --git a/metadata/md5-cache/dev-libs/Manifest.gz b/metadata/md5-cache/dev-libs/Manifest.gz index 806ca0cd2477..9750c534febb 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/libinput-1.20.1 b/metadata/md5-cache/dev-libs/libinput-1.20.1 new file mode 100644 index 000000000000..f295a23b32ca --- /dev/null +++ b/metadata/md5-cache/dev-libs/libinput-1.20.1 @@ -0,0 +1,15 @@ +BDEPEND=virtual/pkgconfig doc? ( || ( ( >=dev-lang/python-3.10.0_p1-r1:3.10 dev-python/commonmark[python_targets_python3_10(-)] dev-python/recommonmark[python_targets_python3_10(-)] dev-python/sphinx[python_targets_python3_10(-)] >=dev-python/sphinx_rtd_theme-0.2.4[python_targets_python3_10(-)] ) ( >=dev-lang/python-3.9.9-r1:3.9 dev-python/commonmark[python_targets_python3_9(-)] dev-python/recommonmark[python_targets_python3_9(-)] dev-python/sphinx[python_targets_python3_9(-)] >=dev-python/sphinx_rtd_theme-0.2.4[python_targets_python3_9(-)] ) ( >=dev-lang/python-3.8.12_p1-r1:3.8 dev-python/commonmark[python_targets_python3_8(-)] dev-python/recommonmark[python_targets_python3_8(-)] dev-python/sphinx[python_targets_python3_8(-)] >=dev-python/sphinx_rtd_theme-0.2.4[python_targets_python3_8(-)] ) ) >=app-doc/doxygen-1.8.3 >=media-gfx/graphviz-2.38.0 ) >=dev-util/meson-0.59.4 >=dev-util/ninja-1.8.2 dev-util/meson-format-array virtual/pkgconfig +DEFINED_PHASES=compile configure install postinst prepare setup test +DEPEND=input_devices_wacom? ( >=dev-libs/libwacom-0.27 ) >=dev-libs/libevdev-1.9.902 >=sys-libs/mtdev-1.1 virtual/libudev:= virtual/udev test? ( >=dev-libs/check-0.9.10 ) +DESCRIPTION=Library to handle input devices in Wayland +EAPI=8 +HOMEPAGE=https://www.freedesktop.org/wiki/Software/libinput/ https://gitlab.freedesktop.org/libinput/libinput +IUSE=doc input_devices_wacom test +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +LICENSE=MIT +RDEPEND=input_devices_wacom? ( >=dev-libs/libwacom-0.27 ) >=dev-libs/libevdev-1.9.902 >=sys-libs/mtdev-1.1 virtual/libudev:= virtual/udev +RESTRICT=!test? ( test ) +SLOT=0/10 +SRC_URI=https://gitlab.freedesktop.org/libinput/libinput/-/archive/1.20.1/libinput-1.20.1.tar.gz +_eclasses_=meson 2d8a51910bc57e004c37aa55c7d99ce4 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 python-any-r1 9006edf4b9c90f9ba1dc9ea9fee1b0bd python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 udev 2d229ad4bfa09058e0184b1ca900db32 +_md5_=cfcdcf2fde5f59fe8474bae2007011ed diff --git a/metadata/md5-cache/dev-libs/quazip-1.3 b/metadata/md5-cache/dev-libs/quazip-1.3 new file mode 100644 index 000000000000..688ff70dd73e --- /dev/null +++ b/metadata/md5-cache/dev-libs/quazip-1.3 @@ -0,0 +1,15 @@ +BDEPEND=dev-util/ninja >=dev-util/cmake-3.20.5 +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-qt/qtcore:5 sys-libs/zlib[minizip] test? ( dev-qt/qtnetwork:5 dev-qt/qttest:5 ) +DESCRIPTION=Simple C++ wrapper over Gilles Vollant's ZIP/UNZIP package +EAPI=8 +HOMEPAGE=https://stachenov.github.io/quazip/ +IUSE=test +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux +LICENSE=LGPL-2.1-with-linking-exception +RDEPEND=dev-qt/qtcore:5 sys-libs/zlib[minizip] !=dev-libs/quazip-1.1-r0:1 +RESTRICT=!test? ( test ) +SLOT=0/1 +SRC_URI=https://github.com/stachenov/quazip/archive/v1.3.tar.gz -> quazip-1.3.tar.gz +_eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e +_md5_=6019877f3d4d64a61b4c43fb603f1881 diff --git a/metadata/md5-cache/dev-python/Manifest.gz b/metadata/md5-cache/dev-python/Manifest.gz index bd5577283bf9..2039fe775dea 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/PyPDF2-1.27.5 b/metadata/md5-cache/dev-python/PyPDF2-1.27.5 index e45e5028d1f3..4f06407a8b93 100644 --- a/metadata/md5-cache/dev-python/PyPDF2-1.27.5 +++ b/metadata/md5-cache/dev-python/PyPDF2-1.27.5 @@ -3,7 +3,7 @@ DEFINED_PHASES=compile configure install prepare test DESCRIPTION=Python library to work with PDF files EAPI=8 HOMEPAGE=https://pypi.org/project/PyPDF2/ https://github.com/py-pdf/PyPDF2/ -IUSE=examples test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 KEYWORDS=amd64 ~arm64 ~ppc64 x86 LICENSE=BSD-2 RDEPEND=python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/py-pdf/PyPDF2/archive/1.27.5.tar.gz -> PyPDF2-1.27.5.gh.tar.gz _eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=a2e468c183a67ac00e4cf85e652becba +_md5_=6f259b559e5a15b653c5de147fedd6b1 diff --git a/metadata/md5-cache/dev-python/PyPDF2-1.27.7 b/metadata/md5-cache/dev-python/PyPDF2-1.27.7 new file mode 100644 index 000000000000..863585b47374 --- /dev/null +++ b/metadata/md5-cache/dev-python/PyPDF2-1.27.7 @@ -0,0 +1,15 @@ +BDEPEND=dev-python/pillow[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] test? ( >=dev-python/pytest-7.0.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) >=dev-python/installer-0.4.0_p20220124[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/tomli-1.2.3[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-60.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/wheel[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Python library to work with PDF files +EAPI=8 +HOMEPAGE=https://pypi.org/project/PyPDF2/ https://github.com/py-pdf/PyPDF2/ +IUSE=examples test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~amd64 ~arm64 ~ppc64 ~x86 +LICENSE=BSD-2 +RDEPEND=python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.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/py-pdf/PyPDF2/archive/1.27.7.tar.gz -> PyPDF2-1.27.7.gh.tar.gz +_eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=5552e72cd7605cd9e44e52f9f590d81c diff --git a/metadata/md5-cache/dev-python/astroid-2.11.3 b/metadata/md5-cache/dev-python/astroid-2.11.3 new file mode 100644 index 000000000000..2dd62581a2f7 --- /dev/null +++ b/metadata/md5-cache/dev-python/astroid-2.11.3 @@ -0,0 +1,15 @@ +BDEPEND=dev-python/setuptools_scm[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] test? ( dev-python/nose[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/numpy[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(-)?] ) test? ( >=dev-python/lazy-object-proxy-1.4.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/setuptools[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/typing-extensions-3.10[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] =dev-python/pytest-7.0.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) >=dev-python/installer-0.4.0_p20220124[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/tomli-1.2.3[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-60.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/wheel[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Abstract Syntax Tree for logilab packages +EAPI=8 +HOMEPAGE=https://github.com/PyCQA/astroid/ https://pypi.org/project/astroid/ +IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +LICENSE=LGPL-2.1+ +RDEPEND=>=dev-python/lazy-object-proxy-1.4.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/setuptools[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/typing-extensions-3.10[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] =dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.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/PyCQA/astroid/archive/v2.11.3.tar.gz -> astroid-2.11.3.tar.gz +_eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=51d730b10ed4a3913fdd158c71bb8bf7 diff --git a/metadata/md5-cache/dev-python/boto3-1.21.43 b/metadata/md5-cache/dev-python/boto3-1.21.43 new file mode 100644 index 000000000000..ac247dec3fdc --- /dev/null +++ b/metadata/md5-cache/dev-python/boto3-1.21.43 @@ -0,0 +1,15 @@ +BDEPEND=test? ( dev-python/mock[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pytest-xdist[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) doc? ( || ( ( >=dev-lang/python-3.10.0_p1-r1:3.10 >=dev-python/sphinx-4.4.0[python_targets_python3_10(-)] dev-python/guzzle_sphinx_theme[python_targets_python3_10(-)] ) ( >=dev-lang/python-3.9.9-r1:3.9 >=dev-python/sphinx-4.4.0[python_targets_python3_9(-)] dev-python/guzzle_sphinx_theme[python_targets_python3_9(-)] ) ( >=dev-lang/python-3.8.12_p1-r1:3.8 >=dev-python/sphinx-4.4.0[python_targets_python3_8(-)] dev-python/guzzle_sphinx_theme[python_targets_python3_8(-)] ) ) ) test? ( >=dev-python/botocore-1.24.43[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/pytest-7.0.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) >=dev-python/installer-0.4.0_p20220124[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/tomli-1.2.3[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-60.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/wheel[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 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux +LICENSE=Apache-2.0 +RDEPEND=>=dev-python/botocore-1.24.43[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.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.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.21.43.tar.gz -> boto3-1.21.43.tar.gz +_eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=f966ebe9df6fff0831935a36f567d975 diff --git a/metadata/md5-cache/dev-python/botocore-1.24.43 b/metadata/md5-cache/dev-python/botocore-1.24.43 new file mode 100644 index 000000000000..debbdc49e85e --- /dev/null +++ b/metadata/md5-cache/dev-python/botocore-1.24.43 @@ -0,0 +1,15 @@ +BDEPEND=test? ( dev-python/jsonschema[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pytest-xdist[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) doc? ( || ( ( >=dev-lang/python-3.10.0_p1-r1:3.10 >=dev-python/sphinx-4.4.0[python_targets_python3_10(-)] dev-python/guzzle_sphinx_theme[python_targets_python3_10(-)] ) ( >=dev-lang/python-3.9.9-r1:3.9 >=dev-python/sphinx-4.4.0[python_targets_python3_9(-)] dev-python/guzzle_sphinx_theme[python_targets_python3_9(-)] ) ( >=dev-lang/python-3.8.12_p1-r1:3.8 >=dev-python/sphinx-4.4.0[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/urllib3-1.25.4[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pytest-7.0.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) >=dev-python/installer-0.4.0_p20220124[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/tomli-1.2.3[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-60.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/wheel[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 ~riscv ~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/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.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.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.24.43.tar.gz +_eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=12e01d8381058d6686b535919c01bc8c diff --git a/metadata/md5-cache/dev-python/cachecontrol-0.12.11 b/metadata/md5-cache/dev-python/cachecontrol-0.12.11 new file mode 100644 index 000000000000..02d027ac303f --- /dev/null +++ b/metadata/md5-cache/dev-python/cachecontrol-0.12.11 @@ -0,0 +1,15 @@ +BDEPEND=test? ( dev-python/cherrypy[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/lockfile[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(-)?] ) test? ( >=dev-python/msgpack-0.5.2[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/requests[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pytest-7.0.1[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.7-r1:0= ) python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) >=dev-python/installer-0.4.0_p20220124[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/tomli-1.2.3[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-60.5.0[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/wheel[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=httplib2 caching for requests +EAPI=8 +HOMEPAGE=https://pypi.org/project/CacheControl/ https://github.com/ionrock/cachecontrol/ +IUSE=test python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~amd64 +LICENSE=Apache-2.0 +RDEPEND=>=dev-python/msgpack-0.5.2[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/requests[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_pypy3? ( >=dev-python/pypy3-7.3.7-r1:0= ) python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.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=https://github.com/ionrock/cachecontrol/archive/v0.12.11.tar.gz -> cachecontrol-0.12.11.gh.tar.gz +_eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=35d3463e3c8623bceedab7cba482a7bf diff --git a/metadata/md5-cache/dev-python/dns-lexicon-3.9.5 b/metadata/md5-cache/dev-python/dns-lexicon-3.9.5 new file mode 100644 index 000000000000..e63a5d85888e --- /dev/null +++ b/metadata/md5-cache/dev-python/dns-lexicon-3.9.5 @@ -0,0 +1,15 @@ +BDEPEND=test? ( dev-python/boto3[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/zeep[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/vcrpy[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) test? ( dev-python/beautifulsoup4[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/tldextract[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/cryptography[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/pytest-7.0.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) >=dev-python/installer-0.4.0_p20220124[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/tomli-1.2.3[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/poetry-core-1.0.8[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +DEFINED_PHASES=compile configure install postinst prepare test +DESCRIPTION=Manipulate DNS records on various DNS providers in a standardized/agnostic way +EAPI=8 +HOMEPAGE=https://pypi.org/project/dns-lexicon/ +IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~amd64 ~x86 +LICENSE=MIT +RDEPEND=dev-python/beautifulsoup4[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/tldextract[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/cryptography[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.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.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/AnalogJ/lexicon/archive/v3.9.5.tar.gz -> dns-lexicon-3.9.5.tar.gz +_eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b optfeature d524f291c80f9d21ad80fe978e3ca760 python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=9e3f3e63e267b418e5dab2cf9c176d50 diff --git a/metadata/md5-cache/dev-python/flask-security-4.1.4 b/metadata/md5-cache/dev-python/flask-security-4.1.4 new file mode 100644 index 000000000000..9eb7dd17a469 --- /dev/null +++ b/metadata/md5-cache/dev-python/flask-security-4.1.4 @@ -0,0 +1,15 @@ +BDEPEND=dev-python/Babel[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] test? ( >=dev-python/argon2-cffi-19.1.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/bcrypt-3.1.5[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/bleach[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/cryptography-2.3.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/flask-mail-0.9.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/flask-sqlalchemy-2.3[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/mongomock-3.19.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/peewee-3.11.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/phonenumbers-8.11.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/psycopg-2.8.4:2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pymysql-0.9.3[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pyqrcode-1.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/zxcvbn-4.4.28[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pony-0.7.11[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) test? ( >=dev-python/bleach-3.3.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/blinker-1.4[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/cachetools[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/flask-1.1.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/flask-babelex-0.9.3[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/flask-login-0.4.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/flask-principal-0.4.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/flask-wtf-0.14.3[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/itsdangerous-1.1.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/passlib-1.7.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/python-email-validator-1.1.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pytest-7.0.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) >=dev-python/installer-0.4.0_p20220124[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/tomli-1.2.3[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-60.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/wheel[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Simple security for Flask apps +EAPI=8 +HOMEPAGE=https://github.com/Flask-Middleware/flask-security/ https://pypi.org/project/Flask-Security-Too/ +IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~amd64 ~riscv ~x86 +LICENSE=MIT +RDEPEND=>=dev-python/bleach-3.3.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/blinker-1.4[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/cachetools[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/flask-1.1.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/flask-babelex-0.9.3[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/flask-login-0.4.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/flask-principal-0.4.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/flask-wtf-0.14.3[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/itsdangerous-1.1.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/passlib-1.7.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/python-email-validator-1.1.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.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/Flask-Middleware/flask-security/archive/4.1.4.tar.gz -> flask-security-4.1.4.gh.tar.gz +_eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=2203b7cbb66339bd2f239c7ae427df68 diff --git a/metadata/md5-cache/dev-python/fonttools-4.31.2 b/metadata/md5-cache/dev-python/fonttools-4.31.2 index 09c653a10ca1..3a396c0067e7 100644 --- a/metadata/md5-cache/dev-python/fonttools-4.31.2 +++ b/metadata/md5-cache/dev-python/fonttools-4.31.2 @@ -4,7 +4,7 @@ DESCRIPTION=Library for manipulating TrueType, OpenType, AFM and Type1 fonts EAPI=8 HOMEPAGE=https://github.com/fonttools/fonttools/ IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 test -KEYWORDS=~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~ppc ppc64 ~riscv ~sparc x86 ~x64-macos +KEYWORDS=~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ppc ppc64 ~riscv sparc x86 ~x64-macos LICENSE=BSD RDEPEND=>=dev-python/fs-2.4.9[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8[xml(+)] ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9[xml(+)] ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10[xml(+)] ) REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/fonttools/fonttools/archive/4.31.2.tar.gz -> fonttools-4.31.2.tar.gz _eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 -_md5_=fa5346bcd0364fbd1f1e72ceb3ea6384 +_md5_=b224f83e001f1e6bfc973fc527551617 diff --git a/metadata/md5-cache/dev-python/google-api-python-client-2.45.0 b/metadata/md5-cache/dev-python/google-api-python-client-2.45.0 new file mode 100644 index 000000000000..7198f1289b81 --- /dev/null +++ b/metadata/md5-cache/dev-python/google-api-python-client-2.45.0 @@ -0,0 +1,15 @@ +BDEPEND=test? ( dev-python/mock[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/oauth2client[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pandas[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/parameterized[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) test? ( >=dev-python/httplib2-0.15[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] =dev-python/google-api-core-2.3.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/google-auth-1.35.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/google-auth-httplib2-0.1.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/uritemplate-3.0.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] =dev-python/pytest-7.0.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) >=dev-python/installer-0.4.0_p20220124[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/tomli-1.2.3[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-60.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/wheel[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +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 python_targets_python3_10 +KEYWORDS=~amd64 ~arm ~arm64 ~x86 +LICENSE=Apache-2.0 +RDEPEND=>=dev-python/httplib2-0.15[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] =dev-python/google-api-core-2.3.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/google-auth-1.35.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/google-auth-httplib2-0.1.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/uritemplate-3.0.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] =dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.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/googleapis/google-api-python-client/archive/v2.45.0.tar.gz -> google-api-python-client-2.45.0.tar.gz +_eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=544afe5a6a31a928e29bbd1252e16d46 diff --git a/metadata/md5-cache/dev-python/notebook-6.4.11 b/metadata/md5-cache/dev-python/notebook-6.4.11 new file mode 100644 index 000000000000..6155d2f88045 --- /dev/null +++ b/metadata/md5-cache/dev-python/notebook-6.4.11 @@ -0,0 +1,15 @@ +BDEPEND=>=dev-python/jupyter_packaging-0.9[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] test? ( dev-python/requests[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/requests-unixsocket[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) test? ( >=dev-libs/mathjax-2.4 dev-python/argon2-cffi[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/jinja[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/terminado-0.8.3[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=www-servers/tornado-6.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/ipython_genutils[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/traitlets-4.2.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/jupyter_core-4.6.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pyzmq-17[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/jupyter_client-5.3.4[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/nbconvert-4.2.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/nest_asyncio-1.5[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/send2trash-1.8.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/prometheus_client[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pytest-7.0.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8[threads(+)] ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9[threads(+)] ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10[threads(+)] ) >=dev-python/installer-0.4.0_p20220124[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/tomli-1.2.3[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-60.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/wheel[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +DEFINED_PHASES=compile configure install postinst postrm prepare test +DESCRIPTION=Jupyter Interactive Notebook +EAPI=8 +HOMEPAGE=https://jupyter.org +IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +LICENSE=BSD +RDEPEND=>=dev-libs/mathjax-2.4 dev-python/argon2-cffi[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/jinja[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/terminado-0.8.3[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=www-servers/tornado-6.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/ipython_genutils[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/traitlets-4.2.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/jupyter_core-4.6.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pyzmq-17[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/jupyter_client-5.3.4[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/nbconvert-4.2.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/nest_asyncio-1.5[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/send2trash-1.8.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/prometheus_client[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8[threads(+)] ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9[threads(+)] ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10[threads(+)] ) +REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://pypi/n/notebook/notebook-6.4.11.tar.gz +_eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e +_md5_=7b4655d78c09a445fca2688a0063e342 diff --git a/metadata/md5-cache/dev-python/nspektr-0.3.0 b/metadata/md5-cache/dev-python/nspektr-0.3.0 index b185f26087e5..4c64c64bfb45 100644 --- a/metadata/md5-cache/dev-python/nspektr-0.3.0 +++ b/metadata/md5-cache/dev-python/nspektr-0.3.0 @@ -4,7 +4,7 @@ DESCRIPTION=Distribution package dependency inspector EAPI=7 HOMEPAGE=https://github.com/jaraco/nspektr/ https://pypi.org/project/nspektr/ IUSE=test python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~ppc ppc64 ~riscv ~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 ~ia64 ~m68k ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=MIT RDEPEND=>=dev-python/jaraco-context-4.1.1-r2[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/jaraco-functools-3.5.0-r2[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/more-itertools-8.12.0-r1[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/packaging-21.3-r2[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_pypy3? ( >=dev-python/importlib_metadata-4.11.2[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?] ) python_targets_python3_8? ( >=dev-python/importlib_metadata-4.11.2[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?] ) python_targets_python3_9? ( >=dev-python/importlib_metadata-4.11.2[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.7-r1:0= ) python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) REQUIRED_USE=|| ( python_targets_pypy3 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/jaraco/nspektr/archive/v0.3.0.tar.gz -> nspektr-0.3.0.tar.gz _eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=695f17a00628e075f5e5e87203d8704d +_md5_=db843c02400eafd23038338868b419ff diff --git a/metadata/md5-cache/dev-python/PyECLib-1.6.0-r1 b/metadata/md5-cache/dev-python/pyeclib-1.6.0-r1 similarity index 97% rename from metadata/md5-cache/dev-python/PyECLib-1.6.0-r1 rename to metadata/md5-cache/dev-python/pyeclib-1.6.0-r1 index 6fdfbcc1e97c..593a865fa783 100644 --- a/metadata/md5-cache/dev-python/PyECLib-1.6.0-r1 +++ b/metadata/md5-cache/dev-python/pyeclib-1.6.0-r1 @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/p/pyeclib/pyeclib-1.6.0.tar.gz _eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b optfeature d524f291c80f9d21ad80fe978e3ca760 python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=6d958bcd9501f3e4a00cd90eea243478 +_md5_=2e2b21bb985a83cdf0c5c101f71416bc diff --git a/metadata/md5-cache/dev-python/pyeclib-1.6.1 b/metadata/md5-cache/dev-python/pyeclib-1.6.1 new file mode 100644 index 000000000000..e1f782a6b1fa --- /dev/null +++ b/metadata/md5-cache/dev-python/pyeclib-1.6.1 @@ -0,0 +1,16 @@ +BDEPEND=test? ( dev-python/six[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) test? ( dev-libs/liberasurecode dev-python/unittest-or-fail[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) >=dev-python/installer-0.4.0_p20220124[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/tomli-1.2.3[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-60.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/wheel[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +DEFINED_PHASES=compile configure install postinst prepare test +DEPEND=dev-libs/liberasurecode +DESCRIPTION=Messaging API for RPC and notifications over different messaging transports +EAPI=8 +HOMEPAGE=https://opendev.org/openstack/pyeclib/ https://pypi.org/project/pyeclib/ +IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~amd64 ~arm64 ~x86 +LICENSE=BSD +RDEPEND=dev-libs/liberasurecode python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.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/pyeclib/pyeclib-1.6.1.tar.gz +_eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b optfeature d524f291c80f9d21ad80fe978e3ca760 python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=1e8a58a77feb066d8b749fe05a3a0ad1 diff --git a/metadata/md5-cache/dev-python/readme_renderer-35.0 b/metadata/md5-cache/dev-python/readme_renderer-35.0 new file mode 100644 index 000000000000..3b20f118950c --- /dev/null +++ b/metadata/md5-cache/dev-python/readme_renderer-35.0 @@ -0,0 +1,15 @@ +BDEPEND=test? ( dev-python/mock[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) test? ( >=dev-python/bleach-2.1.0[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/docutils-0.13.1[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pygments-2.5.2[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pytest-7.0.1[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.7-r1:0= ) python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) >=dev-python/installer-0.4.0_p20220124[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/tomli-1.2.3[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-60.5.0[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/wheel[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=a library for rendering "readme" descriptions for Warehouse +EAPI=8 +HOMEPAGE=https://github.com/pypa/readme_renderer/ https://pypi.org/project/readme-renderer/ +IUSE=test python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86 ~x64-macos +LICENSE=Apache-2.0 +RDEPEND=>=dev-python/bleach-2.1.0[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/docutils-0.13.1[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/pygments-2.5.2[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_pypy3? ( >=dev-python/pypy3-7.3.7-r1:0= ) python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.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/readme_renderer/readme_renderer-35.0.tar.gz +_eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=f213f862cac4169cae98df50055a3363 diff --git a/metadata/md5-cache/dev-python/secretstorage-3.3.2 b/metadata/md5-cache/dev-python/secretstorage-3.3.2 new file mode 100644 index 000000000000..1ff5c8f5f2b7 --- /dev/null +++ b/metadata/md5-cache/dev-python/secretstorage-3.3.2 @@ -0,0 +1,15 @@ +BDEPEND=test? ( !hppa? ( !sparc? ( gnome-base/gnome-keyring sys-apps/dbus ) ) ) test? ( dev-python/cryptography[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/jeepney-0.6[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/unittest-or-fail[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) doc? ( || ( ( >=dev-lang/python-3.10.0_p1-r1:3.10 >=dev-python/sphinx-4.4.0[python_targets_python3_10(-)] dev-python/alabaster[python_targets_python3_10(-)] ) ( >=dev-lang/python-3.9.9-r1:3.9 >=dev-python/sphinx-4.4.0[python_targets_python3_9(-)] dev-python/alabaster[python_targets_python3_9(-)] ) ( >=dev-lang/python-3.8.12_p1-r1:3.8 >=dev-python/sphinx-4.4.0[python_targets_python3_8(-)] dev-python/alabaster[python_targets_python3_8(-)] ) ( >=dev-python/pypy3-7.3.7-r1:0 >=dev-python/sphinx-4.4.0[python_targets_pypy3(-)] dev-python/alabaster[python_targets_pypy3(-)] ) ) ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.7-r1:0= ) python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) >=dev-python/installer-0.4.0_p20220124[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/tomli-1.2.3[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-60.5.0[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/wheel[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Python bindings to FreeDesktop.org Secret Service API +EAPI=8 +HOMEPAGE=https://github.com/mitya57/secretstorage/ https://pypi.org/project/SecretStorage/ +IUSE=test doc python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux +LICENSE=BSD +RDEPEND=dev-python/cryptography[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/jeepney-0.6[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_pypy3? ( >=dev-python/pypy3-7.3.7-r1:0= ) python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.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/S/SecretStorage/SecretStorage-3.3.2.tar.gz +_eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=4142c615c9ff52c3d19645e33f14f362 diff --git a/metadata/md5-cache/dev-python/setuptools-60.10.0 b/metadata/md5-cache/dev-python/setuptools-60.10.0 index 0cb50fcbb08f..8e6f63ac77d7 100644 --- a/metadata/md5-cache/dev-python/setuptools-60.10.0 +++ b/metadata/md5-cache/dev-python/setuptools-60.10.0 @@ -4,7 +4,7 @@ DESCRIPTION=Collection of extensions to Distutils EAPI=7 HOMEPAGE=https://github.com/pypa/setuptools https://pypi.org/project/setuptools/ IUSE=test python_targets_pypy3 python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~ppc ppc64 ~riscv ~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 ~ia64 ~m68k ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=MIT PDEPEND=>=dev-python/certifi-2016.9.26[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/setuptools_scm[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] RDEPEND=>=dev-python/appdirs-1.4.4-r2[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/jaraco-text-3.7.0-r1[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/more-itertools-8.12.0-r1[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/nspektr[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/ordered-set-4.0.2-r1[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/packaging-21.3-r2[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] python_targets_pypy3? ( >=dev-python/importlib_metadata-4.10.1-r1[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?] ) python_targets_python3_8? ( >=dev-python/importlib_metadata-4.10.1-r1[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?] ) python_targets_python3_9? ( >=dev-python/importlib_metadata-4.10.1-r1[python_targets_pypy3(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?] ) python_targets_pypy3? ( >=dev-python/importlib_resources-5.4.0-r3[python_targets_pypy3(-)?,python_targets_python3_8(-)?] ) python_targets_python3_8? ( >=dev-python/importlib_resources-5.4.0-r3[python_targets_pypy3(-)?,python_targets_python3_8(-)?] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.7-r1:0=[xml(+)] ) python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8[xml(+)] ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9[xml(+)] ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10[xml(+)] ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/s/setuptools/setuptools-60.10.0.tar.gz https://dev.gentoo.org/~floppym/python/python-gentoo-patches-3.10.0_p1.tar.xz _eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=25eaa7c278655da1e4d92d93093519ae +_md5_=2aeca50c260639e9ce7b5cf65165d119 diff --git a/metadata/md5-cache/dev-python/setuptools-60.5.0 b/metadata/md5-cache/dev-python/setuptools-60.5.0 index 5127f80c3d3d..43c8a59972d3 100644 --- a/metadata/md5-cache/dev-python/setuptools-60.5.0 +++ b/metadata/md5-cache/dev-python/setuptools-60.5.0 @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/s/setuptools/setuptools-60.5.0.tar.gz https://dev.gentoo.org/~floppym/python/python-gentoo-patches-3.10.0_p1.tar.xz _eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=82184557417239db4002264cec808eca +_md5_=57932aa89627cd8f968c3540f7b08a36 diff --git a/metadata/md5-cache/dev-python/setuptools-60.9.2 b/metadata/md5-cache/dev-python/setuptools-60.9.2 index 9e087d4a870f..58262bf950bd 100644 --- a/metadata/md5-cache/dev-python/setuptools-60.9.2 +++ b/metadata/md5-cache/dev-python/setuptools-60.9.2 @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/s/setuptools/setuptools-60.9.2.tar.gz https://dev.gentoo.org/~floppym/python/python-gentoo-patches-3.10.0_p1.tar.xz _eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=ec347693736d2158fff2d16e744083af +_md5_=dfcdf96a30eaa6ba37c1c138fcba9b13 diff --git a/metadata/md5-cache/dev-python/setuptools-61.3.0 b/metadata/md5-cache/dev-python/setuptools-61.3.0 index ba227e174e93..a243d87bbdf7 100644 --- a/metadata/md5-cache/dev-python/setuptools-61.3.0 +++ b/metadata/md5-cache/dev-python/setuptools-61.3.0 @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/pypa/setuptools/archive/v61.3.0.tar.gz -> setuptools-61.3.0.gh.tar.gz https://dev.gentoo.org/~floppym/python/python-gentoo-patches-3.10.0_p1.tar.xz _eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=e557f990d7a22fc338f70b19cc66a242 +_md5_=2e356022e2e1ff60a6827147b5fef14d diff --git a/metadata/md5-cache/dev-python/setuptools-61.3.1-r1 b/metadata/md5-cache/dev-python/setuptools-61.3.1-r1 index 69ddb89fda90..18d3faf2df99 100644 --- a/metadata/md5-cache/dev-python/setuptools-61.3.1-r1 +++ b/metadata/md5-cache/dev-python/setuptools-61.3.1-r1 @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/s/setuptools/setuptools-61.3.1.tar.gz https://dev.gentoo.org/~floppym/python/python-gentoo-patches-3.10.0_p1.tar.xz _eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=71963c08111629fd4f0f7402863a1a58 +_md5_=c0725e5249628dd4dca88f1bf761650a diff --git a/metadata/md5-cache/dev-python/setuptools-62.0.0 b/metadata/md5-cache/dev-python/setuptools-62.0.0 index d675fb2f8264..8bc85f9ff79d 100644 --- a/metadata/md5-cache/dev-python/setuptools-62.0.0 +++ b/metadata/md5-cache/dev-python/setuptools-62.0.0 @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/s/setuptools/setuptools-62.0.0.tar.gz https://dev.gentoo.org/~mgorny/dist/python/python-gentoo-patches-3.10.4.tar.xz _eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=875cbdbd7b8234d8a7f91e1401813c39 +_md5_=2ecf65eedfba5354921468e67c4cc4f5 diff --git a/metadata/md5-cache/dev-python/setuptools-62.1.0 b/metadata/md5-cache/dev-python/setuptools-62.1.0 index 1428d74890c9..d409e03063db 100644 --- a/metadata/md5-cache/dev-python/setuptools-62.1.0 +++ b/metadata/md5-cache/dev-python/setuptools-62.1.0 @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/s/setuptools/setuptools-62.1.0.tar.gz https://dev.gentoo.org/~mgorny/dist/python/python-gentoo-patches-3.10.4.tar.xz _eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=e9256084814448b8c6f5ea22949a2d14 +_md5_=7e73510ff624ba43c9fff290dca60e9c diff --git a/metadata/md5-cache/dev-python/zstd-1.5.2.4 b/metadata/md5-cache/dev-python/zstd-1.5.2.4 new file mode 100644 index 000000000000..c87f721abd2e --- /dev/null +++ b/metadata/md5-cache/dev-python/zstd-1.5.2.4 @@ -0,0 +1,16 @@ +BDEPEND=test? ( app-arch/zstd:= !=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) >=dev-python/installer-0.4.0_p20220124[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/tomli-1.2.3[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/setuptools-60.5.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/wheel[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] +DEFINED_PHASES=compile configure install prepare test +DEPEND=app-arch/zstd:= +DESCRIPTION=Simple python bindings to Yann Collet ZSTD compression library +EAPI=8 +HOMEPAGE=https://github.com/sergey-dryabzhinsky/python-zstd/ https://pypi.org/project/zstd/ +IUSE=test python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 +KEYWORDS=~amd64 ~arm64 ~x86 +LICENSE=BSD-2 +RDEPEND=app-arch/zstd:= !=dev-lang/python-3.8.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) +REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://pypi/z/zstd/zstd-1.5.2.4.tar.gz +_eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=366407b6654b151c67690c86dd711ebe diff --git a/metadata/md5-cache/games-board/Manifest.gz b/metadata/md5-cache/games-board/Manifest.gz index 5b301799f159..12f113008b46 100644 Binary files a/metadata/md5-cache/games-board/Manifest.gz and b/metadata/md5-cache/games-board/Manifest.gz differ diff --git a/metadata/md5-cache/games-board/stockfish-15 b/metadata/md5-cache/games-board/stockfish-15 new file mode 100644 index 000000000000..e00085e360aa --- /dev/null +++ b/metadata/md5-cache/games-board/stockfish-15 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile install prepare +DEPEND=|| ( app-arch/unzip app-arch/zip ) +DESCRIPTION=Free UCI chess engine, claimed to be the strongest in the world +EAPI=7 +HOMEPAGE=https://stockfishchess.org/ +IUSE=cpu_flags_arm_v7 cpu_flags_x86_avx2 cpu_flags_x86_popcnt cpu_flags_x86_sse debug general-32 general-64 +optimize +KEYWORDS=~amd64 ~riscv ~x86 +LICENSE=GPL-3 +SLOT=0 +SRC_URI=https://github.com/official-stockfish/Stockfish/archive/sf_15.tar.gz -> stockfish-15.tar.gz https://tests.stockfishchess.org/api/nn/nn-6877cd24400e.nnue -> stockfish-15-nn-6877cd24400e.nnue +_eclasses_=multilib 4a33c9008e5ee30cb8840a3fdc24df2b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 +_md5_=5b899e9479dda0f83e533d3100741a64 diff --git a/metadata/md5-cache/mail-client/Manifest.gz b/metadata/md5-cache/mail-client/Manifest.gz index 173fa806e044..35334e504af2 100644 Binary files a/metadata/md5-cache/mail-client/Manifest.gz and b/metadata/md5-cache/mail-client/Manifest.gz differ diff --git a/metadata/md5-cache/mail-client/thunderbird-91.8.1 b/metadata/md5-cache/mail-client/thunderbird-91.8.1 new file mode 100644 index 000000000000..a55afef145af --- /dev/null +++ b/metadata/md5-cache/mail-client/thunderbird-91.8.1 @@ -0,0 +1,15 @@ +BDEPEND=|| ( >=dev-lang/python-3.10.0_p1-r1:3.10[ncurses,sqlite,ssl] >=dev-lang/python-3.9.9-r1:3.9[ncurses,sqlite,ssl] >=dev-lang/python-3.8.12_p1-r1:3.8[ncurses,sqlite,ssl] ) app-arch/unzip app-arch/zip >=dev-util/cbindgen-0.19.0 >=net-libs/nodejs-10.23.1 virtual/pkgconfig >=virtual/rust-1.51.0 || ( ( sys-devel/clang:14 sys-devel/llvm:14 clang? ( =sys-devel/lld-14* pgo? ( =sys-libs/compiler-rt-sanitizers-14*[profile] ) ) ) ( sys-devel/clang:13 sys-devel/llvm:13 clang? ( =sys-devel/lld-13* pgo? ( =sys-libs/compiler-rt-sanitizers-13*[profile] ) ) ) ( sys-devel/clang:12 sys-devel/llvm:12 clang? ( =sys-devel/lld-12* pgo? ( =sys-libs/compiler-rt-sanitizers-12*[profile] ) ) ) ( sys-devel/clang:11 sys-devel/llvm:11 clang? ( =sys-devel/lld-11* pgo? ( =sys-libs/compiler-rt-sanitizers-11*[profile] ) ) ) ) amd64? ( >=dev-lang/nasm-2.13 ) x86? ( >=dev-lang/nasm-2.13 ) sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) ~sys-devel/autoconf-2.13 >=sys-devel/libtool-2.4 pgo? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) +DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend setup unpack +DEPEND=>=dev-libs/nss-3.68 >=dev-libs/nspr-4.32 dev-libs/atk dev-libs/expat >=x11-libs/cairo-1.10[X] >=x11-libs/gtk+-3.4.0:3[X] x11-libs/gdk-pixbuf >=x11-libs/pango-1.22.0 >=media-libs/mesa-10.2:* media-libs/fontconfig >=media-libs/freetype-2.4.10 kernel_linux? ( !pulseaudio? ( media-libs/alsa-lib ) ) virtual/freedesktop-icon-theme >=x11-libs/pixman-0.19.2 >=dev-libs/glib-2.26:2 >=sys-libs/zlib-1.2.3 >=dev-libs/libffi-3.0.10:= media-video/ffmpeg x11-libs/libX11 x11-libs/libxcb:= x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrender x11-libs/libXt dbus? ( sys-apps/dbus dev-libs/dbus-glib ) system-av1? ( >=media-libs/dav1d-0.8.1:= >=media-libs/libaom-1.0.0:= ) system-harfbuzz? ( >=media-libs/harfbuzz-2.8.1:0= >=media-gfx/graphite2-1.3.13 ) system-icu? ( >=dev-libs/icu-69.1:= ) system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1 ) system-libevent? ( >=dev-libs/libevent-2.0:0=[threads] ) system-libvpx? ( >=media-libs/libvpx-1.8.2:0=[postproc] ) system-png? ( >=media-libs/libpng-1.6.35:0=[apng] ) system-webp? ( >=media-libs/libwebp-1.1.0:0= ) wifi? ( kernel_linux? ( sys-apps/dbus dev-libs/dbus-glib net-misc/networkmanager ) ) jack? ( virtual/jack ) selinux? ( sec-policy/selinux-mozilla ) sndio? ( media-sound/sndio ) x11-libs/libICE x11-libs/libSM pulseaudio? ( || ( media-sound/pulseaudio >=media-sound/apulse-0.1.12-r4[sdk] ) ) wayland? ( >=x11-libs/gtk+-3.11:3[wayland] ) amd64? ( virtual/opengl ) x86? ( virtual/opengl ) !!sys-devel/llvm:0 dev-util/desktop-file-utils x11-misc/shared-mime-info +DESCRIPTION=Thunderbird Mail Client +EAPI=7 +HOMEPAGE=https://www.thunderbird.net/ +IUSE=+clang cpu_flags_arm_neon dbus debug eme-free hardened hwaccel jack lto +openh264 pgo pulseaudio sndio selinux +system-av1 +system-harfbuzz +system-icu +system-jpeg +system-libevent +system-libvpx system-png +system-webp wayland wifi l10n_af l10n_ar l10n_ast l10n_be l10n_bg l10n_br l10n_ca l10n_cak l10n_cs l10n_cy l10n_da l10n_de l10n_dsb l10n_el l10n_en-CA l10n_en-GB l10n_es-AR l10n_es-ES l10n_et l10n_eu l10n_fi l10n_fr l10n_fy l10n_ga l10n_gd l10n_gl l10n_he l10n_hr l10n_hsb l10n_hu l10n_id l10n_is l10n_it l10n_ja l10n_ka l10n_kab l10n_kk l10n_ko l10n_lt l10n_lv l10n_ms l10n_nb l10n_nl l10n_nn l10n_pa l10n_pl l10n_pt-BR l10n_pt-PT l10n_rm l10n_ro l10n_ru l10n_sk l10n_sl l10n_sq l10n_sr l10n_sv l10n_th l10n_tr l10n_uk l10n_uz l10n_vi l10n_zh-CN l10n_zh-TW pgo +KEYWORDS=~amd64 ~arm64 ~ppc64 ~x86 +LICENSE=MPL-2.0 GPL-2 LGPL-2.1 +RDEPEND=>=dev-libs/nss-3.68 >=dev-libs/nspr-4.32 dev-libs/atk dev-libs/expat >=x11-libs/cairo-1.10[X] >=x11-libs/gtk+-3.4.0:3[X] x11-libs/gdk-pixbuf >=x11-libs/pango-1.22.0 >=media-libs/mesa-10.2:* media-libs/fontconfig >=media-libs/freetype-2.4.10 kernel_linux? ( !pulseaudio? ( media-libs/alsa-lib ) ) virtual/freedesktop-icon-theme >=x11-libs/pixman-0.19.2 >=dev-libs/glib-2.26:2 >=sys-libs/zlib-1.2.3 >=dev-libs/libffi-3.0.10:= media-video/ffmpeg x11-libs/libX11 x11-libs/libxcb:= x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrender x11-libs/libXt dbus? ( sys-apps/dbus dev-libs/dbus-glib ) system-av1? ( >=media-libs/dav1d-0.8.1:= >=media-libs/libaom-1.0.0:= ) system-harfbuzz? ( >=media-libs/harfbuzz-2.8.1:0= >=media-gfx/graphite2-1.3.13 ) system-icu? ( >=dev-libs/icu-69.1:= ) system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1 ) system-libevent? ( >=dev-libs/libevent-2.0:0=[threads] ) system-libvpx? ( >=media-libs/libvpx-1.8.2:0=[postproc] ) system-png? ( >=media-libs/libpng-1.6.35:0=[apng] ) system-webp? ( >=media-libs/libwebp-1.1.0:0= ) wifi? ( kernel_linux? ( sys-apps/dbus dev-libs/dbus-glib net-misc/networkmanager ) ) jack? ( virtual/jack ) selinux? ( sec-policy/selinux-mozilla ) sndio? ( media-sound/sndio ) jack? ( virtual/jack ) openh264? ( media-libs/openh264:*[plugin] ) pulseaudio? ( || ( media-sound/pulseaudio >=media-sound/apulse-0.1.12-r4 ) ) selinux? ( sec-policy/selinux-mozilla ) ! thunderbird-91.8.1.source.tar.xz https://dev.gentoo.org/~juippis/mozilla/patchsets/firefox-91esr-patches-06j.tar.xz https://dev.gentoo.org/~polynomial-c/mozilla/patchsets/firefox-91esr-patches-06j.tar.xz https://dev.gentoo.org/~whissi/mozilla/patchsets/firefox-91esr-patches-06j.tar.xz l10n_af? ( https://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/xpi/af.xpi -> thunderbird-91.8.1-af.xpi ) l10n_ar? ( https://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/xpi/ar.xpi -> thunderbird-91.8.1-ar.xpi ) l10n_ast? ( https://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/xpi/ast.xpi -> thunderbird-91.8.1-ast.xpi ) l10n_be? ( https://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/xpi/be.xpi -> thunderbird-91.8.1-be.xpi ) l10n_bg? ( https://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/xpi/bg.xpi -> thunderbird-91.8.1-bg.xpi ) l10n_br? ( https://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/xpi/br.xpi -> thunderbird-91.8.1-br.xpi ) l10n_ca? ( https://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/xpi/ca.xpi -> thunderbird-91.8.1-ca.xpi ) l10n_cak? ( https://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/xpi/cak.xpi -> thunderbird-91.8.1-cak.xpi ) l10n_cs? ( https://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/xpi/cs.xpi -> thunderbird-91.8.1-cs.xpi ) l10n_cy? ( https://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/xpi/cy.xpi -> thunderbird-91.8.1-cy.xpi ) l10n_da? ( https://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/xpi/da.xpi -> thunderbird-91.8.1-da.xpi ) l10n_de? ( https://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/xpi/de.xpi -> thunderbird-91.8.1-de.xpi ) l10n_dsb? ( https://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/xpi/dsb.xpi -> thunderbird-91.8.1-dsb.xpi ) l10n_el? ( https://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/xpi/el.xpi -> thunderbird-91.8.1-el.xpi ) l10n_en-CA? ( https://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/xpi/en-CA.xpi -> thunderbird-91.8.1-en-CA.xpi ) l10n_en-GB? ( https://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/xpi/en-GB.xpi -> thunderbird-91.8.1-en-GB.xpi ) l10n_es-AR? ( https://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/xpi/es-AR.xpi -> thunderbird-91.8.1-es-AR.xpi ) l10n_es-ES? ( https://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/xpi/es-ES.xpi -> thunderbird-91.8.1-es-ES.xpi ) l10n_et? ( https://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/xpi/et.xpi -> thunderbird-91.8.1-et.xpi ) l10n_eu? ( https://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/xpi/eu.xpi -> thunderbird-91.8.1-eu.xpi ) l10n_fi? ( https://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/xpi/fi.xpi -> thunderbird-91.8.1-fi.xpi ) l10n_fr? ( https://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/xpi/fr.xpi -> thunderbird-91.8.1-fr.xpi ) l10n_fy? ( https://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/xpi/fy-NL.xpi -> thunderbird-91.8.1-fy-NL.xpi ) l10n_ga? ( https://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/xpi/ga-IE.xpi -> thunderbird-91.8.1-ga-IE.xpi ) l10n_gd? ( https://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/xpi/gd.xpi -> thunderbird-91.8.1-gd.xpi ) l10n_gl? ( https://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/xpi/gl.xpi -> thunderbird-91.8.1-gl.xpi ) l10n_he? ( https://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/xpi/he.xpi -> thunderbird-91.8.1-he.xpi ) l10n_hr? ( https://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/xpi/hr.xpi -> thunderbird-91.8.1-hr.xpi ) l10n_hsb? ( https://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/xpi/hsb.xpi -> thunderbird-91.8.1-hsb.xpi ) l10n_hu? ( https://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/xpi/hu.xpi -> thunderbird-91.8.1-hu.xpi ) l10n_id? ( https://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/xpi/id.xpi -> thunderbird-91.8.1-id.xpi ) l10n_is? ( https://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/xpi/is.xpi -> thunderbird-91.8.1-is.xpi ) l10n_it? ( https://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/xpi/it.xpi -> thunderbird-91.8.1-it.xpi ) l10n_ja? ( https://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/xpi/ja.xpi -> thunderbird-91.8.1-ja.xpi ) l10n_ka? ( https://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/xpi/ka.xpi -> thunderbird-91.8.1-ka.xpi ) l10n_kab? ( https://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/xpi/kab.xpi -> thunderbird-91.8.1-kab.xpi ) l10n_kk? ( https://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/xpi/kk.xpi -> thunderbird-91.8.1-kk.xpi ) l10n_ko? ( https://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/xpi/ko.xpi -> thunderbird-91.8.1-ko.xpi ) l10n_lt? ( https://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/xpi/lt.xpi -> thunderbird-91.8.1-lt.xpi ) l10n_lv? ( https://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/xpi/lv.xpi -> thunderbird-91.8.1-lv.xpi ) l10n_ms? ( https://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/xpi/ms.xpi -> thunderbird-91.8.1-ms.xpi ) l10n_nb? ( https://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/xpi/nb-NO.xpi -> thunderbird-91.8.1-nb-NO.xpi ) l10n_nl? ( https://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/xpi/nl.xpi -> thunderbird-91.8.1-nl.xpi ) l10n_nn? ( https://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/xpi/nn-NO.xpi -> thunderbird-91.8.1-nn-NO.xpi ) l10n_pa? ( https://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/xpi/pa-IN.xpi -> thunderbird-91.8.1-pa-IN.xpi ) l10n_pl? ( https://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/xpi/pl.xpi -> thunderbird-91.8.1-pl.xpi ) l10n_pt-BR? ( https://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/xpi/pt-BR.xpi -> thunderbird-91.8.1-pt-BR.xpi ) l10n_pt-PT? ( https://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/xpi/pt-PT.xpi -> thunderbird-91.8.1-pt-PT.xpi ) l10n_rm? ( https://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/xpi/rm.xpi -> thunderbird-91.8.1-rm.xpi ) l10n_ro? ( https://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/xpi/ro.xpi -> thunderbird-91.8.1-ro.xpi ) l10n_ru? ( https://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/xpi/ru.xpi -> thunderbird-91.8.1-ru.xpi ) l10n_sk? ( https://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/xpi/sk.xpi -> thunderbird-91.8.1-sk.xpi ) l10n_sl? ( https://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/xpi/sl.xpi -> thunderbird-91.8.1-sl.xpi ) l10n_sq? ( https://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/xpi/sq.xpi -> thunderbird-91.8.1-sq.xpi ) l10n_sr? ( https://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/xpi/sr.xpi -> thunderbird-91.8.1-sr.xpi ) l10n_sv? ( https://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/xpi/sv-SE.xpi -> thunderbird-91.8.1-sv-SE.xpi ) l10n_th? ( https://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/xpi/th.xpi -> thunderbird-91.8.1-th.xpi ) l10n_tr? ( https://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/xpi/tr.xpi -> thunderbird-91.8.1-tr.xpi ) l10n_uk? ( https://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/xpi/uk.xpi -> thunderbird-91.8.1-uk.xpi ) l10n_uz? ( https://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/xpi/uz.xpi -> thunderbird-91.8.1-uz.xpi ) l10n_vi? ( https://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/xpi/vi.xpi -> thunderbird-91.8.1-vi.xpi ) l10n_zh-CN? ( https://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/xpi/zh-CN.xpi -> thunderbird-91.8.1-zh-CN.xpi ) l10n_zh-TW? ( https://archive.mozilla.org/pub/thunderbird/releases/91.8.1/linux-x86_64/xpi/zh-TW.xpi -> thunderbird-91.8.1-zh-TW.xpi ) +_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 check-reqs 82234bf011d5453330773cd5fc3f0199 desktop c0d27bf73aa08ca05b663dbd31fbef28 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnome2-utils 2116cec8f46f4d1b0a88c5b1f1575dd3 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e llvm 6f88d422e49b917bf254b2594f3d903c multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b optfeature d524f291c80f9d21ad80fe978e3ca760 pax-utils 91d47e5d20627c717aa878b9167c62a8 python-any-r1 9006edf4b9c90f9ba1dc9ea9fee1b0bd python-utils-r1 59dddabd6a41ab69723654916142f63b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 virtualx 975d49ff3b3f451efe7a95f230532135 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 6024fbc93167fad782e2032933654857 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e +_md5_=4ed8967c0d86ad491e44afbff819c312 diff --git a/metadata/md5-cache/media-plugins/Manifest.gz b/metadata/md5-cache/media-plugins/Manifest.gz index 9182bd6121b9..794284e2d565 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/vdr-mplayer-0.10.2-r2 b/metadata/md5-cache/media-plugins/vdr-mplayer-0.10.2-r2 index b2a4aecb5af6..18e03445c015 100644 --- a/metadata/md5-cache/media-plugins/vdr-mplayer-0.10.2-r2 +++ b/metadata/md5-cache/media-plugins/vdr-mplayer-0.10.2-r2 @@ -6,8 +6,8 @@ EAPI=7 HOMEPAGE=https://www.muempf.de/ KEYWORDS=~amd64 ~x86 LICENSE=GPL-2 -RDEPEND=>=media-video/vdr-1.4.2 || ( media-video/mplay-sh >=media-video/mplayer-sh-0.8.6-r1 ) sys-apps/util-linux media-tv/gentoo-vdr-scripts app-eselect/eselect-vdr +RDEPEND=>=media-video/vdr-1.4.2 media-video/mplay-sh sys-apps/util-linux media-tv/gentoo-vdr-scripts app-eselect/eselect-vdr SLOT=0 SRC_URI=https://www.muempf.de/down/vdr-mp3-0.10.2.tar.gz _eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 unpacker 697382d119fd3d195f110b7979184285 vdr-plugin-2 a9325d83cfc0ced6c00746d2d2550840 wrapper 4a1902f969e5718126434fc35f3a0d9c -_md5_=b7dc92a213ed4be3855aee0c0d4167d7 +_md5_=75f7259c2f9410fd59a52ea0a45f104b diff --git a/metadata/md5-cache/media-sound/Manifest.gz b/metadata/md5-cache/media-sound/Manifest.gz index dad16e6d97e6..d5e3e10afbd6 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/easyeffects-6.2.4 b/metadata/md5-cache/media-sound/easyeffects-6.2.4 index a9750c36f3b3..304434ad65bb 100644 --- a/metadata/md5-cache/media-sound/easyeffects-6.2.4 +++ b/metadata/md5-cache/media-sound/easyeffects-6.2.4 @@ -5,11 +5,11 @@ DESCRIPTION=Limiter, auto volume and many other plugins for PipeWire application EAPI=8 HOMEPAGE=https://github.com/wwmm/easyeffects IUSE=calf +doc mda-lv2 zamaudio -KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~x86 +KEYWORDS=amd64 ~arm ~arm64 ~ppc64 ~x86 LICENSE=GPL-3 RDEPEND=dev-cpp/nlohmann_json dev-cpp/tbb >=dev-libs/glib-2.56:2 dev-libs/libfmt >=dev-libs/libsigc++-3.0.6:3 >=gui-libs/gtk-4.2.1:4 gui-libs/libadwaita:1 media-libs/libbs2b >=media-libs/libebur128-1.2.0 media-libs/libsndfile >=media-libs/lilv-0.22 >=media-libs/lv2-1.18.2 media-libs/rnnoise media-libs/rubberband[ladspa] media-libs/speexdsp >=media-libs/zita-convolver-3.0.0 >=media-video/pipewire-0.3.41 sci-libs/fftw:3.0 >=media-libs/lsp-plugins-1.1.24[lv2] sys-apps/dbus calf? ( >=media-plugins/calf-0.90.1[lv2] ) doc? ( gnome-extra/yelp ) mda-lv2? ( media-plugins/mda-lv2 ) zamaudio? ( media-plugins/zam-plugins ) RESTRICT=test SLOT=0 SRC_URI=https://github.com/wwmm/easyeffects/archive/v6.2.4.tar.gz -> easyeffects-6.2.4.tar.gz _eclasses_=flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnome2-utils 2116cec8f46f4d1b0a88c5b1f1575dd3 meson 2d8a51910bc57e004c37aa55c7d99ce4 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=f78af22f929298e29458f8152662689a +_md5_=0efb9c928d8814bc8f94af390b1e35f9 diff --git a/metadata/md5-cache/media-video/Manifest.gz b/metadata/md5-cache/media-video/Manifest.gz index 3bbf37456685..9d2cf810da5c 100644 Binary files a/metadata/md5-cache/media-video/Manifest.gz and b/metadata/md5-cache/media-video/Manifest.gz differ diff --git a/metadata/md5-cache/media-video/mplayer-sh-0.8.7 b/metadata/md5-cache/media-video/mplayer-sh-0.8.7 deleted file mode 100644 index 35d8195522d8..000000000000 --- a/metadata/md5-cache/media-video/mplayer-sh-0.8.7 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=install prepare -DESCRIPTION=Video Disk Recorder Mplayer API Script -EAPI=5 -HOMEPAGE=http://batleth.sapienti-sat.org/projects/VDR/ -KEYWORDS=~amd64 x86 -LICENSE=all-rights-reserved -RDEPEND=>=media-video/mplayer-0.1.20070321 -RESTRICT=mirror bindist -SLOT=0 -SRC_URI=http://batleth.sapienti-sat.org/projects/VDR/versions/mplayer.sh-0.8.7.tar.gz -_eclasses_=epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 -_md5_=45fa6b908b3a9d3b52e3bd851dd23cd0 diff --git a/metadata/md5-cache/media-video/pipewire-0.3.49 b/metadata/md5-cache/media-video/pipewire-0.3.49 index 61d4d236a722..9fd502f83274 100644 --- a/metadata/md5-cache/media-video/pipewire-0.3.49 +++ b/metadata/md5-cache/media-video/pipewire-0.3.49 @@ -5,7 +5,7 @@ DESCRIPTION=Multimedia processing graphs EAPI=8 HOMEPAGE=https://pipewire.org/ IUSE=bluetooth doc echo-cancel extra gstreamer jack-client jack-sdk lv2 pipewire-alsa ssl system-service systemd test v4l X zeroconf 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 ~riscv ~sparc ~x86 +KEYWORDS=amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86 LICENSE=MIT LGPL-2.1+ GPL-2 PDEPEND=>=media-video/wireplumber-0.4.8-r3 RDEPEND=acct-group/audio media-libs/alsa-lib sys-apps/dbus[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] sys-libs/readline:= sys-libs/ncurses:=[unicode(+)] virtual/libintl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] virtual/libudev[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] bluetooth? ( media-libs/fdk-aac media-libs/libldac media-libs/libfreeaptx media-libs/sbc >=net-wireless/bluez-4.101:= virtual/libusb:1 ) echo-cancel? ( media-libs/webrtc-audio-processing:0 ) extra? ( >=media-libs/libsndfile-1.0.20 ) gstreamer? ( >=dev-libs/glib-2.32.0:2 >=media-libs/gstreamer-1.10.0:1.0 media-libs/gst-plugins-base:1.0 ) jack-client? ( >=media-sound/jack2-1.9.10:2[dbus] ) jack-sdk? ( !media-sound/jack-audio-connection-kit !media-sound/jack2 ) lv2? ( media-libs/lilv ) pipewire-alsa? ( >=media-libs/alsa-lib-1.1.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(-)?] !media-plugins/alsa-plugins[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?,pulseaudio] ) !pipewire-alsa? ( media-plugins/alsa-plugins[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?,pulseaudio] ) ssl? ( dev-libs/openssl:= ) systemd? ( sys-apps/systemd ) system-service? ( acct-user/pipewire acct-group/pipewire ) v4l? ( media-libs/libv4l ) X? ( media-libs/libcanberra x11-libs/libX11 x11-libs/libXfixes ) zeroconf? ( net-dns/avahi ) @@ -14,4 +14,4 @@ RESTRICT=!test? ( test ) SLOT=0/0.4 SRC_URI=https://gitlab.freedesktop.org/pipewire/pipewire/-/archive/0.3.49/pipewire-0.3.49.tar.gz _eclasses_=flag-o-matic a500d7cc40da3de38c361e889153bdf7 meson 2d8a51910bc57e004c37aa55c7d99ce4 meson-multilib 84c0d4019bf29be0d9d0a2d98fb8b0d9 multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multilib-build 05f207909a804c9174bc39a00547d598 multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 optfeature d524f291c80f9d21ad80fe978e3ca760 prefix eab3c99d77fe00506c109c8a736186f7 python-any-r1 9006edf4b9c90f9ba1dc9ea9fee1b0bd python-utils-r1 59dddabd6a41ab69723654916142f63b systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 udev 2d229ad4bfa09058e0184b1ca900db32 -_md5_=d69cc4086aa4c1e51e7ed38bc2f863e9 +_md5_=7bbf60c54b5b2b4524e0a85e27375365 diff --git a/metadata/md5-cache/media-video/wireplumber-0.4.9 b/metadata/md5-cache/media-video/wireplumber-0.4.9 index d41608606121..0989d3c8ecc9 100644 --- a/metadata/md5-cache/media-video/wireplumber-0.4.9 +++ b/metadata/md5-cache/media-video/wireplumber-0.4.9 @@ -5,7 +5,7 @@ DESCRIPTION=Replacement for pipewire-media-session EAPI=8 HOMEPAGE=https://gitlab.freedesktop.org/pipewire/wireplumber IUSE=elogind system-service systemd test lua_single_target_lua5-3 lua_single_target_lua5-4 -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86 +KEYWORDS=amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86 LICENSE=MIT RDEPEND=lua_single_target_lua5-3? ( dev-lang/lua:5.3 ) lua_single_target_lua5-4? ( dev-lang/lua:5.4 ) >=dev-libs/glib-2.62 >=media-video/pipewire-0.3.48:= virtual/libc elogind? ( sys-auth/elogind ) systemd? ( sys-apps/systemd ) system-service? ( acct-user/pipewire acct-group/pipewire ) REQUIRED_USE=^^ ( lua_single_target_lua5-3 lua_single_target_lua5-4 ) ?? ( elogind systemd ) system-service? ( systemd ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0/0.4 SRC_URI=https://gitlab.freedesktop.org/pipewire/wireplumber/-/archive/0.4.9/wireplumber-0.4.9.tar.gz _eclasses_=lua-single f2c2fb82c912dd65d53bdae3613a331f lua-utils e69ff116248d78546ae1a234c086fe80 meson 2d8a51910bc57e004c37aa55c7d99ce4 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 python-utils-r1 59dddabd6a41ab69723654916142f63b systemd 2736b403a83f194b59b767f3b344c2c1 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=212b8370d80c29cf7bfff8bf1bf5bd1c +_md5_=e9bd7aaa8af61ec1a24b5c68d8bd41ff diff --git a/metadata/md5-cache/net-im/Manifest.gz b/metadata/md5-cache/net-im/Manifest.gz index 282abfdfd59f..0ac8aecca20e 100644 Binary files a/metadata/md5-cache/net-im/Manifest.gz and b/metadata/md5-cache/net-im/Manifest.gz differ diff --git a/metadata/md5-cache/net-im/zoom-5.10.3.2778 b/metadata/md5-cache/net-im/zoom-5.10.3.2778 index a8f99fc2fe65..fe3363630b6e 100644 --- a/metadata/md5-cache/net-im/zoom-5.10.3.2778 +++ b/metadata/md5-cache/net-im/zoom-5.10.3.2778 @@ -6,9 +6,9 @@ HOMEPAGE=https://zoom.us/ IUSE=bundled-libjpeg-turbo +bundled-qt opencl pulseaudio wayland KEYWORDS=-* ~amd64 LICENSE=all-rights-reserved -RDEPEND=!games-engines/zoom app-accessibility/at-spi2-atk app-accessibility/at-spi2-core dev-libs/atk dev-libs/expat dev-libs/glib:2 dev-libs/nspr dev-libs/nss >=dev-libs/quazip-1.0:0= media-libs/alsa-lib media-libs/fdk-aac:0/2 media-libs/fontconfig media-libs/freetype media-libs/mesa[gbm(+)] media-sound/mpg123 net-print/cups sys-apps/dbus sys-apps/util-linux sys-libs/glibc virtual/opengl x11-libs/cairo x11-libs/libdrm x11-libs/libX11 x11-libs/libxcb x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libxkbcommon[X] x11-libs/libXrandr x11-libs/libXrender x11-libs/libxshmfence x11-libs/libXtst x11-libs/pango x11-libs/xcb-util-image x11-libs/xcb-util-keysyms opencl? ( virtual/opencl ) pulseaudio? ( media-sound/pulseaudio ) wayland? ( dev-libs/wayland ) !bundled-libjpeg-turbo? ( >=media-libs/libjpeg-turbo-2.0.5 ) !bundled-qt? ( dev-libs/icu dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtdeclarative:5[widgets] dev-qt/qtdiag:5 dev-qt/qtgraphicaleffects:5 dev-qt/qtgui:5 dev-qt/qtlocation:5 dev-qt/qtnetwork:5 dev-qt/qtquickcontrols:5[widgets] dev-qt/qtquickcontrols2:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 wayland? ( dev-qt/qtwayland ) ) +RDEPEND=!games-engines/zoom app-accessibility/at-spi2-atk app-accessibility/at-spi2-core dev-libs/atk dev-libs/expat dev-libs/glib:2 dev-libs/nspr dev-libs/nss >=dev-libs/quazip-1.0:0= media-libs/alsa-lib media-libs/fdk-aac:0/2 media-libs/fontconfig media-libs/freetype media-libs/mesa[gbm(+)] media-sound/mpg123 net-print/cups sys-apps/dbus sys-apps/util-linux || ( >=sys-libs/glibc-2.34[-clone3(+)] =media-libs/libjpeg-turbo-2.0.5 ) !bundled-qt? ( dev-libs/icu dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtdeclarative:5[widgets] dev-qt/qtdiag:5 dev-qt/qtgraphicaleffects:5 dev-qt/qtgui:5 dev-qt/qtlocation:5 dev-qt/qtnetwork:5 dev-qt/qtquickcontrols:5[widgets] dev-qt/qtquickcontrols2:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 wayland? ( dev-qt/qtwayland ) ) RESTRICT=mirror bindist strip SLOT=0 SRC_URI=https://zoom.us/client/5.10.3.2778/zoom_x86_64.tar.xz -> zoom-5.10.3.2778_x86_64.tar.xz _eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 readme.gentoo-r1 b776ad4b42f564c406a95c41ccb42c55 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=96f48e07bdc774b664449a9ae5b484fc +_md5_=47c8909e56b41bd625141f47bbc0f635 diff --git a/metadata/md5-cache/sci-libs/Manifest.gz b/metadata/md5-cache/sci-libs/Manifest.gz index cf235e7e6311..cd3dc59e29dd 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/indilib-1.9.5.1 b/metadata/md5-cache/sci-libs/indilib-1.9.5.1 index 18f995425a41..a3b2aec172e8 100644 --- a/metadata/md5-cache/sci-libs/indilib-1.9.5.1 +++ b/metadata/md5-cache/sci-libs/indilib-1.9.5.1 @@ -5,11 +5,11 @@ DESCRIPTION=INDI Astronomical Control Protocol library EAPI=8 HOMEPAGE=https://www.indilib.org/ IUSE=ogg rtlsdr test websocket -KEYWORDS=~amd64 ~ppc ~ppc64 ~riscv ~x86 +KEYWORDS=~amd64 ppc ppc64 ~riscv ~x86 LICENSE=BSD GPL-2+ LGPL-2+ LGPL-2.1+ RDEPEND=net-misc/curl sci-libs/cfitsio:= sci-libs/fftw:3.0= sci-libs/gsl:= sci-libs/libnova:= sys-libs/zlib virtual/jpeg:0 virtual/libusb:0 ogg? ( media-libs/libogg media-libs/libtheora ) rtlsdr? ( net-wireless/rtl-sdr ) websocket? ( dev-libs/boost:= ) RESTRICT=!test? ( test ) SLOT=0/1 SRC_URI=https://github.com/indilib/indi/archive/v1.9.5.1.tar.gz -> indilib-1.9.5.1.tar.gz _eclasses_=cmake 3c38df051095289667b6f09ebd0cc149 flag-o-matic a500d7cc40da3de38c361e889153bdf7 multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b ninja-utils fef481272d4a8e136a7d8a0fb1329384 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 udev 2d229ad4bfa09058e0184b1ca900db32 xdg-utils fffb53a53cf17c9c0c998a3c0a590c7e -_md5_=03716d5409777bf704ff59dc65a84235 +_md5_=21e1693d7b73f6146393270a141823fe diff --git a/metadata/md5-cache/sys-auth/Manifest.gz b/metadata/md5-cache/sys-auth/Manifest.gz index 4468d815c68f..7c8ec98362cd 100644 Binary files a/metadata/md5-cache/sys-auth/Manifest.gz and b/metadata/md5-cache/sys-auth/Manifest.gz differ diff --git a/metadata/md5-cache/sys-auth/solo-python-0.1.1 b/metadata/md5-cache/sys-auth/solo-python-0.1.1 index f6897658e0ec..e5c5a898e7d9 100644 --- a/metadata/md5-cache/sys-auth/solo-python-0.1.1 +++ b/metadata/md5-cache/sys-auth/solo-python-0.1.1 @@ -4,11 +4,11 @@ DESCRIPTION=CLI and Python library for SoloKeys Solo 1 EAPI=8 HOMEPAGE=https://github.com/solokeys/solo1-cli IUSE=python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 -KEYWORDS=~amd64 ~riscv +KEYWORDS=amd64 ~riscv LICENSE=Apache-2.0 MIT RDEPEND=>=dev-python/click-7.1.0[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/cryptography[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/ecdsa[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] >=dev-python/fido2-0.9.1[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/intelhex[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pyserial[python_targets_python3_8(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/pyusb[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.12_p1-r1:3.8 ) python_targets_python3_9? ( >=dev-lang/python-3.9.9-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.0_p1-r1:3.10 ) REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 python_targets_python3_10 ) SLOT=0 SRC_URI=mirror://pypi/s/solo1/solo1-0.1.1.tar.gz _eclasses_=distutils-r1 779bc733c68a72273cfce64602bada1d multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multiprocessing 61c959fc55c15c00bbb1079d6a71370b python-r1 8638751691200e941f26fe0ac3aef1d1 python-utils-r1 59dddabd6a41ab69723654916142f63b toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=38de8460051eb31879c01c8809654a7f +_md5_=347aca7e330a318b7d46ae446276a4cb diff --git a/metadata/md5-cache/sys-cluster/Manifest.gz b/metadata/md5-cache/sys-cluster/Manifest.gz index 0a48dd3a9173..67a70b42e639 100644 Binary files a/metadata/md5-cache/sys-cluster/Manifest.gz and b/metadata/md5-cache/sys-cluster/Manifest.gz differ diff --git a/metadata/md5-cache/sys-cluster/lustre-2.13.0-r1 b/metadata/md5-cache/sys-cluster/lustre-2.13.0-r1 deleted file mode 100644 index 0c659fad7762..000000000000 --- a/metadata/md5-cache/sys-cluster/lustre-2.13.0-r1 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=sys-devel/gnuconfig >=app-portage/elt-patches-20170815 =sys-devel/automake-1.15* >=sys-devel/autoconf-2.71 >=sys-devel/libtool-2.4 -DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend setup -DEPEND=virtual/awk dlc? ( dev-libs/libyaml ) readline? ( sys-libs/readline:0 ) server? ( >=sys-fs/zfs-kmod-0.8 >=sys-fs/zfs-0.8 ) dev-python/docutils virtual/linux-sources kernel_linux? ( sys-apps/kmod[tools] dist-kernel? ( virtual/dist-kernel:= ) ) sys-apps/sed kernel_linux? ( virtual/linux-sources virtual/libelf ) -DESCRIPTION=Lustre is a parallel distributed file system -EAPI=7 -HOMEPAGE=http://wiki.whamcloud.com/ -IUSE=+client +utils +modules +dlc server readline tests dist-kernel -KEYWORDS=~amd64 -LICENSE=GPL-2 -RDEPEND=virtual/awk dlc? ( dev-libs/libyaml ) readline? ( sys-libs/readline:0 ) server? ( >=sys-fs/zfs-kmod-0.8 >=sys-fs/zfs-0.8 ) kernel_linux? ( sys-apps/kmod[tools] dist-kernel? ( virtual/dist-kernel:= ) ) -REQUIRED_USE=client? ( modules ) server? ( modules ) -SLOT=0 -SRC_URI=https://dev.gentoo.org/~alexxy/distfiles/lustre-2.13.0.tar.gz -_eclasses_=autotools 9724194ab651ce63fd9bc06e4e1410b4 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 241a8f577b9781a42a7421e53448a44e linux-info 3cfb791b045bfb6773a6d0f2d80ce9fd linux-mod 7d55f157d3072c067c44b09dac80bdf2 multilib 4a33c9008e5ee30cb8840a3fdc24df2b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 wrapper 4a1902f969e5718126434fc35f3a0d9c -_md5_=18a9fabd1e957b97fcb12d130a74d48f diff --git a/metadata/md5-cache/sys-devel/Manifest.gz b/metadata/md5-cache/sys-devel/Manifest.gz index 723c9a85f15f..f302b45d6b58 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/binutils-apple-8.2.1-r1 b/metadata/md5-cache/sys-devel/binutils-apple-8.2.1-r1 index 54de46e7fd34..cef965bf54a6 100644 --- a/metadata/md5-cache/sys-devel/binutils-apple-8.2.1-r1 +++ b/metadata/md5-cache/sys-devel/binutils-apple-8.2.1-r1 @@ -11,4 +11,4 @@ RESTRICT=!test? ( test ) SLOT=8 SRC_URI=http://www.opensource.apple.com/tarballs/ld64/ld64-274.2.tar.gz http://www.opensource.apple.com/tarballs/cctools/cctools-895.tar.gz http://www.opensource.apple.com/tarballs/dyld/dyld-421.2.tar.gz https://dev.gentoo.org/~grobian/distfiles/binutils-apple-patches-4.3-r1.tar.bz2 https://dev.gentoo.org/~grobian/distfiles/binutils-apple-patches-5.1-r2.tar.bz2 https://dev.gentoo.org/~grobian/distfiles/binutils-apple-patches-7.3-r2.tar.bz2 https://dev.gentoo.org/~grobian/distfiles/binutils-apple-patches-8.2-r1.tar.bz2 _eclasses_=desktop c0d27bf73aa08ca05b663dbd31fbef28 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch 9f813bb3c47cf2e60619a663b87c5f4e estack 055c42df72f76a4f45ec92b35e83cd56 eutils dab5d8ec471d025b79c9e6906bcf3bff flag-o-matic a500d7cc40da3de38c361e889153bdf7 llvm 6f88d422e49b917bf254b2594f3d903c ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 4a33c9008e5ee30cb8840a3fdc24df2b prefix eab3c99d77fe00506c109c8a736186f7 preserve-libs a8e50acee31b5759b4df1f7707cae54b strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 vcs-clean d271b7bc7e6a009758d7d4ef749174e3 wrapper 4a1902f969e5718126434fc35f3a0d9c -_md5_=2fa3e69a0b260badec0e6a2ab7f69af0 +_md5_=770fb0faa349635cfc1224653ff2977e diff --git a/metadata/md5-cache/virtual/Manifest.gz b/metadata/md5-cache/virtual/Manifest.gz index cc69fcca686f..8aa630fc6923 100644 Binary files a/metadata/md5-cache/virtual/Manifest.gz and b/metadata/md5-cache/virtual/Manifest.gz differ diff --git a/metadata/md5-cache/virtual/rust-1.59.0 b/metadata/md5-cache/virtual/rust-1.59.0 index 0c579c058f07..06522f9a26fe 100644 --- a/metadata/md5-cache/virtual/rust-1.59.0 +++ b/metadata/md5-cache/virtual/rust-1.59.0 @@ -2,8 +2,8 @@ DEFINED_PHASES=- DESCRIPTION=Virtual for Rust language compiler EAPI=8 IUSE=rustfmt 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 ~riscv ~x86 +KEYWORDS=amd64 ~arm arm64 ~ppc ppc64 ~riscv x86 RDEPEND=|| ( ~dev-lang/rust-1.59.0[rustfmt?,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-lang/rust-bin-1.59.0[rustfmt?,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 _eclasses_=multibuild d26d81f242cb193d899a72bca423d0bd multilib 4a33c9008e5ee30cb8840a3fdc24df2b multilib-build 05f207909a804c9174bc39a00547d598 toolchain-funcs badd6e329e1f3e6bee99b35bf8763ce8 -_md5_=5dc4c4be8739abbf7051105b8e18db1f +_md5_=0cd42f2716a7e984086e9a555ee88b2f diff --git a/metadata/news/timestamp.chk b/metadata/news/timestamp.chk index 15315d3346ca..e618bc78c6d3 100644 --- a/metadata/news/timestamp.chk +++ b/metadata/news/timestamp.chk @@ -1 +1 @@ -Wed, 20 Apr 2022 06:09:07 +0000 +Wed, 20 Apr 2022 10:39:08 +0000 diff --git a/metadata/timestamp b/metadata/timestamp index be6b5951db15..2fd3a272ab0b 100644 --- a/metadata/timestamp +++ b/metadata/timestamp @@ -1 +1 @@ -Wed Apr 20 06:09:06 AM UTC 2022 +Wed Apr 20 10:39:07 AM UTC 2022 diff --git a/metadata/timestamp.chk b/metadata/timestamp.chk index 002bf0591125..7c030e63a17c 100644 --- a/metadata/timestamp.chk +++ b/metadata/timestamp.chk @@ -1 +1 @@ -Wed, 20 Apr 2022 06:30:01 +0000 +Wed, 20 Apr 2022 11:00:01 +0000 diff --git a/metadata/timestamp.commit b/metadata/timestamp.commit index 7df4784b9678..e436e14ad8bf 100644 --- a/metadata/timestamp.commit +++ b/metadata/timestamp.commit @@ -1 +1 @@ -176c9d26cb48763fb341aae2c51207b51c7d0343 1650434219 2022-04-20T05:56:59+00:00 +c504c1ac975808a05b9928a5297133e12a7a9607 1650449777 2022-04-20T10:16:17+00:00 diff --git a/metadata/timestamp.x b/metadata/timestamp.x index 44cbcc59c594..bbc4342bcc1c 100644 --- a/metadata/timestamp.x +++ b/metadata/timestamp.x @@ -1 +1 @@ -1650434701 Wed 20 Apr 2022 06:05:01 AM UTC +1650450901 Wed 20 Apr 2022 10:35:01 AM UTC diff --git a/metadata/xml-schema/timestamp.chk b/metadata/xml-schema/timestamp.chk index 15315d3346ca..50f51d2b186f 100644 --- a/metadata/xml-schema/timestamp.chk +++ b/metadata/xml-schema/timestamp.chk @@ -1 +1 @@ -Wed, 20 Apr 2022 06:09:07 +0000 +Wed, 20 Apr 2022 10:39:07 +0000 diff --git a/net-im/Manifest.gz b/net-im/Manifest.gz index 362cb407018e..2e8d3ed1e946 100644 Binary files a/net-im/Manifest.gz and b/net-im/Manifest.gz differ diff --git a/net-im/zoom/zoom-5.10.3.2778.ebuild b/net-im/zoom/zoom-5.10.3.2778.ebuild index 90fee27aeb0e..fb4a05464d8c 100644 --- a/net-im/zoom/zoom-5.10.3.2778.ebuild +++ b/net-im/zoom/zoom-5.10.3.2778.ebuild @@ -34,7 +34,7 @@ RDEPEND="!games-engines/zoom net-print/cups sys-apps/dbus sys-apps/util-linux - sys-libs/glibc + || ( >=sys-libs/glibc-2.34[-clone3(+)] (2022-04-20) -# Tests require app-emacs/buttercup which is unkeyworded on x86. -app-emacs/fsharp-mode test - # Adel Kara Slimane (2022-03-14) # Untested useflag on other arches, needs keywording media-video/ffmpeg vmaf diff --git a/profiles/package.mask b/profiles/package.mask index ea0884cf36ac..cdc3686a355d 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -33,6 +33,16 @@ #--- END OF EXAMPLES --- +# Volkmar W. Pogatzki (2022-04-19) +# Release of the source-based ebuild is from 2014. At the moment +# impossible to provide source-based ebuild for the current version. +# Up-to-date binary package exists. Removal on 2022-05-30 +app-text/jabref +dev-java/glazedlists +dev-java/jempbox +dev-java/microba +dev-java/spin + # Volkmar W. Pogatzki (2022-04-17) # Unused java libraries. Removal in 30 days. dev-java/boot-bin @@ -259,31 +269,6 @@ dev-libs/bareos-fastlzlib # Removal on 2022-04-22. app-crypt/seahorse-sharing -# David Seifert (2022-03-21) -# Unmaintained, EAPI 5, no revdeps in tree. -# Bug #786093, removal on 2022-04-20. -dev-java/freehep-graphicsbase -dev-java/freehep-io -dev-java/glassfish-interceptor-api -dev-java/gnu-classpath -dev-java/invokebinder -dev-java/java-apicheck -dev-java/jboss-marshalling-river -dev-java/jboss-marshalling-serial - -# David Seifert (2022-03-21) -# EAPI 5, last release 15 years ago, QA permission issues, no other -# distro packages this. -# Bug #553404, #835364, removal on 2022-04-20. -media-video/mplayer-sh - -# David Seifert (2022-03-20) -# Added and then left unmaintained by author, no revdeps in tree, -# stuck on kernel 4.19, distribution model unlikely a good fit for -# Gentoo, QA issues, blocks automake-1.15 removal, build issues. -# Bug #725746, #728154, #835693, removal on 2022-04-19. -sys-cluster/lustre - # David Seifert (2022-03-20) # Mask gcc-8 branch (ended upstream support). Please switch # to a fresher gcc branch. diff --git a/profiles/updates/2Q-2022 b/profiles/updates/2Q-2022 index 4f647a9b517e..df9345f94245 100644 --- a/profiles/updates/2Q-2022 +++ b/profiles/updates/2Q-2022 @@ -1 +1,2 @@ move app-text/kramdown-rfc2629 app-text/kramdown-rfc +move dev-python/PyECLib dev-python/pyeclib diff --git a/profiles/use.local.desc b/profiles/use.local.desc index 4a914e231d9e..8640d7ee6d0a 100644 --- a/profiles/use.local.desc +++ b/profiles/use.local.desc @@ -1674,13 +1674,6 @@ dev-java/dom4j:jaxen - Includes org.jaxen.dom4j package dev-java/eclipse-ecj:ant - Support using ecj in Ant builds via dev-java/ant-eclipse-ecj dev-java/emma:launcher - Install /usr/bin/emma. Collides with sci-biology/emboss. dev-java/gcj-jdk:awt - Install AWT libraries, needed by some GUIs (not needed to build icedtea) -dev-java/gnu-classpath:alsa - Build with ALSA javax.sound.midi provider -dev-java/gnu-classpath:dssi - Build with DSSI javax.sound.midi provider -dev-java/gnu-classpath:gconf - Build with GConf preferences backend -dev-java/gnu-classpath:gjdoc - Build GJDoc, a documentation generator -dev-java/gnu-classpath:gmp - Build with GMP backend for java.math.BigInteger -dev-java/gnu-classpath:gtk - Build with Gtk+ AWT peers -dev-java/gnu-classpath:xml - Build with native XML backend dev-java/icedtea:cacao - Use the CACAO virtual machine rather than HotSpot. dev-java/icedtea:cups - Link against the CUPS library at compile time, rather than using it dynamically at runtime. dev-java/icedtea:headless-awt - Don't install the X backend for AWT, needed by some GUIs (used to be X flag) @@ -8106,11 +8099,6 @@ sys-cluster/legion:hwloc - Enable HWLoc lib support sys-cluster/lmod:auto-swap - enable auto swapping of compiler sys-cluster/lmod:cache - enable caching of modules sys-cluster/lmod:duplicate-paths - allow duplicate entries in path -sys-cluster/lustre:client - Enable kernel client modules -sys-cluster/lustre:dlc - Enable Dynamic LNET Configuration -sys-cluster/lustre:server - Enable kernels server modules -sys-cluster/lustre:tests - Enable installation of tests -sys-cluster/lustre:utils - Enable lustre utils sys-cluster/minikube:libvirt - Build plugin for kvm sys-cluster/mpich:mpi-threads - Enable MPI_THREAD_MULTIPLE sys-cluster/mpich:romio - Build the ROMIO MPI-IO component diff --git a/sci-libs/Manifest.gz b/sci-libs/Manifest.gz index 5043d2e04c1d..5b98cb4b2658 100644 Binary files a/sci-libs/Manifest.gz and b/sci-libs/Manifest.gz differ diff --git a/sci-libs/indilib/indilib-1.9.5.1.ebuild b/sci-libs/indilib/indilib-1.9.5.1.ebuild index b6d000763a3b..c98626ccc246 100644 --- a/sci-libs/indilib/indilib-1.9.5.1.ebuild +++ b/sci-libs/indilib/indilib-1.9.5.1.ebuild @@ -12,7 +12,7 @@ S="${WORKDIR}/${P/lib/}" LICENSE="BSD GPL-2+ LGPL-2+ LGPL-2.1+" SLOT="0/1" -KEYWORDS="~amd64 ~ppc ~ppc64 ~riscv ~x86" +KEYWORDS="~amd64 ppc ppc64 ~riscv ~x86" IUSE="ogg rtlsdr test websocket" RESTRICT="!test? ( test )" diff --git a/sys-auth/Manifest.gz b/sys-auth/Manifest.gz index aa0af11d7849..1fbd823b01b3 100644 Binary files a/sys-auth/Manifest.gz and b/sys-auth/Manifest.gz differ diff --git a/sys-auth/solo-python/solo-python-0.1.1.ebuild b/sys-auth/solo-python/solo-python-0.1.1.ebuild index 85214dcdd146..22b82af11c39 100644 --- a/sys-auth/solo-python/solo-python-0.1.1.ebuild +++ b/sys-auth/solo-python/solo-python-0.1.1.ebuild @@ -17,7 +17,7 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" LICENSE="Apache-2.0 MIT" SLOT="0" -KEYWORDS="~amd64 ~riscv" +KEYWORDS="amd64 ~riscv" RDEPEND=">=dev-python/click-7.1.0[${PYTHON_USEDEP}] dev-python/cryptography[${PYTHON_USEDEP}] diff --git a/sys-cluster/Manifest.gz b/sys-cluster/Manifest.gz index 381e03a97ad9..05028499387b 100644 Binary files a/sys-cluster/Manifest.gz and b/sys-cluster/Manifest.gz differ diff --git a/sys-cluster/lustre/Manifest b/sys-cluster/lustre/Manifest deleted file mode 100644 index 52d0029e659b..000000000000 --- a/sys-cluster/lustre/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST lustre-2.13.0.tar.gz 14598623 BLAKE2B f53b7fa455144f50ed7dd12150b9195fbc6b951a663df2a1a914aeeae79723cc0c0515c0c501fd67769e163b7026a341d679dbddbb590f6c63d1af0498dd44fc SHA512 6da16abc1ecaa6711bf727925ad327164c5b0d9918a7c864be8c3aa36b31b191154139ba718a0f84e4905907c265a0ce2a5394b44f1b85cd90880b3bfcd0d69d diff --git a/sys-cluster/lustre/files/lnet.initd b/sys-cluster/lustre/files/lnet.initd deleted file mode 100644 index 44f6a322a4da..000000000000 --- a/sys-cluster/lustre/files/lnet.initd +++ /dev/null @@ -1,45 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -description="Loads lnet module and configures network." - -depend() { - need net - after bootmisc -} - -start() { - if [ "${RC_CMD}" = "restart" ]; - then - einfo "Restarting..." - fi - - ebegin "Loading LNet modules:" - modprobe lnet - eend $* - - ebegin "Bringing up LNet" - lnetctl lnet configure --all - eend $* -} - -stop() { - local LNETMODULES=( "ko2iblnd" "lnet" "libcfs" ) - ebegin "Bringing down LNet" - lnetctl lnet unconfigure --all - eend $* - - einfo "Unloading LNet modules:" - for mod in ${LNETMODULES[@]}; do - ebegin "... ${mod}" - modprobe -r ${mod} - eend $* - done -} - -status() -{ - einfo "LNet status:" - lnetctl net show -} diff --git a/sys-cluster/lustre/files/lustre-2.13.0-gcc9.patch b/sys-cluster/lustre/files/lustre-2.13.0-gcc9.patch deleted file mode 100644 index ea86e923bc98..000000000000 --- a/sys-cluster/lustre/files/lustre-2.13.0-gcc9.patch +++ /dev/null @@ -1,406 +0,0 @@ -From 1bbd0a24bb072c470d5bd93be2010b86b7a80382 Mon Sep 17 00:00:00 2001 -From: James Simmons -Date: Thu, 21 Nov 2019 14:17:47 -0500 -Subject: [PATCH] LU-12822 uapi: properly pack data structures - -Linux UAPI headers use the gcc attributre __packed__ to ensure -that the data structures are the exact same size on all platforms. -This comes at the cost of potential misaligned accesses to these -data structures which at best cost performance and at worst cause -a bus error on some platforms. To detect potential misaligned -access starting with gcc version 9 a new compile flags was -introduced which is now impacting builds with Lustre. - -Examining the build failures shows most of the problems are due to -packed data structures in the Lustre UAPI header containing -unpacked data structure fields. Packing those missed structures -resolved many of the build issues. The second problem is that the -lustre utilities tend to cast some of its UAPI data structure. -A good example is struct lov_user_md being cast to -struct lov_user_md_v3. To ensure this is properly handled with -packed data structures we need to use the __may_alias__ compiler -attribute. The one exception is struct statx which is defined out -side of Lustre and its unpacked. This requires extra special -handling in user land code due to the described issues in this -comment. - -Fixing this problem exposed an incorrect wiretest for -struct update_op - -Last problem address is the use of __swabXXp() on packed data -structure fields. Because of the potential alignment issues we -have to use __swabXX() functions instead. - -Change-Id: I149c55d3361e893bd890f9c5e9c77c15f81acc1b -Signed-off-by: James Simmons ---- - lustre/include/uapi/linux/lustre/lustre_idl.h | 6 +-- - .../include/uapi/linux/lustre/lustre_user.h | 14 +++--- - lustre/ptlrpc/wiretest.c | 2 +- - lustre/utils/liblustreapi.c | 50 +++++++++---------- - lustre/utils/liblustreapi_layout.c | 36 ++++++------- - 5 files changed, 54 insertions(+), 54 deletions(-) - -diff --git a/lustre/include/uapi/linux/lustre/lustre_idl.h b/lustre/include/uapi/linux/lustre/lustre_idl.h -index db941b24b1..123d73d339 100644 ---- a/lustre/include/uapi/linux/lustre/lustre_idl.h -+++ b/lustre/include/uapi/linux/lustre/lustre_idl.h -@@ -2738,12 +2738,12 @@ struct llog_rec_hdr { - __u32 lrh_index; - __u32 lrh_type; - __u32 lrh_id; --}; -+} __attribute__((packed)); - - struct llog_rec_tail { - __u32 lrt_len; - __u32 lrt_index; --}; -+} __attribute__((packed)); - - /* Where data follow just after header */ - #define REC_DATA(ptr) \ -@@ -3551,7 +3551,7 @@ struct update_op { - __u16 uop_type; - __u16 uop_param_count; - __u16 uop_params_off[0]; --}; -+} __attribute__((packed)); - - struct update_ops { - struct update_op uops_op[0]; -diff --git a/lustre/include/uapi/linux/lustre/lustre_user.h b/lustre/include/uapi/linux/lustre/lustre_user.h -index bec8c97880..440854d175 100644 ---- a/lustre/include/uapi/linux/lustre/lustre_user.h -+++ b/lustre/include/uapi/linux/lustre/lustre_user.h -@@ -324,7 +324,7 @@ struct lu_fid { - * used. - **/ - __u32 f_ver; --}; -+} __attribute__((packed)); - - static inline bool fid_is_zero(const struct lu_fid *fid) - { -@@ -502,7 +502,7 @@ struct ost_id { - } oi; - struct lu_fid oi_fid; - }; --}; -+} __attribute__((packed)); - - #define DOSTID "%#llx:%llu" - #define POSTID(oi) ((unsigned long long)ostid_seq(oi)), \ -@@ -792,7 +792,7 @@ struct lov_user_md_v3 { /* LOV EA user data (host-endian) */ - }; - char lmm_pool_name[LOV_MAXPOOLNAME + 1]; /* pool name */ - struct lov_user_ost_data_v1 lmm_objects[0]; /* per-stripe data */ --} __attribute__((packed)); -+} __attribute__((packed, __may_alias__)); - - struct lov_foreign_md { - __u32 lfm_magic; /* magic number = LOV_MAGIC_FOREIGN */ -@@ -800,7 +800,7 @@ struct lov_foreign_md { - __u32 lfm_type; /* type, see LU_FOREIGN_TYPE_ */ - __u32 lfm_flags; /* flags, type specific */ - char lfm_value[]; --}; -+} __attribute__((packed)); - - #define foreign_size(lfm) (((struct lov_foreign_md *)lfm)->lfm_length + \ - offsetof(struct lov_foreign_md, lfm_value)) -@@ -818,7 +818,7 @@ struct lov_foreign_md { - struct lu_extent { - __u64 e_start; - __u64 e_end; --}; -+} __attribute__((packed)); - - #define DEXT "[%#llx, %#llx)" - #define PEXT(ext) (unsigned long long)(ext)->e_start, (unsigned long long)(ext)->e_end -@@ -979,7 +979,7 @@ struct lmv_user_mds_data { - struct lu_fid lum_fid; - __u32 lum_padding; - __u32 lum_mds; --}; -+} __attribute__((packed, __may_alias__)); - - enum lmv_hash_type { - LMV_HASH_TYPE_UNKNOWN = 0, /* 0 is reserved for testing purpose */ -@@ -1631,7 +1631,7 @@ struct changelog_rec { - __u32 cr_markerflags; /**< CL_MARK flags */ - }; - struct lu_fid cr_pfid; /**< parent fid */ --}; -+} __attribute__ ((packed)); - - /* Changelog extension for RENAME. */ - struct changelog_ext_rename { -diff --git a/lustre/ptlrpc/wiretest.c b/lustre/ptlrpc/wiretest.c -index 3056a0bb7c..c2ce845050 100644 ---- a/lustre/ptlrpc/wiretest.c -+++ b/lustre/ptlrpc/wiretest.c -@@ -5444,7 +5444,7 @@ void lustre_assert_wire_constants(void) - (long long)(int)sizeof(((struct update_params *)0)->up_params)); - - /* Checks for struct update_op */ -- LASSERTF((int)sizeof(struct update_op) == 24, "found %lld\n", -+ LASSERTF((int)sizeof(struct update_op) == 20, "found %lld\n", - (long long)(int)sizeof(struct update_op)); - LASSERTF((int)offsetof(struct update_op, uop_fid) == 0, "found %lld\n", - (long long)(int)offsetof(struct update_op, uop_fid)); -diff --git a/lustre/utils/liblustreapi.c b/lustre/utils/liblustreapi.c -index 754536f117..0669a876f0 100644 ---- a/lustre/utils/liblustreapi.c -+++ b/lustre/utils/liblustreapi.c -@@ -2154,12 +2154,12 @@ static int llapi_semantic_traverse(char *path, int size, DIR *parent, - strcat(path, dent->d_name); - - if (dent->d_type == DT_UNKNOWN) { -- lstatx_t *stx = ¶m->fp_lmd->lmd_stx; -+ lstatx_t stx = param->fp_lmd->lmd_stx; - - rc = get_lmd_info(path, d, NULL, param->fp_lmd, - param->fp_lum_size, GET_LMD_INFO); - if (rc == 0) -- dent->d_type = IFTODT(stx->stx_mode); -+ dent->d_type = IFTODT(stx.stx_mode); - else if (ret == 0) - ret = rc; - -@@ -3985,7 +3985,7 @@ int llapi_file_lookup(int dirfd, const char *name) - * - * If 0 is returned, we need to do another RPC to the OSTs to obtain the - * updated timestamps. */ --static int find_time_check(lstatx_t *stx, struct find_param *param, int mds) -+static int find_time_check(struct statx *stx, struct find_param *param, int mds) - { - int rc = 1; - int rc2; -@@ -4039,13 +4039,13 @@ static int check_obd_match(struct find_param *param) - struct lov_user_ost_data_v1 *objects; - struct lov_comp_md_v1 *comp_v1 = NULL; - struct lov_user_md_v1 *v1 = ¶m->fp_lmd->lmd_lmm; -- lstatx_t *stx = ¶m->fp_lmd->lmd_stx; -+ lstatx_t stx = param->fp_lmd->lmd_stx; - int i, j, k, count = 1; - - if (param->fp_obd_uuid && param->fp_obd_index == OBD_NOT_FOUND) - return 0; - -- if (!S_ISREG(stx->stx_mode)) -+ if (!S_ISREG(stx.stx_mode)) - return 0; - - /* exclude foreign */ -@@ -4358,7 +4358,7 @@ static int find_check_pool(struct find_param *param) - - static int find_check_comp_options(struct find_param *param) - { -- lstatx_t *stx = ¶m->fp_lmd->lmd_stx; -+ lstatx_t stx = param->fp_lmd->lmd_stx; - struct lov_comp_md_v1 *comp_v1, *forged_v1 = NULL; - struct lov_user_md_v1 *v1 = ¶m->fp_lmd->lmd_lmm; - struct lov_comp_md_entry_v1 *entry; -@@ -4376,7 +4376,7 @@ static int find_check_comp_options(struct find_param *param) - comp_v1 = forged_v1; - comp_v1->lcm_entry_count = 1; - entry = &comp_v1->lcm_entries[0]; -- entry->lcme_flags = S_ISDIR(stx->stx_mode) ? 0 : LCME_FL_INIT; -+ entry->lcme_flags = S_ISDIR(stx.stx_mode) ? 0 : LCME_FL_INIT; - entry->lcme_extent.e_start = 0; - entry->lcme_extent.e_end = LUSTRE_EOF; - } -@@ -4504,7 +4504,7 @@ static int cb_find_init(char *path, DIR *parent, DIR **dirp, - struct find_param *param = (struct find_param *)data; - DIR *dir = dirp == NULL ? NULL : *dirp; - int decision = 1; /* 1 is accepted; -1 is rejected. */ -- lstatx_t *stx = ¶m->fp_lmd->lmd_stx; -+ struct statx stx = param->fp_lmd->lmd_stx; - int lustre_fs = 1; - int checked_type = 0; - int ret = 0; -@@ -4594,7 +4594,7 @@ static int cb_find_init(char *path, DIR *parent, DIR **dirp, - if (dir != NULL) { - ret = llapi_file_fget_mdtidx(dirfd(dir), - ¶m->fp_file_mdt_index); -- } else if (S_ISREG(stx->stx_mode)) { -+ } else if (S_ISREG(stx.stx_mode)) { - /* FIXME: we could get the MDT index from the - * file's FID in lmd->lmd_lmm.lmm_oi without - * opening the file, once we are sure that -@@ -4628,7 +4628,7 @@ static int cb_find_init(char *path, DIR *parent, DIR **dirp, - } - - if (param->fp_type && !checked_type) { -- if ((stx->stx_mode & S_IFMT) == param->fp_type) { -+ if ((stx.stx_mode & S_IFMT) == param->fp_type) { - if (param->fp_exclude_type) - goto decided; - } else { -@@ -4640,8 +4640,8 @@ static int cb_find_init(char *path, DIR *parent, DIR **dirp, - /* Prepare odb. */ - if (param->fp_obd_uuid || param->fp_mdt_uuid) { - if (lustre_fs && param->fp_got_uuids && -- param->fp_dev != makedev(stx->stx_dev_major, -- stx->stx_dev_minor)) { -+ param->fp_dev != makedev(stx.stx_dev_major, -+ stx.stx_dev_minor)) { - /* A lustre/lustre mount point is crossed. */ - param->fp_got_uuids = 0; - param->fp_obds_printed = 0; -@@ -4655,8 +4655,8 @@ static int cb_find_init(char *path, DIR *parent, DIR **dirp, - if (ret) - goto out; - -- param->fp_dev = makedev(stx->stx_dev_major, -- stx->stx_dev_minor); -+ param->fp_dev = makedev(stx.stx_dev_major, -+ stx.stx_dev_minor); - } else if (!lustre_fs && param->fp_got_uuids) { - /* A lustre/non-lustre mount point is crossed. */ - param->fp_got_uuids = 0; -@@ -4758,7 +4758,7 @@ static int cb_find_init(char *path, DIR *parent, DIR **dirp, - - obd_matches: - if (param->fp_check_uid) { -- if (stx->stx_uid == param->fp_uid) { -+ if (stx.stx_uid == param->fp_uid) { - if (param->fp_exclude_uid) - goto decided; - } else { -@@ -4768,7 +4768,7 @@ obd_matches: - } - - if (param->fp_check_gid) { -- if (stx->stx_gid == param->fp_gid) { -+ if (stx.stx_gid == param->fp_gid) { - if (param->fp_exclude_gid) - goto decided; - } else { -@@ -4823,23 +4823,23 @@ obd_matches: - int for_mds; - - for_mds = lustre_fs ? -- (S_ISREG(stx->stx_mode) && stripe_count) : 0; -- decision = find_time_check(stx, param, for_mds); -+ (S_ISREG(stx.stx_mode) && stripe_count) : 0; -+ decision = find_time_check(&stx, param, for_mds); - if (decision == -1) - goto decided; - } - - flags = param->fp_lmd->lmd_flags; - if (param->fp_check_size && -- ((S_ISREG(stx->stx_mode) && stripe_count) || -- S_ISDIR(stx->stx_mode)) && -+ ((S_ISREG(stx.stx_mode) && stripe_count) || -+ S_ISDIR(stx.stx_mode)) && - !(flags & OBD_MD_FLSIZE || - (param->fp_lazy && flags & OBD_MD_FLLAZYSIZE))) - decision = 0; - - if (param->fp_check_blocks && -- ((S_ISREG(stx->stx_mode) && stripe_count) || -- S_ISDIR(stx->stx_mode)) && -+ ((S_ISREG(stx.stx_mode) && stripe_count) || -+ S_ISDIR(stx.stx_mode)) && - !(flags & OBD_MD_FLBLOCKS || - (param->fp_lazy && flags & OBD_MD_FLLAZYBLOCKS))) - decision = 0; -@@ -4884,13 +4884,13 @@ obd_matches: - - convert_lmd_statx(param->fp_lmd, &st, true); - /* Check the time on osc. */ -- decision = find_time_check(stx, param, 0); -+ decision = find_time_check(&stx, param, 0); - if (decision == -1) - goto decided; - } - - if (param->fp_check_size) { -- decision = find_value_cmp(stx->stx_size, param->fp_size, -+ decision = find_value_cmp(stx.stx_size, param->fp_size, - param->fp_size_sign, - param->fp_exclude_size, - param->fp_size_units, 0); -@@ -4899,7 +4899,7 @@ obd_matches: - } - - if (param->fp_check_blocks) { /* convert st_blocks to bytes */ -- decision = find_value_cmp(stx->stx_blocks * 512, -+ decision = find_value_cmp(stx.stx_blocks * 512, - param->fp_blocks, - param->fp_blocks_sign, - param->fp_exclude_blocks, -diff --git a/lustre/utils/liblustreapi_layout.c b/lustre/utils/liblustreapi_layout.c -index e47b303798..720fae814d 100644 ---- a/lustre/utils/liblustreapi_layout.c -+++ b/lustre/utils/liblustreapi_layout.c -@@ -135,11 +135,11 @@ llapi_layout_swab_lov_user_md(struct lov_user_md *lum, int lum_size) - comp_v1 = (struct lov_comp_md_v1 *)lum; - - if (comp_v1 != NULL) { -- __swab32s(&comp_v1->lcm_magic); -- __swab32s(&comp_v1->lcm_size); -- __swab32s(&comp_v1->lcm_layout_gen); -- __swab16s(&comp_v1->lcm_flags); -- __swab16s(&comp_v1->lcm_entry_count); -+ comp_v1->lcm_magic = __swab32(comp_v1->lcm_magic); -+ comp_v1->lcm_size = __swab32(comp_v1->lcm_size); -+ comp_v1->lcm_layout_gen = __swab32(comp_v1->lcm_layout_gen); -+ comp_v1->lcm_flags = __swab16(comp_v1->lcm_flags); -+ comp_v1->lcm_entry_count = __swab16(comp_v1->lcm_entry_count); - ent_count = comp_v1->lcm_entry_count; - } else { - ent_count = 1; -@@ -148,13 +148,13 @@ llapi_layout_swab_lov_user_md(struct lov_user_md *lum, int lum_size) - for (i = 0; i < ent_count; i++) { - if (comp_v1 != NULL) { - ent = &comp_v1->lcm_entries[i]; -- __swab32s(&ent->lcme_id); -- __swab32s(&ent->lcme_flags); -- __swab64s(&ent->lcme_timestamp); -- __swab64s(&ent->lcme_extent.e_start); -- __swab64s(&ent->lcme_extent.e_end); -- __swab32s(&ent->lcme_offset); -- __swab32s(&ent->lcme_size); -+ ent->lcme_id = __swab32(ent->lcme_id); -+ ent->lcme_flags = __swab32(ent->lcme_flags); -+ ent->lcme_timestamp = __swab64(ent->lcme_timestamp); -+ ent->lcme_extent.e_start = __swab64(ent->lcme_extent.e_start); -+ ent->lcme_extent.e_end = __swab64(ent->lcme_extent.e_end); -+ ent->lcme_offset = __swab32(ent->lcme_offset); -+ ent->lcme_size = __swab32(ent->lcme_size); - - lum = (struct lov_user_md *)((char *)comp_v1 + - ent->lcme_offset); -@@ -162,11 +162,11 @@ llapi_layout_swab_lov_user_md(struct lov_user_md *lum, int lum_size) - } - obj_count = llapi_layout_objects_in_lum(lum, lum_size); - -- __swab32s(&lum->lmm_magic); -- __swab32s(&lum->lmm_pattern); -- __swab32s(&lum->lmm_stripe_size); -- __swab16s(&lum->lmm_stripe_count); -- __swab16s(&lum->lmm_stripe_offset); -+ lum->lmm_magic = __swab32(lum->lmm_magic); -+ lum->lmm_pattern = __swab32(lum->lmm_pattern); -+ lum->lmm_stripe_size = __swab32(lum->lmm_stripe_size); -+ lum->lmm_stripe_count = __swab16(lum->lmm_stripe_count); -+ lum->lmm_stripe_offset = __swab16(lum->lmm_stripe_offset); - - if (lum->lmm_magic != LOV_MAGIC_V1) { - struct lov_user_md_v3 *v3; -@@ -177,7 +177,7 @@ llapi_layout_swab_lov_user_md(struct lov_user_md *lum, int lum_size) - } - - for (j = 0; j < obj_count; j++) -- __swab32s(&lod[j].l_ost_idx); -+ lod[j].l_ost_idx = __swab32(lod[j].l_ost_idx); - } - } - --- -2.24.0 - diff --git a/sys-cluster/lustre/files/lustre-client.initd b/sys-cluster/lustre/files/lustre-client.initd deleted file mode 100644 index 80341f46bbb6..000000000000 --- a/sys-cluster/lustre/files/lustre-client.initd +++ /dev/null @@ -1,47 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -description="Load lustre modules" - -extra_commands="checkmodule" - -depend() { - need lnet - before netmount -} - -checkmodule() { - local LOADED="$(lctl modules | awk -F"/" /lustre/'{print $2F}')" - for mod in ${LOADED[@]}; do - ewarn "Module is still loaded: ${mod}" - eend $* - done -} - -start() { - if [ "${RC_CMD}" = "restart" ]; - then - einfo "Restarting Lustre..." - checkmodule - fi - - ebegin "Loading Lustre modules..." - modprobe lustre - eend $* -} - -stop() { - local LMODULES=( "lustre" "osc" "mgc" "lmv" "fld" "mdc" "fid" "lov" "ptlrpc" ) - ebegin "Trying to unmount all Lustre fs" - umount -a -t lustre - eend $* - einfo "Unloading lustre modules:" - for mod in ${LMODULES[@]}; do - ebegin "... ${mod}" - modprobe -r ${mod} - eend $* - done - - checkmodule -} diff --git a/sys-cluster/lustre/lustre-2.13.0-r1.ebuild b/sys-cluster/lustre/lustre-2.13.0-r1.ebuild deleted file mode 100644 index 23c6d7e1ab9b..000000000000 --- a/sys-cluster/lustre/lustre-2.13.0-r1.ebuild +++ /dev/null @@ -1,122 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -WANT_AUTOCONF="2.5" -WANT_AUTOMAKE="1.15" -WANT_LIBTOOL="latest" - -if [[ ${PV} = *9999* ]]; then - scm="git-r3" - SRC_URI="" - EGIT_REPO_URI="git://git.whamcloud.com/fs/lustre-release.git" - EGIT_BRANCH="master" -else - scm="" - SRC_URI="https://dev.gentoo.org/~alexxy/distfiles/${P}.tar.gz" - KEYWORDS="~amd64" -fi - -SUPPORTED_KV_MAJOR=4 -SUPPORTED_KV_MINOR=19 - -inherit ${scm} autotools linux-info linux-mod toolchain-funcs flag-o-matic - -DESCRIPTION="Lustre is a parallel distributed file system" -HOMEPAGE="http://wiki.whamcloud.com/" - -LICENSE="GPL-2" -SLOT="0" -IUSE="+client +utils +modules +dlc server readline tests" - -RDEPEND=" - virtual/awk - dlc? ( dev-libs/libyaml ) - readline? ( sys-libs/readline:0 ) - server? ( - >=sys-fs/zfs-kmod-0.8 - >=sys-fs/zfs-0.8 - ) -" -DEPEND="${RDEPEND} - dev-python/docutils - virtual/linux-sources" - -REQUIRED_USE=" - client? ( modules ) - server? ( modules )" - -PATCHES=( "${FILESDIR}/${P}-gcc9.patch" ) - -pkg_pretend() { - KVSUPP=${SUPPORTED_KV_MAJOR}.${SUPPORTED_KV_MINOR}.x - if kernel_is gt ${SUPPORTED_KV_MAJOR} ${SUPPORTED_KV_MINOR}; then - eerror "Unsupported kernel version! Latest supported one is ${KVSUPP}" - die - fi -} - -pkg_setup() { - filter-mfpmath sse - filter-mfpmath i386 - filter-flags -msse* -mavx* -mmmx -m3dnow - - linux-mod_pkg_setup - ARCH="$(tc-arch-kernel)" - ABI="${KERNEL_ABI}" -} - -src_prepare() { - if [ ${#PATCHES[0]} -ne 0 ]; then - eapply ${PATCHES[@]} - fi - - eapply_user - if [[ ${PV} == "9999" ]]; then - # replace upstream autogen.sh by our src_prepare() - local DIRS="libcfs lnet lustre snmp" - local ACLOCAL_FLAGS - for dir in $DIRS ; do - ACLOCAL_FLAGS="$ACLOCAL_FLAGS -I $dir/autoconf" - done - _elibtoolize -q - eaclocal -I config $ACLOCAL_FLAGS - eautoheader - eautomake - eautoconf - fi -} - -src_configure() { - local myconf - if use server; then - SPL_PATH=$(basename $(echo "${EROOT}/usr/src/spl-"*)) \ - myconf="${myconf} --with-spl=${EROOT}/usr/src/${SPL_PATH} \ - --with-spl-obj=${EROOT}/usr/src/${SPL_PATH}/${KV_FULL}" - ZFS_PATH=$(basename $(echo "${EROOT}/usr/src/zfs-"*)) \ - myconf="${myconf} --with-zfs=${EROOT}/usr/src/${ZFS_PATH} \ - --with-zfs-obj=${EROOT}/usr/src/${ZFS_PATH}/${KV_FULL}" - fi - econf \ - ${myconf} \ - --without-ldiskfs \ - --with-linux="${KERNEL_DIR}" \ - $(use_enable dlc) \ - $(use_enable client) \ - $(use_enable utils) \ - $(use_enable modules) \ - $(use_enable server) \ - $(use_enable readline) \ - $(use_enable tests) -} - -src_compile() { - default -} - -src_install() { - default - newinitd "${FILESDIR}/lnet.initd" lnet - newinitd "${FILESDIR}/lustre-client.initd" lustre-client -} diff --git a/sys-cluster/lustre/metadata.xml b/sys-cluster/lustre/metadata.xml deleted file mode 100644 index b824eb0d7684..000000000000 --- a/sys-cluster/lustre/metadata.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - cluster@gentoo.org - Gentoo Cluster Project - - - alexxy@gentoo.org - Alexey Shvetsov - - - Enable kernel client modules - Enable Dynamic LNET Configuration - Enable kernels server modules - Enable lustre utils - Enable installation of tests - - diff --git a/sys-devel/Manifest.gz b/sys-devel/Manifest.gz index 6666d6bd2f26..14326c43a69d 100644 Binary files a/sys-devel/Manifest.gz and b/sys-devel/Manifest.gz differ diff --git a/sys-devel/binutils-apple/binutils-apple-8.2.1-r1.ebuild b/sys-devel/binutils-apple/binutils-apple-8.2.1-r1.ebuild index 06e3523c934f..b38e12eebe33 100644 --- a/sys-devel/binutils-apple/binutils-apple-8.2.1-r1.ebuild +++ b/sys-devel/binutils-apple/binutils-apple-8.2.1-r1.ebuild @@ -335,7 +335,7 @@ install_cctools() { } src_test() { - if ! [ "${EPREFIX}"/usr/bin/clang ] ; then + if ! [[ -x "${EPREFIX}"/usr/bin/clang ]] ; then einfo "Test suite only works properly with clang - please install" return fi diff --git a/virtual/Manifest.gz b/virtual/Manifest.gz index 2857cfe9be57..acb965412592 100644 Binary files a/virtual/Manifest.gz and b/virtual/Manifest.gz differ diff --git a/virtual/rust/rust-1.59.0.ebuild b/virtual/rust/rust-1.59.0.ebuild index 3d7d8490eb57..2d3042cfddad 100644 --- a/virtual/rust/rust-1.59.0.ebuild +++ b/virtual/rust/rust-1.59.0.ebuild @@ -9,7 +9,7 @@ DESCRIPTION="Virtual for Rust language compiler" LICENSE="" SLOT="0" -KEYWORDS="~amd64 ~arm arm64 ~ppc ppc64 ~riscv ~x86" +KEYWORDS="amd64 ~arm arm64 ~ppc ppc64 ~riscv x86" IUSE="rustfmt" BDEPEND=""