diff options
564 files changed, 9712 insertions, 10646 deletions
diff --git a/app-admin/awscli/Manifest b/app-admin/awscli/Manifest index 80d9a06fad58..a3bfb82321e6 100644 --- a/app-admin/awscli/Manifest +++ b/app-admin/awscli/Manifest @@ -5,4 +5,5 @@ DIST aws-cli-1.44.24.gh.tar.gz 3061628 BLAKE2B 580a2857b67989f2a5e0d0d48f9490574 DIST aws-cli-1.44.29.gh.tar.gz 3064338 BLAKE2B 74d264607461e73ae7d8d9ac6332c58f5da78df50c20d394eefda00fa6e46e41cf6104bd5501d34311d1f1e8f17c1e9ab74228bcb800eff998fab83c76be2557 SHA512 90e49ccd3341aed8c6905bfe062490b0991bbdbe0c34935ea20fcf64790fded5b17e7fa0ce68296480c32a80b4814ed5211aabe486fa119a898cc52322ecb0e3 DIST aws-cli-1.44.34.gh.tar.gz 3068790 BLAKE2B 636dd873e3340d733f037e93d15633d02200879fca7e824af111775729cc90aa35f11b089dbb04627d89c36a2d69b19e3929d0a1b47f0dcbe198ff83c23091f4 SHA512 c002d20612beb42a796b95658e61d4eb716511c68de26f4299b7af407e0b07e6f28b9c24ff9712ba23dd57ebc0e51f49ead09c7d65c08a14cef9333956a92973 DIST aws-cli-1.44.39.gh.tar.gz 3076839 BLAKE2B a681922f703e272bc4a0a8683373e6748ce0a43d27b329172446b8c23922fbd19f0cc7ddc1b2d3472159a6a3fcc3d1cf01150c3873d866f4df42dc83fdedabf2 SHA512 2b6346b9b0a0bcf21f89fa3c239dc94e29f7bf9001ed2a1e717c34061a8021595c9f32bf99fd5d9a7d7c05bef7e8e35471d6c349ca6870a5388749b8ff3e5593 +DIST aws-cli-1.44.40.gh.tar.gz 3077740 BLAKE2B 102db6a038ac1b5be1af122b5ed4488bdeb961461105574f4f67dc981e3fb0639e558359291902ed956296431bf1b64493b844408a08b7ca374f8c726fb312b4 SHA512 5986b7cd9f2bcd29fc4b7a5ec20b2c61b192169b08e1bdb0ba46c7ab59b79df40da5dd3b58e9cc5dbcbc948d3cb8bd1807a1f4612464f487a9cc6b6c6d963e21 DIST aws-cli-1.44.7.gh.tar.gz 3056565 BLAKE2B c65d74973f229424145ee21a8e052dccaa7258a6cd8bced98a7895d4caef5ef2f0ee2cc58b21b0ba0edca21cd9837de43118a8c818afc8f6ab67ec8f62277875 SHA512 a927344ffd084eea0189bddd8b8c0e81ef36cf19f1b080994b194c41c4f4854158471123e34f20c333615e8749df0802de9ea957e942eb50737b166d85862e76 diff --git a/app-admin/awscli/awscli-1.44.40.ebuild b/app-admin/awscli/awscli-1.44.40.ebuild new file mode 100644 index 000000000000..4a5f452a79a8 --- /dev/null +++ b/app-admin/awscli/awscli-1.44.40.ebuild @@ -0,0 +1,92 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{10..14} ) + +inherit distutils-r1 shell-completion + +MY_P=aws-cli-${PV} +DESCRIPTION="Universal Command Line Environment for AWS" +HOMEPAGE=" + https://github.com/aws/aws-cli/ + https://pypi.org/project/awscli/ +" +SRC_URI=" + https://github.com/aws/aws-cli/archive/${PV}.tar.gz + -> ${MY_P}.gh.tar.gz +" +S=${WORKDIR}/${MY_P} + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86" + +# botocore is x.(y-2).(z+10), sigh +BOTOCORE_PV="$(ver_cut 1).$(( $(ver_cut 2) - 2)).$(( $(ver_cut 3) + 10 ))" +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.16.0[${PYTHON_USEDEP}] + dev-python/pyyaml[${PYTHON_USEDEP}] + !app-admin/awscli-bin +" +BDEPEND=" + test? ( + dev-python/packaging[${PYTHON_USEDEP}] + ) +" + +EPYTEST_PLUGINS=( pytest-forked ) +EPYTEST_XDIST=1 +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() { + local serial_tests=( + tests/functional/ecs/test_execute_command.py::TestExecuteCommand::test_execute_command_success + tests/functional/ssm/test_start_session.py::TestSessionManager::test_start_session_{fails,success} + tests/functional/ssm/test_start_session.py::TestSessionManager::test_start_session_with_new_version_plugin_success + tests/unit/customizations/codeartifact/test_adapter_login.py::TestDotNetLogin::test_login_dotnet_sources_listed_with_backtracking + tests/unit/customizations/codeartifact/test_adapter_login.py::TestDotNetLogin::test_login_dotnet_sources_listed_with_backtracking_windows + tests/unit/customizations/codeartifact/test_adapter_login.py::TestNuGetLogin::test_login_nuget_sources_listed_with_backtracking + tests/unit/customizations/ecs/test_executecommand_startsession.py::TestExecuteCommand::test_execute_command_success + tests/unit/customizations/test_sessionmanager.py + tests/unit/test_compat.py::TestIgnoreUserSignals + tests/unit/test_help.py + tests/unit/test_utils.py::TestIgnoreCtrlC::test_ctrl_c_is_ignored + ) + EPYTEST_XDIST= epytest "${serial_tests[@]}" + + local EPYTEST_DESELECT=( + "${serial_tests[@]}" + + # flaky (some ordering?) + tests/functional/s3/test_cp_command.py::TestCPCommand::test_multipart_upload_with_checksum_algorithm_crc32 + ) + # integration tests require AWS credentials and Internet access + epytest tests/{functional,unit} +} + +python_install_all() { + newbashcomp bin/aws_bash_completer aws + newzshcomp bin/aws_zsh_completer.sh _aws + + distutils-r1_python_install_all + + rm "${ED}"/usr/bin/{aws.cmd,aws_bash_completer,aws_zsh_completer.sh} || die +} diff --git a/app-admin/exo/Manifest b/app-admin/exo/Manifest index 1104f92e259a..386645379205 100644 --- a/app-admin/exo/Manifest +++ b/app-admin/exo/Manifest @@ -1 +1 @@ -DIST exo-1.92.0.gh.tar.gz 6554701 BLAKE2B 88b2abb611a2222e2ff4620ffac9a0f791034cb3a4a67e8991f63b2e7c87ec21b44461d2bec4c87bacef7695a5e05fd851d14d02be453ce37e83fb2d5db7b5a8 SHA512 7cf59a7783a76f8e2efc070bca27dbdff966bc062fe3e7e527b8c2a74e51a48abfdc63279f539b5ea5a830d3d5cc1cac0cb43c2e6f3790faa99e286bd896e400 +DIST exo-1.93.0.gh.tar.gz 6555160 BLAKE2B aa2ed462bc4152a933e1eed27c55c271e7ca46f609da7a318ac19af225e0de3dd37b3951bbfddbc3c1cbff6fe09a75a35fad5eb0a2c21f2803d436570974ff88 SHA512 7a4a16bc366564e15ce549f694c3551d84a9dc76c476ecabe9799d67238ceb32aaf64b4435d83c206f77b35bd6dd5bc83d90d42838a319cb5da090847bee68cd diff --git a/app-admin/exo/exo-1.92.0.ebuild b/app-admin/exo/exo-1.93.0.ebuild index 438d6c8fe2a2..438d6c8fe2a2 100644 --- a/app-admin/exo/exo-1.92.0.ebuild +++ b/app-admin/exo/exo-1.93.0.ebuild diff --git a/app-admin/gkrellm/gkrellm-2.5.0.ebuild b/app-admin/gkrellm/gkrellm-2.5.0.ebuild index 5456f7b9dd04..7d2c7626cf1b 100644 --- a/app-admin/gkrellm/gkrellm-2.5.0.ebuild +++ b/app-admin/gkrellm/gkrellm-2.5.0.ebuild @@ -12,7 +12,7 @@ if [[ "${PV}" == 9999 ]] ; then EGIT_REPO_URI="https://git.srcbox.net/gkrellm/gkrellm.git" else SRC_URI="https://gkrellm.srcbox.net/releases/${P}.tar.bz2" - KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" + KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~mips ppc ppc64 ~riscv ~sparc x86" fi LICENSE="GPL-3+" SLOT="2" diff --git a/app-admin/ig/Manifest b/app-admin/ig/Manifest index 020e354b8a66..b80c090a8c74 100644 --- a/app-admin/ig/Manifest +++ b/app-admin/ig/Manifest @@ -1,2 +1,2 @@ -DIST ig-0.49.0.tar.gz 5295922 BLAKE2B bb92d429e658179fa0b4cacc2820adb516caee1ab011aff4dab47bda816a039e002d53faafa167ad99640a045ead1fdf1e96c859fd19067bc2bcbb0f4eda0158 SHA512 98fe3e67d496989e3103950faec867f51e121860ded7eae056c221614d7b39545297a47bc9726119ce0748670cc17a07b100f918247ae82e1719f59fdc94e865 -DIST inspektor-gadget-vendor-v0.49.0.tar.gz 15542166 BLAKE2B 771dd20ff170acccd8eacae0b3a350c8ab9808d2c8041cb85b24916642d96826c08095ad8869c6b4a1cf6621a3b5b74877c00ebea037b38b3dafb39ab5459559 SHA512 7009106adcac58b49a09a90891f6cb9b6a0f98a1ce6267e9615fd34a7f9b4f5a24186761dee53b6543bdfa203f2c653cc0141aee1da1d20f1f13b4957ed801bd +DIST ig-0.49.1.tar.gz 5295831 BLAKE2B 4dab0bf89251d560581414f6be5a883162722c23d4926181b720ad31b7e6e2f422014e5803fe96ae0df899da3aa5473584674d945ac6468ca0ca44c396445abc SHA512 1c22282912af193695db1bf1e82bd6081da048d041454df2c31c0d184412db005aa8d950bb6cabb42330b1294b3953263f0750aef9b22322886373294e908df3 +DIST inspektor-gadget-vendor-v0.49.1.tar.gz 15542294 BLAKE2B 1a905db2cf66ab85921b56aa162c4e620d7ab70299f1d775837cca9c1d0a9e0ccbd4f71b70b79c5b8fa4bb307fc286bc621ead4d6a3f0b94d2aeb24692f58346 SHA512 fcbac69aaa4ad9b0b0095ac098bd7b922c96bdd3ac7b240fdd7a5b4b84f6005e29fb7a4e97110bbf800690ea30bb775e77fe0ba343dc00904d91551d277d04ff diff --git a/app-admin/ig/ig-0.49.0.ebuild b/app-admin/ig/ig-0.49.1.ebuild index 9037f47ade3f..9037f47ade3f 100644 --- a/app-admin/ig/ig-0.49.0.ebuild +++ b/app-admin/ig/ig-0.49.1.ebuild diff --git a/app-admin/keepassxc/Manifest b/app-admin/keepassxc/Manifest index 210730443239..6f8b019ea409 100644 --- a/app-admin/keepassxc/Manifest +++ b/app-admin/keepassxc/Manifest @@ -1,2 +1 @@ -DIST keepassxc-2.7.10.gh.tar.gz 12367110 BLAKE2B 13016a01006cb7c7689e2b1c65a3d245c31cc445def80d8858f6c0f29ce23f0129dadaf5f31bdbdf99d9fbed51e69bc80fbb5f4ba414bb45bfc35512f3d27e3a SHA512 265edbafdfd2951219fac8f28fe72672be798dbd93242d6b6d528a017adfed2f16f98ad753b6cdff0eca3f4d7158c9de87aa626ff7e66d3bac470595e248e271 DIST keepassxc-2.7.11.gh.tar.gz 13714269 BLAKE2B 0fffada2ae86e527e6a7b2c46fa524c9e395067b6011297e6a5261863e10bdbc6a855675e0206726f6433a700f227053a8be0dd63734ffeddb73897190f96f5c SHA512 e50ad1b841866aa6baa3f121a0ee03296e771eb750aabd779d6665bd02ae427f3eb83e219e475762f6da235fcf3cdb9d47f5466acb9400e924753e2a10f15476 diff --git a/app-admin/keepassxc/keepassxc-2.7.10-r2.ebuild b/app-admin/keepassxc/keepassxc-2.7.10-r2.ebuild deleted file mode 100644 index 394d124ced2c..000000000000 --- a/app-admin/keepassxc/keepassxc-2.7.10-r2.ebuild +++ /dev/null @@ -1,120 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit cmake xdg - -DESCRIPTION="KeePassXC - KeePass Cross-platform Community Edition" -HOMEPAGE="https://keepassxc.org" - -if [[ "${PV}" = *9999* ]] ; then - inherit git-r3 - - EGIT_BRANCH="develop" - EGIT_REPO_URI="https://github.com/keepassxreboot/${PN}" -else - if [[ "${PV}" == *_beta* ]] ; then - SRC_URI="https://github.com/keepassxreboot/${PN}/archive/${PV/_/-}.tar.gz - -> ${P}.gh.tar.gz" - S="${WORKDIR}/${P/_/-}" - else - SRC_URI="https://github.com/keepassxreboot/${PN}/archive/${PV}.tar.gz - -> ${P}.gh.tar.gz" - fi - - KEYWORDS="amd64 ~arm64 ~ppc64 ~riscv x86" -fi - -# COPYING order -LICENSE="|| ( GPL-2 GPL-3 ) BSD LGPL-2.1 MIT LGPL-2 CC0-1.0 Apache-2.0 GPL-2+ BSD-2" -SLOT="0" -IUSE="X autotype browser doc keeshare +keyring +network +ssh-agent test yubikey" - -RESTRICT="!test? ( test )" -REQUIRED_USE="autotype? ( X )" - -RDEPEND=" - app-crypt/argon2:= - dev-libs/botan:3= - dev-libs/zxcvbn-c - dev-qt/qtconcurrent:5 - dev-qt/qtcore:5 - dev-qt/qtdbus:5 - dev-qt/qtgui:5 - dev-qt/qtnetwork:5 - dev-qt/qtsvg:5 - dev-qt/qtwidgets:5 - media-gfx/qrencode:= - sys-libs/readline:0= - virtual/minizip:= - X? ( - dev-qt/qtx11extras:5 - ) - autotype? ( - x11-libs/libX11 - x11-libs/libXtst - ) - yubikey? ( - dev-libs/libusb:1 - sys-apps/pcsc-lite - ) -" -DEPEND=" - ${RDEPEND} - dev-qt/qttest:5 -" -BDEPEND=" - dev-qt/linguist-tools:5 - doc? ( - dev-ruby/asciidoctor - ) -" - -PATCHES=( - "${FILESDIR}/${PN}-2.7.10-cmake_minimum.patch" - "${FILESDIR}/${PN}-2.7.10-tests.patch" - "${FILESDIR}/${PN}-2.7.10-zxcvbn.patch" -) - -src_prepare() { - if ! [[ "${PV}" =~ _beta|9999 ]]; then - echo "${PV}" > .version || die - fi - - # Unbundle zxcvbn, bug 958062 - rm -r ./src/thirdparty/zxcvbn || die - - cmake_src_prepare -} - -src_configure() { - local -a mycmakeargs=( - # Gentoo users enable ccache via e.g. FEATURES=ccache or - # other means. We don't want the build system to enable it for us. - -DWITH_CCACHE="OFF" - -DWITH_GUI_TESTS="OFF" - -DWITH_XC_BOTAN3="ON" - -DWITH_XC_UPDATECHECK="OFF" - - -DWITH_TESTS="$(usex test)" - -DWITH_XC_AUTOTYPE="$(usex autotype)" - -DWITH_XC_BROWSER="$(usex browser)" - -DWITH_XC_BROWSER_PASSKEYS="$(usex browser)" - -DWITH_XC_DOCS="$(usex doc)" - -DWITH_XC_FDOSECRETS="$(usex keyring)" - -DWITH_XC_KEESHARE="$(usex keeshare)" - -DWITH_XC_NETWORKING="$(usex network)" - -DWITH_XC_SSHAGENT="$(usex ssh-agent)" - -DWITH_XC_X11="$(usex X)" - -DWITH_XC_YUBIKEY="$(usex yubikey)" - ) - - if [[ "${PV}" == *_beta* ]] ; then - mycmakeargs+=( - -DOVERRIDE_VERSION="${PV/_/-}" - ) - fi - - cmake_src_configure -} diff --git a/app-admin/keepassxc/keepassxc-2.7.11.ebuild b/app-admin/keepassxc/keepassxc-2.7.11.ebuild deleted file mode 100644 index 394d124ced2c..000000000000 --- a/app-admin/keepassxc/keepassxc-2.7.11.ebuild +++ /dev/null @@ -1,120 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit cmake xdg - -DESCRIPTION="KeePassXC - KeePass Cross-platform Community Edition" -HOMEPAGE="https://keepassxc.org" - -if [[ "${PV}" = *9999* ]] ; then - inherit git-r3 - - EGIT_BRANCH="develop" - EGIT_REPO_URI="https://github.com/keepassxreboot/${PN}" -else - if [[ "${PV}" == *_beta* ]] ; then - SRC_URI="https://github.com/keepassxreboot/${PN}/archive/${PV/_/-}.tar.gz - -> ${P}.gh.tar.gz" - S="${WORKDIR}/${P/_/-}" - else - SRC_URI="https://github.com/keepassxreboot/${PN}/archive/${PV}.tar.gz - -> ${P}.gh.tar.gz" - fi - - KEYWORDS="amd64 ~arm64 ~ppc64 ~riscv x86" -fi - -# COPYING order -LICENSE="|| ( GPL-2 GPL-3 ) BSD LGPL-2.1 MIT LGPL-2 CC0-1.0 Apache-2.0 GPL-2+ BSD-2" -SLOT="0" -IUSE="X autotype browser doc keeshare +keyring +network +ssh-agent test yubikey" - -RESTRICT="!test? ( test )" -REQUIRED_USE="autotype? ( X )" - -RDEPEND=" - app-crypt/argon2:= - dev-libs/botan:3= - dev-libs/zxcvbn-c - dev-qt/qtconcurrent:5 - dev-qt/qtcore:5 - dev-qt/qtdbus:5 - dev-qt/qtgui:5 - dev-qt/qtnetwork:5 - dev-qt/qtsvg:5 - dev-qt/qtwidgets:5 - media-gfx/qrencode:= - sys-libs/readline:0= - virtual/minizip:= - X? ( - dev-qt/qtx11extras:5 - ) - autotype? ( - x11-libs/libX11 - x11-libs/libXtst - ) - yubikey? ( - dev-libs/libusb:1 - sys-apps/pcsc-lite - ) -" -DEPEND=" - ${RDEPEND} - dev-qt/qttest:5 -" -BDEPEND=" - dev-qt/linguist-tools:5 - doc? ( - dev-ruby/asciidoctor - ) -" - -PATCHES=( - "${FILESDIR}/${PN}-2.7.10-cmake_minimum.patch" - "${FILESDIR}/${PN}-2.7.10-tests.patch" - "${FILESDIR}/${PN}-2.7.10-zxcvbn.patch" -) - -src_prepare() { - if ! [[ "${PV}" =~ _beta|9999 ]]; then - echo "${PV}" > .version || die - fi - - # Unbundle zxcvbn, bug 958062 - rm -r ./src/thirdparty/zxcvbn || die - - cmake_src_prepare -} - -src_configure() { - local -a mycmakeargs=( - # Gentoo users enable ccache via e.g. FEATURES=ccache or - # other means. We don't want the build system to enable it for us. - -DWITH_CCACHE="OFF" - -DWITH_GUI_TESTS="OFF" - -DWITH_XC_BOTAN3="ON" - -DWITH_XC_UPDATECHECK="OFF" - - -DWITH_TESTS="$(usex test)" - -DWITH_XC_AUTOTYPE="$(usex autotype)" - -DWITH_XC_BROWSER="$(usex browser)" - -DWITH_XC_BROWSER_PASSKEYS="$(usex browser)" - -DWITH_XC_DOCS="$(usex doc)" - -DWITH_XC_FDOSECRETS="$(usex keyring)" - -DWITH_XC_KEESHARE="$(usex keeshare)" - -DWITH_XC_NETWORKING="$(usex network)" - -DWITH_XC_SSHAGENT="$(usex ssh-agent)" - -DWITH_XC_X11="$(usex X)" - -DWITH_XC_YUBIKEY="$(usex yubikey)" - ) - - if [[ "${PV}" == *_beta* ]] ; then - mycmakeargs+=( - -DOVERRIDE_VERSION="${PV/_/-}" - ) - fi - - cmake_src_configure -} diff --git a/app-admin/metalog/metalog-20260105.ebuild b/app-admin/metalog/metalog-20260105.ebuild index 61a6a9d8e00a..1295692f7673 100644 --- a/app-admin/metalog/metalog-20260105.ebuild +++ b/app-admin/metalog/metalog-20260105.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/hvisage/metalog/archive/refs/tags/${PV}.tar.gz -> ${ LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86" IUSE="unicode zlib" RDEPEND=" diff --git a/app-doc/gnucash-docs/gnucash-docs-5.12.ebuild b/app-doc/gnucash-docs/gnucash-docs-5.12.ebuild index d8e51374d4bc..656537155394 100644 --- a/app-doc/gnucash-docs/gnucash-docs-5.12.ebuild +++ b/app-doc/gnucash-docs/gnucash-docs-5.12.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -14,7 +14,7 @@ SRC_URI="https://github.com/Gnucash/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-2 FDL-1.1" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~riscv ~x86" +KEYWORDS="amd64 ~arm64 ~ppc ~ppc64 ~riscv ~x86" LOCALES=( de it ja pt ) IUSE="${LOCALES[*]/#/l10n_}" diff --git a/app-emacs/forge/forge-0.6.3.ebuild b/app-emacs/forge/forge-0.6.3.ebuild index f8ae419c32ff..adc646f5e49c 100644 --- a/app-emacs/forge/forge-0.6.3.ebuild +++ b/app-emacs/forge/forge-0.6.3.ebuild @@ -19,7 +19,7 @@ else SRC_URI="https://github.com/magit/${PN}/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz" - KEYWORDS="~amd64" + KEYWORDS="amd64" fi S="${WORKDIR}/${P}/lisp" diff --git a/app-laptop/tuxedo-control-center-bin/Manifest b/app-laptop/tuxedo-control-center-bin/Manifest index 40bf4d32ce34..9fe1f965b2d4 100644 --- a/app-laptop/tuxedo-control-center-bin/Manifest +++ b/app-laptop/tuxedo-control-center-bin/Manifest @@ -1,2 +1,2 @@ DIST tuxedo-control-center_2.1.16.rpm 81170157 BLAKE2B 3fde92cda956dbbcafd7881926ce05c9d03f901b5fa5b51e7622696f6abf62d9962f3978183dee518b36d261917ca773a31bfc292780fcb3efdc542ad41e3b92 SHA512 ccf6c6965848a14a25b4f71fa4c5a942201ead680a32ece83e20ae51c26d9a45da1e8b56c096108220e542945ccd39d2ed3f4a793d847225350f24feb6e968af -DIST tuxedo-control-center_2.1.22.rpm 81186989 BLAKE2B c705596c8e4abbbb2b27eda8743f64698d181350a903789baa962aa2c17bc2b5f24ddbd5f91f5d146298b6fdd2b10426303a7dfb6b11f067ccd47878172382dd SHA512 a04215877f88bd2cb001d7968bd9cad491038dfe99d4578384d04493106987af55453891fa41206470725e00108414832259e93d20726df40e5f521ce5ce5e3d +DIST tuxedo-control-center_2.1.22.rpm 81186989 BLAKE2B 2fd243441e21a002acd2cebb1518777055e047f6f7e4f2e43a4e7fd4dc0a71ad8fbab165ea38e46809e1f4fd76eb2b9cc0ce0a358a958a7252e312218d0385b7 SHA512 14f504668b03a5abdb9e8ee433b3d45dde7666827486fed1c4b5ce2c3ec79d3bcd325d67a312ee6c22f6b1fd45a2180ec4108aa805e343ebd258385dbb3ade9f diff --git a/app-misc/fastfetch/Manifest b/app-misc/fastfetch/Manifest index 7eeeb8824e06..45aa8ab47cdf 100644 --- a/app-misc/fastfetch/Manifest +++ b/app-misc/fastfetch/Manifest @@ -1,2 +1,3 @@ DIST fastfetch-2.56.1.tar.gz 1393184 BLAKE2B abcf98fa1248b08bd79b76367b6075f06d37b33bb6ded17cfb4b98070a3a38b0ee2018b157e16b04c5329d07ccade94058bf1afd58f4231d371d7cf09ba6c916 SHA512 cb6fb47597187565289efed843bf39e866b79d4cfa244614a734ecd1a266352f887a5fd6d02a2339810e79fdec24eeb25742fdfd68b196aabc8a8597e9a93ce5 DIST fastfetch-2.58.0.tar.gz 1415337 BLAKE2B ad17dbc3d24e8fc70b87b405b4fa4f437cd2b57db9948c1cadfe3a902ea54ef41eafd1f3e7f6981b3b13e127209a4cabe7a1a680988f89cc5b1e14fbb0f60ead SHA512 f69fb50e5860a8cbb400b532658fcfd55d8dcde86e9ada00ccfaa93f902ee626c00f82e40fdc0c84bb3a13b7fd1c28220f674a04e7f00008faab8b33767eddc7 +DIST fastfetch-2.59.0.tar.gz 1419770 BLAKE2B 60b6190f7fe270de73bf4f5a388a7394ec8ae6345354fa71b48781f4184d2c1fc8e71e8e31389b8f35dde5e81a37929158df8d633e396efce6c48d0231ebd52c SHA512 f9c1a67818c5c40455d2e638204e2a90c00c74b0113b792cd01e4af629c55346c2c7f8f18d875354f4c7608c219b4e2d38135449b39379dcf77817644ee56af1 diff --git a/app-misc/fastfetch/fastfetch-2.59.0.ebuild b/app-misc/fastfetch/fastfetch-2.59.0.ebuild new file mode 100644 index 000000000000..a9c8a037c914 --- /dev/null +++ b/app-misc/fastfetch/fastfetch-2.59.0.ebuild @@ -0,0 +1,120 @@ +# Copyright 2022-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake flag-o-matic + +DESCRIPTION="Fast neofetch-like system information tool" +HOMEPAGE="https://github.com/fastfetch-cli/fastfetch" +if [[ ${PV} == *9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/fastfetch-cli/fastfetch.git" + [[ ${PV} == *0.1.9999 ]] && EGIT_BRANCH=master + [[ ${PV} == *0.2.9999 ]] && EGIT_BRANCH=dev + [[ "${EGIT_BRANCH}" == "" ]] && die "Please set a git branch" +else + SRC_URI="https://github.com/fastfetch-cli/fastfetch/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~arm ~arm64 ~loong ~m68k ~ppc ~ppc64 ~riscv ~sparc ~x86" +fi + +LICENSE="MIT" +SLOT="0" +IUSE="X chafa dbus ddcutil drm elf gnome imagemagick opencl opengl pulseaudio sqlite test vulkan wayland xcb xrandr" +RESTRICT="!test? ( test )" + +# note - qa-vdb will always report errors because fastfetch loads the libs dynamically +# make sure to crank yyjson minimum version to match bundled version +RDEPEND=" + >=dev-libs/yyjson-0.12.0 + sys-apps/hwdata + virtual/zlib:= + chafa? ( media-gfx/chafa ) + dbus? ( sys-apps/dbus ) + ddcutil? ( app-misc/ddcutil:= ) + drm? ( x11-libs/libdrm ) + elf? ( virtual/libelf:= ) + gnome? ( + dev-libs/glib + gnome-base/dconf + ) + imagemagick? ( media-gfx/imagemagick:= ) + opencl? ( virtual/opencl ) + opengl? ( + media-libs/libglvnd[X?] + X? ( x11-libs/libX11 ) + ) + pulseaudio? ( media-libs/libpulse ) + sqlite? ( dev-db/sqlite:3 ) + vulkan? ( + media-libs/vulkan-loader + sys-apps/pciutils + ) + wayland? ( dev-libs/wayland ) + xcb? ( x11-libs/libxcb ) + xrandr? ( x11-libs/libXrandr ) +" +DEPEND=" + ${RDEPEND} + opengl? ( X? ( x11-base/xorg-proto ) ) + xcb? ( x11-base/xorg-proto ) + xrandr? ( x11-base/xorg-proto ) + vulkan? ( dev-util/vulkan-headers ) +" +BDEPEND="virtual/pkgconfig" + +REQUIRED_USE=" + chafa? ( imagemagick ) +" + +src_configure() { + local fastfetch_enable_imagemagick7=no + local fastfetch_enable_imagemagick6=no + if use imagemagick; then + fastfetch_enable_imagemagick7=$(has_version '>=media-gfx/imagemagick-7.0.0' && echo yes || echo no) + fastfetch_enable_imagemagick6=$(has_version '<media-gfx/imagemagick-7.0.0' && echo yes || echo no) + fi + + local glx=no + if use X; then + if use opengl; then + glx=yes + else + ewarn 'USE="X" adds GLX support for USE="opengl"' + ewarn 'This build with USE="X -opengl" will not include any extra X support.' + fi + fi + + local mycmakeargs=( + -DENABLE_RPM=no + -DENABLE_ZLIB=yes + -DENABLE_SYSTEM_YYJSON=yes + -DIS_MUSL=$(usex elibc_musl) + -DINSTALL_LICENSE=no + -DBUILD_FLASHFETCH=no + + -DENABLE_CHAFA=$(usex chafa) + -DENABLE_DBUS=$(usex dbus) + -DENABLE_DCONF=$(usex gnome) + -DENABLE_DDCUTIL=$(usex ddcutil) + -DENABLE_DRM=$(usex drm) + -DENABLE_ELF=$(usex elf) + -DENABLE_EGL=$(usex opengl) + -DENABLE_GIO=$(usex gnome) + -DENABLE_GLX=${glx} + -DENABLE_IMAGEMAGICK6=${fastfetch_enable_imagemagick6} + -DENABLE_IMAGEMAGICK7=${fastfetch_enable_imagemagick7} + -DENABLE_OPENCL=$(usex opencl) + -DENABLE_PULSE=$(usex pulseaudio) + -DENABLE_SQLITE3=$(usex sqlite) + -DENABLE_VULKAN=$(usex vulkan) + -DENABLE_WAYLAND=$(usex wayland) + -DENABLE_XCB_RANDR=$(usex xcb) + -DENABLE_XRANDR=$(usex xrandr) + -DBUILD_TESTS=$(usex test) + ) + + append-cppflags -DNDEBUG + + cmake_src_configure +} diff --git a/app-misc/hello/hello-2.12.2.ebuild b/app-misc/hello/hello-2.12.2.ebuild index 4e15b1854a3e..d582eccba41a 100644 --- a/app-misc/hello/hello-2.12.2.ebuild +++ b/app-misc/hello/hello-2.12.2.ebuild @@ -9,7 +9,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.gz" LICENSE="FDL-1.3+ GPL-3+" SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 x86" +KEYWORDS="amd64 ~arm ~arm64 ~m68k x86" IUSE="nls" DOCS=( AUTHORS ChangeLog{,.O} NEWS README THANKS ) diff --git a/app-office/gnucash/gnucash-5.12.ebuild b/app-office/gnucash/gnucash-5.12.ebuild index cc1cbb7a5f2d..188855e7b379 100644 --- a/app-office/gnucash/gnucash-5.12.ebuild +++ b/app-office/gnucash/gnucash-5.12.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -16,7 +16,7 @@ SRC_URI="https://github.com/Gnucash/gnucash/releases/download/${PV}/${P}.tar.bz2 LICENSE="GPL-2+" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~riscv ~x86" +KEYWORDS="amd64 ~arm64 ~ppc ~ppc64 ~riscv ~x86" IUSE="aqbanking debug doc examples +gui keyring mysql nls ofx postgres python quotes smartcard sqlite test" # Tests were previously restricted because guile would try to use installed, # not just-built modules. See https://bugs.gnucash.org/show_bug.cgi?id=799159#c1. diff --git a/app-shells/atuin/atuin-18.11.0.ebuild b/app-shells/atuin/atuin-18.11.0.ebuild index bf67231a7d6e..c083f7fa238f 100644 --- a/app-shells/atuin/atuin-18.11.0.ebuild +++ b/app-shells/atuin/atuin-18.11.0.ebuild @@ -20,7 +20,7 @@ LICENSE+=" Unicode-3.0 ZLIB " SLOT="0" -KEYWORDS="~amd64 ~arm64 ~riscv" +KEYWORDS="amd64 ~arm64 ~riscv" IUSE="+client +daemon server system-sqlite test +sync" RESTRICT="!test? ( test )" REQUIRED_USE=" diff --git a/dev-cpp/lucene++/lucene++-3.0.9-r1.ebuild b/dev-cpp/lucene++/lucene++-3.0.9-r1.ebuild deleted file mode 100644 index 51e09f6fa74f..000000000000 --- a/dev-cpp/lucene++/lucene++-3.0.9-r1.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2026 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -MY_P="LucenePlusPlus-rel_${PV}" -inherit edo cmake flag-o-matic - -DESCRIPTION="C++ port of Lucene library, a high-performance, full-featured text search engine" -HOMEPAGE="https://github.com/luceneplusplus/LucenePlusPlus" -SRC_URI="https://github.com/luceneplusplus/LucenePlusPlus/archive/rel_${PV}.tar.gz -> ${P}.tar.gz" -S="${WORKDIR}/${MY_P}" - -LICENSE="|| ( LGPL-3 Apache-2.0 )" -SLOT="0" -KEYWORDS="amd64 ~hppa ~loong ppc ppc64 ~sparc x86" -IUSE="debug test" -RESTRICT="!test? ( test )" - -DEPEND="dev-libs/boost:=[zlib]" -RDEPEND="${DEPEND}" -BDEPEND=" - test? ( dev-cpp/gtest ) -" - -PATCHES=( - "${FILESDIR}/${PN}-3.0.7-boost-1.85.patch" - "${FILESDIR}/${PN}-3.0.9-boost-1.87.patch" - "${FILESDIR}/${PN}-3.0.9-pkgconfig.patch" - "${FILESDIR}/${PN}-3.0.9-tests-gtest-cstdint.patch" - "${FILESDIR}/${PN}-3.0.9-cmake4.patch" - "${FILESDIR}/${PN}-3.0.9-system-gtest.patch" - "${FILESDIR}/${PN}-3.0.9-gcc15.patch" - "${FILESDIR}/${PN}-3.0.9-boost-1.89.patch" -) - -src_configure() { - # Can't be tested with LTO because of ODR issues in test mocks - filter-lto - - local mycmakeargs=( - -DENABLE_DEMO=OFF - -DENABLE_TEST=$(usex test) - ) - - cmake_src_configure -} - -src_test() { - edo "${BUILD_DIR}"/src/test/lucene++-tester \ - --test_dir="${S}"/src/test/testfiles \ - --gtest_filter="-ParallelMultiSearcherTest*:SortTest.*:" -} diff --git a/dev-db/mongodb/mongodb-5.0.32.ebuild b/dev-db/mongodb/mongodb-5.0.32.ebuild index 06e7f392d60e..5fa1daf449c0 100644 --- a/dev-db/mongodb/mongodb-5.0.32.ebuild +++ b/dev-db/mongodb/mongodb-5.0.32.ebuild @@ -23,7 +23,7 @@ S="${WORKDIR}/${MY_P}" LICENSE="Apache-2.0 SSPL-1" SLOT="0" -KEYWORDS="~amd64 ~arm64 -riscv" +KEYWORDS="amd64 ~arm64 -riscv" CPU_FLAGS="cpu_flags_x86_avx" IUSE="debug kerberos mongosh ssl +tools ${CPU_FLAGS}" diff --git a/dev-debug/gdb/gdb-16.3.ebuild b/dev-debug/gdb/gdb-16.3.ebuild index 3045f995d5a0..c72554f2aebd 100644 --- a/dev-debug/gdb/gdb-16.3.ebuild +++ b/dev-debug/gdb/gdb-16.3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -77,7 +77,7 @@ SRC_URI=" LICENSE="GPL-3+ LGPL-2.1+" SLOT="0" -IUSE="babeltrace cet debuginfod guile lzma multitarget nls +python rocm +server sim source-highlight test vanilla xml xxhash zstd" +IUSE="babeltrace cet +debuginfod guile lzma multitarget nls +python rocm +server sim source-highlight test vanilla xml xxhash zstd" if [[ -n ${REGULAR_RELEASE} ]] ; then KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~x64-macos ~x64-solaris" fi diff --git a/dev-debug/gdb/gdb-17.1.ebuild b/dev-debug/gdb/gdb-17.1.ebuild index f37c24846ba3..ec9dec3045f7 100644 --- a/dev-debug/gdb/gdb-17.1.ebuild +++ b/dev-debug/gdb/gdb-17.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -77,7 +77,7 @@ SRC_URI=" LICENSE="GPL-3+ LGPL-2.1+" SLOT="0" -IUSE="babeltrace cet debuginfod guile lzma multitarget nls +python rocm +server sim source-highlight test vanilla +xml xxhash zstd" +IUSE="babeltrace cet +debuginfod guile lzma multitarget nls +python rocm +server sim source-highlight test vanilla +xml xxhash zstd" if [[ -n ${REGULAR_RELEASE} ]] ; then KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos ~x64-solaris" fi diff --git a/dev-debug/gdb/gdb-9999.ebuild b/dev-debug/gdb/gdb-9999.ebuild index f37c24846ba3..ec9dec3045f7 100644 --- a/dev-debug/gdb/gdb-9999.ebuild +++ b/dev-debug/gdb/gdb-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -77,7 +77,7 @@ SRC_URI=" LICENSE="GPL-3+ LGPL-2.1+" SLOT="0" -IUSE="babeltrace cet debuginfod guile lzma multitarget nls +python rocm +server sim source-highlight test vanilla +xml xxhash zstd" +IUSE="babeltrace cet +debuginfod guile lzma multitarget nls +python rocm +server sim source-highlight test vanilla +xml xxhash zstd" if [[ -n ${REGULAR_RELEASE} ]] ; then KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos ~x64-solaris" fi diff --git a/dev-games/godot/Manifest b/dev-games/godot/Manifest index 6743c921255a..97b4bd341068 100644 --- a/dev-games/godot/Manifest +++ b/dev-games/godot/Manifest @@ -2,3 +2,4 @@ DIST godot-4.3-stable.tar.xz 29140004 BLAKE2B 0698cf6c8ba853d094c39b461efe998c57 DIST godot-4.4.1-stable.tar.xz 37561040 BLAKE2B 6c424f1faa28b43a9835ea80a75de273f81877e180c0664b39080a7fa57d4d580a9b9fc6bed50a308f3a15a429c9b93d63cee99a347d6cf1cbe87b870a76f284 SHA512 f67882a70dc9e2d2efbbc9cda657f292ba05bb4c8341809c56fe054979032a93b04f9125815865efeaa269cf404010eb74f075a37faebb2a8f28be5abb706480 DIST godot-4.5.1-stable.tar.xz 43180564 BLAKE2B bdaa2f7ee4a075ee296b6eda29d2bf9ceaebe0047d9c480a351fd53aaf693059237de8e2f6079e4da9df43d64af195a4641c4cf659e474a48d1bdc2589c40f4c SHA512 963d811f29fc01b8bf95d11a521f0759fffb8d0e8d2eb4bb64f95be3408a18f4e020211913dba7f1dd39c7ec2c535f4bbfbde65c65b5af48323c5feb91685af2 DIST godot-4.6-stable.tar.xz 44108876 BLAKE2B a3f40dc0ad08733fa0e5eb1044e0c8075df6147592493593e70d4742f36a9f2e22a70f655cbb083509ce45b7767008d8786f1f3d01c5ff5d35761b390134e8fd SHA512 e93201aa5a78da5baf81a110b3ca17603cc028ff35bfbfd1bff0061fcbbfa264b3941e7a42dc44320e141ab0624fe7e096f35ee362c9e0d4fa695d396a52eedd +DIST godot-4.6.1-stable.tar.xz 44445668 BLAKE2B 8cfc477472d224579b525a36df98f5cc7616b66e9ba4fc943753351cc6093bd0c7f542916cc26ddb625bbbbb8de850015b72610af05df443ec8c0a3c2e03ff3f SHA512 b2062e98337203a39cb0a7af704da6113f232f4645e0d557efb1f77790d6e39fc2b219369778af6a5877e0746b400b812b3a4bdcf21a4cc82133b36a0ced0e78 diff --git a/dev-games/godot/godot-4.6.1.ebuild b/dev-games/godot/godot-4.6.1.ebuild new file mode 100644 index 000000000000..a32072151685 --- /dev/null +++ b/dev-games/godot/godot-4.6.1.ebuild @@ -0,0 +1,242 @@ +# Copyright 2022-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{10..14} ) +inherit branding desktop python-any-r1 flag-o-matic scons-utils +inherit shell-completion toolchain-funcs xdg + +DESCRIPTION="Multi-platform 2D and 3D game engine with a feature-rich editor" +HOMEPAGE="https://godotengine.org/" +SRC_URI=" + https://downloads.tuxfamily.org/godotengine/${PV}/${P}-stable.tar.xz + https://github.com/godotengine/godot/releases/download/${PV}-stable/${P}-stable.tar.xz +" +S=${WORKDIR}/${P}-stable + +LICENSE=" + MIT + Apache-2.0 BSD Boost-1.0 CC0-1.0 Unlicense ZLIB + gui? ( CC-BY-4.0 ) tools? ( OFL-1.1 ) +" +SLOT="0" +KEYWORDS="~amd64" +# Enable roughly same as upstream by default so it works as expected, +# except raycast (tools-only heavy dependency), and deprecated. +IUSE=" + accessibility alsa +dbus debug deprecated double-precision +fontconfig + +gui pulseaudio raycast speech test +sdl +theora +tools +udev +upnp + +vulkan wayland +webp +" +REQUIRED_USE="wayland? ( gui )" +# TODO: tests still need more figuring out +RESTRICT="test" + +# dlopen: libglvnd +RDEPEND=" + app-arch/brotli:= + app-arch/zstd:= + dev-games/recastnavigation:= + dev-libs/icu:= + dev-libs/libpcre2:=[pcre32] + media-libs/freetype[brotli,harfbuzz] + media-libs/harfbuzz:=[icu] + media-libs/libjpeg-turbo:= + media-libs/libogg + media-libs/libpng:= + media-libs/libvorbis + >=net-libs/mbedtls-3.6.2-r101:3= + net-libs/wslay + virtual/zlib:= + alsa? ( media-libs/alsa-lib ) + dbus? ( sys-apps/dbus ) + fontconfig? ( media-libs/fontconfig ) + gui? ( + media-libs/libglvnd + x11-libs/libX11 + x11-libs/libXcursor + x11-libs/libXext + x11-libs/libXi + x11-libs/libXinerama + x11-libs/libXrandr + x11-libs/libXrender + x11-libs/libxkbcommon + tools? ( raycast? ( media-libs/embree:4 ) ) + vulkan? ( media-libs/vulkan-loader[X,wayland?] ) + ) + pulseaudio? ( media-libs/libpulse ) + sdl? ( media-libs/libsdl3 ) + speech? ( app-accessibility/speech-dispatcher ) + theora? ( + media-libs/libtheora:= + tools? ( media-libs/libtheora[encode] ) + ) + tools? ( app-misc/ca-certificates ) + udev? ( virtual/udev ) + upnp? ( net-libs/miniupnpc:= ) + wayland? ( + dev-libs/wayland + gui-libs/libdecor + ) + webp? ( media-libs/libwebp:= ) +" +DEPEND=" + ${RDEPEND} + gui? ( x11-base/xorg-proto ) + tools? ( test? ( dev-cpp/doctest ) ) +" +BDEPEND=" + virtual/pkgconfig + wayland? ( dev-util/wayland-scanner ) +" + +PATCHES=( + "${FILESDIR}"/${PN}-4.5-scons.patch +) + +src_prepare() { + default + + # mbedtls normally has mbedtls.pc, but Gentoo's slotted one is mbedtls-3.pc + sed -E "/pkg-config/s/(mbedtls|mbedcrypto|mbedx509)/&-3/g" \ + -i platform/linuxbsd/detect.py || die + + sed -i "s|pkg-config |$(tc-getPKG_CONFIG) |" platform/linuxbsd/detect.py || die + + # use of builtin_ switches can be messy (see below), delete to be sure + local unbundle=( + brotli doctest embree freetype graphite harfbuzz icu4c libjpeg-turbo + libogg libpng libtheora libvorbis libwebp linuxbsd_headers mbedtls + miniupnpc pcre2 recastnavigation sdl volk wslay zlib zstd + # certs: unused by generated header, but scons panics if not found + ) + rm -r "${unbundle[@]/#/thirdparty/}" || die + + ln -s -- "${ESYSROOT}"/usr/include/doctest thirdparty/ || die +} + +src_compile() { + local -x BUILD_NAME=${BRANDING_OS_ID} # replaces "custom_build" in version + + filter-lto #921017 + + local esconsargs=( + AR="$(tc-getAR)" CC="$(tc-getCC)" CXX="$(tc-getCXX)" + + progress=no + verbose=yes + + target=$(usex tools editor template_$(usex debug{,} release)) + dev_build=$(usex debug) + tests=$(usex tools $(usex test)) # bakes in --test in final binary + + # TODO?: libgodot requires a separate build given the executable + # the library are mutally exculsive and so, unless we really need + # it, skipping support to ease maintenance at least for now + #library_type=$(usex libgodot shared_library executable) + + accesskit=$(usex accessibility) + alsa=$(usex alsa) + dbus=$(usex dbus) + deprecated=$(usex deprecated) + precision=$(usex double-precision double single) + execinfo=no # not packaged, disables crash handler if non-glibc + fontconfig=$(usex fontconfig) + opengl3=$(usex gui) + pulseaudio=$(usex pulseaudio) + sdl=$(usex sdl) + speechd=$(usex speech) + udev=$(usex udev) + use_sowrap=no + use_volk=no # unnecessary when linking directly to libvulkan + vulkan=$(usex gui $(usex vulkan)) + wayland=$(usex wayland) + # TODO: retry to add optional USE=X, wayland support is new + # and gui build is not well wired to handle USE="-X wayland" yet + x11=$(usex gui) + + system_certs_path="${EPREFIX}"/etc/ssl/certs/ca-certificates.crt + + # platform/*/detect.py uses builtin_* switches to check if need + # to link with system libraries, but many ignore whether the dep + # is actually used, so "enable" deleted builtins on disabled deps + builtin_accesskit=yes # not packaged + builtin_brotli=no + builtin_certs=no + builtin_clipper2=yes # not packaged + builtin_embree=$(usex !gui yes $(usex !tools yes $(usex !raycast))) + builtin_enet=yes # bundled copy is patched for IPv6+DTLS support + builtin_freetype=no + builtin_glslang=yes #879111 (for now, may revisit if more stable) + builtin_graphite=no + builtin_harfbuzz=no + builtin_icu4c=no + builtin_libjpeg_turbo=no + builtin_libogg=no + builtin_libpng=no + builtin_libtheora=$(usex !theora) + builtin_libvorbis=no + builtin_libwebp=$(usex !webp) + builtin_mbedtls=no + builtin_miniupnpc=$(usex !upnp) + builtin_msdfgen=yes # not wired for unbundling nor packaged + builtin_openxr=yes # not packaged + builtin_pcre2=no + builtin_recastnavigation=no + builtin_rvo2=yes # bundled copy has godot-specific changes + builtin_sdl=$(usex !sdl) + builtin_wslay=no + builtin_xatlas=yes # not wired for unbundling nor packaged + builtin_zlib=no + builtin_zstd=no + # (more is bundled in third_party/ but they lack builtin_* switches) + + # modules with optional dependencies, "possible" to disable more but + # gets messy and breaks all sorts of features (expected enabled) + module_mono_enabled=no # unhandled + # note raycast is only enabled on amd64+arm64 and USE should + # be masked for other keywords if added, see raycast/config.py + module_raycast_enabled=$(usex gui $(usex tools $(usex raycast))) + module_theora_enabled=$(usex theora) + module_upnp_enabled=$(usex upnp) + module_webp_enabled=$(usex webp) + + # let *FLAGS handle these + debug_symbols=no + lto=none + optimize=custom + use_static_cpp=no + ) + + escons "${esconsargs[@]}" +} + +src_test() { + xdg_environment_reset + + bin/godot* --headless --test || die +} + +src_install() { + # suffix varies depending on arch/features, use wildcard to simplify + newbin bin/godot* godot + + doman misc/dist/linux/godot.6 + dodoc AUTHORS.md CHANGELOG.md DONORS.md README.md + + if use gui; then + newicon icon.svg godot.svg + domenu misc/dist/linux/org.godotengine.Godot.desktop + + insinto /usr/share/metainfo + doins misc/dist/linux/org.godotengine.Godot.appdata.xml + + insinto /usr/share/mime/application + doins misc/dist/linux/org.godotengine.Godot.xml + fi + + newbashcomp misc/dist/shell/godot.bash-completion godot + newfishcomp misc/dist/shell/godot.fish godot.fish + newzshcomp misc/dist/shell/_godot.zsh-completion _godot +} diff --git a/dev-java/openjdk-bin/Manifest b/dev-java/openjdk-bin/Manifest index 1ba31ff5ccdf..23774624b766 100644 --- a/dev-java/openjdk-bin/Manifest +++ b/dev-java/openjdk-bin/Manifest @@ -1,9 +1,9 @@ -DIST OpenJDK-jdk_aarch64_alpine-linux_hotspot_27_7-ea.tar.gz 142550419 BLAKE2B 3ffc3fd32eea6648fb7724465bd62f66bafd5c19554e74c9171ff0a3b52e093499f14dbceb2549d14641a67daa3b43c25ae9975518f6e96438ac22ced8427644 SHA512 a0be2fc96aec18e16117e0e20a61f9ea2673cc737590356301c210c1fdd486b1e65aa39048f11533a9f7f58228c2d6f00abc2f9cd118a2a1bbee57298a2bef15 -DIST OpenJDK-jdk_aarch64_linux_hotspot_27_7-ea.tar.gz 143354292 BLAKE2B 5f06dcb080e1e061f03f901671384f247dd87137b8f7b78deee76ffdafe3ebe50ef2f97cb431aa4b1ba740edb0f90128d1385d248991f6a1303142429cbd4999 SHA512 fe59278511e6661b6712d3da2a47510f5070fe1f93838247f9fa6cab7448c4637d76c5f35ba80325507de2ed2f6b92f64e32d764ce622cf9021a4fdeb5bd0ffe -DIST OpenJDK-jdk_ppc64le_linux_hotspot_27_7-ea.tar.gz 143404301 BLAKE2B 7739c6939d4739a53a29cad9b8a65651501913bc645b6ca982adf1303066482d97e72cdc46214a5b7340811f395c81fd862614b0279e1e646232bc14acb630c6 SHA512 c3fb5ae318cbccf1104c9bbd916f2470ecad11c38f3bbd2c0c331691384ef832042967841b4f2f5ca4b32c7786be4a0f0f32d88d8b739ff0b22ce978dffed571 -DIST OpenJDK-jdk_riscv64_linux_hotspot_27_7-ea.tar.gz 143135893 BLAKE2B ce8daa32a09125d6121137dd11f37f1c7950a264c3678ffe9e1276dd896ccb3d95c2399a84547c95c023d1406e90737bd105c4e5d5fb19b2545c9469e1567b6e SHA512 f03d52daa976d373e017e4ef4597d826918785594385434eccd1eb280dbf7366af86de3ee7904c2808d7fadc339514f59dd8885b964d3fb497f6cac6f12c1f56 -DIST OpenJDK-jdk_x64_alpine-linux_hotspot_27_7-ea.tar.gz 143765125 BLAKE2B 4037a7f3c4133bd3650361c0045b169834022d289648f82a68ec6d6c66d9892409b797f6dc125b606b46bd04a69dc5ea254cec84f043c4711ffd2604ff361292 SHA512 a9d5a2d4be16077bedb97f81b5dc61edf4e32554fa6f058063b463905936ff78f3e83cbd13b84bf1fbbd860aefdcbc9f775742f07073bd6de469c8c4548fdcee -DIST OpenJDK-jdk_x64_linux_hotspot_27_7-ea.tar.gz 144466817 BLAKE2B e50fb4a0fb6491c91f5cac3306bfd903377c81e4c25a2dd03bd2abbf7f42d95b309ef1238057b48ccb5b42f997d23ec8f65e1f15bcefee86aa14a3c001d18e31 SHA512 b45371d07864d86858e6670efb22f7e526165d4d5eb72a2430cb4826c693b02afb06734cd12f419856fdcfeee242ba5039c4a5fba12725dcbf7f6b2e3951e300 +DIST OpenJDK-jdk_aarch64_alpine-linux_hotspot_27_9-ea.tar.gz 142664771 BLAKE2B 708e4f640269151135d2c28e969699474fe8d5b7bb84a72ac1ae33d1dd608abd0928834669c5fd7c923ad11d25c553a5dec6dcef3b98bf1188f7072fdfc92dfe SHA512 66928b79fd4db5833464f42a183d8d54837e8a8ca2412d09121ac324a298b7fb2cd4682befab57ba4a7eb014de26ce1f1f1f83f5ea15b06d74ad13a95d6664e3 +DIST OpenJDK-jdk_aarch64_linux_hotspot_27_9-ea.tar.gz 143434781 BLAKE2B 8e29ceb3c42f372ba71ab30c7ed4773c0cd625aaf9349df2f7191d4582c60e5d13ff531cd3d0ecc14ffeb02197a52756b98ae0dfcaa18dfa684e52813169d793 SHA512 00682d05075ff7a4d6a8b23e2c887b65fe2d0cfcba024d87a2b5d7e00256b88c6731bdc39a421fc1208af4f9a6035ee6f18519eae0a4a229fd920cf223db5c14 +DIST OpenJDK-jdk_ppc64le_linux_hotspot_27_9-ea.tar.gz 143486606 BLAKE2B 449f193ca113a882c098b59b248909b65c66453010ec42a1fa527f2529536e5c714315c5629a264039cf27b3b2016d4c56cdf91efa4ca1df5be81bd5e99836d4 SHA512 d4c1c685733f5ca6984aeba9f9754303d4697bd7a3b0deb503f7407795dfca7a4c7431e4b50ff539a973e75d3bd6750ce6f23daef618ec6dbb6f0ad493ee35a7 +DIST OpenJDK-jdk_riscv64_linux_hotspot_27_9-ea.tar.gz 143207785 BLAKE2B ade24f414df2f844983b08521c435392dd974811412de04b055bea741f1886234e72b3d279cafd238b1d2241016d536ec214117818e1f4a9b60f783b76a96ebe SHA512 647e6e01d6ef92a2d34491d87910fb4ffca40c7e0c4e308217d0a14d98abe28b7c3fa0f508104d565afa5d4b2229d9bdc21f5665bc11bc1acee3bfa7d5282708 +DIST OpenJDK-jdk_x64_alpine-linux_hotspot_27_9-ea.tar.gz 143870035 BLAKE2B 5df910c777a7a9948e4fa0860fbc5e26c323f12596d9766e6aa2e5856fbbec2cd11d8d3ad56449d65be9f3dc6bd4c377f8dc7b4c83951a38bb84eb9831b79dd6 SHA512 c8cf09181593d919a4e62619bf7716ccee2de532d6b4dd6810b0fbea0fbba4ba7edbeb02a55605ef6f6692ec04c2d1f4b5f6c7c19f2b0c756f69e12e24ec94d0 +DIST OpenJDK-jdk_x64_linux_hotspot_27_9-ea.tar.gz 144532121 BLAKE2B 0b673c5099ea84e40e7b534f44531b62bce66c0b4e8689cac93a872e97754cc38cc175a2be33edf3a66fd76bf3b72782450942ab57a3231b573f6252079e0733 SHA512 533097b2322c0305344826668537543453ff3ba0a1bf1c5f529406d88bacc04ae852fb786096abd078e7b56415b165fbc1c7bdd49fa49c483f2a9aabd7afda2d DIST OpenJDK11U-jdk_aarch64_linux_hotspot_11.0.29_7.tar.gz 191497108 BLAKE2B 4e18652a6d294ba38a16151f40d8c22f981c0e7f3e5bb1ef5f6860860e009a25d1c2480fe40c4877f27bad0db0ca9fc0c2a96adcc14309476670619702bc8363 SHA512 d1e2ca87a98a7ac066d01a8e7d85d5d76f0ed3fdb9da2ba8caf298a3af026a1337943e387ed87e91b3654af36c8191ecfadde6a93b0af71af3bc0f8c7906222a DIST OpenJDK11U-jdk_aarch64_linux_hotspot_11.0.30_7.tar.gz 192273922 BLAKE2B 23718e9c1292a454a6003cd2dc72d4288ac8fd55f42c2a6a74fc40e09614c078b80dd70d14972f7863b23639d2a7d65a4cf5fa3fe716363cb227a655abd4ba9d SHA512 65d1edcba128095b42afd0ef84763ec48ade84d06e18660c7f76d906f8ece64002cba1a134d59eac67809bb5a545b5145ed092506c6d04bcf998c92c19d8738d DIST OpenJDK11U-jdk_arm_linux_hotspot_11.0.29_7.tar.gz 182379228 BLAKE2B 68a5b778b044c23ba8c7dc2b7980bb247702991660366e2b3f606c83c926d431c8a618a952a2ed57fa094d40f85a2348d2085ef1d8eb168e2d25d5e85f1d4796 SHA512 8952f6b800a39c4cb680169a1bed05eac467a4c029d6113549915570ce79fc87666b5a551ed8a0d7673d441f5a2401ed20abd2e56780822ff3330405672f0851 @@ -55,12 +55,12 @@ DIST OpenJDK25U-jdk_x64_alpine-linux_hotspot_25.0.1_8.tar.gz 139928974 BLAKE2B b DIST OpenJDK25U-jdk_x64_alpine-linux_hotspot_25.0.2_10.tar.gz 140151509 BLAKE2B a9a010c23f7d8d6c34cd8c04ae26d11f774dea3754ed3954a0bd41615c333694f0fc9102ab9e4ac70a8b69b390571180e1f68c087c3d7cdf69d374a8d6ac4597 SHA512 36fa751b3eea1b87178d4511bf2c212e6d1bdc46c5c3f2ceb0762edcbdf76b0cd38f62740ed9b306962f030b824945360841b520969c47f75ab4ea7769ce1ed5 DIST OpenJDK25U-jdk_x64_linux_hotspot_25.0.1_8.tar.gz 140725210 BLAKE2B d4c46eba8275f6eef5e13b96a73515e520bfdbc63d602ecbcfdd0eb9556f55289692f331977d32860e8c7a5e1861a8bdd2f63b26de749069c82ce9d72c8d0f43 SHA512 3d994fcce8fce748e32a02f45c852df57c3539e5f8f67796ffb3d5d3921006e1ea356368975cf6f3f21efb99aa4d98dd3380eb8e8fc77e6d35801e862616c1bc DIST OpenJDK25U-jdk_x64_linux_hotspot_25.0.2_10.tar.gz 140949044 BLAKE2B 79b41f0560266081f84af9f3101814fd6c03eeb5ce6c925771e9a15d79c2dbb2a6ba83c0458dd0788aed5256c147915bae3344745d9f1414fb6cf665d2e6c470 SHA512 29043fde119a031c2ca8d57aed445fedd9e7f74608fcdc7a809076ba84cfd1c31f08de2ecccf352e159fdcd1cae172395ed46363007552ff242057826c81ab3a -DIST OpenJDK26U-jdk_aarch64_alpine-linux_hotspot_26_34-ea.tar.gz 142329478 BLAKE2B 5c811680ed09ad5a85f3b0270cbd59d33b9af6fcd16d0155ee32c359658d2ce7a1a70eea11237665deb3721cf8ef66c46dc133b8f622123faeb48f5ab7b5ab29 SHA512 7bded74066e7185eadc0898fc644f222d3ae2b5dba69c0038cc38e91183de22e4273408a87a4e97a99e3c1d88db5bb937c761445202ebdccbc584a4ba8ad339a -DIST OpenJDK26U-jdk_aarch64_linux_hotspot_26_34-ea.tar.gz 143141436 BLAKE2B 3399e7c200ba3c71ab56d49a28e7780b671060223b052b5fb61414bbec83674bb427d481fee4081bc2382370a30c3ee3f174a1c61dcea28e62990bddaf32ed68 SHA512 a8e85b02ec22abf8bd7a33b0dbd64ae243a00e8f4a36c9e2d8c369b6013f3c9cda34ed2cda9c87e550df2ad57468c4b39b51b9f176d555bb53d1c320d16ce986 -DIST OpenJDK26U-jdk_ppc64le_linux_hotspot_26_34-ea.tar.gz 143183735 BLAKE2B eb433adf1753db546c10490a9c9106c01e8d3d129dca9f293ec0baef44fa2cda10a94928bd0b2584331e834cc9ecea5a6e53c5ac7034fc6789d5668cf07f60ef SHA512 a0268b0cb83a259d6b7ba73274478c6faeb819918175344d460b54c273ee3e5b2ecc53fd18cb2ada01f0a279f5e6ee33556c5feb687df42614f15b5ca7ed3a1b -DIST OpenJDK26U-jdk_riscv64_linux_hotspot_26_34-ea.tar.gz 142925453 BLAKE2B 0ff2b0a8a47e77b9413d878881a23c7f9a997b5b94c86ec0f5b17616844fe13c6c86e2bc13c3024bc78f508940bb5eb10cd6e7b089ef8ed9933f87c88e1d01cf SHA512 ea58782d5115f2155f30b8fd232759b2f6523673bdb16e7a63e97e2d56d9984ad10ea756acc433fa0e130b8307d7d8721abfda45f79fee048ce90df26ab2fe70 -DIST OpenJDK26U-jdk_x64_alpine-linux_hotspot_26_34-ea.tar.gz 143547645 BLAKE2B 0bf85d1067693acabbeb31e8606bbff9da1478e1225b75f85216626acc8c5d508bbc86cce0ad1e3220a08134e14aacdf4e2abef2dd7740f330e9a8f5fba64d54 SHA512 44f5e132aa1ef11485d4aa8b817d7e51516c3ce1fc882a1a6944bd12ae12b9907ad7e00d735b68ae29ba5bc0f1c781f54568f57a5d956921186d7a3fb84b6ec6 -DIST OpenJDK26U-jdk_x64_linux_hotspot_26_34-ea.tar.gz 144256461 BLAKE2B eb6aa349dd49e7ae7982ed9f83f1132a3c07d6667817f508f5017fe53c96386039e7fe3d17a14a2c17febdf2dd30bc0bb9dd00b347b357256bee00e59f1cab3c SHA512 0150ef62831dffa8927837436d7b91a7a255331afd32f12636c445ca9d6bb42f841a4b074d2126aa97c349c8719511fd334c26f9667ac3cdc4ee3eb466e29cb0 +DIST OpenJDK26U-jdk_aarch64_alpine-linux_hotspot_26_35-ea.tar.gz 142372916 BLAKE2B 828688b3115c570bc811dd18317cb6af47485576dae6b6c8ba05634166502462ce91e443133613c88334cbda06c8b120057a236edf314ff8456d87cf8d63968a SHA512 bae248cc280c1417d1b292eca58daabdb90fe71daba0bbfbb2da0df8d2ea5e90afe8d0bdbcc465cc889a81d961370798ff380309c59db4365e9baa09d4db73c5 +DIST OpenJDK26U-jdk_aarch64_linux_hotspot_26_35-ea.tar.gz 143179204 BLAKE2B 5172d9a9c937c00933bb4c6826781749fe1035ca0b47aeb04e23b2bcbcc341ef6af2d34a6c3672e78f0d7772718cfa0b2c72f6717f844ea2b8aebe12b000aeaa SHA512 f8825c32de8c07021a6e2964f296e28e57b6a8b0cd0bcd3774a0f35eb01f4360790b7871428969cfdb3d8f9d34e77e8f22a3607af95236d4bcb4e7766457c6d0 +DIST OpenJDK26U-jdk_ppc64le_linux_hotspot_26_35-ea.tar.gz 143224944 BLAKE2B 40cb9de9936fea65e52e0b91b60f072534f5046038cb26689a1d842026769b37d3e55478106370d30b81a123f9694f67f13c9338b018275c0b5c4415847698f0 SHA512 bbf54570bbe35667907d30fa60d6875b1c2a60b74afdb0892f9d74871f3396e7dca762159ff3c5d1fedee097dae4d4b4a71f9af9e8f1b123589cf4de83ea35f7 +DIST OpenJDK26U-jdk_riscv64_linux_hotspot_26_35-ea.tar.gz 142961147 BLAKE2B 3b9df0aa9e3d904a1e0ad8ca2555eea4b5c7553cc1e57b460bb2505c8a38628193c8e174a80f44fd7df6f6f222bec7177ca9166d242b8476dbc91461f0daf1dd SHA512 68222a3687c92e223022bad3cb86cf911bb338a9c59aec579ad11112bfe4545ea5f4d4ef54ea766fdd51924f718b392ec8f8235a72523acc71ca61537181d3ce +DIST OpenJDK26U-jdk_x64_alpine-linux_hotspot_26_35-ea.tar.gz 143584032 BLAKE2B 10ba95baebeb454ced56fea4edb46b41ae489d8bf0b27eb44a34d20f5a356cf26dd0e5c4500937c04a2dbc292c93be1e0d37e684eeb02f0a6d330ffd5baf1195 SHA512 2565fd343b38d3a924084d0cae8df13330e084317f421875e0175414661df13e82e16806a1a0e6b750f1a76201f57878e7a76695873a8c62c89ed0261050cb75 +DIST OpenJDK26U-jdk_x64_linux_hotspot_26_35-ea.tar.gz 144293122 BLAKE2B 7391a5f58075a9609dca96ef765269b3cf652cf808a360b3b2ed73d28fcaf0395c96cae4f1a54af5b48659427c4b9459ea97826fe19b62d994a137e5510182ea SHA512 1e4c2cfd925ac6937905949b666b195adf2ba8c47fe378f7ef0dcd81cee609ad09a61c62d631ca7c5c1d591ce289502b30f291d2cb2c3056ff48d7738680742d DIST OpenJDK8U-jdk_aarch64_linux_hotspot_8u472b08.tar.gz 102200754 BLAKE2B 0e3a232340e8b49021ce6a67dec2da8d23faf4bf6e323e13c3b7e57b36281cb6b6b7ec6124d1241c26be52ba34738ce7605af372a2ccab4984015efb18557fac SHA512 9f6a151ad918ca382641d0e12d88b47036f5fd0cbfd5b58bd8a51beb8bf9622bf243337a85537e287a13195ab02aadc7754100af8f1b31b445e61ab60114bbb4 DIST OpenJDK8U-jdk_aarch64_linux_hotspot_8u482b08.tar.gz 102593427 BLAKE2B d39640ecf7e163d147bacafd03c29a11fe6d3e6171a3039034f4a15a08297feaa330cd0912cab2ad1e564598759f80f8356a354fadf8062347338b3dd327b7e8 SHA512 5a292b2bb3e08c19251828cc0fe7aa7b10713430894812b261ae708c78334c986042742f27a5faa71bf3d705f3150e4505e1e66a8104fe532d71fa3a9a1aac71 DIST OpenJDK8U-jdk_arm_linux_hotspot_8u472b08.tar.gz 98421696 BLAKE2B 1967ca945aeaf278cb9fb219c99b3948c2f5c80cfa0227782d9be139d2cd8f4a8ccc04272797796bdee8a55d61250ab8526212c0fd8bb477e2f8c2022cf943fa SHA512 edea873b88bc683b793050abbd702107a2634336e6fb2c84696582b5e72e19c10fb80fac9783ed33fe8e97cadcd2e40b7fabcb768ef81fb52dccc2128003652e diff --git a/dev-java/openjdk-bin/openjdk-bin-26_beta34.ebuild b/dev-java/openjdk-bin/openjdk-bin-26_beta35.ebuild index 667f60d76503..667f60d76503 100644 --- a/dev-java/openjdk-bin/openjdk-bin-26_beta34.ebuild +++ b/dev-java/openjdk-bin/openjdk-bin-26_beta35.ebuild diff --git a/dev-java/openjdk-bin/openjdk-bin-27_alpha7.ebuild b/dev-java/openjdk-bin/openjdk-bin-27_alpha9.ebuild index 667f60d76503..667f60d76503 100644 --- a/dev-java/openjdk-bin/openjdk-bin-27_alpha7.ebuild +++ b/dev-java/openjdk-bin/openjdk-bin-27_alpha9.ebuild diff --git a/dev-java/rhino/Manifest b/dev-java/rhino/Manifest index 63c52bedf4d7..ccd7ff22f10b 100644 --- a/dev-java/rhino/Manifest +++ b/dev-java/rhino/Manifest @@ -1 +1,2 @@ DIST rhino-1.9.0.tar.gz 10661552 BLAKE2B 767bde3be12201d33cf351069f61aed80a1d8d15bf30971cca52f03f2ee0bf4a21d06eef573f8fad6a1b9fae73f5c4e68c01bc0233b1bf9c12c1219b40d853e9 SHA512 eaa41808eb24f782c9035e186a08713d1226372f244f2bcc28e2f020df01fadd1da2e451e618430825a7d72e69025391d80727b2bfb1ed6f140ecb891b73d5fc +DIST rhino-1.9.1.tar.gz 10666729 BLAKE2B 12da53da07686d0583201ce24a6484735dd7070022e6c4a8a714f83e9e3248cfbaa058c5a57c0d1aa87fb7cfaad5d72de43223082d1ad68e594b8b5bcf48b368 SHA512 0700f7736bc44b795fdc53d2ec714a5b0bd3c99c1314210d3aab0b0e31ffe9e0e9bb865c635a3e8702df3bf3310be0576223812efe9d849d9a579ffdb0cbc83f diff --git a/dev-java/rhino/rhino-1.9.1.ebuild b/dev-java/rhino/rhino-1.9.1.ebuild new file mode 100644 index 000000000000..1c802a324360 --- /dev/null +++ b/dev-java/rhino/rhino-1.9.1.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=9 + +JAVA_PKG_IUSE="doc source test" +JAVA_TESTING_FRAMEWORKS="junit-vintage" + +inherit java-pkg-2 java-pkg-simple junit5 + +DESCRIPTION="Rhino JavaScript runtime jar, excludes XML, tools, and ScriptEngine wrapper" +HOMEPAGE="https://github.com/mozilla/rhino" +SRC_URI="https://github.com/mozilla/rhino/archive/Rhino${PV//./_}_Release.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/rhino-Rhino${PV//./_}_Release/rhino" + +LICENSE="MPL-1.1 GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~ppc64" + +DEPEND=" + >=virtual/jdk-17 + test? ( + dev-java/junit:4 + dev-java/junit:5[vintage] + ) +" + +# rhino/src/main/java/org/mozilla/javascript/Slot.java:29: error: cannot find symbol +# var newSlot = new Slot(this); +# ^ +# symbol: class var +RDEPEND=">=virtual/jre-11:*" + +DOCS=( ../{CODE_OF_CONDUCT,README,RELEASE-NOTES,RELEASE-STEPS}.md ../{NOTICE-tools,NOTICE}.txt ) +PATCHES=( "${FILESDIR}/rhino-1.9.0-ClassCompilerTest.patch" ) + +JAVA_RESOURCE_DIRS="src/main/resources" +JAVA_SRC_DIR="src/main/java" +JAVA_TEST_EXTRA_ARGS=( -Dtest.file.rhino-test-config.loaded=true -Dtest.config.bar=value4-mod ) +JAVA_TEST_GENTOO_CLASSPATH="junit-4 junit-5" +JAVA_TEST_RESOURCE_DIRS="src/test/resources" +JAVA_TEST_SRC_DIR="src/test/java" + +src_test() { + JAVA_GENTOO_CLASSPATH_EXTRA="rhino.jar" + JAVA_JAR_FILENAME="testutils.jar" + JAVA_SRC_DIR="../testutils/src/main/java" + java-pkg-simple_src_compile + JAVA_GENTOO_CLASSPATH_EXTRA+=":testutils.jar" + + # One test needs to run first, otherwise it would fail. + JAVA_TEST_RUN_ONLY=( org.mozilla.javascript.tests.ErrorHandlingTest ) + local JAVA_TEST_RUN_LATER=$(find src/test/java -name '*Test.java' -printf '%P\n') + JAVA_TEST_RUN_LATER="${JAVA_TEST_RUN_LATER//.java}" + JAVA_TEST_RUN_ONLY+=( ${JAVA_TEST_RUN_LATER//\//.} ) + junit5_src_test + + JAVA_JAR_FILENAME="rhino.jar" +} diff --git a/dev-java/tomcat-native/Manifest b/dev-java/tomcat-native/Manifest index bec8a9293fab..2eaa1e614300 100644 --- a/dev-java/tomcat-native/Manifest +++ b/dev-java/tomcat-native/Manifest @@ -8,5 +8,3 @@ DIST tomcat-native-2.0.12-src.tar.gz 470007 BLAKE2B 5901d37ea3072740da308d8843ce DIST tomcat-native-2.0.12-src.tar.gz.asc 833 BLAKE2B 24f4ec119a10c0f45511101cdd61a4b8bfea374f86b5988d7ce3de1419cea11824e38b562d0f6f76b83ec8d08a56237ca4382d8307b5e8ade1207c54f3ec550c SHA512 f1a13c239dea10453624261bc88df3f728beea1f5f051a9911efc7d9724094c90b9f9ecc559b0bf459e10efbc83ac4cc6cdc43ba3e2097eb18d806eee94dec38 DIST tomcat-native-2.0.13-src.tar.gz 474267 BLAKE2B 3178b4e1889850edf83257e3046104e7359566439020fe26d91db4426e524af8919e771c7b58ad95d1827519dbafc2a71091a77f952a972cecbb4ba9907422d1 SHA512 7bdcf6fab95b7a349ea2cc9f428cff165439191aa69928b6feb9c49d72b5b28fbb411a7ca94042320f8b1a571b29e8a74889d57a9e9cf4cf6e4ff3a0a158d342 DIST tomcat-native-2.0.13-src.tar.gz.asc 833 BLAKE2B 70951aae0d4ee075cdfafa62dc52ba832d07eb755067716869070c0896dba627e0b8de33e62487d948174c23ce20c0bc77a3c6243601db992a5a3bf3f0357c16 SHA512 d0fd27175171425f1866e8a1e2193fee5867ebcc850ee8d53775661d3bfe5c9125913bf17d0465050163fbcb47bea23a327fd55aded80b7db1740aa358ca4701 -DIST tomcat-native-2.0.9-src.tar.gz 474706 BLAKE2B 0e3b5d4832278cb0f5d5a3f32c68a62c572d27afa30aba1f69a5f42de4b3f9f48b32e5e6b98a923732216685b67f6fa55be9624aee6ff1b09a0905b27d3a238c SHA512 c8eb81de1cf7316174c36038c2133b013fd18ba11df09c41edb927ff33fef46863ef706b6193487ecde1eed7055d4c47fa23fc29d5a8d53f0c4b6d69b0ce9b33 -DIST tomcat-native-2.0.9-src.tar.gz.asc 833 BLAKE2B 976ee6cc17de4b5aaf3bbd7cf0d47c17b116961bf5c3b06d5059d9aba8c511be50c286444806a01f0f96b079ec3e88a9e89284666b1d2dcb01135228a03db705 SHA512 dd281e2835304a5ca3a3f1f9db92b6161155db940608d1e3aeea64f280cbdb421f6f774d4ec465efde93a1976b1602f72614e3f4ceca46624418f24d0895ee9f diff --git a/dev-java/tomcat-native/tomcat-native-2.0.9-r1.ebuild b/dev-java/tomcat-native/tomcat-native-2.0.9-r1.ebuild deleted file mode 100644 index 931a87c07baf..000000000000 --- a/dev-java/tomcat-native/tomcat-native-2.0.9-r1.ebuild +++ /dev/null @@ -1,83 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -JAVA_PKG_IUSE="doc source test" -JAVA_TESTING_FRAMEWORKS="junit-4" - -inherit java-pkg-2 java-pkg-simple verify-sig - -DESCRIPTION="Allows Tomcat to use certain native resources for better performance" -HOMEPAGE="https://tomcat.apache.org/native-doc/" -SRC_URI="mirror://apache/tomcat/tomcat-connectors/native/${PV}/source/${P}-src.tar.gz - verify-sig? ( - https://downloads.apache.org/tomcat/tomcat-connectors/native/${PV}/source/${P}-src.tar.gz.asc - )" -S=${WORKDIR}/${P}-src/native - -LICENSE="Apache-2.0" -SLOT="2" -KEYWORDS="amd64" -IUSE="static-libs" - -DEPEND=">=virtual/jdk-17:*" #958655 - -RDEPEND=" - dev-libs/apr:1= - dev-libs/openssl:0/3 - >=virtual/jre-1.8:* -" -BDEPEND="verify-sig? ( sec-keys/openpgp-keys-apache-tomcat-connectors )" -VERIFY_SIG_OPENPGP_KEY_PATH="/usr/share/openpgp-keys/tomcat-connectors.apache.org.asc" - -JAVA_RESOURCE_DIRS="../resources" -JAVA_SRC_DIR="../java" -JAVA_TEST_GENTOO_CLASSPATH="junit-4" -JAVA_TEST_SRC_DIR="../test" - -DOCS=( ../{CHANGELOG.txt,NOTICE,README.txt} ) - -src_prepare() { - java-pkg-2_src_prepare - mkdir -p "${JAVA_RESOURCE_DIRS}/META-INF" || die - sed -ne '/attribute name/s:^.*name="\(.*\)" value="\(.*\)".*$:\1\: \2:p' \ - ../build.xml \ - | sed "s:\${version}:${PV}:" \ - > "${JAVA_RESOURCE_DIRS}/META-INF/MANIFEST.MF" || die -} - -src_configure() { - local myeconfargs=( - --with-apr="${EPREFIX}"/usr/bin/apr-1-config - --with-ssl="${EPREFIX}"/usr - ) - econf "${myeconfargs[@]}" -} - -src_compile() { - java-pkg-simple_src_compile - default -} - -src_test() { - # WARNING: A restricted method in java.lang.System has been called - # WARNING: Restricted methods will be blocked in a future release unless native access is enabled - JAVA_TEST_EXTRA_ARGS=( - -Djava.library.path=".libs" - --enable-native-access=ALL-UNNAMED - ) - java-pkg-simple_src_test -} - -src_install() { - java-pkg-simple_src_install - java-pkg_doso .libs/*.so* - dodoc -r ../docs - ! use static-libs && find "${D}" -name '*.la' -delete || die -} - -pkg_postinst() { - elog "For more information, please visit" - elog "https://tomcat.apache.org/tomcat-9.0-doc/apr.html" -} diff --git a/dev-lang/deno-bin/Manifest b/dev-lang/deno-bin/Manifest index 938d9f815501..cdf1a394a651 100644 --- a/dev-lang/deno-bin/Manifest +++ b/dev-lang/deno-bin/Manifest @@ -1,3 +1,5 @@ +DIST deno-bin-2.6.10-amd64.zip 47750650 BLAKE2B a7f6165dc7ae3ce754a42586860ce48049d4a7dd970853492511258c56f18ac26f7847a27ff9b31705a472616ca6a3cef932d23ff3599219d480b308f334b35e SHA512 a27ab27fc61468dc6d27250ef1f9cd2e359a539e362a7d7b1c39e2dd8ce4b63a03aa7d07f403a2580db0a09760aed0cb062584ef60c410752bf858aedefa54d5 +DIST deno-bin-2.6.10-arm64.zip 45787623 BLAKE2B dfa91e5a835f6eabeef9a77500626df219552370c14881d23f57e7675ee3a4a3e11c45501d37214912decabda40826ec26e16181f18101d57e2895326310e023 SHA512 4d666a4f73c528a994160cd2c81730227d258799fc6660f8f14c12259f6a242749d7036a89bb1bfbd7458960ce57547086c58d09d477e6feb7e31f503317f93d DIST deno-bin-2.6.6-amd64.zip 46943084 BLAKE2B 627e448b06f7bf733a4775bfbd5c0d0eaa03879e06f46f8848b0a581aeabeb306d73ecf6298934209f86c1faa54b17a7a3e6076bb6bbc22e41958c167e3542f2 SHA512 662e4c3521ef44b61bc589684cad894a19b2147b62b035ec752bc9cb978e48ed44a7a3221c9d3a61a37f0ac5e77f06bdff4aabe22df09d85c9bc13bd6ccb307d DIST deno-bin-2.6.6-arm64.zip 45034075 BLAKE2B e37cd24f52b10cd23daae1dd415d922e2bd8e684b65b1d1ed354f31133435b8a2e8e8f48733d348fde892c939ee5b4a393e3cb01bfbc0b600add954527f2b14d SHA512 869f3b7cb6cd8aa0328f1a7419caf441e97461ab6614a2552b037382f11d9788fb89ae75cd7a1e00fd32e17880b54fa5f26c618a20409e57ad80b07355fb4a1d DIST deno-bin-2.6.7-amd64.zip 47230227 BLAKE2B efaba420eb20f1adf8433d1bc5f1c98d3c0ec964cb5bba9a544ba82e86d1b97b7f1f49ba18443e89cab14a7cce76005113e2c01c0b666f206d5d6194871875f3 SHA512 b1306df5baa4bf134ec887c449622def40b6906ea041d72a4c3b2b644264c3dcceca6877174873f3b4a622fdb7c999571aed3e5d5c89e0d9548287ef8b4ecb17 diff --git a/dev-lang/deno-bin/deno-bin-2.6.10.ebuild b/dev-lang/deno-bin/deno-bin-2.6.10.ebuild new file mode 100644 index 000000000000..83926dd4e460 --- /dev/null +++ b/dev-lang/deno-bin/deno-bin-2.6.10.ebuild @@ -0,0 +1,61 @@ +# Copyright 2025-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit shell-completion toolchain-funcs + +DESCRIPTION="Modern runtime for JavaScript and TypeScript" +HOMEPAGE="https://deno.com/" +SRC_URI=" + amd64? ( + https://github.com/denoland/deno/releases/download/v${PV}/deno-x86_64-unknown-linux-gnu.zip + -> ${P}-amd64.zip + ) + arm64? ( + https://github.com/denoland/deno/releases/download/v${PV}/deno-aarch64-unknown-linux-gnu.zip + -> ${P}-arm64.zip + ) +" +S=${WORKDIR} + +LICENSE="MIT" +LICENSE+=" + Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD-2 BSD CC0-1.0 ISC MIT + MPL-2.0 openssl Unicode-3.0 Unicode-DFS-2016 ZLIB +" # crates +SLOT="0" +KEYWORDS="-* ~amd64 ~arm64" + +RDEPEND=" + || ( + llvm-runtimes/libgcc + sys-devel/gcc:* + ) + sys-libs/glibc +" +BDEPEND=" + app-arch/unzip +" + +QA_PREBUILT="usr/bin/deno" + +src_compile() { + if ! tc-is-cross-compiler; then + ./deno completions bash > "${T}"/deno || die + ./deno completions fish > "${T}"/deno.fish || die + ./deno completions zsh > "${T}"/_deno || die + else + ewarn "shell completion files were skipped due to cross-compilation" + fi +} + +src_install() { + dobin deno + + if ! tc-is-cross-compiler; then + dobashcomp "${T}"/deno + dofishcomp "${T}"/deno.fish + dozshcomp "${T}"/_deno + fi +} diff --git a/dev-libs/apache-arrow/Manifest b/dev-libs/apache-arrow/Manifest index b476f5d560ef..182c97376387 100644 --- a/dev-libs/apache-arrow/Manifest +++ b/dev-libs/apache-arrow/Manifest @@ -2,6 +2,7 @@ DIST apache-arrow-20.0.0.tar.gz 17862661 BLAKE2B 154d4783746abf21ee7e94748cee1f5 DIST apache-arrow-21.0.0.tar.gz 17320680 BLAKE2B 56c3bd23ceb59346e094ed83601f30187d88b9148118a83ce413ba525fec23da84ded4576eeefcc1786ecc14e46b5fd0b6270e96bad9659d25f154d77731124e SHA512 89da6de7eb2513c797d6671e1addf40b8b156215b481cf2511fa69faa16547c52d8220727626eeda499e4384d276e03880cd920aaab41c3d15106743d51a90a6 DIST apache-arrow-22.0.0.tar.gz 17063271 BLAKE2B 99b53160b209a9427500fb5bda515c46256f7a6498c80627ff930af1690ffe3a01c86c161fd1946f3b249f1ceaefad0da6c05ea88efbb43b5733c9eb98b5cc1f SHA512 8ec9ddaf7917c0e35c8bb32831fe6ea0a7b81de5723828a1289ba1b9e104b42af688d0f427a0ceff6f617d5f7ac67769431184b137e54f6987779e467c59d3ec DIST apache-arrow-23.0.0.tar.gz 17287604 BLAKE2B 588881dbb434ed7cbdea2fe14f53c7f42ee75d9a4433a4deaad34dff33b989473c1ae7a0a5d6d806ce0e515548cfe515fb69c988536f5419062e344fc6634f6b SHA512 ddaaf31e7f3f8246ce3aa6e77c812c55a7993d037aaebc8ca9d79d54c701717a135eebfede731a3239becfaed2fa2395fcb3d68b14c32b9de72b3f5598d9df4a +DIST apache-arrow-23.0.1.tar.gz 17296212 BLAKE2B 7023df6e6900dc239edc757fef76a89d2169e4fd3e1eaf3471f805a6e1c39014b9ec1e5a3d7c9e7a590b8d007c4adc1d15b8ed22ecf4724b24a33ffa96557db2 SHA512 c687e50dfcdbf7e0e39710224360d35d9aa734452b3a47adc8c101f3019b6b4116310c05b9f3cd0a5ed4ad9b7bd8fb88edb70e79b3cbd413a57e5e35e4554a6c DIST arrow-testing-725fd4a4b12d01c53c98e80274c0b23aa8397082.tar.gz 3752144 BLAKE2B bbfde361f8da376f228720de00a3f6c2b42051e53580f650ad5621086cbf4828a289d86815ac1143720d80f230a851c9602bf198a32e457c1a0f7767790968ee SHA512 0789bf65fc2609f84a9c2865bc8e12f8c63fdd138eff02af1b24ba2c0e925d8c0ecfbe57515786e91531d918ef1a0d92fd5becb553682eafdcedd7678ddacb9e DIST arrow-testing-d2a13712303498963395318a4eb42872e66aead7.tar.gz 3572581 BLAKE2B 58e0e0a887efb9f68b9cccc37b946352eb382fe6f621c0778992ec3e1d10cdd5de89674f8282ceb90d0fcef5825b24ff3d0043806c6e353be9df6d1566699d2d SHA512 e6b76e4ab34744bc804ecfe5baba3e1f483c874f883cc44e8e2504a718b847cb05f0c7559e40a446deab99da20d1f9bbfe03d553ee2bb5543bef889c2b555259 DIST arrow-testing-fbf6b703dc93d17d75fa3664c5aa2c7873ebaf06.tar.gz 3588150 BLAKE2B ff6ec978fa330620b2004bddeb66595c34a9d3d1d5a19a88e28f085ff60e6356a3adb9552e456b8befeff12487c64ac2d0585c48ba1d9ae195c7cb0d5ff7b01c SHA512 cbfb6e4062914030ee6ec42e37128d788b1983e49cedcda670984191a558f7981736d19b848724d346608088000c20de3e6e31e9a8acadfa9931d5f1217f9c92 diff --git a/dev-libs/apache-arrow/apache-arrow-23.0.1.ebuild b/dev-libs/apache-arrow/apache-arrow-23.0.1.ebuild new file mode 100644 index 000000000000..42314a692158 --- /dev/null +++ b/dev-libs/apache-arrow/apache-arrow-23.0.1.ebuild @@ -0,0 +1,132 @@ +# Copyright 2023-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +# Note: upstream meson port is incomplete. +# https://github.com/apache/arrow/issues/45778 +inherit cmake + +# arrow.git: testing +ARROW_DATA_GIT_HASH=725fd4a4b12d01c53c98e80274c0b23aa8397082 +# arrow.git: cpp/submodules/parquet-testing +PARQUET_DATA_GIT_HASH=a3d96a65e11e2bbca7d22a894e8313ede90a33a3 + +DESCRIPTION="A cross-language development platform for in-memory data" +HOMEPAGE=" + https://arrow.apache.org/ + https://github.com/apache/arrow/ +" +SRC_URI=" + mirror://apache/arrow/arrow-${PV}/${P}.tar.gz + test? ( + https://github.com/apache/parquet-testing/archive/${PARQUET_DATA_GIT_HASH}.tar.gz + -> parquet-testing-${PARQUET_DATA_GIT_HASH}.tar.gz + https://github.com/apache/arrow-testing/archive/${ARROW_DATA_GIT_HASH}.tar.gz + -> arrow-testing-${ARROW_DATA_GIT_HASH}.tar.gz + ) +" +S="${WORKDIR}/${P}/cpp" + +LICENSE="Apache-2.0" +SLOT="0/$(ver_cut 1)" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~riscv ~s390 ~x86" +IUSE=" + +brotli bzip2 +compute +dataset +json lz4 +parquet +re2 +snappy ssl + test zlib zstd +" +REQUIRED_USE=" + test? ( + json + parquet? ( zstd ) + ) + ssl? ( json ) +" +RESTRICT="!test? ( test )" + +RDEPEND=" + brotli? ( app-arch/brotli:= ) + bzip2? ( app-arch/bzip2:= ) + compute? ( dev-libs/libutf8proc:= ) + dataset? ( + dev-libs/libutf8proc:= + ) + elibc_musl? ( sys-libs/timezone-data ) + lz4? ( app-arch/lz4:= ) + parquet? ( + dev-libs/libutf8proc:= + dev-libs/thrift:= + ssl? ( dev-libs/openssl:= ) + ) + re2? ( dev-libs/re2:= ) + snappy? ( app-arch/snappy:= ) + zlib? ( virtual/zlib:= ) + zstd? ( app-arch/zstd:= ) +" +DEPEND=" + ${RDEPEND} + dev-cpp/xsimd + >=dev-libs/boost-1.81.0 + json? ( dev-libs/rapidjson ) + test? ( + dev-cpp/gflags + dev-cpp/gtest + ) +" + +src_prepare() { + # use Gentoo CXXFLAGS, specify docdir at src_configure. + sed -i \ + -e '/SetupCxxFlags/d' \ + -e '/set(ARROW_DOC_DIR.*)/d' \ + CMakeLists.txt \ + || die + cmake_src_prepare +} + +src_configure() { + local mycmakeargs=( + -DARROW_BUILD_STATIC=OFF + -DARROW_BUILD_TESTS=$(usex test ON OFF) + -DARROW_COMPUTE=$(usex compute ON OFF) + -DARROW_CSV=ON + -DARROW_DATASET=$(usex dataset ON OFF) + -DARROW_DEPENDENCY_SOURCE=SYSTEM + -DARROW_DEPENDENCY_USE_SHARED=ON + -DARROW_DOC_DIR=share/doc/${PF} + -DARROW_FILESYSTEM=ON + -DARROW_HDFS=ON + -DARROW_JEMALLOC=OFF + -DARROW_JSON=$(usex json ON OFF) + -DARROW_MIMALLOC=OFF + -DARROW_PARQUET=$(usex parquet ON OFF) + -DPARQUET_REQUIRE_ENCRYPTION=$(usex ssl ON OFF) + -DARROW_USE_CCACHE=OFF + -DARROW_USE_SCCACHE=OFF + -DARROW_WITH_BROTLI=$(usex brotli ON OFF) + -DARROW_WITH_BZ2=$(usex bzip2 ON OFF) + -DARROW_WITH_LZ4=$(usex lz4 ON OFF) + -DARROW_WITH_RE2=$(usex re2 ON OFF) + -DARROW_WITH_SNAPPY=$(usex snappy ON OFF) + -DARROW_WITH_ZLIB=$(usex zlib ON OFF) + -DARROW_WITH_ZSTD=$(usex zstd ON OFF) + -DCMAKE_CXX_STANDARD=20 + ) + cmake_src_configure +} + +src_test() { + local -x PARQUET_TEST_DATA="${WORKDIR}/parquet-testing-${PARQUET_DATA_GIT_HASH}/data" + local -x ARROW_TEST_DATA="${WORKDIR}/arrow-testing-${ARROW_DATA_GIT_HASH}/data" + cmake_src_test +} + +src_install() { + cmake_src_install + if use test; then + cd "${D}"/usr/$(get_libdir) || die + rm -r cmake/ArrowTesting || die + rm libarrow_testing* || die + rm pkgconfig/arrow-testing.pc || die + fi +} diff --git a/dev-libs/apache-arrow/apache-arrow-9999.ebuild b/dev-libs/apache-arrow/apache-arrow-9999.ebuild index fe180998e542..5635d3623819 100644 --- a/dev-libs/apache-arrow/apache-arrow-9999.ebuild +++ b/dev-libs/apache-arrow/apache-arrow-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 2023-2025 Gentoo Authors +# Copyright 2023-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -97,7 +97,7 @@ src_configure() { -DARROW_WITH_SNAPPY=$(usex snappy ON OFF) -DARROW_WITH_ZLIB=$(usex zlib ON OFF) -DARROW_WITH_ZSTD=$(usex zstd ON OFF) - -DCMAKE_CXX_STANDARD=17 + -DCMAKE_CXX_STANDARD=20 ) cmake_src_configure } diff --git a/dev-libs/elfutils/elfutils-0.193-r1.ebuild b/dev-libs/elfutils/elfutils-0.193-r1.ebuild index af128279f7b6..6b7ee7cfe364 100644 --- a/dev-libs/elfutils/elfutils-0.193-r1.ebuild +++ b/dev-libs/elfutils/elfutils-0.193-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 2003-2025 Gentoo Authors +# Copyright 2003-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -28,7 +28,7 @@ fi LICENSE="|| ( GPL-2+ LGPL-3+ ) utils? ( GPL-3+ )" SLOT="0" -IUSE="bzip2 debuginfod +lzma nls static-libs stacktrace test +utils valgrind zstd" +IUSE="bzip2 +debuginfod +lzma nls static-libs stacktrace test +utils valgrind zstd" RESTRICT="!test? ( test )" RDEPEND=" diff --git a/dev-libs/elfutils/elfutils-0.194.ebuild b/dev-libs/elfutils/elfutils-0.194.ebuild index 6f34b7612896..dcb73bf5449a 100644 --- a/dev-libs/elfutils/elfutils-0.194.ebuild +++ b/dev-libs/elfutils/elfutils-0.194.ebuild @@ -1,4 +1,4 @@ -# Copyright 2003-2025 Gentoo Authors +# Copyright 2003-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -21,14 +21,14 @@ else SRC_URI="https://sourceware.org/elfutils/ftp/${PV}/${P}.tar.bz2" SRC_URI+=" verify-sig? ( https://sourceware.org/elfutils/ftp/${PV}/${P}.tar.bz2.sig )" - KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86" + KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86" BDEPEND="verify-sig? ( >=sec-keys/openpgp-keys-elfutils-20240301 )" fi LICENSE="|| ( GPL-2+ LGPL-3+ ) utils? ( GPL-3+ )" SLOT="0" -IUSE="bzip2 debuginfod libarchive +lzma nls static-libs stacktrace test +utils valgrind zstd" +IUSE="bzip2 +debuginfod +libarchive +lzma nls static-libs stacktrace test +utils valgrind zstd" RESTRICT="!test? ( test )" REQUIRED_USE="debuginfod? ( libarchive )" @@ -109,7 +109,8 @@ multilib_src_configure() { local myeconfargs=( $(use_enable nls) $(multilib_native_use_enable debuginfod) - # Could do dummy if needed? + # Could do dummy if needed? We could also split libdebuginfod + # (client support) into its own USE if required. $(use_enable debuginfod libdebuginfod) $(multilib_native_use_enable stacktrace) $(use_enable valgrind valgrind-annotations) diff --git a/dev-libs/elfutils/elfutils-9999.ebuild b/dev-libs/elfutils/elfutils-9999.ebuild index 1aa4e2bbb7d5..0a0a771b81b2 100644 --- a/dev-libs/elfutils/elfutils-9999.ebuild +++ b/dev-libs/elfutils/elfutils-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 2003-2025 Gentoo Authors +# Copyright 2003-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -28,7 +28,7 @@ fi LICENSE="|| ( GPL-2+ LGPL-3+ ) utils? ( GPL-3+ )" SLOT="0" -IUSE="bzip2 debuginfod libarchive +lzma nls static-libs stacktrace test +utils valgrind zstd" +IUSE="bzip2 +debuginfod +libarchive +lzma nls static-libs stacktrace test +utils valgrind zstd" RESTRICT="!test? ( test )" REQUIRED_USE="debuginfod? ( libarchive )" @@ -108,7 +108,8 @@ multilib_src_configure() { local myeconfargs=( $(use_enable nls) $(multilib_native_use_enable debuginfod) - # Could do dummy if needed? + # Could do dummy if needed? We could also split libdebuginfod + # (client support) into its own USE if required. $(use_enable debuginfod libdebuginfod) $(multilib_native_use_enable stacktrace) $(use_enable valgrind valgrind-annotations) diff --git a/dev-libs/girara/girara-9999.ebuild b/dev-libs/girara/girara-9999.ebuild index 4bd9a026ab01..6e03fffc528f 100644 --- a/dev-libs/girara/girara-9999.ebuild +++ b/dev-libs/girara/girara-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -26,7 +26,6 @@ RESTRICT="!test? ( test )" RDEPEND=" app-accessibility/at-spi2-core >=dev-libs/glib-2.72:2 - dev-libs/json-glib:= media-libs/harfbuzz:= x11-libs/cairo[glib] x11-libs/gdk-pixbuf @@ -55,7 +54,6 @@ src_configure() { use X || append-flags -DGENTOO_GTK_HIDE_X11 local emesonargs=( - -Djson=enabled $(meson_feature doc docs) $(meson_feature test tests) ) diff --git a/dev-libs/kdsingleapplication/kdsingleapplication-1.2.0.ebuild b/dev-libs/kdsingleapplication/kdsingleapplication-1.2.0-r1.ebuild index cac825686105..1f4357d58c50 100644 --- a/dev-libs/kdsingleapplication/kdsingleapplication-1.2.0.ebuild +++ b/dev-libs/kdsingleapplication/kdsingleapplication-1.2.0-r1.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/KDAB/KDSingleApplication/releases/download/v${PV}/kd S="${WORKDIR}"/KDSingleApplication-${PV} LICENSE="BSD MIT" -SLOT="0" +SLOT="0/$(ver_cut 1-2)" # ${PROJECT_NAME}_SOVERSION KEYWORDS="amd64 ~arm64 ~ppc64 x86" IUSE="doc examples test" diff --git a/dev-libs/quazip/quazip-1.5.ebuild b/dev-libs/quazip/quazip-1.5.ebuild index cf173055537e..89d1aa6485ec 100644 --- a/dev-libs/quazip/quazip-1.5.ebuild +++ b/dev-libs/quazip/quazip-1.5.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -12,7 +12,7 @@ SRC_URI="https://github.com/stachenov/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz LICENSE="LGPL-2.1-with-linking-exception" # SONAME of libquazip1-qt6.so, check QUAZIP_LIB_SOVERSION in CMakeLists.txt SLOT="0/1.5" -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~x86" +KEYWORDS="~amd64 ~arm arm64 ~hppa ~ppc ~ppc64 ~riscv ~x86" IUSE="bzip2 test" RESTRICT="!test? ( test )" diff --git a/dev-ml/dune-build-info/Manifest b/dev-ml/dune-build-info/Manifest index 7c99ecdf7923..ae47bdca6b5e 100644 --- a/dev-ml/dune-build-info/Manifest +++ b/dev-ml/dune-build-info/Manifest @@ -1,5 +1,5 @@ DIST dune-3.16.0.tar.gz 2999701 BLAKE2B 5e371fa1003cec31273aeeb1a830036f48d3734588bd7a980b57aaae30d4984a34dec6f9be0ee9985c72dee08c2c6d456a789eab83cfce42c142a3abc6951b2e SHA512 3b1d041907128b6598e0f6150fe300a4a69098822f823ceead63b46e1005a21485738c6fa92641dd940c9f9cde48ae141ea51959a9b250bee3cbeb06ba788e23 -DIST dune-3.16.1.tar.gz 3000392 BLAKE2B 93de09c47fda95e1d83f10c9a4e7cfb7f801c7c4e47acbed7a20ef614ff3a6585d8a25b8617c8ee45d338006a99084d096990d1e8c3cbeb6613caa7f0e1a70b5 SHA512 18e8022c5fa276e06f788cf25a4d6d08e3247c546cd69a5206d4e78ece1f47a615c6d5842e68e1fa7908cae7ae8c6e4f31d2eb835d97b5e6b5e4154957139e9f DIST dune-3.18.1.tar.gz 2918737 BLAKE2B 38731cdc61d2944f27487e844c554d0085e9a1787e9ebe7fb92e53d74df6e5919aaefe361c171e129451c7a57b95efe2cc066c1e087bf4a082ca34f6b5a100de SHA512 e9f188360f680bd4a2dad50a11f71e40aec42247f2eff2ac8f3071e6500620c1e631377e675f6b336c2ee9420d665885ce3509b7285bcef306521ba9b49c5208 DIST dune-3.19.1.tar.gz 2917826 BLAKE2B 588a7d2195169ed1210a7126bd06cfdea4fa0e7735f23c346314c3cbbea1e76ec1286f1b56b337a151fc3246343c001794bde6a9eb85a4a05c6a1537ae2ae8bb SHA512 a101cad5d159a7134bd38d25968ea24189485b12f517e746c5b4c367a8d6ca0959ea59a71dc8c939e5d28a6ae644de9b3c12582579c044e3a081373ac680beb6 DIST dune-3.20.2.tar.gz 3051854 BLAKE2B ce0ff1b7503d0b3bc72fc9c7e1c167c33cf071257066117c16ad24d2d2aeb9c3a84dccd2e24132eb3a95c6f0ee254810e8b1a9f39e8dc81752a97948be8438c3 SHA512 efb4376e03a3e760ee230c22ba8ac788623382437d9e3551fdd6bacdca1c6aa2db90246feb011d3d0e7ba3afa47161ebd06c80cfb24e357a82f7764bf003e355 +DIST dune-3.21.1.tar.gz 3431470 BLAKE2B cb0a155fff9e4c81438f31770856ab4a7107d78f5cca128aa675bb11ff62c66d4cffb4fb22e4a4f9eda8e9ec088cbf827b66a6511bd179a427bf16778cd42a0c SHA512 a304fc6bb854c3a1d5b86b3d3a942e140387ae82e52be240289ef89413d6e6017bc6869363aba3898d6a6be1cb31f4fe8b9264c735c87a1e18cad82a26054acb diff --git a/dev-ml/dune-build-info/dune-build-info-3.16.1.ebuild b/dev-ml/dune-build-info/dune-build-info-3.19.1-r1.ebuild index ca20151c926a..0999e52de171 100644 --- a/dev-ml/dune-build-info/dune-build-info-3.16.1.ebuild +++ b/dev-ml/dune-build-info/dune-build-info-3.19.1-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -16,7 +16,7 @@ KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86" IUSE="+ocamlopt" RESTRICT="test" -RDEPEND=">=dev-ml/dune-3.12" +RDEPEND=">=dev-ml/dune-3.18" DEPEND="${RDEPEND}" src_configure() { diff --git a/dev-ml/dune-build-info/dune-build-info-3.19.1.ebuild b/dev-ml/dune-build-info/dune-build-info-3.21.1.ebuild index ca20151c926a..8ef9aa2d1f78 100644 --- a/dev-ml/dune-build-info/dune-build-info-3.19.1.ebuild +++ b/dev-ml/dune-build-info/dune-build-info-3.21.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -16,7 +16,7 @@ KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86" IUSE="+ocamlopt" RESTRICT="test" -RDEPEND=">=dev-ml/dune-3.12" +RDEPEND=">=dev-ml/dune-3.21" DEPEND="${RDEPEND}" src_configure() { diff --git a/dev-ml/dune-configurator/Manifest b/dev-ml/dune-configurator/Manifest index bcb06dcc7dfa..06591ddd37b7 100644 --- a/dev-ml/dune-configurator/Manifest +++ b/dev-ml/dune-configurator/Manifest @@ -4,3 +4,4 @@ DIST dune-3.17.1.tar.gz 3011472 BLAKE2B 5bb6b33cf0961ab6e9276408b40498bf296327bd DIST dune-3.18.1.tar.gz 2918737 BLAKE2B 38731cdc61d2944f27487e844c554d0085e9a1787e9ebe7fb92e53d74df6e5919aaefe361c171e129451c7a57b95efe2cc066c1e087bf4a082ca34f6b5a100de SHA512 e9f188360f680bd4a2dad50a11f71e40aec42247f2eff2ac8f3071e6500620c1e631377e675f6b336c2ee9420d665885ce3509b7285bcef306521ba9b49c5208 DIST dune-3.19.1.tar.gz 2917826 BLAKE2B 588a7d2195169ed1210a7126bd06cfdea4fa0e7735f23c346314c3cbbea1e76ec1286f1b56b337a151fc3246343c001794bde6a9eb85a4a05c6a1537ae2ae8bb SHA512 a101cad5d159a7134bd38d25968ea24189485b12f517e746c5b4c367a8d6ca0959ea59a71dc8c939e5d28a6ae644de9b3c12582579c044e3a081373ac680beb6 DIST dune-3.20.2.tar.gz 3051854 BLAKE2B ce0ff1b7503d0b3bc72fc9c7e1c167c33cf071257066117c16ad24d2d2aeb9c3a84dccd2e24132eb3a95c6f0ee254810e8b1a9f39e8dc81752a97948be8438c3 SHA512 efb4376e03a3e760ee230c22ba8ac788623382437d9e3551fdd6bacdca1c6aa2db90246feb011d3d0e7ba3afa47161ebd06c80cfb24e357a82f7764bf003e355 +DIST dune-3.21.1.tar.gz 3431470 BLAKE2B cb0a155fff9e4c81438f31770856ab4a7107d78f5cca128aa675bb11ff62c66d4cffb4fb22e4a4f9eda8e9ec088cbf827b66a6511bd179a427bf16778cd42a0c SHA512 a304fc6bb854c3a1d5b86b3d3a942e140387ae82e52be240289ef89413d6e6017bc6869363aba3898d6a6be1cb31f4fe8b9264c735c87a1e18cad82a26054acb diff --git a/dev-ml/dune-configurator/dune-configurator-3.19.1.ebuild b/dev-ml/dune-configurator/dune-configurator-3.19.1-r1.ebuild index 665f4766bfc7..66643cbae872 100644 --- a/dev-ml/dune-configurator/dune-configurator-3.19.1.ebuild +++ b/dev-ml/dune-configurator/dune-configurator-3.19.1-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -16,7 +16,7 @@ KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" IUSE="+ocamlopt" RESTRICT="test" -BDEPEND=">=dev-ml/dune-3.12" +BDEPEND=">=dev-ml/dune-3.18" DEPEND=" >=dev-ml/csexp-1.5:=[ocamlopt?] " diff --git a/dev-ml/dune-configurator/dune-configurator-3.21.1.ebuild b/dev-ml/dune-configurator/dune-configurator-3.21.1.ebuild new file mode 100644 index 000000000000..ad5151d2c728 --- /dev/null +++ b/dev-ml/dune-configurator/dune-configurator-3.21.1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit dune + +DESCRIPTION="Helper library for gathering system configuration" +HOMEPAGE="https://github.com/ocaml/dune" +SRC_URI="https://github.com/ocaml/dune/archive/${PV}.tar.gz -> dune-${PV}.tar.gz" +S="${WORKDIR}/dune-${PV}" + +LICENSE="Apache-2.0" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" +IUSE="+ocamlopt" +RESTRICT="test" + +BDEPEND=">=dev-ml/dune-3.21" +DEPEND=" + >=dev-ml/csexp-1.5:=[ocamlopt?] +" +RDEPEND="${DEPEND}" + +src_configure() { + : +} + +src_compile() { + dune-compile ${PN} +} diff --git a/dev-ml/dune-private-libs/dune-private-libs-3.19.0.ebuild b/dev-ml/dune-private-libs/dune-private-libs-3.19.0-r1.ebuild index 1e5ff0688ab4..fcd790a93769 100644 --- a/dev-ml/dune-private-libs/dune-private-libs-3.19.0.ebuild +++ b/dev-ml/dune-private-libs/dune-private-libs-3.19.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -17,7 +17,7 @@ KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" IUSE="+ocamlopt" RESTRICT="test" -BDEPEND=">=dev-ml/dune-3.12" +BDEPEND=">=dev-ml/dune-3.18" DEPEND=" dev-ml/csexp:=[ocamlopt?] " diff --git a/dev-ml/dune-site/Manifest b/dev-ml/dune-site/Manifest index 7c99ecdf7923..1d799a4e8f37 100644 --- a/dev-ml/dune-site/Manifest +++ b/dev-ml/dune-site/Manifest @@ -3,3 +3,4 @@ DIST dune-3.16.1.tar.gz 3000392 BLAKE2B 93de09c47fda95e1d83f10c9a4e7cfb7f801c7c4 DIST dune-3.18.1.tar.gz 2918737 BLAKE2B 38731cdc61d2944f27487e844c554d0085e9a1787e9ebe7fb92e53d74df6e5919aaefe361c171e129451c7a57b95efe2cc066c1e087bf4a082ca34f6b5a100de SHA512 e9f188360f680bd4a2dad50a11f71e40aec42247f2eff2ac8f3071e6500620c1e631377e675f6b336c2ee9420d665885ce3509b7285bcef306521ba9b49c5208 DIST dune-3.19.1.tar.gz 2917826 BLAKE2B 588a7d2195169ed1210a7126bd06cfdea4fa0e7735f23c346314c3cbbea1e76ec1286f1b56b337a151fc3246343c001794bde6a9eb85a4a05c6a1537ae2ae8bb SHA512 a101cad5d159a7134bd38d25968ea24189485b12f517e746c5b4c367a8d6ca0959ea59a71dc8c939e5d28a6ae644de9b3c12582579c044e3a081373ac680beb6 DIST dune-3.20.2.tar.gz 3051854 BLAKE2B ce0ff1b7503d0b3bc72fc9c7e1c167c33cf071257066117c16ad24d2d2aeb9c3a84dccd2e24132eb3a95c6f0ee254810e8b1a9f39e8dc81752a97948be8438c3 SHA512 efb4376e03a3e760ee230c22ba8ac788623382437d9e3551fdd6bacdca1c6aa2db90246feb011d3d0e7ba3afa47161ebd06c80cfb24e357a82f7764bf003e355 +DIST dune-3.21.1.tar.gz 3431470 BLAKE2B cb0a155fff9e4c81438f31770856ab4a7107d78f5cca128aa675bb11ff62c66d4cffb4fb22e4a4f9eda8e9ec088cbf827b66a6511bd179a427bf16778cd42a0c SHA512 a304fc6bb854c3a1d5b86b3d3a942e140387ae82e52be240289ef89413d6e6017bc6869363aba3898d6a6be1cb31f4fe8b9264c735c87a1e18cad82a26054acb diff --git a/dev-ml/dune-site/dune-site-3.19.1.ebuild b/dev-ml/dune-site/dune-site-3.19.1-r1.ebuild index c0c6ea5a5456..d5b7a869fdb0 100644 --- a/dev-ml/dune-site/dune-site-3.19.1.ebuild +++ b/dev-ml/dune-site/dune-site-3.19.1-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -18,7 +18,7 @@ IUSE="+ocamlopt" RESTRICT="test" RDEPEND=" - >=dev-ml/dune-3.12 + >=dev-ml/dune-3.18 dev-ml/csexp:=[ocamlopt?] !dev-ml/dune-private-libs !dev-ml/stdune diff --git a/dev-ml/dune-site/dune-site-3.21.1.ebuild b/dev-ml/dune-site/dune-site-3.21.1.ebuild new file mode 100644 index 000000000000..9d632b2ca897 --- /dev/null +++ b/dev-ml/dune-site/dune-site-3.21.1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit dune + +DESCRIPTION="Embed locations informations inside executable and libraries" +HOMEPAGE="https://github.com/ocaml/dune" +SRC_URI="https://github.com/ocaml/dune/archive/${PV}.tar.gz + -> dune-${PV}.tar.gz" +S="${WORKDIR}/dune-${PV}" + +LICENSE="MIT" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +IUSE="+ocamlopt" +RESTRICT="test" + +RDEPEND=" + >=dev-ml/dune-3.21 + dev-ml/csexp:=[ocamlopt?] + !dev-ml/dune-private-libs + !dev-ml/stdune + !dev-ml/dyn + !dev-ml/ordering +" +DEPEND="${RDEPEND}" + +src_configure() { + : +} + +src_compile() { + dune-compile ordering dyn fs-io top-closure stdune dune-private-libs ${PN} +} + +src_install() { + dune-install ordering dyn fs-io top-closure stdune dune-private-libs ${PN} +} diff --git a/dev-ml/dune/Manifest b/dev-ml/dune/Manifest index 03b1151a2bf9..e431a806556e 100644 --- a/dev-ml/dune/Manifest +++ b/dev-ml/dune/Manifest @@ -3,3 +3,4 @@ DIST dune-3.17.2.tar.gz 3015019 BLAKE2B 8b79e0f6d878722529c21069de7975642351e9db DIST dune-3.18.1.tar.gz 2918737 BLAKE2B 38731cdc61d2944f27487e844c554d0085e9a1787e9ebe7fb92e53d74df6e5919aaefe361c171e129451c7a57b95efe2cc066c1e087bf4a082ca34f6b5a100de SHA512 e9f188360f680bd4a2dad50a11f71e40aec42247f2eff2ac8f3071e6500620c1e631377e675f6b336c2ee9420d665885ce3509b7285bcef306521ba9b49c5208 DIST dune-3.19.1.tar.gz 2917826 BLAKE2B 588a7d2195169ed1210a7126bd06cfdea4fa0e7735f23c346314c3cbbea1e76ec1286f1b56b337a151fc3246343c001794bde6a9eb85a4a05c6a1537ae2ae8bb SHA512 a101cad5d159a7134bd38d25968ea24189485b12f517e746c5b4c367a8d6ca0959ea59a71dc8c939e5d28a6ae644de9b3c12582579c044e3a081373ac680beb6 DIST dune-3.20.2.tar.gz 3051854 BLAKE2B ce0ff1b7503d0b3bc72fc9c7e1c167c33cf071257066117c16ad24d2d2aeb9c3a84dccd2e24132eb3a95c6f0ee254810e8b1a9f39e8dc81752a97948be8438c3 SHA512 efb4376e03a3e760ee230c22ba8ac788623382437d9e3551fdd6bacdca1c6aa2db90246feb011d3d0e7ba3afa47161ebd06c80cfb24e357a82f7764bf003e355 +DIST dune-3.21.1.tar.gz 3431470 BLAKE2B cb0a155fff9e4c81438f31770856ab4a7107d78f5cca128aa675bb11ff62c66d4cffb4fb22e4a4f9eda8e9ec088cbf827b66a6511bd179a427bf16778cd42a0c SHA512 a304fc6bb854c3a1d5b86b3d3a942e140387ae82e52be240289ef89413d6e6017bc6869363aba3898d6a6be1cb31f4fe8b9264c735c87a1e18cad82a26054acb diff --git a/dev-ml/dune/dune-3.21.1-r1.ebuild b/dev-ml/dune/dune-3.21.1-r1.ebuild new file mode 100644 index 000000000000..8cbc964d14a3 --- /dev/null +++ b/dev-ml/dune/dune-3.21.1-r1.ebuild @@ -0,0 +1,71 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit multiprocessing elisp-common + +DESCRIPTION="A composable build system for OCaml" +HOMEPAGE="https://github.com/ocaml/dune" +SRC_URI="https://github.com/ocaml/dune/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" +IUSE="emacs" +RESTRICT="strip test" + +RDEPEND=" + dev-lang/ocaml:= + dev-ml/pp:= + emacs? ( >=app-editors/emacs-23.1:* ) +" +DEPEND="${RDEPEND}" + +QA_FLAGS_IGNORED="usr/bin/dune" + +BYTECOMPFLAGS="-L ${S}/editor-integration/emacs" +SITEFILE="50${PN}-gentoo.el" + +src_prepare() { + default + + # This allows `dune --version` to output the correct version + # instead of "n/a" + sed -i "/^(name dune)/a (version ${PV})" dune-project || die +} + +src_configure() { + ./configure \ + --libdir="$(ocamlc -where)" \ + --mandir=/usr/share/man \ + --docdir=/usr/share/doc \ + --etcdir=/etc \ + --datadir=/usr/share \ + --sbindir=/usr/sbin \ + --bindir=/usr/bin \ + || die +} + +src_compile() { + ocaml boot/bootstrap.ml -j $(makeopts_jobs) --verbose || die + ./_boot/dune.exe build @install -p "${PN}" --profile dune-bootstrap \ + -j $(makeopts_jobs) --display short || die + + use emacs && elisp-compile editor-integration/emacs/*.el +} + +src_install() { + # OCaml generates textrels on 32-bit arches + if use arm || use ppc || use x86 ; then + export QA_TEXTRELS='.*' + fi + default + + mv "${ED}"/usr/share/doc/dune "${ED}"/usr/share/doc/${PF} || die + + if use emacs ; then + elisp-install ${PN} editor-integration/emacs/*.el{,c} + elisp-site-file-install "${FILESDIR}/${SITEFILE}" + fi +} diff --git a/dev-ml/ppxlib_jane/Manifest b/dev-ml/ppxlib_jane/Manifest index 528f7a609471..8bc2383c7ce0 100644 --- a/dev-ml/ppxlib_jane/Manifest +++ b/dev-ml/ppxlib_jane/Manifest @@ -1,3 +1,2 @@ -DIST ppxlib_jane-0.17.0.tar.gz 46439 BLAKE2B 97b8040571e0641ebc6a67d9ee394cba2388be0993eac5f8255b3358225533d7813ad7a9fd7af8f87007348badfb7a51a73af44365c87c1a70b0c74b8401e71c SHA512 0907a5c9dfce17dab6df86bc8b04b20c1f809c45a89e947c1da57092851489c618c741aabb853fdc6ca48f4737a74ee2a8c8fc1abfbd85939fd003991adccc09 DIST ppxlib_jane-0.17.2.tar.gz 46492 BLAKE2B 6bad78b03c1769d21f62acbf1c88e1a1e41db11bb942b8286d0ea195f3b6272f64203572d151b7a6b13d916a0a79ffa7a51bd2bec3fca31f6c3dad9ee827a628 SHA512 342e034d44d14958869e643befb0e749d4de3ca0040891ab51592e2583bc5bb827bdaa5bd06966ac536151d160997aef79baa090247d1649a6b5849a359744d8 DIST ppxlib_jane-0.17.4.tar.gz 42650 BLAKE2B 67da586b173350032d322aef8b1823b22a98a89cc8917c5e6d577af46b57cd869b5f2d4d9354762b73c374a190706555507e82a2ff465aa05cd8cc0da028cf40 SHA512 e2931de633d9dcce2ca121e1cf117e159af4ccc52a7e420c328021da0145b6b90194e4545f97afe9cd032c04c6bc2563faa2d852ad45b041b014c688153799d6 diff --git a/dev-ml/ppxlib_jane/ppxlib_jane-0.17.0-r1.ebuild b/dev-ml/ppxlib_jane/ppxlib_jane-0.17.0-r1.ebuild deleted file mode 100644 index 07f03db970a3..000000000000 --- a/dev-ml/ppxlib_jane/ppxlib_jane-0.17.0-r1.ebuild +++ /dev/null @@ -1,25 +0,0 @@ -# Copyright 2024-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit dune - -DESCRIPTION="Utilities for working with Jane Street AST constructs" -HOMEPAGE="https://github.com/janestreet/ppxlib_jane" -SRC_URI="https://github.com/janestreet/${PN}/archive/refs/tags/v${PV}.tar.gz - -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0/$(ver_cut 1-2)" -KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64" -IUSE="+ocamlopt" - -RDEPEND=" - >=dev-lang/ocaml-5 - <dev-lang/ocaml-5.3 - dev-ml/stdlib-shims:=[ocamlopt?] - >=dev-ml/ppxlib-0.32.1:=[ocamlopt?] -" -DEPEND="${RDEPEND}" -BDEPEND=">=dev-ml/dune-3.11" diff --git a/dev-ml/ppxlib_jane/ppxlib_jane-0.17.2-r1.ebuild b/dev-ml/ppxlib_jane/ppxlib_jane-0.17.2-r2.ebuild index 977bf3df34e3..1882f418e512 100644 --- a/dev-ml/ppxlib_jane/ppxlib_jane-0.17.2-r1.ebuild +++ b/dev-ml/ppxlib_jane/ppxlib_jane-0.17.2-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 2024-2025 Gentoo Authors +# Copyright 2024-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -22,4 +22,3 @@ RDEPEND=" <dev-ml/ppxlib-0.36.0 " DEPEND="${RDEPEND}" -BDEPEND=">=dev-ml/dune-3.11" diff --git a/dev-ml/ppxlib_jane/ppxlib_jane-0.17.4.ebuild b/dev-ml/ppxlib_jane/ppxlib_jane-0.17.4-r1.ebuild index a585063f2b6b..e3600ccbef0f 100644 --- a/dev-ml/ppxlib_jane/ppxlib_jane-0.17.4.ebuild +++ b/dev-ml/ppxlib_jane/ppxlib_jane-0.17.4-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 2024-2025 Gentoo Authors +# Copyright 2024-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -21,4 +21,3 @@ RDEPEND=" >=dev-ml/ppxlib-0.36.0:=[ocamlopt?] " DEPEND="${RDEPEND}" -BDEPEND=">=dev-ml/dune-3.11" diff --git a/dev-ml/record_builder/record_builder-0.17.0-r1.ebuild b/dev-ml/record_builder/record_builder-0.17.0-r2.ebuild index b02b132bf480..92c8d4aebed9 100644 --- a/dev-ml/record_builder/record_builder-0.17.0-r1.ebuild +++ b/dev-ml/record_builder/record_builder-0.17.0-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 2025 Gentoo Authors +# Copyright 2025-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -23,4 +23,3 @@ RDEPEND=" =dev-ml/ppx_jane-${JSM}*:=[ocamlopt] " DEPEND="${RDEPEND}" -BDEPEND=">=dev-ml/dune-3.11" diff --git a/dev-ml/sexp_pretty/sexp_pretty-0.17.0-r1.ebuild b/dev-ml/sexp_pretty/sexp_pretty-0.17.0-r2.ebuild index f4c53e37cedd..4e4cf5bbafcf 100644 --- a/dev-ml/sexp_pretty/sexp_pretty-0.17.0-r1.ebuild +++ b/dev-ml/sexp_pretty/sexp_pretty-0.17.0-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 2023-2025 Gentoo Authors +# Copyright 2023-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -26,4 +26,3 @@ RDEPEND=" dev-ml/re:=[ocamlopt?] " DEPEND="${RDEPEND}" -BDEPEND=">=dev-ml/dune-3.11" diff --git a/dev-ml/sexplib/sexplib-0.17.0.ebuild b/dev-ml/sexplib/sexplib-0.17.0-r1.ebuild index 3ead022724f6..97298e5639a2 100644 --- a/dev-ml/sexplib/sexplib-0.17.0.ebuild +++ b/dev-ml/sexplib/sexplib-0.17.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -21,4 +21,3 @@ RDEPEND=" dev-ml/num:=[ocamlopt?] " DEPEND="${RDEPEND}" -BDEPEND=">=dev-ml/dune-3.11" diff --git a/dev-ml/sexplib0/sexplib0-0.17.0-r1.ebuild b/dev-ml/sexplib0/sexplib0-0.17.0-r2.ebuild index 8ed62f9c1d0a..4c1150459300 100644 --- a/dev-ml/sexplib0/sexplib0-0.17.0-r1.ebuild +++ b/dev-ml/sexplib0/sexplib0-0.17.0-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -14,8 +14,3 @@ LICENSE="Apache-2.0" SLOT="0/$(ver_cut 1-2)" KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" IUSE="+ocamlopt" - -BDEPEND=" - >=dev-ml/dune-3.11 - >=dev-lang/ocaml-4.12 -" diff --git a/dev-ml/splittable_random/splittable_random-0.17.0-r1.ebuild b/dev-ml/splittable_random/splittable_random-0.17.0-r2.ebuild index bd404a5a6af7..57e8383f12e6 100644 --- a/dev-ml/splittable_random/splittable_random-0.17.0-r1.ebuild +++ b/dev-ml/splittable_random/splittable_random-0.17.0-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -26,4 +26,3 @@ RDEPEND=" =dev-ml/ppx_sexp_message-${JSM}*:=[ocamlopt?] " DEPEND="${RDEPEND}" -BDEPEND=">=dev-ml/dune-3.11" diff --git a/dev-ml/stdio/stdio-0.17.0-r1.ebuild b/dev-ml/stdio/stdio-0.17.0-r2.ebuild index f48793d7d361..4bc58541a64d 100644 --- a/dev-ml/stdio/stdio-0.17.0-r1.ebuild +++ b/dev-ml/stdio/stdio-0.17.0-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -22,4 +22,3 @@ RDEPEND=" =dev-ml/base-${JSM}*:=[ocamlopt?] " DEPEND="${RDEPEND}" -BDEPEND=">=dev-ml/dune-3.11" diff --git a/dev-ml/textutils/textutils-0.17.0.ebuild b/dev-ml/textutils/textutils-0.17.0-r1.ebuild index 68031d823726..32b993c6e4de 100644 --- a/dev-ml/textutils/textutils-0.17.0.ebuild +++ b/dev-ml/textutils/textutils-0.17.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -23,4 +23,3 @@ RDEPEND=" >=dev-ml/uutf-1.0.2:=[ocamlopt?] " DEPEND="${RDEPEND}" -BDEPEND=">=dev-ml/dune-3.11" diff --git a/dev-ml/textutils_kernel/textutils_kernel-0.17.0.ebuild b/dev-ml/textutils_kernel/textutils_kernel-0.17.0-r1.ebuild index 4e3ae019713d..497fdc1a261c 100644 --- a/dev-ml/textutils_kernel/textutils_kernel-0.17.0.ebuild +++ b/dev-ml/textutils_kernel/textutils_kernel-0.17.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 2022-2025 Gentoo Authors +# Copyright 2022-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -20,6 +20,5 @@ DEPEND=" dev-ml/core:${SLOT}[ocamlopt?] dev-ml/ppx_jane:${SLOT}[ocamlopt?] >=dev-ml/uutf-1.0.2:=[ocamlopt?] - >=dev-ml/dune-3.11 " RDEPEND="${DEPEND}" diff --git a/dev-ml/time_now/time_now-0.17.0-r1.ebuild b/dev-ml/time_now/time_now-0.17.0-r2.ebuild index be6aa17aee40..bbec8a37c3a0 100644 --- a/dev-ml/time_now/time_now-0.17.0-r1.ebuild +++ b/dev-ml/time_now/time_now-0.17.0-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -26,4 +26,3 @@ RDEPEND=" =dev-ml/ppx_optcomp-${JSM}*:=[ocamlopt?] " DEPEND="${RDEPEND}" -BDEPEND=">=dev-ml/dune-3.11" diff --git a/dev-ml/timezone/timezone-0.17.0.ebuild b/dev-ml/timezone/timezone-0.17.0-r1.ebuild index 8ef0e1db7183..5d6c76acf8d2 100644 --- a/dev-ml/timezone/timezone-0.17.0.ebuild +++ b/dev-ml/timezone/timezone-0.17.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -20,4 +20,3 @@ RDEPEND=" dev-ml/ppx_jane:${SLOT}[ocamlopt?] " DEPEND="${RDEPEND}" -BDEPEND=">=dev-ml/dune-3.11" diff --git a/dev-ml/typerep/typerep-0.17.1-r1.ebuild b/dev-ml/typerep/typerep-0.17.1-r2.ebuild index 6025ea8c9789..bca06a5a9a23 100644 --- a/dev-ml/typerep/typerep-0.17.1-r1.ebuild +++ b/dev-ml/typerep/typerep-0.17.1-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -22,4 +22,3 @@ RDEPEND=" =dev-ml/base-${JSM}*:=[ocamlopt?] " DEPEND="${RDEPEND}" -BDEPEND=">=dev-ml/dune-3.11" diff --git a/dev-ml/uopt/uopt-0.17.0-r1.ebuild b/dev-ml/uopt/uopt-0.17.0-r2.ebuild index d0063e7b182a..3fdc86078f13 100644 --- a/dev-ml/uopt/uopt-0.17.0-r1.ebuild +++ b/dev-ml/uopt/uopt-0.17.0-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 2024-2025 Gentoo Authors +# Copyright 2024-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -23,4 +23,3 @@ RDEPEND=" =dev-ml/ppx_jane-${JSM}*:=[ocamlopt?] " DEPEND="${RDEPEND}" -BDEPEND=">=dev-ml/dune-3.11" diff --git a/dev-ml/variantslib/variantslib-0.17.0-r1.ebuild b/dev-ml/variantslib/variantslib-0.17.0-r2.ebuild index 7c80ced14d2f..bcc0e98f8cf2 100644 --- a/dev-ml/variantslib/variantslib-0.17.0-r1.ebuild +++ b/dev-ml/variantslib/variantslib-0.17.0-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -22,4 +22,3 @@ RDEPEND=" =dev-ml/base-${JSM}*:=[ocamlopt?] " DEPEND="${RDEPEND}" -BDEPEND=">=dev-ml/dune-3.11" diff --git a/dev-ml/xdg/Manifest b/dev-ml/xdg/Manifest index 8d4a9a925982..8a7f871d795f 100644 --- a/dev-ml/xdg/Manifest +++ b/dev-ml/xdg/Manifest @@ -1,2 +1,3 @@ DIST dune-3.16.1.tar.gz 3000392 BLAKE2B 93de09c47fda95e1d83f10c9a4e7cfb7f801c7c4e47acbed7a20ef614ff3a6585d8a25b8617c8ee45d338006a99084d096990d1e8c3cbeb6613caa7f0e1a70b5 SHA512 18e8022c5fa276e06f788cf25a4d6d08e3247c546cd69a5206d4e78ece1f47a615c6d5842e68e1fa7908cae7ae8c6e4f31d2eb835d97b5e6b5e4154957139e9f DIST dune-3.20.2.tar.gz 3051854 BLAKE2B ce0ff1b7503d0b3bc72fc9c7e1c167c33cf071257066117c16ad24d2d2aeb9c3a84dccd2e24132eb3a95c6f0ee254810e8b1a9f39e8dc81752a97948be8438c3 SHA512 efb4376e03a3e760ee230c22ba8ac788623382437d9e3551fdd6bacdca1c6aa2db90246feb011d3d0e7ba3afa47161ebd06c80cfb24e357a82f7764bf003e355 +DIST dune-3.21.1.tar.gz 3431470 BLAKE2B cb0a155fff9e4c81438f31770856ab4a7107d78f5cca128aa675bb11ff62c66d4cffb4fb22e4a4f9eda8e9ec088cbf827b66a6511bd179a427bf16778cd42a0c SHA512 a304fc6bb854c3a1d5b86b3d3a942e140387ae82e52be240289ef89413d6e6017bc6869363aba3898d6a6be1cb31f4fe8b9264c735c87a1e18cad82a26054acb diff --git a/dev-ml/xdg/xdg-3.21.1.ebuild b/dev-ml/xdg/xdg-3.21.1.ebuild new file mode 100644 index 000000000000..1b772311e4cc --- /dev/null +++ b/dev-ml/xdg/xdg-3.21.1.ebuild @@ -0,0 +1,40 @@ +# Copyright 2022-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit dune + +DESCRIPTION="XDG Base Directory Specification" +HOMEPAGE="https://github.com/ocaml/dune/" + +if [[ "${PV}" == *9999* ]] ; then + inherit git-r3 + + EGIT_REPO_URI="https://github.com/ocaml/dune.git" +else + SRC_URI="https://github.com/ocaml/dune/archive/${PV}.tar.gz + -> dune-${PV}.tar.gz" + S="${WORKDIR}/dune-${PV}" + + KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" +fi + +LICENSE="Apache-2.0" +SLOT="0/${PV}" +IUSE="+ocamlopt" + +# This is a part of dune, running tests would run them for dune, not this lib. +RESTRICT="test" + +BDEPEND=" + >=dev-ml/dune-3.21 +" + +src_configure() { + : +} + +src_compile() { + dune-compile "${PN}" +} diff --git a/dev-ml/zed/Manifest b/dev-ml/zed/Manifest index 610b3f9f49bf..3c26e6689cf7 100644 --- a/dev-ml/zed/Manifest +++ b/dev-ml/zed/Manifest @@ -1,2 +1 @@ -DIST zed-3.2.2.tar.gz 44565 BLAKE2B 28a9193e119f3462545e014ee7d02af16515abc3a09bbf05ce8f9588e5d01abd892731eed5d42d7967f91ccb4bd161084773661efa0dc0fea6872e36484b1732 SHA512 cb377ff972c8ef0501a8034c53f10d26a60c7735742945d930b26a8535de2fa36ecc9538518a26f2bed8d5e61a642408c1f0886c75945b50ad6a524ed8e1193b DIST zed-3.2.3.tar.gz 44745 BLAKE2B d013d1d3341f04ec7aa141abaa175d3db9e57e3966c5a8adef7efb416e7ec3ae0800f554b0d943fa55cd8bbb6bfe069e6b5d7d23d2a38bf7f1e55f7cafe52943 SHA512 637f75129550f6459417549d44bed16bdc62721d2e9e0c6bb5bfab30c5bc6478de15faece8c091b56f238375cb79a7bc176375400e543120bb31d7ea626b7c5b diff --git a/dev-ml/zed/zed-3.2.2-r1.ebuild b/dev-ml/zed/zed-3.2.2-r1.ebuild deleted file mode 100644 index 8e32cbb4d079..000000000000 --- a/dev-ml/zed/zed-3.2.2-r1.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit dune - -DESCRIPTION="Abstract engine for text edition in OCaml" -HOMEPAGE="https://github.com/ocaml-community/zed" -SRC_URI="https://github.com/ocaml-community/zed/archive/${PV}.tar.gz - -> ${P}.tar.gz" - -LICENSE="BSD" -SLOT="0/${PV}" -KEYWORDS="~amd64 ~x86" -IUSE="+ocamlopt test" -RESTRICT="!test? ( test )" - -RDEPEND=" - >=dev-ml/dune-3 - dev-ml/react:= - dev-ml/result:= - dev-ml/uchar:= - dev-ml/uucp:= - dev-ml/uuseg:= - dev-ml/uutf:= -" -DEPEND="${RDEPEND}" -BDEPEND="test? ( - dev-ml/alcotest -)" diff --git a/dev-ml/zed/zed-3.2.3.ebuild b/dev-ml/zed/zed-3.2.3.ebuild index 8e32cbb4d079..fdfa9f51ccfd 100644 --- a/dev-ml/zed/zed-3.2.3.ebuild +++ b/dev-ml/zed/zed-3.2.3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -17,7 +17,6 @@ IUSE="+ocamlopt test" RESTRICT="!test? ( test )" RDEPEND=" - >=dev-ml/dune-3 dev-ml/react:= dev-ml/result:= dev-ml/uchar:= diff --git a/dev-python/aiosmtpd/aiosmtpd-1.4.6.ebuild b/dev-python/aiosmtpd/aiosmtpd-1.4.6.ebuild index 874f89efd84c..13456b3d89d2 100644 --- a/dev-python/aiosmtpd/aiosmtpd-1.4.6.ebuild +++ b/dev-python/aiosmtpd/aiosmtpd-1.4.6.ebuild @@ -1,4 +1,4 @@ -# Copyright 2024-2025 Gentoo Authors +# Copyright 2024-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -17,21 +17,19 @@ HOMEPAGE=" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv ~sparc x86" +KEYWORDS="amd64 arm arm64 ~loong ppc ppc64 ~riscv ~sparc x86" RDEPEND=" >=dev-python/atpublic-4.0[${PYTHON_USEDEP}] >=dev-python/attrs-23.2.0[${PYTHON_USEDEP}] " -BDEPEND=" - test? ( >=dev-python/pytest-mock-3.12.0[${PYTHON_USEDEP}] ) -" EPYTEST_DESELECT=( # Needs dev-vcs/git aiosmtpd/qa/test_0packaging.py::TestVersion ) +EPYTEST_PLUGINS=( pytest-mock ) distutils_enable_tests pytest python_prepare_all() { @@ -43,7 +41,7 @@ python_prepare_all() { python_test() { local EPYTEST_DESELECT=() case ${EPYTHON} in - python3.13) + python3.1[34]) EPYTEST_DESELECT+=( # https://github.com/aio-libs/aiosmtpd/issues/403 aiosmtpd/tests/test_server.py::TestUnthreaded::test_unixsocket @@ -51,6 +49,5 @@ python_test() { ;; esac - local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 - epytest -p pytest_mock + epytest } diff --git a/dev-python/atpublic/atpublic-6.0.2.ebuild b/dev-python/atpublic/atpublic-6.0.2.ebuild index 375375f67f60..5e8b24397d98 100644 --- a/dev-python/atpublic/atpublic-6.0.2.ebuild +++ b/dev-python/atpublic/atpublic-6.0.2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -16,7 +16,7 @@ HOMEPAGE=" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv ~sparc x86" +KEYWORDS="amd64 arm arm64 ~loong ppc ppc64 ~riscv ~sparc x86" RDEPEND=" $(python_gen_cond_dep ' diff --git a/dev-python/atpublic/atpublic-7.0.0.ebuild b/dev-python/atpublic/atpublic-7.0.0.ebuild index f5e350e656cb..62592903d5bf 100644 --- a/dev-python/atpublic/atpublic-7.0.0.ebuild +++ b/dev-python/atpublic/atpublic-7.0.0.ebuild @@ -16,7 +16,7 @@ HOMEPAGE=" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv ~sparc x86" +KEYWORDS="amd64 arm arm64 ~loong ppc ppc64 ~riscv ~sparc x86" BDEPEND=" test? ( diff --git a/dev-python/backrefs/Manifest b/dev-python/backrefs/Manifest index 5e9331cbf737..a3c7e6068363 100644 --- a/dev-python/backrefs/Manifest +++ b/dev-python/backrefs/Manifest @@ -1,3 +1,4 @@ -DIST backrefs-6.0.1.tar.gz 5767249 BLAKE2B 157f6eb46b13948ce4a1a8c0e3c924498c4a2782d696d79f5909083744535347f94c754b2507555bf3fba841b8181b5e32b867cf741e728c3720decf317c4650 SHA512 341fd6a5e35cb0a9bd70d7572ab5d4f449d12061508cd736793f20ba71d6ed733305d54b85d3b4ed2ba2330d5cc64caac79608d970a80a8e751384783dda55b6 DIST backrefs-6.1.tar.gz 7011962 BLAKE2B 0c1b507a1765dc38d4a9f45e86165ca6fe5994ecb63c8450a2ca9411e1458506b1ac881570f8867f5e778b47ee66d5b08418d6abe3ddd2483ef9a2da9820c9ba SHA512 eab73754e72b61b106691ab36c2c5734973a5407f1d88ca3175c3df3ce291f371241855558e593085ff038c4f42ba259eb6a4337dadca2246264951bc9bb90ee DIST backrefs-6.1.tar.gz.provenance 9226 BLAKE2B aa05b7f186e6b465b2381a867a3b4a61a05623bc5e68f0949b21aefaf845a531e98d27aeda03510e7d942e70a41fdf3ff0c84f15601984cc600b4d3e5d06e8a5 SHA512 bad5c4b102451b0831582801ce174d2cf01cd9c7dcd3ae689060e907681dc9b50390ee81d5a2f6d524955d72388bbd5d5b560e1dc4c9d0867a99f832fd4c39ec +DIST backrefs-6.2.tar.gz 7012303 BLAKE2B ce8faf008aac05913ca8cda7f8d659042a03bd6254ec411f6dea60bc76b23bb6771fa4c59a35dd5de2411f133f7a0d7dcf06af626c8fb38407cc0108ec99057d SHA512 66f096e71357bdafbfe65298e06c865d6ec4522d1218b9d9af461c7453a3fae82db366b5ead7318b64a04ee83a76a8d002ce27b57872f573b0c85aac46bbd3e0 +DIST backrefs-6.2.tar.gz.provenance 9459 BLAKE2B f0c14b2ba9e4f466a9c9080cbd0753d77ff27ac54a44c221ba8e403f3f37029b24b1010f1c90ea401c057dd8b0356c07a23e893085633fc279c517b6123d0c58 SHA512 84f3c470bd351975d9111cbb8b8a43ebb10e1bedc11e4d05e5562c46965cc0e7ba4822994029e68de3462ab84a4e70081c7035cb94c389965a6a8f51e2cd31b5 diff --git a/dev-python/backrefs/backrefs-6.0.1.ebuild b/dev-python/backrefs/backrefs-6.2.ebuild index 0fba324fb0fd..1ec719ee89b1 100644 --- a/dev-python/backrefs/backrefs-6.0.1.ebuild +++ b/dev-python/backrefs/backrefs-6.2.ebuild @@ -1,9 +1,10 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 DISTUTILS_USE_PEP517=hatchling +PYPI_VERIFY_REPO=https://github.com/facelessuser/backrefs PYTHON_COMPAT=( python3_{10..14} ) inherit distutils-r1 pypi @@ -16,7 +17,7 @@ HOMEPAGE=" LICENSE="MIT" SLOT="0" -KEYWORDS="amd64 arm64 ~riscv x86" +KEYWORDS="~amd64 ~arm64 ~riscv ~x86" BDEPEND=" test? ( diff --git a/dev-python/boto3/Manifest b/dev-python/boto3/Manifest index 4654651be94d..48b02daa00d2 100644 --- a/dev-python/boto3/Manifest +++ b/dev-python/boto3/Manifest @@ -6,3 +6,4 @@ DIST boto3-1.42.34.gh.tar.gz 1075720 BLAKE2B 52881dd1683dc36c7f3360113d5418fd0e1 DIST boto3-1.42.39.gh.tar.gz 1078948 BLAKE2B 15a852156234ae0ac04c7ff2d47bfb0da973835be2fa37f94db9ae3f865e1b53b8a1683ca69c61b8dd0165062b3e1e0e39c796e2b9b3ca1c16d20d2b3bce5ffc SHA512 1a15924d9d5db384bf98e75b104417f56900ca2a053215a2d14c96b5fe03f5cf5a4c1ccbdc36d3c3fdec6a39089b556134234572ba462b01b9c6433309bd9f85 DIST boto3-1.42.44.gh.tar.gz 1082573 BLAKE2B 98ac0981ec6df7594dcfcbc1ccddcbe8e9f4423cd61e034279dd4c9b52a5b251f158b1a3ec026dec02bf3178a3e30dc61086cdf53ff2516b7ee6b22ea32bfb3d SHA512 16b05dee6df917a8be2b4e09bc44f4032a08c059eb6aea5d9bf76ad38951ae589b4fa244f0d8b591123622fc3244d955bc028dd397a79ca0ab3d6dcddb7ae0cd DIST boto3-1.42.49.gh.tar.gz 1085810 BLAKE2B f9015a7ea5ff20a8c65d2ce25de3df2dab0e41dd28adb40a23c8294e477fb7163e77d2d8ddfab2d6143019d5f71c0b7b34c05e86d7fc35c2808aaf46f51caeb3 SHA512 364c194b48058af0c3d3daf89b0d84c6fb13c1c64df866b61169506adacb7dd36eacaaeca38a3ee0efe0b01c5887da1a1219078318cf8e5238bdd9662e2d1339 +DIST boto3-1.42.50.gh.tar.gz 1086325 BLAKE2B d81f65b37af6cbec127dcc3e188880b31c6516b9870e33888117b70acfb739ac7677010b0496707518fce190e8bf49453de044ca3dd4e3a7a5cf57b75b496676 SHA512 1834d06a828e7ba1b8cbee90040afa1c0b128646d53f5cd4b253ce000c4970375484480c89c4d9ee1b6cc769d466af2a5595dd11205b373b4fe373867ffadae5 diff --git a/dev-python/boto3/boto3-1.42.50.ebuild b/dev-python/boto3/boto3-1.42.50.ebuild new file mode 100644 index 000000000000..6e5f06a012ad --- /dev/null +++ b/dev-python/boto3/boto3-1.42.50.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{10..14} ) + +inherit distutils-r1 + +DESCRIPTION="The AWS SDK for Python" +HOMEPAGE=" + https://github.com/boto/boto3/ + https://pypi.org/project/boto3/ +" +SRC_URI=" + https://github.com/boto/boto3/archive/${PV}.tar.gz + -> ${P}.gh.tar.gz +" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86" + +RDEPEND=" + >=dev-python/botocore-${PV}[${PYTHON_USEDEP}] + >=dev-python/jmespath-0.7.1[${PYTHON_USEDEP}] + >=dev-python/s3transfer-0.16.0[${PYTHON_USEDEP}] +" + +EPYTEST_PLUGINS=() +EPYTEST_XDIST=1 +distutils_enable_tests pytest + +python_prepare_all() { + # don't lock versions to narrow ranges + sed -e '/botocore/ d' \ + -e '/jmespath/ d' \ + -e '/s3transfer/ d' \ + -i setup.py || die + + # 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 + + distutils-r1_python_prepare_all +} + +python_test() { + epytest tests/{functional,unit} +} diff --git a/dev-python/botocore/Manifest b/dev-python/botocore/Manifest index e1b3ebb87c6b..bc0c9169f6bf 100644 --- a/dev-python/botocore/Manifest +++ b/dev-python/botocore/Manifest @@ -6,3 +6,4 @@ DIST botocore-1.42.34.gh.tar.gz 15781471 BLAKE2B 694d24a74d14db50f6532c92032e3f0 DIST botocore-1.42.39.gh.tar.gz 15795159 BLAKE2B 3485a55d4fabb1b7431035d9d22e5e165c226cd1fb9265dce47dc0123927504e3c4fb1f745d173f9fd7ba1ca3f74a0e31ab96cc0f1de6dbfbfd1c676e1a5ec59 SHA512 5b11b07e149d76c6ae34364f13eef263abcb83008fac1b76dba3ed27ba25b086602bbb4838e0540d4780e84adf7e29ae2fed46493e2e4ce2948bc5b70bdd387f DIST botocore-1.42.44.gh.tar.gz 15820139 BLAKE2B a7047f799dc39ee8f49c7128e91e0f11f20c38b946ec5555a75e6fd3f8691fe396d312b9ff3023fc031415cc0846fe94f5d9a5357e31f9d0670cf7e534474609 SHA512 519b7e28d5b46e7e6ac3b375f1926670d361695b34f07d8eddcf48fee8af2b3674040fa5a3b1a27961f77c435a3c4c78deb1802933f08d993dfe4cb782ea4b2c DIST botocore-1.42.49.gh.tar.gz 15843630 BLAKE2B 823ba230ac7ba7fb3ecef8c716ff0fab0669920cbb3633105e1587c788abd5e99cddfd7ad7c896342feafd226c10eea6fcc2a888a12bacf8fd120ffc5ca51e21 SHA512 c8d73ed693936f97d0b61a9c84c00c3671891afe3173cac3a9610831c02c82c2583c285f746efbc884cb910f5f935a1a369991524b20ef79e7dc467d72497575 +DIST botocore-1.42.50.gh.tar.gz 15844813 BLAKE2B 17738a393aee02ecf689acbb95daa9e1a8350913e8d8e24d00e0cd8a25f83bd688363558594f6cc22627a2d79c28b52dd2a99be64d2dc9023721e71c0de1881b SHA512 ebdd01be0d7653c2d31b77007998bfa09f1e67df1054e1bba4b121446fe1aa25a8646de8002621b870cbcd35614c80ce56ad89025f0b017c8d90ff3e66754a16 diff --git a/dev-python/botocore/botocore-1.42.50.ebuild b/dev-python/botocore/botocore-1.42.50.ebuild new file mode 100644 index 000000000000..f6ce0d9ed8d5 --- /dev/null +++ b/dev-python/botocore/botocore-1.42.50.ebuild @@ -0,0 +1,67 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{10..14} ) + +inherit distutils-r1 + +DESCRIPTION="Low-level, data-driven core of boto 3" +HOMEPAGE=" + https://github.com/boto/botocore/ + https://pypi.org/project/botocore/ +" +SRC_URI=" + https://github.com/boto/botocore/archive/${PV}.tar.gz + -> ${P}.gh.tar.gz +" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86" + +RDEPEND=" + <dev-python/jmespath-2[${PYTHON_USEDEP}] + dev-python/python-dateutil[${PYTHON_USEDEP}] + >=dev-python/urllib3-1.25.4[${PYTHON_USEDEP}] +" +# unbundled packages +RDEPEND+=" + dev-python/requests[${PYTHON_USEDEP}] + dev-python/six[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + dev-python/jsonschema[${PYTHON_USEDEP}] + ) +" + +EPYTEST_PLUGINS=() +EPYTEST_XDIST=1 +distutils_enable_tests pytest + +src_prepare() { + # unpin deps + sed -i -e "s:>=.*':':" 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} +} diff --git a/dev-python/dj-database-url/dj-database-url-3.0.1.ebuild b/dev-python/dj-database-url/dj-database-url-3.0.1.ebuild index 222e8750ae31..702887fdaea7 100644 --- a/dev-python/dj-database-url/dj-database-url-3.0.1.ebuild +++ b/dev-python/dj-database-url/dj-database-url-3.0.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -16,7 +16,7 @@ HOMEPAGE=" LICENSE="BSD" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv ~sparc x86" +KEYWORDS="amd64 arm arm64 ~loong ppc ppc64 ~riscv ~sparc x86" RDEPEND=" >=dev-python/django-4.2[${PYTHON_USEDEP}] diff --git a/dev-python/django-configurations/django-configurations-2.5.1.ebuild b/dev-python/django-configurations/django-configurations-2.5.1.ebuild index 8b8e50856b13..51e08aef614e 100644 --- a/dev-python/django-configurations/django-configurations-2.5.1.ebuild +++ b/dev-python/django-configurations/django-configurations-2.5.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 2021-2025 Gentoo Authors +# Copyright 2021-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -18,7 +18,7 @@ HOMEPAGE=" LICENSE="BSD" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv ~sparc x86" +KEYWORDS="amd64 arm arm64 ~loong ppc ppc64 ~riscv ~sparc x86" IUSE="test" RESTRICT="!test? ( test )" diff --git a/dev-python/fakeredis/Manifest b/dev-python/fakeredis/Manifest index 246b4fd8f7bd..a6bb416aa40b 100644 --- a/dev-python/fakeredis/Manifest +++ b/dev-python/fakeredis/Manifest @@ -1,3 +1,4 @@ -DIST fakeredis-2.32.1.tar.gz 171582 BLAKE2B bec107824e359750303aa8ef4530f0aa3dfbbca6f87ce8b574f0a8fe1f748e71f113964b8172bf2d3793377cb264bcf977a917488a7f8e01df3914cee47b871c SHA512 cd04bf7c705b118c35e7b72cf2ed0fb8ed99f520ea6466e9676f07f640f2a6fa178ea9ba2fc401502c08d92c310673b6d5faabc5dcdba41e2c0ee3720d82435b DIST fakeredis-2.33.0.tar.gz 175187 BLAKE2B 6f8e091275bfa20de5188d7a0cbe56b071546b78e37cd73c0e0ceada9b4f6e4b034a80465b542768b1362cf2cb72a1aef95a636d8265146019252208bdd43d54 SHA512 dcbdfa39b80ce616e95999cb7f1bf84e2b02498813758db9bfdee0168074b0f95478f321a41f35d6f5262e49f02764d9ca192ee0294c0182af070e2ac44a93e1 DIST fakeredis-2.33.0.tar.gz.provenance 9622 BLAKE2B ac7f78bc90fd52370c62fdc2699f36a32eaba625313ce83ac344005ab420763af50db1fa126c46af633b54c13abcc397223b270e3ded9a273a6e10f1b0bf011c SHA512 ef6d9bea6db499d3b1048de6aecef4cc3983e92f0d233a9eb1a06d8fe3adba231a8d404379fa1048b4914b5130dd36235419740cd2adc286b900a5870ece92c3 +DIST fakeredis-2.34.0.tar.gz 177156 BLAKE2B 69fc2d66cd754489f3dbd08cfce60c8258bdd0a3a321dd41d8beac8ec6b2b58c3e026cea60e9ac1884a12833a0b32596da4a0064bb349f3bb46f4d43207e0686 SHA512 288cb69fe9422a8b712ee88325c2d6b51b4f47648afa005088f2fbd697eb2f29dd491944026f638e44b4e870053ca9c6453961d3b34169dfaf03b03fa2061f08 +DIST fakeredis-2.34.0.tar.gz.provenance 9583 BLAKE2B 1cbec38c54698275f25a2a1da50e946c338a35d21459bb1e6bc74094f4a2b858f97f977dd93d9410831efaec2ad2cc9bf30f7e66789eb6cd825239974a23487e SHA512 cc9353033ffcea94bf8a4b10f66573094c57afd261aa9a0a8351a3eb8f6b9066677e14d5961ae919dba7c963002226f3e4cb66c65e251e7129ba07ae89db9561 diff --git a/dev-python/fakeredis/fakeredis-2.32.1.ebuild b/dev-python/fakeredis/fakeredis-2.34.0.ebuild index e00be10851dd..c5aa2105cdcf 100644 --- a/dev-python/fakeredis/fakeredis-2.32.1.ebuild +++ b/dev-python/fakeredis/fakeredis-2.34.0.ebuild @@ -1,9 +1,10 @@ -# Copyright 2020-2025 Gentoo Authors +# Copyright 2020-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 DISTUTILS_USE_PEP517=hatchling +PYPI_VERIFY_REPO=https://github.com/cunla/fakeredis-py PYTHON_COMPAT=( python3_{10..14} ) inherit distutils-r1 pypi @@ -16,7 +17,7 @@ HOMEPAGE=" LICENSE="BSD" SLOT="0" -KEYWORDS="amd64 ~arm arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86" RDEPEND=" >=dev-python/redis-4.3[${PYTHON_USEDEP}] @@ -46,6 +47,9 @@ EPYTEST_DESELECT=( # json ext test/test_json/test_json.py test/test_json/test_json_arr_commands.py + # unknown command 'evalsha' + "test/test_asyncredis.py::test_async_lock[fake_resp2]" + "test/test_asyncredis.py::test_async_lock[fake_resp3]" # incompatible with xdist, not worth extra effort test/test_tcp_server/test_connectivity.py # flaky diff --git a/dev-python/filelock/Manifest b/dev-python/filelock/Manifest index 2e203ff5ac32..bfebc1c9d399 100644 --- a/dev-python/filelock/Manifest +++ b/dev-python/filelock/Manifest @@ -10,3 +10,5 @@ DIST filelock-3.23.0.tar.gz 32798 BLAKE2B 38ec94dc392b98eeb46dce0290789a7a6fac71 DIST filelock-3.23.0.tar.gz.provenance 9425 BLAKE2B 161b65e2d3f2310776fd8acbf9bde15ae57c877bf6cc6d2fbd08a6bdce70f9cf7b01978bd9aa7fee3ac7ad0eda170678df7bdd840622e0ed41474569f2d7eb72 SHA512 f6753df2fd27d601c7c84adb4c52e518ab53a927173e22f1b0856aff50261d09ee29047ee7349c8e7e3bd04886ed715f36a67baa07cc296ca2fe1a23bdcd6610 DIST filelock-3.24.0.tar.gz 37166 BLAKE2B 04cc658e54248e7b5923d0eb5a166a89bb0a815afa9e031b3efd84f54f8a178899236cb4c947795cc5f81240a7b7a0b558c89e591a7272455df9e810ede04113 SHA512 270d48c56f9a0b0d29faf5eeb816698a7d5522e6f9dda63502cda488ae36bf05b54afa00af2b4c2377fb86c1a6a768010f0b97f61cd87e63190b587c7c5a7e1b DIST filelock-3.24.0.tar.gz.provenance 9476 BLAKE2B ce45a7f698663ba1780180a3d6357fbdea39aabf617cbfa190443f760ca43b5472079fccc9de0260ae7f5b3967c1cb893661543c7a29510e42c6a9a542c5651d SHA512 7f7b731598a29aca0e87714a7cbc94bb66a9c42b1d3711b622889c4672bccfac2e12ad76e4e6f734225d40d2147cdc2d39450486ea872efc1e5c415c234208b7 +DIST filelock-3.24.2.tar.gz 37601 BLAKE2B 3589b2410823121d82fcf4e17b1c126d3fd687ff4fc79557a97df964f157ee1a5abd586b60440c4a81fb7d881a9d948b8653f5e1f770f7c9d20aa74557d77478 SHA512 902e9d6a5a2a1100d7a71aa8d71df87b6d723a61597363cabab60536019121b407b1695a2319c74e98938858e21d01321f577adce3198f7f526c043a07146035 +DIST filelock-3.24.2.tar.gz.provenance 9378 BLAKE2B 6a9016eacc33fe0eb74b8c401cd6b5df6400407c14b377ad15c771f64c86101b7532201d3dad1693a7a88a22d16398692c67027d8a5d312c7e14d15171225b9c SHA512 1f3a7abb1d31db93fc0451539518900f7550e64e8e50c3396e06d1649397b477714b4ddd211ca12ee06c2f3f65c2d4f04b56fd4e2d2401d6f6dcc9e80e380383 diff --git a/dev-python/filelock/filelock-3.24.2.ebuild b/dev-python/filelock/filelock-3.24.2.ebuild new file mode 100644 index 000000000000..8429f48b6ff5 --- /dev/null +++ b/dev-python/filelock/filelock-3.24.2.ebuild @@ -0,0 +1,31 @@ +# Copyright 2018-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=hatchling +PYPI_VERIFY_REPO=https://github.com/tox-dev/filelock +PYTHON_COMPAT=( python3_{10..14} ) + +inherit distutils-r1 pypi + +DESCRIPTION="A platform independent file lock for Python" +HOMEPAGE=" + https://github.com/tox-dev/filelock/ + https://pypi.org/project/filelock/ +" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos" + +BDEPEND=" + dev-python/hatch-vcs[${PYTHON_USEDEP}] + test? ( + dev-python/virtualenv[${PYTHON_USEDEP}] + ) +" + +EPYTEST_PLUGINS=( pytest-{asyncio,mock,timeout} ) +EPYTEST_RERUNS=5 +distutils_enable_tests pytest diff --git a/dev-python/flatdict/Manifest b/dev-python/flatdict/Manifest index 7e4877181a17..1f9de1b44fff 100644 --- a/dev-python/flatdict/Manifest +++ b/dev-python/flatdict/Manifest @@ -1 +1,2 @@ DIST flatdict-4.0.1.gh.tar.gz 11923 BLAKE2B 102ebc6220d75219b91ed7494485fa7d1447801d8276fd5e305f838f6b339b72c44151c751a53c32a5ea5b1d4876d9312af229bb8972401a2f86d6488d3f8b4f SHA512 925ad8a53a4848875ff5c0df2c006ea09ff3795861cd0b8d7c26d22511d46d4ad28dee28b3e9e8f896b45c8a1b2c51cc24bce099c38c0b4d2f49174baab4de23 +DIST flatdict-4.1.0.gh.tar.gz 32704 BLAKE2B 81257f1eba486dd7de00f2518fd59dbb0dc8c6f31e2af913fc648b2b6e0d4cca953e74f99ad579579a4f9a55028d63e3f01cac9fcd5cee9d3f640c0a8067ef30 SHA512 467bceaebd3391a8cf9c6dba37165070fb9cbb43f5e19fa6221a7a4f8bcfb4fb8f49758fe9f3fbc724684f067eff16998ca944cd57ecb499dbf46bf2262d94a9 diff --git a/dev-python/flatdict/flatdict-4.1.0.ebuild b/dev-python/flatdict/flatdict-4.1.0.ebuild new file mode 100644 index 000000000000..2e34d6cb551a --- /dev/null +++ b/dev-python/flatdict/flatdict-4.1.0.ebuild @@ -0,0 +1,31 @@ +# Copyright 2023-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=hatchling +PYTHON_COMPAT=( python3_{10..14} ) + +inherit distutils-r1 + +DESCRIPTION="Python module for interacting with nested dicts" +HOMEPAGE=" + https://github.com/gmr/flatdict/ + https://pypi.org/project/flatdict/ +" +SRC_URI=" + https://github.com/gmr/flatdict/archive/${PV}.tar.gz + -> ${P}.gh.tar.gz +" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm64" + +BDEPEND=" + dev-python/hatch-vcs[${PYTHON_USEDEP}] +" + +distutils_enable_tests unittest + +export SETUPTOOLS_SCM_PRETEND_VERSION=${PV} diff --git a/dev-python/gssapi/gssapi-1.10.1.ebuild b/dev-python/gssapi/gssapi-1.10.1.ebuild index 3cd315fb3e1b..05523115a411 100644 --- a/dev-python/gssapi/gssapi-1.10.1.ebuild +++ b/dev-python/gssapi/gssapi-1.10.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -22,7 +22,7 @@ S="${WORKDIR}"/python-${P} LICENSE="ISC" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +KEYWORDS="amd64 arm arm64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86" RDEPEND=" dev-python/decorator[${PYTHON_USEDEP}] diff --git a/dev-python/hypothesis/Manifest b/dev-python/hypothesis/Manifest index 80e4ad80d5a3..6a179ad0c316 100644 --- a/dev-python/hypothesis/Manifest +++ b/dev-python/hypothesis/Manifest @@ -1,11 +1,8 @@ -DIST hypothesis-6.148.12.gh.tar.gz 9929420 BLAKE2B e1dbe07d02920d0c70c757b0c7b24263cb8f27a8cf00b84db2596fcc357e7dc88bdcd501c338b4cc6cf8fa8068ba8b4938103eedaebe1c9026a5e637f3656854 SHA512 21d8ab7e2791aa019a99603090fa7b6f631856747bb899a8c4735b6429f233d8a68d52e674c9942d6df19a423743f4d446df7f47b8322db699a9b95a2b714d58 DIST hypothesis-6.148.7.gh.tar.gz 9927096 BLAKE2B 4e6f782918394edba79a2c183be923076eec1b12b24cc184561e4ee5900e97d2f9c7e110ec98a51911ccdd5b0f2b3172947067038bba03723472be99b7005873 SHA512 f9fbe91650a99f9db3fa1e3a389c2a3cdac85cbb0a7c6cb694b29e486b29670833fd534022c6d26ebeac7b2f3135940dda854f865fde0a6b62c229fdd5f422e6 DIST hypothesis-6.149.1.gh.tar.gz 9932484 BLAKE2B 41bdda077c6cdd1e2b2f7650e8b4f5e125680ec3cea2979ad14dadcb553f36f0fd5970290d23aadd5bad64ba88c9dbb669946ca71021460c509e25bccdf394fa SHA512 78dfbdd8f48ca9c483b74fb13200b340b1791df977f79d8fc687cecc21a6c69dc37a6e0c184643f2eb13d5a49651e13e4ea2ed93976dcc4fa7ee135c2d4ee052 DIST hypothesis-6.150.2.gh.tar.gz 9878291 BLAKE2B b9ae21ff95afe8bd4918d7298b7f1ff10528fc70cc358f9106f79ddb9a84fe6aa0c8f34538b75c5b55afa442b9e70534c07a04102569b62b16d11421ca9f8016 SHA512 648112f870904a922162c099fd982d3a3756209efd272531c3c848383e2a6df02c3ff4c57f4be68408084542075a194ac9fe5fdac158c566c1a3045358e1045a DIST hypothesis-6.150.3.gh.tar.gz 9878751 BLAKE2B 4b1995a52a8d195e5cc04eba89093458ca0244e1c20c5c8ce4cd13473598eb7d652c04656bd5df264ae766262fba4e084b61269df4bc77a2537a8177964fa4d3 SHA512 317235eacafaa415683cb7b1a50738655ab6704f4ba529657f5496625c5542812eb44a5cde999c4805ad5a74232edde0c8fc2e81aef3be367374a6302d3f3fa2 -DIST hypothesis-6.151.0.gh.tar.gz 9878804 BLAKE2B 42ef6bf0c5bb8346b38a647804aecfcad20991c6ae70a48838050d424377f1e9256fb36df3e440250f3fb8f7fed6fd80cfd1288c38c446ffed62f3166aa571e2 SHA512 418af03dc2eaf456c96c0395c32fdcfc018e8543ed5029f7c6058e9e5d1368afbb04cdfc6a21bd44f87a0c064680927d75284eb5670f6f28b1b3ac2aee90823b -DIST hypothesis-6.151.2.gh.tar.gz 9878376 BLAKE2B 11f6da8ede480bffb503e67d6ed943eb1497686ef61a401f6fa7d6d819ab293f1595284205f5a7c9b534076d607a5d6c7a9a5eea2a89be2375f658d4b6a93924 SHA512 6f8f73a740e046f4e96e7c1f5d6ececd75a2d9a12e52b94fcf2419cfe2cb02807a16e030a0ce0335793c12beb07f07423cdc13a61d432a3836d9fc767c3e912e -DIST hypothesis-6.151.3.gh.tar.gz 9879536 BLAKE2B 339bb7cc1f45403c97626b4ca0df33e9378ef301efcc7949aca0750fe08425af3e71703a5c0743feb731d62e6d5cc44c2f41fe84544aa8d9d199b004d567f8ab SHA512 f7b3d4859b2d43c3be8c36c610ca16a3ae8dd36dbb14a5e029b4046467fb061ec70f4e53e88ecdb7c85a1364e556955b83cc8d511d1962dcf34dae047ace6f3d DIST hypothesis-6.151.4.gh.tar.gz 9879516 BLAKE2B b53dc0691cdbbfad47dd4de9712cecc7fddd9c59b626d22250d367a71dd58c43c22c173380d120f56d7b9f17c03df076ea7963c8c435fb9b187b3baffeb2d44e SHA512 fef3fe9f7b10204c37a4d7767ab0fd9e4a74e3d69de55700cfd34ef86dd2af980131411f3728462d28670836cf9adfc53d87b24bd85a6d19bce562471290dfe3 DIST hypothesis-6.151.5.gh.tar.gz 9879758 BLAKE2B 9065ab0acf74f23f01016608465af54822a6789dbf5f8043e54cd617046ee0c3c1d72897a66a0b48e9e5e146433bfbc753352e20cb941ebfa3008b348746a4c2 SHA512 2adfd5f69c2eca234666b8d91bb136081eaec32b5e0f158c0432148bcceae25d9515fa014648bf416311a82354a7598091ee1edf7370bbb0ede37fe9fa4d9b48 DIST hypothesis-6.151.6.gh.tar.gz 9880002 BLAKE2B e913687bbe41a0a5750b523054da699bdad18840f1ecbec5b3ba4c232dfef0c4ba6e506156d7c9ce9c7b5e47ff0e2614bb206d9958e1ba3fa7dd8ac0c8a8d8f7 SHA512 9e022b284293d9a7a4907a608c54bc4d8f5a6487870b5c5a8cd92ae5be87fbf720767738d1fb686f8b6503bdc5dd2dcb2a0bb339ca4821cce05cc50b17224449 +DIST hypothesis-6.151.9.gh.tar.gz 9864451 BLAKE2B 9d9c2800cf1212e743a599c261c78c0a7d349e58075a443e0d10e6373b1582e059abde416cec4f3a8185ae424725f93da8ab4e43dd70bd0f86071d69aca94def SHA512 3e41bdd077a18fe72360547bc03f2c3d7218e8cd6cb563fffd6024427bfa5ce0764ca9c7ef0dafdded896625128fc14b9d3f8c4564aa8a509545abf0ad24adbf diff --git a/dev-python/hypothesis/hypothesis-6.148.12.ebuild b/dev-python/hypothesis/hypothesis-6.148.12.ebuild deleted file mode 100644 index 8a0d46501a31..000000000000 --- a/dev-python/hypothesis/hypothesis-6.148.12.ebuild +++ /dev/null @@ -1,91 +0,0 @@ -# Copyright 1999-2026 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=setuptools -CLI_COMPAT=( python3_{11..13} ) -PYTHON_COMPAT=( python3_{10..14} ) -PYTHON_REQ_USE="threads(+),sqlite" - -inherit distutils-r1 optfeature - -TAG=hypothesis-python-${PV} -MY_P=hypothesis-${TAG} -DESCRIPTION="A library for property based testing" -HOMEPAGE=" - https://github.com/HypothesisWorks/hypothesis/ - https://pypi.org/project/hypothesis/ -" -SRC_URI=" - https://github.com/HypothesisWorks/hypothesis/archive/${TAG}.tar.gz - -> ${P}.gh.tar.gz -" -S="${WORKDIR}/${MY_P}/hypothesis-python" - -LICENSE="MPL-2.0" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" -IUSE="cli" - -RDEPEND=" - >=dev-python/sortedcontainers-2.1.0[${PYTHON_USEDEP}] - cli? ( - $(python_gen_cond_dep ' - dev-python/black[${PYTHON_USEDEP}] - dev-python/click[${PYTHON_USEDEP}] - ' "${CLI_COMPAT[@]}") - ) -" -BDEPEND=" - test? ( - >=dev-python/attrs-22.2.0[${PYTHON_USEDEP}] - dev-python/pexpect[${PYTHON_USEDEP}] - >=dev-python/pytest-8[${PYTHON_USEDEP}] - ) -" -PDEPEND=" - dev-python/hypothesis-gentoo[${PYTHON_USEDEP}] -" - -EPYTEST_PLUGIN_LOAD_VIA_ENV=1 -EPYTEST_PLUGINS=( "${PN}" pytest-xdist ) -EPYTEST_RERUNS=5 -EPYTEST_XDIST=1 -distutils_enable_tests pytest - -python_test() { - # NB: paths need to be relative to pytest.ini, - # i.e. start with hypothesis-python/ - - local -x HYPOTHESIS_NO_PLUGINS=1 - epytest -o filterwarnings= tests/{cover,pytest,quality} -} - -src_install() { - local HAD_CLI= - - distutils-r1_src_install - - if [[ ! ${HAD_CLI} ]]; then - rm -r "${ED}/usr/bin" || die - fi -} - -python_install() { - distutils-r1_python_install - if use cli && has "${EPYTHON}" "${CLI_COMPAT[@]/_/.}"; then - HAD_CLI=1 - else - rm -r "${D}$(python_get_scriptdir)" || die - fi -} - -pkg_postinst() { - optfeature "datetime support" dev-python/pytz - optfeature "dateutil support" dev-python/python-dateutil - optfeature "numpy support" dev-python/numpy - optfeature "django support" dev-python/django dev-python/pytz - optfeature "pandas support" dev-python/pandas - optfeature "pytest support" dev-python/pytest -} diff --git a/dev-python/hypothesis/hypothesis-6.151.0.ebuild b/dev-python/hypothesis/hypothesis-6.151.0.ebuild deleted file mode 100644 index 79b828d4dffe..000000000000 --- a/dev-python/hypothesis/hypothesis-6.151.0.ebuild +++ /dev/null @@ -1,100 +0,0 @@ -# Copyright 1999-2026 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=setuptools -CLI_COMPAT=( python3_{11..13} ) -PYTHON_COMPAT=( python3_{10..14} ) -PYTHON_REQ_USE="threads(+),sqlite" - -inherit distutils-r1 optfeature - -TAG=hypothesis-python-${PV} -MY_P=hypothesis-${TAG} -DESCRIPTION="A library for property based testing" -HOMEPAGE=" - https://github.com/HypothesisWorks/hypothesis/ - https://pypi.org/project/hypothesis/ -" -SRC_URI=" - https://github.com/HypothesisWorks/hypothesis/archive/${TAG}.tar.gz - -> ${P}.gh.tar.gz -" -S="${WORKDIR}/${MY_P}/hypothesis-python" - -LICENSE="MPL-2.0" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" -IUSE="cli" - -RDEPEND=" - >=dev-python/sortedcontainers-2.1.0[${PYTHON_USEDEP}] - cli? ( - $(python_gen_cond_dep ' - dev-python/black[${PYTHON_USEDEP}] - dev-python/click[${PYTHON_USEDEP}] - ' "${CLI_COMPAT[@]}") - ) -" -BDEPEND=" - test? ( - >=dev-python/attrs-22.2.0[${PYTHON_USEDEP}] - dev-python/pexpect[${PYTHON_USEDEP}] - >=dev-python/pytest-8[${PYTHON_USEDEP}] - ) -" -PDEPEND=" - dev-python/hypothesis-gentoo[${PYTHON_USEDEP}] -" - -EPYTEST_PLUGIN_LOAD_VIA_ENV=1 -EPYTEST_PLUGINS=( "${PN}" pytest-xdist ) -EPYTEST_RERUNS=5 -EPYTEST_XDIST=1 -distutils_enable_tests pytest - -python_test() { - # NB: paths need to be relative to pytest.ini, - # i.e. start with hypothesis-python/ - local EPYTEST_DESELECT=() - case ${EPYTHON} in - python3.14t) - EPYTEST_DESELECT+=( - # TODO - 'hypothesis-python/tests/cover/test_lambda_formatting.py::test_modifying_lambda_source_code_returns_unknown[False]' - ) - ;; - esac - - local -x HYPOTHESIS_NO_PLUGINS=1 - epytest -o filterwarnings= tests/{cover,pytest,quality} -} - -src_install() { - local HAD_CLI= - - distutils-r1_src_install - - if [[ ! ${HAD_CLI} ]]; then - rm -r "${ED}/usr/bin" || die - fi -} - -python_install() { - distutils-r1_python_install - if use cli && has "${EPYTHON}" "${CLI_COMPAT[@]/_/.}"; then - HAD_CLI=1 - else - rm -r "${D}$(python_get_scriptdir)" || die - fi -} - -pkg_postinst() { - optfeature "datetime support" dev-python/pytz - optfeature "dateutil support" dev-python/python-dateutil - optfeature "numpy support" dev-python/numpy - optfeature "django support" dev-python/django dev-python/pytz - optfeature "pandas support" dev-python/pandas - optfeature "pytest support" dev-python/pytest -} diff --git a/dev-python/hypothesis/hypothesis-6.151.2.ebuild b/dev-python/hypothesis/hypothesis-6.151.2.ebuild deleted file mode 100644 index 79b828d4dffe..000000000000 --- a/dev-python/hypothesis/hypothesis-6.151.2.ebuild +++ /dev/null @@ -1,100 +0,0 @@ -# Copyright 1999-2026 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=setuptools -CLI_COMPAT=( python3_{11..13} ) -PYTHON_COMPAT=( python3_{10..14} ) -PYTHON_REQ_USE="threads(+),sqlite" - -inherit distutils-r1 optfeature - -TAG=hypothesis-python-${PV} -MY_P=hypothesis-${TAG} -DESCRIPTION="A library for property based testing" -HOMEPAGE=" - https://github.com/HypothesisWorks/hypothesis/ - https://pypi.org/project/hypothesis/ -" -SRC_URI=" - https://github.com/HypothesisWorks/hypothesis/archive/${TAG}.tar.gz - -> ${P}.gh.tar.gz -" -S="${WORKDIR}/${MY_P}/hypothesis-python" - -LICENSE="MPL-2.0" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" -IUSE="cli" - -RDEPEND=" - >=dev-python/sortedcontainers-2.1.0[${PYTHON_USEDEP}] - cli? ( - $(python_gen_cond_dep ' - dev-python/black[${PYTHON_USEDEP}] - dev-python/click[${PYTHON_USEDEP}] - ' "${CLI_COMPAT[@]}") - ) -" -BDEPEND=" - test? ( - >=dev-python/attrs-22.2.0[${PYTHON_USEDEP}] - dev-python/pexpect[${PYTHON_USEDEP}] - >=dev-python/pytest-8[${PYTHON_USEDEP}] - ) -" -PDEPEND=" - dev-python/hypothesis-gentoo[${PYTHON_USEDEP}] -" - -EPYTEST_PLUGIN_LOAD_VIA_ENV=1 -EPYTEST_PLUGINS=( "${PN}" pytest-xdist ) -EPYTEST_RERUNS=5 -EPYTEST_XDIST=1 -distutils_enable_tests pytest - -python_test() { - # NB: paths need to be relative to pytest.ini, - # i.e. start with hypothesis-python/ - local EPYTEST_DESELECT=() - case ${EPYTHON} in - python3.14t) - EPYTEST_DESELECT+=( - # TODO - 'hypothesis-python/tests/cover/test_lambda_formatting.py::test_modifying_lambda_source_code_returns_unknown[False]' - ) - ;; - esac - - local -x HYPOTHESIS_NO_PLUGINS=1 - epytest -o filterwarnings= tests/{cover,pytest,quality} -} - -src_install() { - local HAD_CLI= - - distutils-r1_src_install - - if [[ ! ${HAD_CLI} ]]; then - rm -r "${ED}/usr/bin" || die - fi -} - -python_install() { - distutils-r1_python_install - if use cli && has "${EPYTHON}" "${CLI_COMPAT[@]/_/.}"; then - HAD_CLI=1 - else - rm -r "${D}$(python_get_scriptdir)" || die - fi -} - -pkg_postinst() { - optfeature "datetime support" dev-python/pytz - optfeature "dateutil support" dev-python/python-dateutil - optfeature "numpy support" dev-python/numpy - optfeature "django support" dev-python/django dev-python/pytz - optfeature "pandas support" dev-python/pandas - optfeature "pytest support" dev-python/pytest -} diff --git a/dev-python/hypothesis/hypothesis-6.151.3.ebuild b/dev-python/hypothesis/hypothesis-6.151.9.ebuild index 79b828d4dffe..6569720d26ff 100644 --- a/dev-python/hypothesis/hypothesis-6.151.3.ebuild +++ b/dev-python/hypothesis/hypothesis-6.151.9.ebuild @@ -57,7 +57,10 @@ distutils_enable_tests pytest python_test() { # NB: paths need to be relative to pytest.ini, # i.e. start with hypothesis-python/ - local EPYTEST_DESELECT=() + local EPYTEST_DESELECT=( + # broken somehow (xdist?) + 'hypothesis-python/tests/pytest/test_constant_collection_timing.py::test_constant_collection_timing[True]' + ) case ${EPYTHON} in python3.14t) EPYTEST_DESELECT+=( diff --git a/dev-python/mpmath/Manifest b/dev-python/mpmath/Manifest index 08f61f3114aa..68e48f99c0db 100644 --- a/dev-python/mpmath/Manifest +++ b/dev-python/mpmath/Manifest @@ -1,3 +1,4 @@ DIST mpmath-1.4.0a7.tar.gz 2088255 BLAKE2B ae8578add85134d72401a1e47e687e35b2c40755f4121013c509bbb5d988b649c6bc7aaa803fe135fb34841ed2c12fd243900add9ba92909de66c32c3433063b SHA512 18be276fc51ae701853047e916c7710f27211a2b6a76f7fc7684794422fb9549cdd066daa3bb712123378787932756cf66bee4b718fb3bece99e886f215d2c27 DIST mpmath-1.4.0b2.tar.gz 2089406 BLAKE2B 677eb7d18dfe9902d644590dfa4f2b9f422adab9d2ac85cace10924aab16d98e6811db2ae077ea8d9ba09da0068d98b97e23dd216b7ecd37e4a6e146f5b58f6c SHA512 a6dd1598cf8358725e27dc8e80d9d796b993e31e303d91f78c7d20c415703010c72b393e0800ef9602a08cdceb13b44634d5b8b35e57098a881ee61ba12a9775 DIST mpmath-1.4.0b3.tar.gz 2089337 BLAKE2B a769e83c00bad7ef5637b4991443a07891e16fc97b49da5cccc6b064a91b15963382514932268fc0698d5de7ea7b60e0ea7d61c11f19979e5b12a54a942ceaaf SHA512 550df10ee488a5170af3c33ef2522a488da8f3eb19c97748792ed99063fc67f0376ecf083bce6e6ef4d54ef1d3277eb5e493b4287cf58f5d8522c6901cc0c089 +DIST mpmath-1.4.0b4.tar.gz 2089570 BLAKE2B b848713661a67fef69e5ad626033a46802234fc89223386a95b95c08cba1f405273159b066eb1c2b6c8052abedaa55d4c6181d6cd9a88e1be5f2e71ea83fac0c SHA512 51d69ad8955a988d8bdb251a6ab167186b35de4c1c5a32423fa9f587f418944b3f576506f165e2dc15b5c50b18ab6eff8ffa0fa3b61d5114e58ff3932cbc9c3f diff --git a/dev-python/mpmath/mpmath-1.4.0_beta4.ebuild b/dev-python/mpmath/mpmath-1.4.0_beta4.ebuild new file mode 100644 index 000000000000..796fa1070447 --- /dev/null +++ b/dev-python/mpmath/mpmath-1.4.0_beta4.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_FULLY_TESTED=( pypy3_11 python3_{11..13} ) +PYTHON_COMPAT=( "${PYTHON_FULLY_TESTED[@]}" ) + +inherit distutils-r1 optfeature pypi + +DESCRIPTION="Python library for arbitrary-precision floating-point arithmetic" +HOMEPAGE=" + https://mpmath.org/ + https://github.com/mpmath/mpmath/ + https://pypi.org/project/mpmath/ +" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~x64-macos" +IUSE="test-full" + +BDEPEND=" + dev-python/setuptools-scm[${PYTHON_USEDEP}] + test? ( + dev-python/numpy[${PYTHON_USEDEP}] + dev-python/packaging[${PYTHON_USEDEP}] + dev-python/pexpect[${PYTHON_USEDEP}] + $(python_gen_cond_dep ' + >=dev-python/gmpy2-2.3[${PYTHON_USEDEP}] + ' 'python3*') + test-full? ( + $(python_gen_cond_dep ' + dev-python/matplotlib[${PYTHON_USEDEP}] + ' "${PYTHON_FULLY_TESTED[@]}") + ) + ) +" + +EPYTEST_PLUGINS=( hypothesis pytest-timeout ) +EPYTEST_RERUNS=5 +EPYTEST_XDIST=1 +distutils_enable_tests pytest + +EPYTEST_DESELECT=( + # Slow and often needs a re-run to pass + mpmath/tests/test_cli.py::test_bare_console_bare_division + mpmath/tests/test_cli.py::test_bare_console_no_bare_division + mpmath/tests/test_cli.py::test_bare_console_pretty + mpmath/tests/test_cli.py::test_bare_console_without_ipython + mpmath/tests/test_cli.py::test_bare_console_wrap_floats +) + +pkg_postinst() { + optfeature "gmp support" dev-python/gmpy2 + optfeature "matplotlib support" dev-python/matplotlib +} diff --git a/dev-python/pyarrow/Manifest b/dev-python/pyarrow/Manifest index 54b219d734e8..d833717dfcf4 100644 --- a/dev-python/pyarrow/Manifest +++ b/dev-python/pyarrow/Manifest @@ -2,6 +2,7 @@ DIST apache-arrow-20.0.0.tar.gz 17862661 BLAKE2B 154d4783746abf21ee7e94748cee1f5 DIST apache-arrow-21.0.0.tar.gz 17320680 BLAKE2B 56c3bd23ceb59346e094ed83601f30187d88b9148118a83ce413ba525fec23da84ded4576eeefcc1786ecc14e46b5fd0b6270e96bad9659d25f154d77731124e SHA512 89da6de7eb2513c797d6671e1addf40b8b156215b481cf2511fa69faa16547c52d8220727626eeda499e4384d276e03880cd920aaab41c3d15106743d51a90a6 DIST apache-arrow-22.0.0.tar.gz 17063271 BLAKE2B 99b53160b209a9427500fb5bda515c46256f7a6498c80627ff930af1690ffe3a01c86c161fd1946f3b249f1ceaefad0da6c05ea88efbb43b5733c9eb98b5cc1f SHA512 8ec9ddaf7917c0e35c8bb32831fe6ea0a7b81de5723828a1289ba1b9e104b42af688d0f427a0ceff6f617d5f7ac67769431184b137e54f6987779e467c59d3ec DIST apache-arrow-23.0.0.tar.gz 17287604 BLAKE2B 588881dbb434ed7cbdea2fe14f53c7f42ee75d9a4433a4deaad34dff33b989473c1ae7a0a5d6d806ce0e515548cfe515fb69c988536f5419062e344fc6634f6b SHA512 ddaaf31e7f3f8246ce3aa6e77c812c55a7993d037aaebc8ca9d79d54c701717a135eebfede731a3239becfaed2fa2395fcb3d68b14c32b9de72b3f5598d9df4a +DIST apache-arrow-23.0.1.tar.gz 17296212 BLAKE2B 7023df6e6900dc239edc757fef76a89d2169e4fd3e1eaf3471f805a6e1c39014b9ec1e5a3d7c9e7a590b8d007c4adc1d15b8ed22ecf4724b24a33ffa96557db2 SHA512 c687e50dfcdbf7e0e39710224360d35d9aa734452b3a47adc8c101f3019b6b4116310c05b9f3cd0a5ed4ad9b7bd8fb88edb70e79b3cbd413a57e5e35e4554a6c DIST arrow-testing-725fd4a4b12d01c53c98e80274c0b23aa8397082.tar.gz 3752144 BLAKE2B bbfde361f8da376f228720de00a3f6c2b42051e53580f650ad5621086cbf4828a289d86815ac1143720d80f230a851c9602bf198a32e457c1a0f7767790968ee SHA512 0789bf65fc2609f84a9c2865bc8e12f8c63fdd138eff02af1b24ba2c0e925d8c0ecfbe57515786e91531d918ef1a0d92fd5becb553682eafdcedd7678ddacb9e DIST arrow-testing-d2a13712303498963395318a4eb42872e66aead7.tar.gz 3572581 BLAKE2B 58e0e0a887efb9f68b9cccc37b946352eb382fe6f621c0778992ec3e1d10cdd5de89674f8282ceb90d0fcef5825b24ff3d0043806c6e353be9df6d1566699d2d SHA512 e6b76e4ab34744bc804ecfe5baba3e1f483c874f883cc44e8e2504a718b847cb05f0c7559e40a446deab99da20d1f9bbfe03d553ee2bb5543bef889c2b555259 DIST parquet-testing-18d17540097fca7c40be3d42c167e6bfad90763c.tar.gz 1077258 BLAKE2B 457bf3404b9f6ad8da5cbecade4c2365e39e6409c5b551092a7f1f18f81f557e94e60adfb381058c5fd3a4000dae24c1ffebfbfa965d88e81f098f016bfdc816 SHA512 2cadc694e6cd2e52869b4ff0d2659c77c613fc870b54ca7f4cb64068d0e7956723549b6d5513a117a2e147d4161e2fcdbe15992a3d8e56306b25923676f182a0 diff --git a/dev-python/pyarrow/pyarrow-23.0.1.ebuild b/dev-python/pyarrow/pyarrow-23.0.1.ebuild new file mode 100644 index 000000000000..14ceed036eb3 --- /dev/null +++ b/dev-python/pyarrow/pyarrow-23.0.1.ebuild @@ -0,0 +1,109 @@ +# Copyright 2023-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_EXT=1 +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{10..14} ) + +inherit distutils-r1 multiprocessing + +# arrow.git: testing +ARROW_DATA_GIT_HASH=725fd4a4b12d01c53c98e80274c0b23aa8397082 +# arrow.git: cpp/submodules/parquet-testing +PARQUET_DATA_GIT_HASH=a3d96a65e11e2bbca7d22a894e8313ede90a33a3 + +DESCRIPTION="Python library for Apache Arrow" +HOMEPAGE=" + https://arrow.apache.org/ + https://github.com/apache/arrow/ + https://pypi.org/project/pyarrow/ +" +SRC_URI=" + mirror://apache/arrow/arrow-${PV}/apache-arrow-${PV}.tar.gz + test? ( + https://github.com/apache/parquet-testing/archive/${PARQUET_DATA_GIT_HASH}.tar.gz + -> parquet-testing-${PARQUET_DATA_GIT_HASH}.tar.gz + https://github.com/apache/arrow-testing/archive/${ARROW_DATA_GIT_HASH}.tar.gz + -> arrow-testing-${ARROW_DATA_GIT_HASH}.tar.gz + ) +" +S="${WORKDIR}/apache-arrow-${PV}/python" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~riscv ~x86" +IUSE="+parquet +snappy ssl" + +RDEPEND=" + ~dev-libs/apache-arrow-${PV}[compute,dataset,json,parquet?,re2,snappy?,ssl?] + >=dev-python/numpy-1.16.6:=[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + dev-python/cffi[${PYTHON_USEDEP}] + dev-python/packaging[${PYTHON_USEDEP}] + dev-python/pandas[${PYTHON_USEDEP}] + dev-python/pytz[${PYTHON_USEDEP}] + dev-libs/apache-arrow[lz4,zlib] + ) +" + +EPYTEST_PLUGINS=( hypothesis ) +EPYTEST_XDIST=1 +distutils_enable_tests pytest + +src_prepare() { + distutils-r1_src_prepare + + # cython's -Werror + sed -i -e '/--warning-errors/d' CMakeLists.txt || die +} + +src_compile() { + export PYARROW_PARALLEL="$(makeopts_jobs)" + export PYARROW_BUILD_VERBOSE=1 + export PYARROW_CXXFLAGS="${CXXFLAGS}" + export PYARROW_BUNDLE_ARROW_CPP_HEADERS=0 + export PYARROW_CMAKE_GENERATOR=Ninja + export PYARROW_WITH_HDFS=1 + if use parquet; then + export PYARROW_WITH_DATASET=1 + export PYARROW_WITH_PARQUET=1 + use ssl && export PYARROW_WITH_PARQUET_ENCRYPTION=1 + fi + if use snappy; then + export PYARROW_WITH_SNAPPY=1 + fi + + distutils-r1_src_compile +} + +python_test() { + local EPYTEST_DESELECT=( + # wtf? + tests/test_fs.py::test_localfs_errors + # these require apache-arrow with jemalloc that doesn't seem + # to be supported by the Gentoo package + tests/test_memory.py::test_env_var + tests/test_memory.py::test_specific_memory_pools + tests/test_memory.py::test_supported_memory_backends + # require mimalloc + tests/test_memory.py::test_memory_pool_factories + # fragile memory tests + tests/test_csv.py::TestSerialStreamingCSVRead::test_batch_lifetime + tests/test_csv.py::TestThreadedStreamingCSVRead::test_batch_lifetime + tests/test_array.py::test_to_pandas_zero_copy + # takes forever, and manages to generate timedeltas over 64 bits + tests/test_strategies.py + "tests/test_array.py::test_pickling[builtin_pickle]" + # scipy.sparse does not support dtype float16 + "tests/test_sparse_tensor.py::test_sparse_coo_tensor_scipy_roundtrip[f2-arrow_type8]" + ) + + cd "${T}" || die + local -x PARQUET_TEST_DATA="${WORKDIR}/parquet-testing-${PARQUET_DATA_GIT_HASH}/data" + local -x ARROW_TEST_DATA="${WORKDIR}/arrow-testing-${ARROW_DATA_GIT_HASH}/data" + epytest --pyargs pyarrow +} diff --git a/dev-python/pybind11/Manifest b/dev-python/pybind11/Manifest index 557e30befa84..2a044365f396 100644 --- a/dev-python/pybind11/Manifest +++ b/dev-python/pybind11/Manifest @@ -1,3 +1,2 @@ -DIST pybind11-2.13.6.gh.tar.gz 800804 BLAKE2B 1f2efa05727ebbcd8e439b83bacfebb21d26a6f8f719e0a627633abdcae59837936e37e6441196e097e0075c9f922048d4e88146bb627d97ada28c48165bddb7 SHA512 497c25b33b09a9c42f67131ab82e35d689e8ce089dd7639be997305ff9a6d502447b79c824508c455d559e61f0186335b54dd2771d903a7c1621833930622d1a -DIST pybind11-3.0.0.gh.tar.gz 915234 BLAKE2B dfacb629b8d1cf5adeb30b305ca68f5db465fbec7a7da9b42485032279ac49721adbb248ce14c7acfdafecbd192e2542cccb08a61d8b3ee3884bbff9fc977a49 SHA512 a68a5eb3253db771308ed0922852207e6dc9a3089ad055ba3ccd36690f68b93cad98cc1a3ab822eb653153af2eeef10e6f6272b93314b2da1119e17f6c63337b DIST pybind11-3.0.1.gh.tar.gz 918227 BLAKE2B 90700c919872cd697a59951ef86da0bd0487fe01cd3f3e1b54f2b0b6380a356271635796ea2289340377ecb6ec571ac921ad5dae0e4c82f579f7d8acefba72e5 SHA512 c17e6d6a78c38e760864b390ac2aa7df6a94ca53acb2e8be71f0d63d611b738fa20a16946c98a93fbfcad56cb0346ebf247bbe41c6f5171c6ce68397b1e5c4db +DIST pybind11-3.0.2.gh.tar.gz 953272 BLAKE2B 62d1e5cc948556d5eb161b0059c1c4cada61178554af36c2c07e613399b92c24cbff19f5128abe4ba922de79c36ab349efd4af3d4d7d354270b811039e2c0576 SHA512 19bee2c76320e25202ee078b5680ff8a7acfb33494dec29dad984ab04de8bcb01340d9fec37c8cc5ac9015dfc367e60312dcd8506e66ce8f0af4c49db562ddef diff --git a/dev-python/pybind11/files/pybind11-2.13.6-pypy311.patch b/dev-python/pybind11/files/pybind11-2.13.6-pypy311.patch deleted file mode 100644 index debc7b7c55e2..000000000000 --- a/dev-python/pybind11/files/pybind11-2.13.6-pypy311.patch +++ /dev/null @@ -1,31 +0,0 @@ -diff --git a/include/pybind11/attr.h b/include/pybind11/attr.h -index 1044db94..89d418cc 100644 ---- a/include/pybind11/attr.h -+++ b/include/pybind11/attr.h -@@ -351,7 +351,8 @@ struct type_record { - - bases.append((PyObject *) base_info->type); - --#if PY_VERSION_HEX < 0x030B0000 -+// Keep in sync with enable_dynamic_attributes() in detail/class.h -+#if PY_VERSION_HEX < 0x030B0000 || defined(PYPY_VERSION) - dynamic_attr |= base_info->type->tp_dictoffset != 0; - #else - dynamic_attr |= (base_info->type->tp_flags & Py_TPFLAGS_MANAGED_DICT) != 0; -diff --git a/include/pybind11/detail/class.h b/include/pybind11/detail/class.h -index b990507d..e97d48b2 100644 ---- a/include/pybind11/detail/class.h -+++ b/include/pybind11/detail/class.h -@@ -560,9 +560,9 @@ extern "C" inline int pybind11_clear(PyObject *self) { - inline void enable_dynamic_attributes(PyHeapTypeObject *heap_type) { - auto *type = &heap_type->ht_type; - type->tp_flags |= Py_TPFLAGS_HAVE_GC; --#if PY_VERSION_HEX < 0x030B0000 -- type->tp_dictoffset = type->tp_basicsize; // place dict at the end -- type->tp_basicsize += (ssize_t) sizeof(PyObject *); // and allocate enough space for it -+#if PY_VERSION_HEX < 0x030B0000 || defined(PYPY_VERSION) // For PyPy see PR #5508 -+ type->tp_dictoffset = type->tp_basicsize; // place dict at the end -+ type->tp_basicsize += (ssize_t) sizeof(PyObject *); // and allocate enough space for it - #else - type->tp_flags |= Py_TPFLAGS_MANAGED_DICT; - #endif diff --git a/dev-python/pybind11/pybind11-2.13.6.ebuild b/dev-python/pybind11/pybind11-2.13.6.ebuild deleted file mode 100644 index 56b53ed8b136..000000000000 --- a/dev-python/pybind11/pybind11-2.13.6.ebuild +++ /dev/null @@ -1,83 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{10..14} ) - -inherit cmake distutils-r1 - -DESCRIPTION="AST-based Python refactoring library" -HOMEPAGE=" - https://pybind11.readthedocs.io/en/stable/ - https://github.com/pybind/pybind11/ - https://pypi.org/project/pybind11/ -" -SRC_URI=" - https://github.com/pybind/pybind11/archive/v${PV}.tar.gz - -> ${P}.gh.tar.gz -" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~arm64-macos ~x64-macos" - -RDEPEND=" - dev-cpp/eigen:3 -" -BDEPEND=" - test? ( - <dev-cpp/catch-3:0 - >=dev-cpp/catch-2.13.9:0 - dev-libs/boost - dev-python/pytest-rerunfailures[${PYTHON_USEDEP}] - ) -" - -EPYTEST_XDIST=1 -distutils_enable_tests pytest - -python_prepare_all() { - local PATCHES=( - # https://github.com/pybind/pybind11/pull/5508 - # https://github.com/pybind/pybind11/pull/5537 - "${FILESDIR}/${P}-pypy311.patch" - ) - - cmake_src_prepare - - PATCHES=() - distutils-r1_python_prepare_all -} - -python_configure() { - local mycmakeargs=( - # disable forced lto - -DHAS_FLTO=OFF - # https://github.com/pybind/pybind11/issues/5087 - -DPYBIND11_FINDPYTHON=OFF - -DPYBIND11_INSTALL=ON - -DPYBIND11_TEST=$(usex test) - ) - cmake_src_configure -} - -python_compile() { - distutils-r1_python_compile - # Compilation only does anything for tests - use test && cmake_src_compile -} - -python_test() { - cmake_build cpptest test_cmake_build - - local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 - cd "${BUILD_DIR}/tests" || die - epytest -p rerunfailures --reruns=5 "${S}/tests" -} - -python_install() { - distutils-r1_python_install - cmake_src_install -} diff --git a/dev-python/pybind11/pybind11-3.0.0-r1.ebuild b/dev-python/pybind11/pybind11-3.0.2.ebuild index efbb4b717d25..edd49be16e6b 100644 --- a/dev-python/pybind11/pybind11-3.0.0-r1.ebuild +++ b/dev-python/pybind11/pybind11-3.0.2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -23,7 +23,7 @@ S=${WORKDIR}/${MY_P} LICENSE="BSD" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~arm64-macos ~x64-macos" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~arm64-macos ~x64-macos" RDEPEND=" dev-cpp/eigen:3 diff --git a/dev-python/pycountry/Manifest b/dev-python/pycountry/Manifest index c317205bdfc1..dec258332016 100644 --- a/dev-python/pycountry/Manifest +++ b/dev-python/pycountry/Manifest @@ -1 +1,3 @@ DIST pycountry-24.6.1.tar.gz 6043910 BLAKE2B 53e5f3bb89edb95a10cc7bef3d5cef463d957b9bd80da1aea57c274f76f9fc5f4848c9ceabcf97d369343a5bc39f6b8e7fb2e80344ff29ccd5856a4de9770b3b SHA512 36d8f68b830d74259a5f9ac1c9c97c1b228b0072613229e6f579ea5af587ab1cd25f0637a2cdd1dbf2ae8225e2aa2958d25f1e6df42d577da821d85c4c49ae93 +DIST pycountry-26.2.16.tar.gz 7711342 BLAKE2B 9f63235c60f401e20d288be9fa837860f78e14b8ff4f51249612531894db34013dbb4ff9adc9023f8ef8b050584efa1727d0aa449f674ea59599ef1ca1ac5072 SHA512 2d7bbeace6caa2aee9fc2747e9333cf33a4a0161ac6955fce7f07e9ba2eaf8deb79796b59a9a9802c19c7c293b0b0ae1a693d7e824cf90697f14fb2106e38f03 +DIST pycountry-26.2.16.tar.gz.provenance 9315 BLAKE2B 122c4a47fc6bf73bf9485fc258390d590ec15c4abfef0b047332036c0aa52603feff27ccf6bffde6387ca42104331ac9804684273d7103f7de06bf915f83239d SHA512 5292887bdb0c450babf5ceb2bab90f5e4784e6e4677e5590147796da311000624bf8a92d47536298e9726aa2e206867b951066b85650b64d796dbd90b4075e66 diff --git a/dev-python/pycountry/pycountry-26.2.16.ebuild b/dev-python/pycountry/pycountry-26.2.16.ebuild new file mode 100644 index 000000000000..079f1e7a3ce5 --- /dev/null +++ b/dev-python/pycountry/pycountry-26.2.16.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=poetry +PYPI_VERIFY_REPO=https://github.com/pycountry/pycountry +PYTHON_COMPAT=( python3_{10..14} ) + +inherit distutils-r1 pypi + +DESCRIPTION="Database of countries, subdivisions, languages, currencies and script" +HOMEPAGE=" + https://github.com/pycountry/pycountry/ + https://pypi.org/project/pycountry/ +" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" + +EPYTEST_PLUGINS=() +distutils_enable_tests pytest + +python_test() { + epytest -o addopts= -o required_plugins= +} diff --git a/dev-python/pycurl-requests/Manifest b/dev-python/pycurl-requests/Manifest index b49f57b0b0b3..f244efd22363 100644 --- a/dev-python/pycurl-requests/Manifest +++ b/dev-python/pycurl-requests/Manifest @@ -1,2 +1,2 @@ -DIST pycurl-requests-0.5.0.gh.tar.gz 25344 BLAKE2B 50c57fabdbdc0471281ce0201de0a473db7f9783f6984da4e8c55552ab542235452a0f3e85855fa9dbb10985d8d6ec9b9499b9778b3f7166e50edb853293d16f SHA512 e6e7a0d552bf2e5167978a0ac57d7a456a8e445853e16e94d261537af19ee73e4681ee336117e076cc3a3b6e416607bc5a5f2fcbc153675ff6129a4455a4f005 DIST pycurl-requests-0.5.1.gh.tar.gz 25613 BLAKE2B 106850b2aeb4b2c026ed322896cb6abd753c0d74aa105198029035b09aa6ff162d52308041ed53a08117dce72e2a67d281576fb2cae024568e74da5c70009b0e SHA512 4f2f179e0fc46044b75fa9ba36c0835f55d47d7e4864946197eb694c9e3748b06d89351c7c3827c0fe511487d892519fe52464a6062af48750141760f2e24f84 +DIST pycurl-requests-0.5.2.gh.tar.gz 25618 BLAKE2B 594add0a452dc3bdd4a2a29e42301b3a4433c27f33a69929949e052f7782f59ca075c413ae1513c74bdd2b2443b1b8ea1333cf29cd446cf32f5ccc79f65329f2 SHA512 794788972b3467c3d7ef11acb731b5ba35c3850c20782665646bce0c1524a81b808569a1ff92fac7ec1f06cfe781a8fe16cd7bcfa5f6b493063842af323daf6a diff --git a/dev-python/pycurl-requests/pycurl-requests-0.5.0-r1.ebuild b/dev-python/pycurl-requests/pycurl-requests-0.5.2.ebuild index 76a09caf2c02..253387414515 100644 --- a/dev-python/pycurl-requests/pycurl-requests-0.5.0-r1.ebuild +++ b/dev-python/pycurl-requests/pycurl-requests-0.5.2.ebuild @@ -1,4 +1,4 @@ -# Copyright 2021-2025 Gentoo Authors +# Copyright 2021-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -27,6 +27,7 @@ RDEPEND=" dev-python/pycurl[${PYTHON_USEDEP}] " +EPYTEST_PLUGINS=() distutils_enable_tests pytest EPYTEST_DESELECT=( diff --git a/dev-python/pytest-django/pytest-django-4.11.1.ebuild b/dev-python/pytest-django/pytest-django-4.11.1.ebuild index 9225be9c8bc9..2181c726956d 100644 --- a/dev-python/pytest-django/pytest-django-4.11.1.ebuild +++ b/dev-python/pytest-django/pytest-django-4.11.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -21,7 +21,7 @@ SRC_URI=" LICENSE="BSD" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv ~sparc x86" +KEYWORDS="amd64 arm arm64 ~loong ppc ppc64 ~riscv ~sparc x86" RDEPEND=" >=dev-python/pytest-7.0.0[${PYTHON_USEDEP}] diff --git a/dev-python/pytest-django/pytest-django-4.12.0.ebuild b/dev-python/pytest-django/pytest-django-4.12.0.ebuild index b9f4a4412c27..081f0f0d3da8 100644 --- a/dev-python/pytest-django/pytest-django-4.12.0.ebuild +++ b/dev-python/pytest-django/pytest-django-4.12.0.ebuild @@ -21,7 +21,7 @@ SRC_URI=" LICENSE="BSD" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86" RDEPEND=" >=dev-python/pytest-7.0.0[${PYTHON_USEDEP}] diff --git a/dev-python/redis/Manifest b/dev-python/redis/Manifest index c9cc3979ee33..2fe1a2b0b8d0 100644 --- a/dev-python/redis/Manifest +++ b/dev-python/redis/Manifest @@ -1,2 +1,3 @@ DIST redis-py-7.1.0.gh.tar.gz 5038766 BLAKE2B 453c2c35303a72f7919208afd5c5891d0b091a44d5177974246bb0b4293f9a909b576e95fd7072cdbc206c534dc9f8f13f729a558ac1d628e6d2213fecfa7632 SHA512 b2a00b43cb04cabbf9c69b3f70d9250a215d1bb9dde8ba50aef27b28e786b70f7e65f684203258c97d7b7d8c9ce1511d404f507a7273cb528f6e3a983bcdb47a DIST redis-py-7.1.1.gh.tar.gz 5042907 BLAKE2B 311fb245207cff3fc791820e4d8c434e12fc8eb4997b467d8d7e23bdc10185f6bbfe4e6ff776b9e8908646fbb38032b97f7a45439e3779ab435df9644a4d1d1d SHA512 14aea43cfa497fd2f7ceb6452fa4cc82e5e9844310bbaf39aa1221c3f3d42b12adbd069a4c9afce461fd5c4617f7f358345afed6b97135c444e76f9b91a6848e +DIST redis-py-7.2.0.gh.tar.gz 5157622 BLAKE2B 4fd560f2a2a1312508980e3772eea64c686c42dbf669f6254e35402a2c98a713d4dbf44c4d77e49011cf1f6a492867bbff76a0ba2a6cd1a9329db69dd118db4f SHA512 6804493a78cf1e079d94e7ea1eba92ddf9fae5c70830414d2a0d07e9c13889a3d862bb59f2e85bc954156cfe01e9da1a9d6f245f08a678293c9af191ce88898f diff --git a/dev-python/redis/redis-7.2.0.ebuild b/dev-python/redis/redis-7.2.0.ebuild new file mode 100644 index 000000000000..082b9093ae1f --- /dev/null +++ b/dev-python/redis/redis-7.2.0.ebuild @@ -0,0 +1,122 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=hatchling +PYTHON_COMPAT=( python3_{10..14} ) + +inherit distutils-r1 + +MY_P=redis-py-${PV/_beta/b} +DESCRIPTION="Python client for Redis key-value store" +HOMEPAGE=" + https://github.com/redis/redis-py/ + https://pypi.org/project/redis/ +" +SRC_URI=" + https://github.com/redis/redis-py/archive/v${PV/_beta/b}.tar.gz + -> ${MY_P}.gh.tar.gz +" +S=${WORKDIR}/${MY_P} + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" + +BDEPEND=" + test? ( + dev-db/redis + dev-python/numpy[${PYTHON_USEDEP}] + dev-python/xxhash[${PYTHON_USEDEP}] + ) +" + +EPYTEST_PLUGINS=( pytest-{asyncio,timeout} ) +distutils_enable_tests pytest + +python_test() { + local EPYTEST_DESELECT=( + # Flaky test + tests/test_pubsub.py::TestPubSubDeadlock::test_pubsub_deadlock + tests/test_background.py::TestBackgroundScheduler::test_run_recurring + # require extra redis modules that apparently aren't packaged + # on Gentoo + tests/{,test_asyncio/}test_bloom.py + tests/{,test_asyncio/}test_graph.py + tests/{,test_asyncio/}test_json.py + tests/{,test_asyncio/}test_timeseries.py + # apparently available only in "Redis Stack 7.2 RC3 or later" + tests/test_commands.py::TestRedisCommands::test_tfunction_load_delete + tests/test_commands.py::TestRedisCommands::test_tfunction_list + tests/test_commands.py::TestRedisCommands::test_tfcall + # TODO + tests/test_commands.py::TestRedisCommands::test_lolwut + tests/test_commands.py::TestRedisCommands::test_module + tests/test_commands.py::TestRedisCommands::test_module_loadex + tests/test_commands.py::TestRedisCommands::test_zrank_withscore + tests/test_commands.py::TestRedisCommands::test_zrevrank_withscore + tests/test_commands.py::TestRedisCommands::test_xinfo_consumers + tests/test_asyncio/test_commands.py::TestRedisCommands::test_zrank_withscore + tests/test_asyncio/test_commands.py::TestRedisCommands::test_zrevrank_withscore + tests/test_asyncio/test_commands.py::TestRedisCommands::test_xinfo_consumers + tests/test_asyncio/test_pubsub.py::TestPubSubAutoReconnect::test_reconnect_socket_error[pool-hiredis-listen] + # requires sentinel? + tests/{,test_asyncio/}test_sentinel.py + # require REDIS_ENDPOINTS_CONFIG_PATH, except there's zero documentation + # or examples of what this is + tests/test_scenario/test_hitless_upgrade.py::TestPushNotifications + tests/test_scenario/test_maint_notifications.py::TestPushNotifications + # requires opentelemetry (with some unpackaged stuff) + tests/test_observability/test_provider.py::TestOTelProviderManagerGetMeterProvider + tests/test_observability/test_recorder.py::TestInitConnectionCount + tests/test_observability/test_recorder.py::TestInitCSCItems + tests/test_observability/test_recorder.py::TestObservableGaugeIntegration + ) + local EPYTEST_IGNORE=( + # fails over missing certs, we don't do cluster anyway + tests/test_asyncio/test_cluster.py + # require redis_entraid + tests/test_asyncio/test_credentials.py + tests/test_credentials.py + # pybreaker + tests/test_asyncio/test_multidb + tests/test_asyncio/test_scenario + tests/test_multidb + tests/test_scenario + # cluster, not marked properly + tests/maint_notifications/test_cluster_maint_notifications_handling.py + ) + + # TODO: try to run more servers? + epytest -m "not redismod and not onlycluster and not replica and not ssl" +} + +src_test() { + local redis_pid="${T}"/redis.pid + local redis_port=6379 + + if has_version ">=dev-db/redis-7"; then + local extra_conf=" + enable-debug-command yes + enable-module-command yes + " + fi + + # Spawn Redis itself for testing purposes + einfo "Spawning Redis" + einfo "NOTE: Port ${redis_port} must be free" + "${EPREFIX}"/usr/sbin/redis-server - <<- EOF || die "Unable to start redis server" + daemonize yes + pidfile ${redis_pid} + port ${redis_port} + bind 127.0.0.1 ::1 + ${extra_conf} + EOF + + # Run the tests + distutils-r1_src_test + + # Clean up afterwards + kill "$(<"${redis_pid}")" || die +} diff --git a/dev-python/simsimd/Manifest b/dev-python/simsimd/Manifest index 667673392a17..cd9294dfa1e4 100644 --- a/dev-python/simsimd/Manifest +++ b/dev-python/simsimd/Manifest @@ -1,6 +1,4 @@ DIST simsimd-6.5.12.tar.gz 186676 BLAKE2B 3eadeb1612d7147539a259112ac2dc186b95ed55f814ef662b596e654e5782b54f633cd9086b14ff97f2c86b4f6083057615fd2e98b89ac599408461a5abf28d SHA512 50cdc0201c3a4753a504f50474337957b8aa0ac5e889fbc3921abce611d49e95bd48b9e458c05cff526e3fa65b7010445a942ce46ceab47eaa03d31d87036311 DIST simsimd-6.5.12.tar.gz.provenance 9493 BLAKE2B dc070671415ab886ee4642824ab536dad5cc9ceed147a259c8f38b8d1b6690b2c0fb221fdba4e7297e88f4627ebc655e742e7668c92d2752412c4e1e0d68b599 SHA512 8db488effba3057ed611a40ecb9cb3952c67441fbed4fcc504f95ac1792bdb466e451791b0844058d6323e6f4c9aac0d18e6a8ede74944bdc045a83e320b1471 -DIST simsimd-6.5.3.tar.gz 184865 BLAKE2B beb35b81ab1b5d722c4e3c824075e150620943bd66ba488be020c0de3d5fa3ffd24efc7870763fe3d4c9e0d824e2b116af942b2bd3e38463d5948a5832a2fbf8 SHA512 adc914bba666fc05b57b40f0b00b591d15d6e834eed27d232ef498bd93b0ed398a0348478fc4f2517a1f5d973985060d93a2c3346917ce4a47b90a5e359668b8 -DIST simsimd-6.5.3.tar.gz.provenance 9307 BLAKE2B ae0de33d7d106b0ecc3705bcb8d5b5ec6a42fd12657b2b429083991187747e4ea7f1d5b37205b9d1aae5f1db5acfb42fb3417ac89470e34c2d28fda1f4d3f4f0 SHA512 dda353b271dca77f89362ad18d24fea82c07395b2d753a2afaeb133cb50fa2d8fec7b2c2c836ab995f2292cc09b53c67e2aedccfff6111cbeb2445aab112185f -DIST simsimd-6.5.8.tar.gz 186258 BLAKE2B fa7ef025ee43991faf1fde2e8cdf01f7e2cacd59fb8581fe3eb627957cdabc613190cfddc01021852e8f9e9ff1dd92bf33af757f7d10ef0c23694058de46ec4b SHA512 960769928b5abb9376b9dccbd13b06672861769fadce97a3d90a72407ea663baf3287b8c246415e46ee72ff262ded9838ac748fc76e120566975f09ea439826c -DIST simsimd-6.5.8.tar.gz.provenance 9301 BLAKE2B 96454794c9e1c60c3c30b5949d103684376beb276284ce30d4e326c667d70c6e5e62c16d85c87d5daba590b5d9a6b54b6d4b2ba2fd4be44a03eb723650b07812 SHA512 964ee818b70278ef217e4a207ad972ddca1b4cec2000918d62b3ad8de6e7e2c30ace2030a697b7c302f064feb80113c21c95377dabc6cb1b4ca1c7d506602998 +DIST simsimd-6.5.13.tar.gz 186854 BLAKE2B d576c26895960a10cbf0cfd135d00aeddc2d3feb9a1391de31184e89a4eb813b19ff9393ed1ad81313a7b6f36c20e14734616b5b70c01bd48208b2a154d31f7f SHA512 ca424fadb4b3d46eb13a2366ada81ca847528f9315a616daa8af4bc3f054eacaeddcc983e97614e0ee073aac05241d7fe9061be61d9a7eec163b76f8d17f88b7 +DIST simsimd-6.5.13.tar.gz.provenance 9532 BLAKE2B f8946ba8766dabc7963ba3538cda52efc6b80d9774f2c8cb6179cee37648f52e96444e071262041b77980fcabe3fe72650f391ce1d1548e2d55e7d7a239b69cf SHA512 841a672c2ac21a195bb44de2d18971cf195bd6452f12fd559407833874bef97ef7d04c05ab2470faf806c9dd72b46a599b59f80408074601a9970d09d4ed6130 diff --git a/dev-python/simsimd/simsimd-6.5.8.ebuild b/dev-python/simsimd/simsimd-6.5.13.ebuild index d3ca52d45c56..0c45f9d8ca68 100644 --- a/dev-python/simsimd/simsimd-6.5.8.ebuild +++ b/dev-python/simsimd/simsimd-6.5.13.ebuild @@ -1,4 +1,4 @@ -# Copyright 2024-2025 Gentoo Authors +# Copyright 2024-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -6,6 +6,7 @@ EAPI=8 DISTUTILS_EXT=1 DISTUTILS_USE_PEP517=setuptools PYPI_VERIFY_REPO=https://github.com/ashvardanian/SimSIMD +# TODO: freethreading PYTHON_COMPAT=( python3_{10..14} ) inherit distutils-r1 pypi toolchain-funcs diff --git a/dev-python/simsimd/simsimd-6.5.3.ebuild b/dev-python/simsimd/simsimd-6.5.3.ebuild deleted file mode 100644 index d3ca52d45c56..000000000000 --- a/dev-python/simsimd/simsimd-6.5.3.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 2024-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_EXT=1 -DISTUTILS_USE_PEP517=setuptools -PYPI_VERIFY_REPO=https://github.com/ashvardanian/SimSIMD -PYTHON_COMPAT=( python3_{10..14} ) - -inherit distutils-r1 pypi toolchain-funcs - -DESCRIPTION="Fastest SIMD-Accelerated Vector Similarity Functions for x86 and Arm" -HOMEPAGE=" - https://github.com/ashvardanian/SimSIMD/ - https://pypi.org/project/simsimd/ -" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~amd64" -IUSE="openmp" - -BDEPEND=" - test? ( - dev-python/tabulate[${PYTHON_USEDEP}] - ) -" - -EPYTEST_PLUGINS=( pytest-repeat ) -distutils_enable_tests pytest - -pkg_pretend() { - if [[ ${MERGE_TYPE} != binary ]] && use openmp; then - tc-check-openmp - fi -} - -pkg_setup() { - if [[ ${MERGE_TYPE} != binary ]] && use openmp; then - tc-check-openmp - fi -} - -src_prepare() { - sed -i -e '/-O3/d' setup.py || die - if ! use openmp; then - sed -i -e '/-fopenmp/d' setup.py || die - fi - - distutils-r1_src_prepare -} - -src_compile() { - einfo "Please disregard initial compiler errors -- the package is checking" - einfo "for target support." - - distutils-r1_src_compile -} - -python_test() { - epytest scripts/test.py -} diff --git a/dev-python/sshtunnel/sshtunnel-0.4.0-r2.ebuild b/dev-python/sshtunnel/sshtunnel-0.4.0-r2.ebuild index f6bd2eaa7d9a..8f9cd2ac3f1e 100644 --- a/dev-python/sshtunnel/sshtunnel-0.4.0-r2.ebuild +++ b/dev-python/sshtunnel/sshtunnel-0.4.0-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -13,7 +13,7 @@ HOMEPAGE="https://pypi.org/project/sshtunnel/" LICENSE="MIT" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~x86" +KEYWORDS="amd64 ~arm ~arm64 x86" RDEPEND="dev-python/paramiko[${PYTHON_USEDEP}]" BDEPEND=" diff --git a/dev-python/sybil/sybil-9.2.0-r1.ebuild b/dev-python/sybil/sybil-9.2.0-r1.ebuild index 9fbd6d512dce..8e52c37fd177 100644 --- a/dev-python/sybil/sybil-9.2.0-r1.ebuild +++ b/dev-python/sybil/sybil-9.2.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 2019-2025 Gentoo Authors +# Copyright 2019-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -21,7 +21,7 @@ SRC_URI=" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv ~sparc x86" +KEYWORDS="amd64 arm arm64 ~loong ppc ppc64 ~riscv ~sparc x86" RDEPEND=" >=dev-python/pytest-8[${PYTHON_USEDEP}] diff --git a/dev-python/sybil/sybil-9.3.0.ebuild b/dev-python/sybil/sybil-9.3.0.ebuild index 63d2991d5a62..5997071a77fe 100644 --- a/dev-python/sybil/sybil-9.3.0.ebuild +++ b/dev-python/sybil/sybil-9.3.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 2019-2025 Gentoo Authors +# Copyright 2019-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -21,7 +21,7 @@ SRC_URI=" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86" RDEPEND=" >=dev-python/pytest-8[${PYTHON_USEDEP}] diff --git a/dev-python/testfixtures/testfixtures-10.0.0.ebuild b/dev-python/testfixtures/testfixtures-10.0.0.ebuild index 9028284bb344..e3029cc4878e 100644 --- a/dev-python/testfixtures/testfixtures-10.0.0.ebuild +++ b/dev-python/testfixtures/testfixtures-10.0.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -16,7 +16,7 @@ HOMEPAGE=" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv ~sparc x86" +KEYWORDS="amd64 arm arm64 ~loong ppc ppc64 ~riscv ~sparc x86" BDEPEND=" test? ( diff --git a/dev-python/testfixtures/testfixtures-9.1.0.ebuild b/dev-python/testfixtures/testfixtures-9.1.0.ebuild index 9028284bb344..e3029cc4878e 100644 --- a/dev-python/testfixtures/testfixtures-9.1.0.ebuild +++ b/dev-python/testfixtures/testfixtures-9.1.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -16,7 +16,7 @@ HOMEPAGE=" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv ~sparc x86" +KEYWORDS="amd64 arm arm64 ~loong ppc ppc64 ~riscv ~sparc x86" BDEPEND=" test? ( diff --git a/dev-python/testfixtures/testfixtures-9.2.0.ebuild b/dev-python/testfixtures/testfixtures-9.2.0.ebuild index 9028284bb344..e3029cc4878e 100644 --- a/dev-python/testfixtures/testfixtures-9.2.0.ebuild +++ b/dev-python/testfixtures/testfixtures-9.2.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -16,7 +16,7 @@ HOMEPAGE=" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv ~sparc x86" +KEYWORDS="amd64 arm arm64 ~loong ppc ppc64 ~riscv ~sparc x86" BDEPEND=" test? ( diff --git a/dev-python/tifffile/Manifest b/dev-python/tifffile/Manifest index baa91f06487a..52b06dd7308a 100644 --- a/dev-python/tifffile/Manifest +++ b/dev-python/tifffile/Manifest @@ -1,2 +1,3 @@ DIST tifffile-2026.1.28.gh.tar.gz 365400 BLAKE2B 9538a67252981e99aab5f09320948a8d64d159f70c91204e3954606229a8a2a763dc48f321c9ecc3caf609ae60e5d6ed31241fc662c1e8191461e08be65883c2 SHA512 e75af703440a628c5a3487d165ef0a2e4d068d0eb2f2ce4910446599de682ebd89d1eebe236ddd4fc7214d86849daef5f61b781a76562624a35efd7a82f2679f DIST tifffile-2026.2.15.gh.tar.gz 366055 BLAKE2B 25a5fae471fb90fb54a69c8acf173ff364ffe3e179b8158796a767a514475069a5c9c99cf80916a4b8742f27108f513e34e6d3ff92b05b2efc33daa429b037f3 SHA512 1d9ea9641c07c0e735a1324f36100b6d884a0fc57015830a9d1be21558314c2ec4b179c332a52323c6cffff1bf78f7aaa90844d81e391d7a14298b4581b704e5 +DIST tifffile-2026.2.16.gh.tar.gz 366381 BLAKE2B 5c6777fbd25e79a76ccb19874f4e5ec48e44bfd74401d19cf96d9a75b3c574035e8ea31b984552c5263b2a15f2b0ad7d176676d3a720b90407ef1464ea988fe6 SHA512 3c17572ae4c03149c873e5e9acfec9e2b4e087a2b4b45c5146d99f1a2f50ba91c191d152eef6d91f7018419a24a8e73687710b629f82daafed11750786430372 diff --git a/dev-python/tifffile/tifffile-2026.2.16.ebuild b/dev-python/tifffile/tifffile-2026.2.16.ebuild new file mode 100644 index 000000000000..de56c12ef129 --- /dev/null +++ b/dev-python/tifffile/tifffile-2026.2.16.ebuild @@ -0,0 +1,56 @@ +# Copyright 2021-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{10..14} ) + +inherit distutils-r1 + +DESCRIPTION="Read and write TIFF files" +HOMEPAGE=" + https://pypi.org/project/tifffile/ + https://github.com/cgohlke/tifffile/ + https://www.cgohlke.com/ +" +SRC_URI=" + https://github.com/cgohlke/tifffile/archive/v${PV}.tar.gz + -> ${P}.gh.tar.gz +" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86" + +RDEPEND=" + >=dev-python/numpy-1.19.2[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + dev-python/defusedxml[${PYTHON_USEDEP}] + >=dev-python/fsspec-2021.5.0[${PYTHON_USEDEP}] + dev-python/lxml[${PYTHON_USEDEP}] + dev-python/xarray[${PYTHON_USEDEP}] + ) +" + +EPYTEST_PLUGINS=() +EPYTEST_XDIST=1 +distutils_enable_tests pytest + +python_test() { + local EPYTEST_DESELECT=( + # not marked properly + # https://github.com/cgohlke/tifffile/pull/308 + tests/test_tifffile.py::test_issue_dcp + # meaningless and broken on py<3.13 + # https://github.com/cgohlke/tifffile/pull/309 + tests/test_tifffile.py::test_gil_enabled + ) + + local -x SKIP_LARGE=1 + local -x SKIP_HTTP=1 + + epytest +} diff --git a/dev-python/tox/Manifest b/dev-python/tox/Manifest index c72cc539c924..b08c2e763c08 100644 --- a/dev-python/tox/Manifest +++ b/dev-python/tox/Manifest @@ -10,3 +10,5 @@ DIST tox-4.35.0.tar.gz 205701 BLAKE2B 7f6a89a8ec975c31d06c091b59baba81c827a4f91e DIST tox-4.35.0.tar.gz.provenance 9138 BLAKE2B e21ef76a38268db69cef238659b72c2fe9838d769801e124f29c4d32aba21a69cd17f9cf8cfb87a6d272e7997b7c21dee9a244118139ca4f64a8a539813b6292 SHA512 cafe0f3160eff68a84a177e46c8c2ad8c0b8e5f1cce9271f73d2e814ed5af2c989d184d8e47a6d8495d5238c14ed74cc8cc5dd95ae2159862e058fcc30a510a0 DIST tox-4.36.0.tar.gz 210043 BLAKE2B f9ae83438f050577b7d7a3084d1e0bb7138b6cb3ccc281e27d96571eee07f499ab6cc2b6f16ddecfebab8ab5d77d7f91f61c01bade37f8965159a048633e2474 SHA512 5f37c6e9eff09fb21142fe00b3b493c7dbc8c47d475d6c59c05d0ba061e58cea4ae88596440824416e39e28288760d329b5e79e06e45dc896d52004761c8b8b6 DIST tox-4.36.0.tar.gz.provenance 9099 BLAKE2B 630575fcc9bec7c8ac5951a980e31b2abf5318563b815d0b60e117995ad9be6ebec36b23b984d09f4da66e02de8c0d86822b82eca2b86e0635165825f60cad47 SHA512 2169d6158fa405209c74c96805f04b3e6b1b917dfff6c6fc460707a9f91edf2b51a0b12ebc0fb46586b7532bbafbf0dcd5e16f21bc26bbf4ddebbd22bf195a0c +DIST tox-4.36.1.tar.gz 212677 BLAKE2B adc9ca41d00d73fb1a45f85934ab6619fff90b33a7b89db742be499b410bd6c78c3231ec8379bb36242f16bbe8ae0994ad16c6bf91f1ceb70aac8efb462731ff SHA512 66f3949b528fa1479db438a2a9c8eb71e088cad35a8c42c9b22d445a07aea3fea98a87179f7fc4b8c5e294d3a7eded4d2c9ea541f2afe7246bbc62af57145e8a +DIST tox-4.36.1.tar.gz.provenance 9381 BLAKE2B 7d802ac1866abb6383b797fe9845562edaa2a5d806b272d4b53221d819f02661d61697698bc72f355082a28b2ede860004c77bd7a07e8d09163e2e2d5e9da24c SHA512 19810bdeba1feb52d4573c5e3fed6b20e1fbc9c2e05c5a191cb2a192096bd096cbeb133b2e888fa89c1fe7bb156179b13a3a679ea418878315ccf259f8b73db8 diff --git a/dev-python/tox/tox-4.36.1.ebuild b/dev-python/tox/tox-4.36.1.ebuild new file mode 100644 index 000000000000..42367ebe26f8 --- /dev/null +++ b/dev-python/tox/tox-4.36.1.ebuild @@ -0,0 +1,92 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=hatchling +PYPI_VERIFY_REPO=https://github.com/tox-dev/tox +PYTHON_COMPAT=( python3_{10..14} ) + +inherit distutils-r1 pypi + +DESCRIPTION="virtualenv-based automation of test activities" +HOMEPAGE=" + https://tox.readthedocs.io/ + https://github.com/tox-dev/tox/ + https://pypi.org/project/tox/ +" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" + +RDEPEND=" + dev-python/cachetools[${PYTHON_USEDEP}] + dev-python/chardet[${PYTHON_USEDEP}] + dev-python/colorama[${PYTHON_USEDEP}] + dev-python/filelock[${PYTHON_USEDEP}] + dev-python/packaging[${PYTHON_USEDEP}] + dev-python/platformdirs[${PYTHON_USEDEP}] + dev-python/pluggy[${PYTHON_USEDEP}] + dev-python/pyproject-api[${PYTHON_USEDEP}] + dev-python/virtualenv[${PYTHON_USEDEP}] +" +BDEPEND=" + dev-python/hatch-vcs[${PYTHON_USEDEP}] + test? ( + dev-python/build[${PYTHON_USEDEP}] + dev-python/distlib[${PYTHON_USEDEP}] + dev-python/psutil[${PYTHON_USEDEP}] + dev-python/re-assert[${PYTHON_USEDEP}] + $(python_gen_cond_dep ' + dev-python/time-machine[${PYTHON_USEDEP}] + ' 'python*') + ) +" + +EPYTEST_PLUGINS=( pytest-{mock,rerunfailures,timeout,xdist} ) +# xdist seems to mess up state between successive implementation runs +distutils_enable_tests pytest + +src_prepare() { + # upstream lower bounds are meaningless + sed -i -e 's:>=[0-9.]*::' pyproject.toml || die + distutils-r1_src_prepare +} + +python_test() { + # devpi_process is not packaged, and has lots of dependencies + cat > "${T}"/devpi_process.py <<-EOF || die + def IndexServer(*args, **kwargs): raise NotImplementedError() + EOF + + local -x PYTHONPATH=${T}:${PYTHONPATH} + local EPYTEST_DESELECT=( + # Internet + tests/tox_env/python/virtual_env/package/test_package_cmd_builder.py::test_build_wheel_external + tests/tox_env/python/virtual_env/package/test_package_cmd_builder.py::test_run_installpkg_targz + tests/tox_env/python/virtual_env/package/test_package_pyproject.py::test_pyproject_installpkg_pep517_envs + ) + local EPYTEST_IGNORE=( + # requires devpi* + tests/test_provision.py + ) + + case ${EPYTHON} in + python*) + local EPYTEST_PLUGINS=( "${EPYTEST_PLUGINS[@]}" time-machine ) + ;; + pypy3*) + EPYTEST_DESELECT+=( + 'tests/tox_env/python/pip/test_pip_install.py::test_constrain_package_deps[explicit-True-True]' + 'tests/tox_env/python/pip/test_pip_install.py::test_constrain_package_deps[requirements-True-True]' + 'tests/tox_env/python/pip/test_pip_install.py::test_constrain_package_deps[constraints-True-True]' + 'tests/tox_env/python/pip/test_pip_install.py::test_constrain_package_deps[explicit+requirements-True-True]' + 'tests/tox_env/python/pip/test_pip_install.py::test_constrain_package_deps[requirements_indirect-True-True]' + 'tests/tox_env/python/pip/test_pip_install.py::test_constrain_package_deps[requirements_constraints_indirect-True-True]' + ) + ;; + esac + + epytest -o addopts= +} diff --git a/dev-python/typer/Manifest b/dev-python/typer/Manifest index 8360f58ecc88..db5b04ed046e 100644 --- a/dev-python/typer/Manifest +++ b/dev-python/typer/Manifest @@ -2,3 +2,4 @@ DIST typer-0.21.0.tar.gz 106781 BLAKE2B 12d426b0a4fe7b515adfdb66b9d45b97ea8df540 DIST typer-0.21.0.tar.gz.provenance 9031 BLAKE2B 99ff1f36faba9fdf49bd52ca84e0aab67741e56d8cb4ead915ca436cb36b47a871886af7c414c27b2eb08a1d7ea8dbdb0468f1bd3393d8b653b693b881d7672a SHA512 75088b0d6076cc5eb4c5587074d2f6bc7e93551d634b79a3aa064e375970c4e0c99b2931e9bb8c2a70f7f9299d5dd8d8085cb697baa65ff02c68c2e306832b26 DIST typer-0.23.0.tar.gz 120181 BLAKE2B ed10661ad2cc942c4010bb9cf01b6a37e1426e7f17632c826375f151fb02b5641e32e4bf8ea07c45f86e1a3c91982df30b4a58fc9e0391717c84ad3fffc1db74 SHA512 a21e41a4075610d12cd28cdb6e8d5136437cb942925b19f95c34db3e62574a03773d5a242dcbd67eac5e77907ca091a9c689638a65ffe411a0fcef20b897a7ca DIST typer-0.23.1.tar.gz 120047 BLAKE2B 51461f8514acccf270dc5c86e24ba842d82f0c1c7b4a121725a8f96cefd5b0d06806e5f3262d6a1f2b5ed25e2ae8e3dfd545e4bcd4a8bda90827609f743f732a SHA512 f6d40ef01a602491895192b2158a22b224468eec13215fe6d547e680b235de199101af08f58ea37ffbd6683a409c84c7c233ec164db7f6031045cbda1685a296 +DIST typer-0.24.0.tar.gz 118380 BLAKE2B ab0f919882f742aa6a917d9219d25400e8a77370af488b5c26c9b2785aa4107746d6685f480ce1b608d391dc24ee5aed36468a1dc87894ce44be53a03cea9a12 SHA512 881922b1c7fe2577e4a240be90afa3b1c4753caf36793a423dfff7b1be4c8be6123d4157799e54705d523d971f34f6de829ad91a7b1ad68f4f341a0709b2e724 diff --git a/dev-python/typer/typer-0.24.0.ebuild b/dev-python/typer/typer-0.24.0.ebuild new file mode 100644 index 000000000000..8bd2e0a642ef --- /dev/null +++ b/dev-python/typer/typer-0.24.0.ebuild @@ -0,0 +1,67 @@ +# Copyright 2025-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=pdm-backend +PYTHON_COMPAT=( python3_{10..14} ) + +inherit distutils-r1 shell-completion pypi + +DESCRIPTION="Build great CLIs. Easy to code. Based on Python type hints" +HOMEPAGE=" + https://typer.tiangolo.com/ + https://github.com/fastapi/typer/ + https://pypi.org/project/typer/ +" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64" +IUSE="cli" + +RDEPEND=" + >=dev-python/annotated-doc-0.0.2[${PYTHON_USEDEP}] + >=dev-python/click-8.2.1[${PYTHON_USEDEP}] + >=dev-python/rich-12.3.0[${PYTHON_USEDEP}] + >=dev-python/shellingham-1.3.0[${PYTHON_USEDEP}] + cli? ( !dev-lang/erlang ) +" +BDEPEND=" + test? ( + dev-python/coverage[${PYTHON_USEDEP}] + ) +" + +EPYTEST_PLUGINS=() +EPYTEST_XDIST=1 +distutils_enable_tests pytest + +src_prepare() { + distutils-r1_src_prepare + + if ! use cli; then + sed -i -e '/typer\.cli/d' pyproject.toml || die + fi +} + +python_test() { + # See scripts/tests.sh + local -x TERMINAL_WIDTH=3000 + local -x _TYPER_FORCE_DISABLE_TERMINAL=1 + local -x _TYPER_RUN_INSTALL_COMPLETION_TESTS=1 + + epytest +} + +python_install() { + if use cli && [[ ! ${COMPLETIONS_INSTALLED} ]]; then + local -x _TYPER_COMPLETE_TEST_DISABLE_SHELL_DETECTION=1 + newbashcomp - typer < <(typer --show-completion bash || die) + newzshcomp - typer < <(typer --show-completion zsh || die) + newfishcomp - typer < <(typer --show-completion fish || die) + COMPLETIONS_INSTALLED=1 + fi + + distutils-r1_python_install +} diff --git a/dev-python/uv-build/Manifest b/dev-python/uv-build/Manifest index 072430136e0d..c9a7046cfb81 100644 --- a/dev-python/uv-build/Manifest +++ b/dev-python/uv-build/Manifest @@ -1,5 +1,6 @@ DIST uv_build-0.10.0.tar.gz 361570 BLAKE2B e94909f789b4f09b407b2441261c60235d9e4572c3cf71e9947fb285fea1240be90faa9edf0a8a6fc9b0992103a0c99c7edcf32d969267482f63a354a2f00b94 SHA512 c053b31df98966b1e2d327d912d610f7844fe98565ab0f396cf87c3f9cfcafcad142fc6999d23afa7a5819a69995195d9ed65f76d6179a890c842db6e8e2aebb DIST uv_build-0.10.2.tar.gz 361619 BLAKE2B 846ebd454b8f9ec126bb25671c39e75b6f22b0ec60ccc7cd0775ef84df0ed8ba9cad94d343538def6c5ebfa142df60bc502ee732017f0d5abbd53392747d9c6c SHA512 fee7ddb7eedc2490eed4240120b6541b6d4b247dd428e8e6844895880d4ed8310dc90a5a0805ee77a5ea179b753212719cf9e2be9baad19c5661e7df50d84f34 +DIST uv_build-0.10.3.tar.gz 362506 BLAKE2B 36e938850caef030cc3492c89a30c15ce7a8374b3c02baa1718e24d51441a63e0e30c0af936bb58e0772128e66f7b35d9626b61fa471313913e6920ac006573e SHA512 b49b5089b34d18851264f4f0645021828a7b5a8a46b393d4a67e9f99d508aa12f24d9fcb7c821d585a5dfea8c2a4fb1980853df64cb63fc07cde63eb9a27440f DIST uv_build-0.9.15.tar.gz 354021 BLAKE2B a47350ead8d9672d09967bbd7f9ac2f8e231e1dd5afb8c20e59926429792d3872feb1f8e4d7a9318ec447a99ce8add0503dfba0be2b970b2f192f954b472f1a7 SHA512 11fa1ebb1cfc184bd5bedf5e11fb28f14abf118183d94cbe0ac9a1b83f150a69836f0547a671e8cf16527d84ec61dd5b2983efafe5aeccd86e94cda79e1de664 DIST uv_build-0.9.21.tar.gz 357539 BLAKE2B 721e12e0260301d3234f3fbc76d5944c9b15e14b345876d3f231314f64f15c5e6c37c8c7155e24605c928dbe52b12b3b02cd2f0a1373b8d93b017f2c122ddf19 SHA512 1e2885f978fa45e1481a72a35d5734ef80d3ab7da0213fc41cad8c4e49756bf0b172cea570d25a6b0461c6dd13fead8a8fae356b11ec758f8bd7b915faa322c4 DIST uv_build-0.9.25.tar.gz 359005 BLAKE2B b0c8307919092aa0abbca7da379efd315f54c4d70c066633a3524fb1a78fcff0831e071086050b240536a123d965706337f09c716814e5655c9051cd4d879a19 SHA512 601eea260c615b6102c0e6a766d7c5fd0585c72005fb813a22cdc3f568c2f57042f72d3d16822f1c1773e1f9e8580d1f77b1e73b940a026c0a8e8783ef817f7b diff --git a/dev-python/uv-build/uv-build-0.10.3.ebuild b/dev-python/uv-build/uv-build-0.10.3.ebuild new file mode 100644 index 000000000000..639745396c25 --- /dev/null +++ b/dev-python/uv-build/uv-build-0.10.3.ebuild @@ -0,0 +1,99 @@ +# Copyright 2025-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +# Maturin compiles uv-build executable for every impl, we do not want +# that, so we use another backend. And since we use another backend, +# why not dogfood it in the first place? +DISTUTILS_USE_PEP517=standalone +PYTHON_COMPAT=( python3_{10..14} ) + +inherit distutils-r1 pypi + +DESCRIPTION="PEP517 uv build backend" +HOMEPAGE=" + https://github.com/astral-sh/uv/ + https://pypi.org/project/uv-build/ +" + +LICENSE="|| ( Apache-2.0 MIT )" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + >=dev-python/uv-${PV} +" +BDEPEND=" + test? ( + app-arch/unzip + dev-python/build[${PYTHON_USEDEP}] + ) +" + +src_prepare() { + distutils-r1_src_prepare + + # use the executable from dev-python/uv instead of building + # a largely overlapping uv-build executable (at least for now) + sed -i -e '/USE_UV_EXECUTABLE/s:False:True:' python/uv_build/__init__.py || die + + # replace the build-system section + sed -i -e '/\[build-system\]/,$d' pyproject.toml || die + cat >> pyproject.toml <<-EOF || die + [build-system] + requires = ["uv_build<9999"] + build-backend = "uv_build" + backend-path = ["src"] + EOF + + # rename to make uv-build find it + mv python src || die +} + +python_test() { + "${EPYTHON}" -m build -n || die "Self-build failed with ${EPYTHON}" + + local zip_result=$( + unzip -t "dist/uv_build-${PV}-py3-none-any.whl" || die + ) + local zip_expected="\ +Archive: dist/uv_build-${PV}-py3-none-any.whl + testing: uv_build/ OK + testing: uv_build/__init__.py OK + testing: uv_build/__main__.py OK + testing: uv_build/py.typed OK + testing: uv_build-${PV}.dist-info/ OK + testing: uv_build-${PV}.dist-info/WHEEL OK + testing: uv_build-${PV}.dist-info/METADATA OK + testing: uv_build-${PV}.dist-info/RECORD OK +No errors detected in compressed data of dist/uv_build-${PV}-py3-none-any.whl.\ +" + if [[ ${zip_result} != ${zip_expected} ]]; then + eerror ".zip result:\n${zip_result}" + eerror ".zip expected:\n${zip_expected}" + die ".whl result mismatch" + fi + + local tar_result=$( + tar -tf "dist/uv_build-${PV}.tar.gz" || die + ) + local tar_expected="\ +uv_build-${PV}/PKG-INFO +uv_build-${PV}/ +uv_build-${PV}/README.md +uv_build-${PV}/pyproject.toml +uv_build-${PV}/src +uv_build-${PV}/src/uv_build +uv_build-${PV}/src/uv_build/__init__.py +uv_build-${PV}/src/uv_build/__main__.py +uv_build-${PV}/src/uv_build/py.typed\ +" + if [[ ${tar_result} != ${tar_expected} ]]; then + eerror ".tar.gz result:\n${tar_result}" + eerror ".tar.gz expected:\n${tar_expected}" + die ".tar.gz result mismatch" + fi +} diff --git a/dev-python/uv/Manifest b/dev-python/uv/Manifest index 0bce067e2022..95a36339dfe4 100644 --- a/dev-python/uv/Manifest +++ b/dev-python/uv/Manifest @@ -2,6 +2,8 @@ DIST uv-0.10.0-crates.tar.xz 40475984 BLAKE2B 8146350fd684ac9aeadda44142b8fb0b0d DIST uv-0.10.0.gh.tar.gz 4924383 BLAKE2B 957a9ab408ad5f07416a76a97f23d0bb41b22a1d1ebffc6a84e41c382b8cf271094bce08be19d5649fd9866d22c75619c3561b79659c65c99fa45ea318b6bf95 SHA512 84bf1ecfa730cbb4fe4c602dba3ef3d58bf070472cde5f160291fabfdd7630fd8dcbb45b10e7abcb00db6898d5cefa8ac616c68dfa56bb15640ce6211caff51d DIST uv-0.10.2-crates.tar.xz 40488272 BLAKE2B 7b60ce55ac335b4f22c14e4029451e5931a52d2fbd2342d53d444a84ea50383ba79c5152b0f394d49937dd5e0d7449f92bf69fd6a32e3509f682403533eb9f8b SHA512 7fdac474d6b6cbd4ff22e40396b47edcf050ace6d7d74885c90e6833169ba2051d392b2f70f7a8dc9d12cecb7fc81102a556c5b5510cd678be996a3e90ff2e08 DIST uv-0.10.2.gh.tar.gz 4927786 BLAKE2B bdbc9014a9362121205f12046eea0999838c9a72bf6d3cb347c51c13f92cb7b5b4524b4abcc81caac297645f2863e577981b033a4ee6a29166cd818aec06a6ad SHA512 7592217ce76cd0a418a4979df045890e215c5bcff53d18e34924e0d57ec388fc8ce56b3fdc7ee473f131de5d04a4349b1dbb9d5a585493a0cd9a22dfd51e9cfc +DIST uv-0.10.3-crates.tar.xz 40664424 BLAKE2B 78f8834b7f78b74448d77dbb9e12f31c472561e8104fee73fdd70b449818b2deaa6e6600ffec1e65b533fa1b39c3703f43a71996e90036b4e045c1ec786184f0 SHA512 e79f416a6afc01cafca081e34759ee3f873239f321a17147b1ee1badbb22289feea29d003da79ca2274ef151f4f42947be4675182be4912a9590ee7f84a9165d +DIST uv-0.10.3.gh.tar.gz 4944734 BLAKE2B f2b65afbcdb88ec7d77b22ac44123aca4a2e6424d69abbd290d9b51a6470f954938e8cd9f5bb65fba2b3a5ee4383692fab3a15dd020529935021a547e3fed11d SHA512 a8f41a5fc74b30f8e0dd7bd24786148a35230f14237872211e56539f3892b02b59a0e06ad6400fa000b13c659b6286065294337c73749f6c51aca17f22ed5d69 DIST uv-0.9.15-crates.tar.xz 46539408 BLAKE2B 57e582f56e12858292d1dfaec10292eb58fb118051618875eab0d2dcd4f55aa89de6f788b3aa5013ce5e03068bb404ef04faae633d5c208f382366ac5ddf70df SHA512 4db7549d6902682db7af385e5099e74bbd82e54aaf45a44fe64416fda91e065f4bf978b9db55ab72f2872f9e8933b49020102b959c1d2bcef4b9a9877ac1e789 DIST uv-0.9.15.gh.tar.gz 4887603 BLAKE2B 422a3c004abdf052438b145400675010b1adfc8cb8d49979367544e2d381389594188276fe603ffa983f5926be624f5d863053bd79342eeee10caf1260b2a479 SHA512 2605e2e7d5f6fdbb5ec4839363f65c8e71559944ec003cb9c69040be08094eb5c041831151b669e2dbbcf1799e862f484a21a592090524f79686469eac0e3381 DIST uv-0.9.21-crates.tar.xz 48642776 BLAKE2B 4ce225a3639d02ea05014c2132a7fd8baf53f3bd0bf3cafc6ebde144f2cea982426835f91bcb587e8dba122afe381c5a0ffa654667d4677f0b0b18b4b63a2f2e SHA512 db391109602bf1afbe868740ee977e76f92911136f61a9db8918ca89bcabdad02b75f1892cef200a370ea91829e177fd6c775aff9522f72fb90f2fc9d3acb22a diff --git a/dev-python/uv/uv-0.10.3.ebuild b/dev-python/uv/uv-0.10.3.ebuild new file mode 100644 index 000000000000..73993f9a17fd --- /dev/null +++ b/dev-python/uv/uv-0.10.3.ebuild @@ -0,0 +1,164 @@ +# Copyright 2024-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +CRATES=" +" +RUST_MIN_VER="1.91.0" + +inherit cargo check-reqs + +CRATE_PV=${PV} +DESCRIPTION="A Python package installer and resolver, written in Rust" +HOMEPAGE=" + https://github.com/astral-sh/uv/ + https://pypi.org/project/uv/ +" +# pypi sdist misses scripts/, needed for tests +SRC_URI=" + https://github.com/astral-sh/uv/archive/${PV}.tar.gz + -> ${P}.gh.tar.gz + ${CARGO_CRATE_URIS} +" +if [[ ${PKGBUMPING} != ${PVR} ]]; then + SRC_URI+=" + https://github.com/gentoo-crate-dist/uv/releases/download/${CRATE_PV}/uv-${CRATE_PV}-crates.tar.xz + " +fi + +# most of the code +LICENSE="|| ( Apache-2.0 MIT )" +# crates/pep508-rs is || ( Apache-2.0 BSD-2 ) which is covered below +# Dependent crate licenses +LICENSE+=" + 0BSD Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD-2 BSD CC0-1.0 + CDLA-Permissive-2.0 ISC MIT MPL-2.0 Unicode-3.0 Unicode-DFS-2016 + ZLIB BZIP2 +" +# ring crate +LICENSE+=" openssl" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86" +IUSE="test" +RESTRICT="test" +PROPERTIES="test_network" + +DEPEND=" + app-arch/bzip2:= + app-arch/xz-utils:= + app-arch/zstd:= +" +RDEPEND=" + ${DEPEND} +" +BDEPEND=" + virtual/pkgconfig + test? ( + dev-lang/python:3.9 + dev-lang/python:3.10 + dev-lang/python:3.11 + dev-lang/python:3.12 + dev-lang/python:3.13 + !!~dev-python/uv-0.5.0 + ) +" + +QA_FLAGS_IGNORED="usr/bin/.*" + +check_space() { + local CHECKREQS_DISK_BUILD=3G + use debug && CHECKREQS_DISK_BUILD=9G + check-reqs_pkg_setup +} + +pkg_pretend() { + check_space +} + +pkg_setup() { + check_space + rust_pkg_setup +} + +src_prepare() { + default + + # force thin lto, makes build much faster and less memory hungry + # (i.e. makes it possible to actually build uv on 32-bit PPC) + sed -i -e '/lto/s:fat:thin:' Cargo.toml || die + + # enable system libraries where supported + export ZSTD_SYS_USE_PKG_CONFIG=1 + # TODO: unbundle libz-ng-sys, tikv-jemalloc-sys? + + # remove unbundled sources, just in case + find "${ECARGO_VENDOR}"/{bzip2,lzma,zstd}-sys-*/ -name '*.c' -delete || die + + # bzip2-sys requires a pkg-config file + # https://github.com/alexcrichton/bzip2-rs/issues/104 + mkdir "${T}/pkg-config" || die + export PKG_CONFIG_PATH=${T}/pkg-config${PKG_CONFIG_PATH+:${PKG_CONFIG_PATH}} + cat >> "${T}/pkg-config/bzip2.pc" <<-EOF || die + Name: bzip2 + Version: 9999 + Description: + Libs: -lbz2 + EOF + + # uv is now forcing bundled liblzma, sigh + sed -i -e '/xz/s:"static"::' Cargo.toml || die +} + +src_configure() { + local myfeatures=( + test-git + test-pypi + test-python + ) + + cargo_src_configure --no-default-features +} + +src_compile() { + cd crates/uv || die + cargo_src_compile +} + +src_test() { + cd crates/uv || die + cargo_src_test --no-fail-fast +} + +src_install() { + cd crates/uv || die + cargo_src_install + + insinto /etc/xdg/uv + newins - uv.toml <<-EOF || die + # These defaults match Fedora, see: + # https://src.fedoraproject.org/rpms/uv/pull-request/18 + + # By default ("automatic"), uv downloads missing Python versions + # automatically and keeps them in the user's home directory. + # Disable that to make downloading opt-in, and especially + # to avoid unnecessarily fetching custom Python when the distro + # package would be preferable. Python builds can still be + # downloaded manually via "uv python install". + # + # https://docs.astral.sh/uv/reference/settings/#python-downloads + python-downloads = "manual" + + # By default ("managed"), uv always prefers self-installed + # Python versions over the system Python, independently + # of versions. Since we generally expect users to use that + # to install old Python versions not in ::gentoo anymore, + # this effectively means that uv would end up preferring very + # old Python versions over the newer ones that are provided + # by the system. Default to using the system versions to avoid + # this counter-intuitive behavior. + # + # https://docs.astral.sh/uv/reference/settings/#python-preference + python-preference = "system" + EOF +} diff --git a/dev-python/uvicorn/Manifest b/dev-python/uvicorn/Manifest index fdc494fc0b44..1b471098a788 100644 --- a/dev-python/uvicorn/Manifest +++ b/dev-python/uvicorn/Manifest @@ -1,4 +1,4 @@ -DIST uvicorn-0.38.0.tar.gz 80605 BLAKE2B b7dd7f9bcb5b72f1cbf381bb263dbcbe6aa4d3c252540e64f60ee471e248480995525e646bc852487d37bc768be7072e7b7b20f9f7a7efd6022dc3ed88d0d57f SHA512 29b1a838cef63f90839fac7799723ed56711f21d4016437b62363fd9f45f76ea683d2be9ec7491f6c79a05159d0b5814e0e9247c67dc92342577c24ae392fdd7 -DIST uvicorn-0.38.0.tar.gz.provenance 9257 BLAKE2B 94b9804d3740ac2db01c4715fa60b413e4af12f70a4e955ced6326ef06b2d43f1d5dca96f833e951a108521b9d8aeb27d3c6061b586cf180eaf777efc3be38d2 SHA512 a4cdfe7406e4d15398edd958c553eaff1d36692b2cc368be59ace7495ed14d62a172afada542122896eecdd5f81ea185976e4a13a4c6fbf2de5f7171328254a4 DIST uvicorn-0.40.0.tar.gz 81761 BLAKE2B 9b71d6d56a81f265f10293434813f08e34456221627e52ab680e4889b664daaa9be2cf46437d5ca992e933c7e493362f92bf3c8621f6477d8503a2ffdd5ce35c SHA512 b56f625577509e46724a91881d7d1e5242ac50bd686f5cdbeb1973f7be48c85c1cda8d7275eb04bc0241c221f11820e31f7e4d3ad949a9793b81f8492d667cb7 DIST uvicorn-0.40.0.tar.gz.provenance 9247 BLAKE2B 3cd0b5a8913ad854adb4d043928c51dfa04486919c842ff1b63467cf19e66165762837c8038cb5615f0b46836d57e897be80dcefa327996d03da4657fdd3ab47 SHA512 234dcb974a066fa655502ab231ef19cfb8d776e861ba256dc038cafb447d88a7a9469d82fd3a99f11136b2b3a03202b6ba423e1a0981ad3f40a7b1a1136cc787 +DIST uvicorn-0.41.0.tar.gz 82633 BLAKE2B 3235ef1730133d3a3903d341916ae0bd0c74df5fc3c955d26159edc2c4afc2df87487630c051d3d838e10fe1984ca4440a5c1770add3418b31820df036087cf5 SHA512 6b1dabb94483dccbfea6e451c53900cf05453e6e5705c968a3718f145e049be83f4a2e0e460f3a5d3bbe4546f7b339d3e6ce60bc79fbcb4bd326d7d060c7fc77 +DIST uvicorn-0.41.0.tar.gz.provenance 9345 BLAKE2B c94e13e33656be32515595ea8242315bd4a8f0e88870b807fbfc97451a34a556e079aefac97df7524a7bc22bcb2656abad13bc7c5786b4672391dfa6c9502525 SHA512 c582314621fe7689b4c876b5727abab7612148a221de7dab43010c59c3691a18589bfc5392d41897a21566a7e4ea326c0567c119a085e708f94f82ab9ec0f2af diff --git a/dev-python/uvicorn/uvicorn-0.38.0.ebuild b/dev-python/uvicorn/uvicorn-0.41.0.ebuild index 0af02f91e8e1..1104c53fab57 100644 --- a/dev-python/uvicorn/uvicorn-0.38.0.ebuild +++ b/dev-python/uvicorn/uvicorn-0.41.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 2021-2025 Gentoo Authors +# Copyright 2021-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -18,7 +18,7 @@ HOMEPAGE=" LICENSE="BSD" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 ~sparc x86" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" IUSE="test-rust" RDEPEND=" @@ -39,7 +39,7 @@ BDEPEND=" test-rust? ( dev-python/cryptography[${PYTHON_USEDEP}] dev-python/trustme[${PYTHON_USEDEP}] - dev-python/watchfiles[${PYTHON_USEDEP}] + >=dev-python/watchfiles-0.20[${PYTHON_USEDEP}] ) ) " @@ -65,14 +65,6 @@ python_test() { tests/middleware/test_logging.py::test_running_log_using_fd ) ;; - python3.14*) - EPYTEST_DESELECT+=( - # TODO - tests/test_auto_detection.py::test_loop_auto - # changed exception type - tests/test_compat.py::test_asyncio_run__passing_a_non_awaitable_callback_should_throw_error - ) - ;; esac epytest diff --git a/dev-python/virtualenv/Manifest b/dev-python/virtualenv/Manifest index 27c3e6596ee8..9adcde679303 100644 --- a/dev-python/virtualenv/Manifest +++ b/dev-python/virtualenv/Manifest @@ -6,3 +6,5 @@ DIST virtualenv-20.36.0.tar.gz 6032237 BLAKE2B 864f1542d6e5c7c3b78cfe2695d171d9a DIST virtualenv-20.36.0.tar.gz.provenance 9242 BLAKE2B 11401266d08513c5d50e2c846301a887919b4b5e9243966637a4fb2fab96b3be8815ccddf02d6c9ad9f46900abdf904c9d0c81d0c6213c6e542f40d764eefaae SHA512 fa46c395648177b48860a82f81044f6268dbf2ba12398547b4ae46e3012ef352603d7b605b1f7ed49b364a15c29e1cd65ffb7c18fd9224ed7d464f76670d06fb DIST virtualenv-20.36.1.tar.gz 6032239 BLAKE2B 9d4cd6e28275ab1e5737e12e0661c4e772a0095dfa7cbd1bad76a0c90d55821ae819d6b65fd5b314d3076570f661eb2fe05b4be41c406f8e423df8389feaac06 SHA512 08da448fadd89f43526e27c3dd3c9a1c5a4c8532093db8c73f34d1d88e48ddff5b983d28343f4efcdec30428fa2ac10acc27ab57c647bd3fc8e261dbd9a9b639 DIST virtualenv-20.36.1.tar.gz.provenance 9246 BLAKE2B 4ee139a4eef0092c20d791db0e3e9901f65db574367ac234bc84cc02998e386a713314d474b7401d484df35dabe52ad9f9bc14cdf0230566853cb84e58e3d660 SHA512 a8b9ec9269848716e6496578b0de27f416327228d205a8fca8f60373c6e72ff11af3da0f241dbbdef660253cb604b9a35c96575eaad4476892a98cc168198aff +DIST virtualenv-20.37.0.tar.gz 5864710 BLAKE2B e3a86f35f68df45e10a2a6e2d2fc6cd67233752957efc1410de3142e4a3282a49bc40039c4eb2ea2990a74ae41af93b56082b218591bc350bf90631333bd1f9d SHA512 3425d19797d313039fde54f8a94e7079d2fb2e998b3f7135854597089cbf9d2e1d09299a3eb7f091c25709a5b8a962ad317dec79d0633367abd7d59cdab3aa14 +DIST virtualenv-20.37.0.tar.gz.provenance 9304 BLAKE2B 194fde1f7781211ad66bd66239bfffed818aec5c757e0f236bd7abad86caac6eaf7dcd5382d4b56e3f5ed836abeb096e2c5fee0ba3498ae101f780f36b355d59 SHA512 76ea2857f8131e61742b61f9d1edb8b7d791a2862f47185d960ca03b1ec382ff8b445689c4da9acbc84147b0c664f6a4e89efdc992b19f2afc0f3ef37197ed70 diff --git a/dev-python/virtualenv/virtualenv-20.37.0.ebuild b/dev-python/virtualenv/virtualenv-20.37.0.ebuild new file mode 100644 index 000000000000..99756ea15499 --- /dev/null +++ b/dev-python/virtualenv/virtualenv-20.37.0.ebuild @@ -0,0 +1,133 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=hatchling +PYPI_VERIFY_REPO=https://github.com/pypa/virtualenv +PYTHON_TESTED=( python3_{11..14} pypy3_11 ) +PYTHON_COMPAT=( "${PYTHON_TESTED[@]}" ) + +inherit distutils-r1 pypi + +DESCRIPTION="Virtual Python Environment builder" +HOMEPAGE=" + https://virtualenv.pypa.io/en/stable/ + https://pypi.org/project/virtualenv/ + https://github.com/pypa/virtualenv/ +" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + >=dev-python/distlib-0.3.7[${PYTHON_USEDEP}] + >=dev-python/filelock-3.24.2[${PYTHON_USEDEP}] + >=dev-python/platformdirs-3.9.1[${PYTHON_USEDEP}] + + dev-python/ensurepip-pip + >=dev-python/ensurepip-setuptools-70.1 + dev-python/ensurepip-wheel +" +# coverage is used somehow magically in virtualenv, maybe it actually +# tests something useful +BDEPEND=" + dev-python/hatch-vcs[${PYTHON_USEDEP}] + test? ( + ${RDEPEND} + $(python_gen_cond_dep ' + dev-python/coverage[${PYTHON_USEDEP}] + >=dev-python/pip-22.2.1[${PYTHON_USEDEP}] + >=dev-python/pytest-mock-3.6.1[${PYTHON_USEDEP}] + dev-python/pytest-rerunfailures[${PYTHON_USEDEP}] + dev-python/pytest-timeout[${PYTHON_USEDEP}] + dev-python/pytest-xdist[${PYTHON_USEDEP}] + >=dev-python/setuptools-67.8[${PYTHON_USEDEP}] + dev-python/wheel[${PYTHON_USEDEP}] + >=dev-python/packaging-20.0[${PYTHON_USEDEP}] + ' "${PYTHON_TESTED[@]}") + $(python_gen_cond_dep ' + dev-python/time-machine[${PYTHON_USEDEP}] + ' python3_{11..14}) + $(python_gen_cond_dep ' + >=dev-python/pytest-freezer-0.4.6[${PYTHON_USEDEP}] + ' 'pypy3*') + ) +" + +src_prepare() { + local PATCHES=( + # use wheels from ensurepip bundle + "${FILESDIR}/${PN}-20.31.1-ensurepip.patch" + ) + + distutils-r1_src_prepare + + # workaround test failures due to warnings from setuptools-scm, sigh + echo '[tool.setuptools_scm]' >> pyproject.toml || die + + # remove useless pins + sed -i -e 's:,<[=0-9.]*::' pyproject.toml || die + + # remove bundled wheels + rm src/virtualenv/seed/wheels/embed/*.whl || die +} + +python_test() { + if ! has "${EPYTHON}" "${PYTHON_TESTED[@]/_/.}"; then + einfo "Skipping testing on ${EPYTHON}" + return + fi + + local EPYTEST_DESELECT=( + tests/unit/seed/embed/test_bootstrap_link_via_app_data.py::test_seed_link_via_app_data + # tests for old wheels with py3.7 support + tests/unit/seed/embed/test_pip_invoke.py::test_base_bootstrap_via_pip_invoke + tests/unit/seed/wheels/test_wheels_util.py::test_wheel_not_support + # broken by different wheel versions in ensurepip + tests/unit/seed/wheels/test_acquire_find_wheel.py::test_find_latest_string + tests/unit/seed/wheels/test_acquire_find_wheel.py::test_find_exact + tests/unit/seed/wheels/test_acquire_find_wheel.py::test_find_latest_none + tests/unit/seed/wheels/test_acquire.py::test_download_wheel_bad_output + # hangs on a busy system, sigh + tests/unit/test_util.py::test_reentrant_file_lock_is_thread_safe + # TODO + tests/unit/create/via_global_ref/test_build_c_ext.py::test_can_build_c_extensions + # random resource leaks or xdist + tests/unit/test_file_limit.py::test_too_many_open_files + # Internet + tests/unit/create/test_creator.py::test_create_distutils_cfg + ) + case ${EPYTHON} in + pypy3.11) + EPYTEST_DESELECT+=( + # these don't like the executable called pypy3.11? + tests/unit/activation/test_bash.py::test_bash + tests/unit/activation/test_fish.py::test_fish + tests/unit/discovery/py_info/test_py_info.py::test_fallback_existent_system_executable + ) + ;; + esac + + local -x TZ=UTC + local EPYTEST_PLUGINS=( pytest-{mock,rerunfailures} ) + if [[ ${EPYTHON} == pypy3* ]]; then + EPYTEST_PLUGINS+=( pytest-freezer ) + else + EPYTEST_PLUGINS+=( time-machine ) + fi + local EPYTEST_RERUNS=5 + local EPYTEST_TIMEOUT=180 + local EPYTEST_XDIST=1 + epytest -o addopts= +} + +src_install() { + distutils-r1_src_install + + # remove bundled wheels, we're using ensurepip bundle instead + find "${ED}" -name '*.whl' -delete || die +} diff --git a/dev-python/xxhash/Manifest b/dev-python/xxhash/Manifest index d27845468a25..3269185f9532 100644 --- a/dev-python/xxhash/Manifest +++ b/dev-python/xxhash/Manifest @@ -1,2 +1,2 @@ -DIST xxhash-3.5.0.tar.gz 84241 BLAKE2B efe3fcfa02b15afd1539aa8667878868430337a9fe1decca03ae402893c743fd6f2e8dbbfae747e54a9bc6b65ba5cf5f4d2170181b88a820e9d4615b2b902ec7 SHA512 0242589264cba67eb535a0fffbfa8f171fe8c1991b8a90a1484311f283c9f49c81cae8a86552c43232aa9ac7ba66c989fda0a21bb403b3e8219b32db53941b2e DIST xxhash-3.6.0.tar.gz 85160 BLAKE2B b4a084b3495ec53431150ed5fd3adc6badcaec2553faec0db40cb49c5abe5a5bf0bc9ef3c0f6bbb636bbe97afbb5be75185d2e74305baa3dbc384e3e87fa28df SHA512 c82f7d108708b944e01fe2fad19654b274b6888cdf653420094049b84f0b63f1b249262d2310496d7f647c82c50ef62db583862b83d36a16a4e5ddf7633fee1b +DIST xxhash-3.6.0.tar.gz.provenance 9441 BLAKE2B 1af393720ad8b6705309ecac014c4c2b65e4c75345122a4d5778e44ed40fc8891dc1faeb2e35d9cdd90eb4d6981482634a5cd4e9d68f71e35cb3c777c2c164de SHA512 124f088b0a82705f5dc73857b9c01d6fd758b95e05400c0ae94537816515a4fe309fa54fe3569d4707c8e6a83703ef00b443048fd1050e7d5c33a18494cf9a9a diff --git a/dev-python/xxhash/xxhash-3.5.0.ebuild b/dev-python/xxhash/xxhash-3.5.0.ebuild deleted file mode 100644 index accc390f558f..000000000000 --- a/dev-python/xxhash/xxhash-3.5.0.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_EXT=1 -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{10..14} ) - -inherit distutils-r1 pypi - -DESCRIPTION="Python binding for the xxHash library" -HOMEPAGE=" - https://github.com/ifduyue/python-xxhash/ - https://pypi.org/project/xxhash/ -" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 arm64 ~x86" - -DEPEND=" - >=dev-libs/xxhash-0.8.0 -" -RDEPEND=" - ${DEPEND} -" - -distutils_enable_tests unittest - -python_configure_all() { - export XXHASH_LINK_SO=1 -} - -python_test() { - cd tests || die - eunittest -} diff --git a/dev-python/xxhash/xxhash-3.6.0.ebuild b/dev-python/xxhash/xxhash-3.6.0.ebuild index accc390f558f..6b620b397484 100644 --- a/dev-python/xxhash/xxhash-3.6.0.ebuild +++ b/dev-python/xxhash/xxhash-3.6.0.ebuild @@ -1,10 +1,11 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 DISTUTILS_EXT=1 DISTUTILS_USE_PEP517=setuptools +PYPI_VERIFY_REPO=https://github.com/ifduyue/python-xxhash PYTHON_COMPAT=( python3_{10..14} ) inherit distutils-r1 pypi @@ -17,7 +18,7 @@ HOMEPAGE=" LICENSE="MIT" SLOT="0" -KEYWORDS="amd64 arm64 ~x86" +KEYWORDS="amd64 ~arm arm64 ~x86" DEPEND=" >=dev-libs/xxhash-0.8.0 diff --git a/dev-qt/qtgui/qtgui-5.15.18.ebuild b/dev-qt/qtgui/qtgui-5.15.18-r1.ebuild index 5a2bb452d8fc..5e78429e06d3 100644 --- a/dev-qt/qtgui/qtgui-5.15.18.ebuild +++ b/dev-qt/qtgui/qtgui-5.15.18-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -27,6 +27,7 @@ REQUIRED_USE=" RDEPEND=" dev-libs/glib:2 + dev-libs/md4c =dev-qt/qtcore-${QT5_PV}*:5= dev-util/gtk-update-icon-cache media-libs/fontconfig diff --git a/dev-util/cargo-nextest/cargo-nextest-0.9.122.ebuild b/dev-util/cargo-nextest/cargo-nextest-0.9.122.ebuild index 11bc8383d410..98e4839b5845 100644 --- a/dev-util/cargo-nextest/cargo-nextest-0.9.122.ebuild +++ b/dev-util/cargo-nextest/cargo-nextest-0.9.122.ebuild @@ -24,7 +24,7 @@ LICENSE+=" WTFPL-2 ZLIB " SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" +KEYWORDS="amd64 ~arm arm64 ~ppc64 ~x86" BDEPEND="virtual/pkgconfig" DEPEND=">=app-arch/zstd-1.5.7:=" diff --git a/dev-util/debugedit/debugedit-5.2-r1.ebuild b/dev-util/debugedit/debugedit-5.2-r1.ebuild index 4cb68dccae9f..3c75aa919e01 100644 --- a/dev-util/debugedit/debugedit-5.2-r1.ebuild +++ b/dev-util/debugedit/debugedit-5.2-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -14,7 +14,7 @@ SRC_URI=" LICENSE="GPL-3+ GPL-2+ LGPL-2+" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~sparc x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 ~sparc x86" IUSE="test" RESTRICT="!test? ( test )" diff --git a/dev-util/maturin/Manifest b/dev-util/maturin/Manifest index aab8a0b9957d..53cd1393140a 100644 --- a/dev-util/maturin/Manifest +++ b/dev-util/maturin/Manifest @@ -1,4 +1,4 @@ -DIST maturin-1.11.5-vendor.tar.xz 16507616 BLAKE2B 83b6607c91a0925ad52bbdb888eef01fa871a29129600471269d25c9a2a56206c845a56f1bfd5dbcaaf9b74da88df35e6f3c857d551834fc8564853d6e455b0e SHA512 94a8c8cb296afd33da5175e6ce39ecd8ccb739df30bfac0476551352a002032cefa5de6ea41c81f65cd905225d1cf8a13f473594560a8f2a29df563a4adc9e9a -DIST maturin-1.11.5.gh.tar.gz 596610 BLAKE2B f78673c59d13211771d37b74468041255cb8f7fa2113851e3fda2da8811e34c1a6e5c0eeb5d61430653342b97f899fff24984446e533759d3db06458afab2eda SHA512 49e7976be5790f524d5a423519c4ee73ccb450f0e84fea5ba691421cd8e303cb4166324d42985b1ae321a71c4295f244632da194a5be7cacbe7951cdbc0dbb92 DIST maturin-1.12.0-vendor.tar.xz 19134060 BLAKE2B 94b00c1dd663f33e0b8a5d9f6892681029d8a72d874f60da52925ea6cd9d280241adba0128bc5c58c661b236adda7ddf323d6b69e946e6ccd1c7999ca7f3e445 SHA512 b941934f7c0a5db7f291e4e66eba841b53980bc1b053eba8391f0d506cabe1157c1d0ee11cc2a7dbf0ae129637fbc3e9bf09d3f5590c8b6bf24ed0467f834333 DIST maturin-1.12.0.gh.tar.gz 627384 BLAKE2B 0bad2fb856ef80d40b92ed572068b7a11104670d06e10d63d6539317baf966462dda89bd2fb1710b87c741e291ba711423d826c9e86039138fd0054667a1795b SHA512 0e2a16441ab185a01b2e7b0a8d23346d5d7eb45e73f4280da6085362b926cc324b6f8b5ad33b323f47f935019f84c2de09ce880f1c699532ffc14076c5164f9d +DIST maturin-1.12.2-vendor.tar.xz 19225420 BLAKE2B 1d174dcc957736c02b26a436287a11ff2fb512db87d5d082540781d0e75b7a31ac40b152859b70616f735c4ac850b05541b34413aaf7795acb8ab342d0d72695 SHA512 4f17924cff5c5e7a6ad5cdcfa59f1eff38579a6374dc09591a42081d0f82b64d71ffe19c6f94e9350ee7adce0768e8db0ccd77c629d8e1d550da86879966f7b6 +DIST maturin-1.12.2.gh.tar.gz 638646 BLAKE2B 97c4717fb18b2c88c8444c18de2b36891212419535f31f314935d2f24c321f07e2775f6b5a5ecaec7e69626dabd4e3d3261a7a0c5bb359521d5b1c75ca582c00 SHA512 0d2cd6e23e03a3e8aeca4e11f56349cdf82055769ef7460d22e8a2bbb05112da666cf3d2bfe76dcab151ede1c947bd24a476c6ae6f1eedd44e30aae818af3f54 diff --git a/dev-util/maturin/maturin-1.11.5.ebuild b/dev-util/maturin/maturin-1.12.2.ebuild index a111f709bd76..a111f709bd76 100644 --- a/dev-util/maturin/maturin-1.11.5.ebuild +++ b/dev-util/maturin/maturin-1.12.2.ebuild diff --git a/dev-util/perf/Manifest b/dev-util/perf/Manifest index a0ec13008a0c..ff0f8aaeba2a 100644 --- a/dev-util/perf/Manifest +++ b/dev-util/perf/Manifest @@ -1,5 +1,4 @@ DIST linux-6.14.tar.xz 149408504 BLAKE2B 11835719804b406fe281ea1c276a84dc0cbaa808552ddcca9233d3eaeb1c001d0455c7205379b02de8e8db758c1bae6fe7ceb6697e63e3cf9ae7187dc7a9715e SHA512 71dcaa3772d8d9797c3ae30cae9c582b11a7047a3bbcb8dfd479a4dffb40ff0da74cf3d45175f50cc9992e338bcadd46c9c570f54054ca3bde6661768d3d22eb -DIST linux-6.16.tar.xz 152620004 BLAKE2B 87bc4da7e89cc8265aebffea7ec6c09f711be24fee87cb1c03a264c03fd5a538d66aa806640835aa5103926e612cdfbc52d7c861d7f7065f1a8bb11d893b0921 SHA512 55a00f89ad6db6db2e26ff5dc5cfc96bbf6654e5bd5d17d2a3b944a47640367e54139716d230923187bebc6cb7756edc9511a620fb8abc6f32c50a658a734784 -DIST linux-6.17.tar.xz 153382068 BLAKE2B 0edb2324be5638aa75984128aafdba3e50824187d2fcdff8794eab99d85c10c3a17d1e840053c2c83df5ee11fdf69f1c9452c57ecc9dae01c4af38180fe7821a SHA512 063999d7b819970657f6b7713fdb4173da2065ffdeed7cae197026dbb1edfd7f1d50374f073a1e19ef9686539594824ff6ecb8a930d97c4f272cb12f1c6d8355 DIST linux-6.18.tar.xz 154309096 BLAKE2B b94b7b9bf18aca0c3e50baf79b009a1448fc6cd9c3ee019f641cc247dcf53a4abef4274ee0608ad8cd4943af69854363a95d26e117ff23620bb07dccb158859f SHA512 88599ffdec96d150c1feb9b261ba93bb0301a9d0e1ad6bef7aeab1f5372cbfc57d8b43c7e902bd8f76921d1dbd8189663c142ea869e51d0e2b483b150ee00fe0 +DIST linux-6.19.tar.xz 156067644 BLAKE2B d1551c058e9a1201a0fa769b427255f13bb0d73fdd384e2c0302956cc9a1eeba255b013fa87a15fdad508bc00fdae2085590572c76cfe20fe2af31ba87b7d289 SHA512 01b29c7f4e5bc0c9802794c2cd027fece825f90417be229a71e60eefce530010d5d301749c54ae744e9d4a483518e769e2bb7e6e9209687681ad7fff11c3ed86 DIST patch-6.18.5.xz 414548 BLAKE2B 50fe5af5616fb080d90111c9b10d7f24ffa40ea6bcd7a645250622ff4adf7923f09bd1a93c82947c6e56a77ea457eb5df14aa215f6c3cae036cc1f11cc20f3d0 SHA512 2c07af94135abbb1fc118be061c7b39e3b692783e67231954eabe1ccac8948a126084e651d5648aebd6d58667ac82ba41264057df1cc81fcaa161df5eee56395 diff --git a/dev-util/perf/perf-6.16-r1.ebuild b/dev-util/perf/perf-6.16-r1.ebuild deleted file mode 100644 index 1a49b45de0c6..000000000000 --- a/dev-util/perf/perf-6.16-r1.ebuild +++ /dev/null @@ -1,338 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -LLVM_COMPAT=( {18..21} ) -PYTHON_COMPAT=( python3_{10..14} ) -inherit bash-completion-r1 estack flag-o-matic linux-info llvm-r1 toolchain-funcs python-single-r1 - -DESCRIPTION="Userland tools for Linux Performance Counters" -HOMEPAGE="https://perfwiki.github.io/main/" - -LINUX_V="${PV:0:1}.x" -if [[ ${PV} == *_rc* ]] ; then - LINUX_VER=$(ver_cut 1-2).$(($(ver_cut 3)-1)) - PATCH_VERSION=$(ver_cut 1-3) - LINUX_PATCH=patch-${PV//_/-}.xz - SRC_URI="https://www.kernel.org/pub/linux/kernel/v${LINUX_V}/testing/${LINUX_PATCH} - https://www.kernel.org/pub/linux/kernel/v${LINUX_V}/testing/v${PATCH_VERSION}/${LINUX_PATCH}" -elif [[ ${PV} == *.*.* ]] ; then - # stable-release series - LINUX_VER=$(ver_cut 1-2) - LINUX_PATCH=patch-${PV}.xz - SRC_URI="https://www.kernel.org/pub/linux/kernel/v${LINUX_V}/${LINUX_PATCH}" -else - LINUX_VER=${PV} -fi - -LINUX_SOURCES="linux-${LINUX_VER}.tar.xz" -SRC_URI+=" https://www.kernel.org/pub/linux/kernel/v${LINUX_V}/${LINUX_SOURCES}" - -S_K="${WORKDIR}/linux-${LINUX_VER}" -S="${S_K}/tools/perf" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86" -IUSE="abi_mips_o32 abi_mips_n32 abi_mips_n64 babeltrace capstone big-endian bpf caps crypt debug gtk java libpfm +libtraceevent +libtracefs lzma numa perl +python +slang systemtap tcmalloc unwind" - -REQUIRED_USE=" - ${PYTHON_REQUIRED_USE} -" - -# setuptools (and Python) are always needed even if not building Python bindings -BDEPEND=" - ${LINUX_PATCH+dev-util/patchutils} - ${PYTHON_DEPS} - >=app-arch/tar-1.34-r2 - $(python_gen_cond_dep ' - dev-python/setuptools[${PYTHON_USEDEP}] - ') - app-alternatives/yacc - app-alternatives/lex - sys-apps/which - virtual/pkgconfig - app-text/asciidoc - app-text/sgml-common - app-text/xmlto - sys-process/time -" - -RDEPEND=" - babeltrace? ( dev-util/babeltrace:0/1 ) - bpf? ( - dev-libs/libbpf - dev-util/bpftool - dev-util/pahole - $(llvm_gen_dep ' - llvm-core/clang:${LLVM_SLOT}= - llvm-core/llvm:${LLVM_SLOT}= - ') - ) - caps? ( sys-libs/libcap ) - capstone? ( dev-libs/capstone ) - crypt? ( dev-libs/openssl:= ) - gtk? ( x11-libs/gtk+:2 ) - java? ( virtual/jre:* ) - libpfm? ( dev-libs/libpfm:= ) - libtraceevent? ( dev-libs/libtraceevent ) - libtracefs? ( dev-libs/libtracefs ) - lzma? ( app-arch/xz-utils ) - numa? ( sys-process/numactl ) - perl? ( dev-lang/perl:= ) - python? ( ${PYTHON_DEPS} ) - slang? ( sys-libs/slang ) - systemtap? ( dev-debug/systemtap ) - tcmalloc? ( dev-util/google-perftools ) - unwind? ( sys-libs/libunwind:= ) - app-arch/zstd:= - dev-libs/elfutils - sys-libs/binutils-libs:= - virtual/zlib:= - virtual/libcrypt -" - -DEPEND="${RDEPEND} - >=sys-kernel/linux-headers-5.10 - java? ( virtual/jdk ) -" - -QA_FLAGS_IGNORED=( - 'usr/bin/perf-read-vdso32' # not linked with anything except for libc - 'usr/libexec/perf-core/dlfilters/.*' # plugins -) - -pkg_setup() { - local CONFIG_CHECK=" - ~!SCHED_OMIT_FRAME_POINTER - ~DEBUG_INFO - ~FRAME_POINTER - ~FTRACE - ~FTRACE_SYSCALLS - ~FUNCTION_TRACER - ~KALLSYMS - ~KALLSYMS_ALL - ~KPROBES - ~KPROBE_EVENTS - ~PERF_EVENTS - ~STACKTRACE - ~TRACEPOINTS - ~UPROBES - ~UPROBE_EVENTS - " - - use bpf && llvm-r1_pkg_setup - # We enable python unconditionally as libbpf always generates - # API headers using python script - python_setup - - if use bpf ; then - CONFIG_CHECK+="~BPF ~BPF_EVENTS ~BPF_SYSCALL ~DEBUG_INFO_BTF ~HAVE_EBPF_JIT ~UNWINDER_FRAME_POINTER" - fi - - linux-info_pkg_setup -} - -# src_unpack and src_prepare are copied to dev-util/bpftool since -# it's building from the same tarball, please keep it in sync with bpftool -src_unpack() { - local paths=( - 'arch/*/include/*' 'arch/*/lib/*' 'arch/*/tools/*' 'include/*' - 'kernel/bpf/*' 'lib/*' 'scripts/*' 'tools/arch/*' 'tools/bpf/*' - 'tools/build/*' 'tools/include/*' 'tools/lib/*' 'tools/perf/*' - 'tools/scripts/*' - ) - - # We expect the tar implementation to support the -j option (both - # GNU tar and libarchive's tar support that). - echo ">>> Unpacking ${LINUX_SOURCES} (${paths[*]}) to ${PWD}" - gtar --wildcards -xpf "${DISTDIR}"/${LINUX_SOURCES} \ - "${paths[@]/#/linux-${LINUX_VER}/}" || die - - if [[ -n ${LINUX_PATCH} ]] ; then - eshopts_push -o noglob - ebegin "Filtering partial source patch" - xzcat "${DISTDIR}"/${LINUX_PATCH} | filterdiff -p1 ${paths[@]/#/-i} > ${P}.patch - assert -n "Unpacking to ${P} from ${DISTDIR}/${LINUX_PATCH} failed" - eend $? || die "filterdiff failed" - test -s ${P}.patch || die "patch is empty?!" - eshopts_pop - fi - - local a - for a in ${A}; do - [[ ${a} == ${LINUX_SOURCES} ]] && continue - [[ ${a} == ${LINUX_PATCH} ]] && continue - unpack ${a} - done -} - -src_prepare() { - default - if [[ -n ${LINUX_PATCH} ]] ; then - pushd "${S_K}" >/dev/null || die - eapply "${WORKDIR}"/${P}.patch - popd || die - fi - - pushd "${S_K}" >/dev/null || die - # Gentoo patches go here - popd || die - - # Drop some upstream too-developer-oriented flags and fix the - # Makefile in general - sed -i \ - -e "s@\$(sysconfdir_SQ)/bash_completion.d@$(get_bashcompdir)@" \ - "${S}"/Makefile.perf || die - # A few places still use -Werror w/out $(WERROR) protection. - sed -i -e 's@-Werror@@' \ - "${S}"/Makefile.perf "${S_K}"/tools/lib/bpf/Makefile \ - "${S_K}"/tools/lib/perf/Makefile || die - - # Avoid the call to make kernelversion - sed -i -e '/PERF-VERSION-GEN/d' Makefile.perf || die - echo "#define PERF_VERSION \"${PV}\"" > PERF-VERSION-FILE - - # The code likes to compile local assembly files which lack ELF markings. - find -name '*.S' -exec sed -i '$a.section .note.GNU-stack,"",%progbits' {} + -} - -puse() { usex $1 "" 1; } -perf_make() { - # The arch parsing is a bit funky. The perf tools package is integrated - # into the kernel, so it wants an ARCH that looks like the kernel arch, - # but it also wants to know about the split value -- i386/x86_64 vs just - # x86. We can get that by telling the func to use an older linux version. - # It's kind of a hack, but not that bad ... - - # LIBDIR sets a search path of perf-gtk.so. Bug 515954 - - local arch=$(tc-arch-kernel) - local java_dir - use java && java_dir="${EPREFIX}/etc/java-config-2/current-system-vm" - - # sync this with the whitelist in tools/perf/Makefile.config - local disable_libdw - if ! use amd64 && ! use x86 && \ - ! use arm && \ - ! use arm64 && \ - ! use ppc && ! use ppc64 \ - ! use s390 && \ - ! use riscv && \ - ! use loong - then - disable_libdw=1 - fi - - # perf directly invokes LD for linking without going through CC, on mips - # it is required to specify the emulation. port of below buildroot patch - # https://patchwork.ozlabs.org/project/buildroot/patch/20170217105905.32151-1-Vincent.Riera@imgtec.com/ - local linker="$(tc-getLD)" - if use mips - then - if use big-endian - then - use abi_mips_n64 && linker+=" -m elf64btsmip" - use abi_mips_n32 && linker+=" -m elf32btsmipn32" - use abi_mips_o32 && linker+=" -m elf32btsmip" - else - use abi_mips_n64 && linker+=" -m elf64ltsmip" - use abi_mips_n32 && linker+=" -m elf32ltsmipn32" - use abi_mips_o32 && linker+=" -m elf32ltsmip" - fi - fi - - # FIXME: NO_CORESIGHT - local emakeargs=( - V=1 VF=1 - HOSTCC="$(tc-getBUILD_CC)" HOSTLD="$(tc-getBUILD_LD)" - CC="$(tc-getCC)" CXX="$(tc-getCXX)" AR="$(tc-getAR)" LD="${linker}" NM="$(tc-getNM)" - CLANG="${CHOST}-clang" - PKG_CONFIG="$(tc-getPKG_CONFIG)" - prefix="${EPREFIX}/usr" bindir_relative="bin" - tipdir="share/doc/${PF}" - EXTRA_CFLAGS="${CPPFLAGS} ${CFLAGS}" - EXTRA_LDFLAGS="${LDFLAGS}" - ARCH="${arch}" - BUILD_BPF_SKEL=$(usex bpf 1 "") \ - BUILD_NONDISTRO=1 - JDIR="${java_dir}" - CORESIGHT= - GTK2=$(usex gtk 1 "") - feature-gtk2-infobar=$(usex gtk 1 "") - NO_AUXTRACE= - NO_BACKTRACE= - NO_CAPSTONE=$(puse capstone) - NO_DEMANGLE= - NO_JVMTI=$(puse java) - NO_LIBAUDIT=1 - NO_LIBBABELTRACE=$(puse babeltrace) - NO_LIBBIONIC=1 - NO_LIBBPF=$(puse bpf) - NO_LIBCAP=$(puse caps) - NO_LIBCRYPTO=$(puse crypt) - NO_LIBDW_DWARF_UNWIND="${disable_libdw}" - NO_LIBELF= - NO_LIBLLVM=$(puse bpf) - NO_LIBNUMA=$(puse numa) - NO_LIBPERL=$(puse perl) - NO_LIBPFM4=$(puse libpfm) - NO_LIBPYTHON=$(puse python) - NO_LIBTRACEEVENT=$(puse libtraceevent) - NO_LIBUNWIND=$(puse unwind) - NO_SDT=$(puse systemtap) - NO_SHELLCHECK=1 - NO_SLANG=$(puse slang) - NO_LZMA=$(puse lzma) - NO_ZLIB= - TCMALLOC=$(usex tcmalloc 1 "") - WERROR=0 - DEBUG=$(usex debug 1 "") - LIBDIR="/usr/libexec/perf-core" - libdir="${EPREFIX}/usr/$(get_libdir)" - plugindir="${EPREFIX}/usr/$(get_libdir)/perf/plugins" - "$@" - ) - NO_JEVENTS=$(puse python) emake "${emakeargs[@]}" -} - -src_compile() { - filter-lto - - # capstone-6 compatibility (#964350) - append-cppflags -DCAPSTONE_AARCH64_COMPAT_HEADER -DCAPSTONE_SYSTEMZ_COMPAT_HEADER - - perf_make -f Makefile.perf - perf_make -C Documentation man -} - -src_test() { - : -} - -src_install() { - perf_make -f Makefile.perf install DESTDIR="${D}" - - if use python; then - perf_make -f Makefile.perf install-python_ext DESTDIR="${D}" - fi - - if use gtk; then - local libdir - libdir="$(get_libdir)" - # on some arches it ends up in lib even on 64bit, ppc64 for instance. - [[ -f "${ED}"/usr/lib/libperf-gtk.so ]] && libdir="lib" - mv "${ED}"/usr/${libdir}/libperf-gtk.so \ - "${ED}"/usr/libexec/perf-core || die - fi - - dodoc CREDITS - - dodoc *txt Documentation/*.txt - - # perf needs this decompressed to print out tips for users - docompress -x /usr/share/doc/${PF}/tips.txt - - doman Documentation/*.1 -} diff --git a/dev-util/perf/perf-6.16.ebuild b/dev-util/perf/perf-6.16.ebuild deleted file mode 100644 index ff5d052e2c4f..000000000000 --- a/dev-util/perf/perf-6.16.ebuild +++ /dev/null @@ -1,349 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -LLVM_COMPAT=( {18..20} ) -PYTHON_COMPAT=( python3_{10..14} ) -inherit bash-completion-r1 estack flag-o-matic linux-info llvm-r1 toolchain-funcs python-r1 - -DESCRIPTION="Userland tools for Linux Performance Counters" -HOMEPAGE="https://perfwiki.github.io/main/" - -LINUX_V="${PV:0:1}.x" -if [[ ${PV} == *_rc* ]] ; then - LINUX_VER=$(ver_cut 1-2).$(($(ver_cut 3)-1)) - PATCH_VERSION=$(ver_cut 1-3) - LINUX_PATCH=patch-${PV//_/-}.xz - SRC_URI="https://www.kernel.org/pub/linux/kernel/v${LINUX_V}/testing/${LINUX_PATCH} - https://www.kernel.org/pub/linux/kernel/v${LINUX_V}/testing/v${PATCH_VERSION}/${LINUX_PATCH}" -elif [[ ${PV} == *.*.* ]] ; then - # stable-release series - LINUX_VER=$(ver_cut 1-2) - LINUX_PATCH=patch-${PV}.xz - SRC_URI="https://www.kernel.org/pub/linux/kernel/v${LINUX_V}/${LINUX_PATCH}" -else - LINUX_VER=${PV} -fi - -LINUX_SOURCES="linux-${LINUX_VER}.tar.xz" -SRC_URI+=" https://www.kernel.org/pub/linux/kernel/v${LINUX_V}/${LINUX_SOURCES}" - -S_K="${WORKDIR}/linux-${LINUX_VER}" -S="${S_K}/tools/perf" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86" -IUSE="abi_mips_o32 abi_mips_n32 abi_mips_n64 babeltrace capstone big-endian bpf caps crypt debug +doc gtk java libpfm +libtraceevent +libtracefs lzma numa perl +python +slang systemtap tcmalloc unwind" - -REQUIRED_USE=" - ${PYTHON_REQUIRED_USE} -" - -# setuptools (and Python) are always needed even if not building Python bindings -BDEPEND=" - ${LINUX_PATCH+dev-util/patchutils} - ${PYTHON_DEPS} - >=app-arch/tar-1.34-r2 - dev-python/setuptools[${PYTHON_USEDEP}] - app-alternatives/yacc - app-alternatives/lex - sys-apps/which - virtual/pkgconfig - doc? ( - app-text/asciidoc - app-text/sgml-common - app-text/xmlto - sys-process/time - ) -" - -RDEPEND=" - babeltrace? ( dev-util/babeltrace:0/1 ) - bpf? ( - dev-libs/libbpf - dev-util/bpftool - dev-util/pahole - $(llvm_gen_dep ' - llvm-core/clang:${LLVM_SLOT}= - llvm-core/llvm:${LLVM_SLOT}= - ') - ) - caps? ( sys-libs/libcap ) - capstone? ( dev-libs/capstone ) - crypt? ( dev-libs/openssl:= ) - gtk? ( x11-libs/gtk+:2 ) - java? ( virtual/jre:* ) - libpfm? ( dev-libs/libpfm:= ) - libtraceevent? ( dev-libs/libtraceevent ) - libtracefs? ( dev-libs/libtracefs ) - lzma? ( app-arch/xz-utils ) - numa? ( sys-process/numactl ) - perl? ( dev-lang/perl:= ) - python? ( ${PYTHON_DEPS} ) - slang? ( sys-libs/slang ) - systemtap? ( dev-debug/systemtap ) - tcmalloc? ( dev-util/google-perftools ) - unwind? ( sys-libs/libunwind:= ) - app-arch/zstd:= - dev-libs/elfutils - sys-libs/binutils-libs:= - virtual/zlib:= - virtual/libcrypt -" - -DEPEND="${RDEPEND} - >=sys-kernel/linux-headers-5.10 - java? ( virtual/jdk ) -" - -QA_FLAGS_IGNORED=( - 'usr/bin/perf-read-vdso32' # not linked with anything except for libc - 'usr/libexec/perf-core/dlfilters/.*' # plugins -) - -pkg_pretend() { - if ! use doc ; then - ewarn "Without the doc USE flag you won't get any documentation nor man pages." - ewarn "And without man pages, you won't get any --help output for perf and its" - ewarn "sub-tools." - fi -} - -pkg_setup() { - local CONFIG_CHECK=" - ~!SCHED_OMIT_FRAME_POINTER - ~DEBUG_INFO - ~FRAME_POINTER - ~FTRACE - ~FTRACE_SYSCALLS - ~FUNCTION_TRACER - ~KALLSYMS - ~KALLSYMS_ALL - ~KPROBES - ~KPROBE_EVENTS - ~PERF_EVENTS - ~STACKTRACE - ~TRACEPOINTS - ~UPROBES - ~UPROBE_EVENTS - " - - use bpf && llvm-r1_pkg_setup - # We enable python unconditionally as libbpf always generates - # API headers using python script - python_setup - - if use bpf ; then - CONFIG_CHECK+="~BPF ~BPF_EVENTS ~BPF_SYSCALL ~DEBUG_INFO_BTF ~HAVE_EBPF_JIT ~UNWINDER_FRAME_POINTER" - fi - - linux-info_pkg_setup -} - -# src_unpack and src_prepare are copied to dev-util/bpftool since -# it's building from the same tarball, please keep it in sync with bpftool -src_unpack() { - local paths=( - 'arch/*/include/*' 'arch/*/lib/*' 'arch/*/tools/*' 'include/*' - 'kernel/bpf/*' 'lib/*' 'scripts/*' 'tools/arch/*' 'tools/bpf/*' - 'tools/build/*' 'tools/include/*' 'tools/lib/*' 'tools/perf/*' - 'tools/scripts/*' - ) - - # We expect the tar implementation to support the -j option (both - # GNU tar and libarchive's tar support that). - echo ">>> Unpacking ${LINUX_SOURCES} (${paths[*]}) to ${PWD}" - gtar --wildcards -xpf "${DISTDIR}"/${LINUX_SOURCES} \ - "${paths[@]/#/linux-${LINUX_VER}/}" || die - - if [[ -n ${LINUX_PATCH} ]] ; then - eshopts_push -o noglob - ebegin "Filtering partial source patch" - xzcat "${DISTDIR}"/${LINUX_PATCH} | filterdiff -p1 ${paths[@]/#/-i} > ${P}.patch - assert -n "Unpacking to ${P} from ${DISTDIR}/${LINUX_PATCH} failed" - eend $? || die "filterdiff failed" - test -s ${P}.patch || die "patch is empty?!" - eshopts_pop - fi - - local a - for a in ${A}; do - [[ ${a} == ${LINUX_SOURCES} ]] && continue - [[ ${a} == ${LINUX_PATCH} ]] && continue - unpack ${a} - done -} - -src_prepare() { - default - if [[ -n ${LINUX_PATCH} ]] ; then - pushd "${S_K}" >/dev/null || die - eapply "${WORKDIR}"/${P}.patch - popd || die - fi - - pushd "${S_K}" >/dev/null || die - # Gentoo patches go here - popd || die - - # Drop some upstream too-developer-oriented flags and fix the - # Makefile in general - sed -i \ - -e "s@\$(sysconfdir_SQ)/bash_completion.d@$(get_bashcompdir)@" \ - "${S}"/Makefile.perf || die - # A few places still use -Werror w/out $(WERROR) protection. - sed -i -e 's@-Werror@@' \ - "${S}"/Makefile.perf "${S_K}"/tools/lib/bpf/Makefile \ - "${S_K}"/tools/lib/perf/Makefile || die - - # Avoid the call to make kernelversion - sed -i -e '/PERF-VERSION-GEN/d' Makefile.perf || die - echo "#define PERF_VERSION \"${PV}\"" > PERF-VERSION-FILE - - # The code likes to compile local assembly files which lack ELF markings. - find -name '*.S' -exec sed -i '$a.section .note.GNU-stack,"",%progbits' {} + -} - -puse() { usex $1 "" 1; } -perf_make() { - # The arch parsing is a bit funky. The perf tools package is integrated - # into the kernel, so it wants an ARCH that looks like the kernel arch, - # but it also wants to know about the split value -- i386/x86_64 vs just - # x86. We can get that by telling the func to use an older linux version. - # It's kind of a hack, but not that bad ... - - # LIBDIR sets a search path of perf-gtk.so. Bug 515954 - - local arch=$(tc-arch-kernel) - local java_dir - use java && java_dir="${EPREFIX}/etc/java-config-2/current-system-vm" - - # sync this with the whitelist in tools/perf/Makefile.config - local disable_libdw - if ! use amd64 && ! use x86 && \ - ! use arm && \ - ! use arm64 && \ - ! use ppc && ! use ppc64 \ - ! use s390 && \ - ! use riscv && \ - ! use loong - then - disable_libdw=1 - fi - - # perf directly invokes LD for linking without going through CC, on mips - # it is required to specify the emulation. port of below buildroot patch - # https://patchwork.ozlabs.org/project/buildroot/patch/20170217105905.32151-1-Vincent.Riera@imgtec.com/ - local linker="$(tc-getLD)" - if use mips - then - if use big-endian - then - use abi_mips_n64 && linker+=" -m elf64btsmip" - use abi_mips_n32 && linker+=" -m elf32btsmipn32" - use abi_mips_o32 && linker+=" -m elf32btsmip" - else - use abi_mips_n64 && linker+=" -m elf64ltsmip" - use abi_mips_n32 && linker+=" -m elf32ltsmipn32" - use abi_mips_o32 && linker+=" -m elf32ltsmip" - fi - fi - - # FIXME: NO_CORESIGHT - local emakeargs=( - V=1 VF=1 - HOSTCC="$(tc-getBUILD_CC)" HOSTLD="$(tc-getBUILD_LD)" - CC="$(tc-getCC)" CXX="$(tc-getCXX)" AR="$(tc-getAR)" LD="${linker}" NM="$(tc-getNM)" - CLANG="${CHOST}-clang" - PKG_CONFIG="$(tc-getPKG_CONFIG)" - prefix="${EPREFIX}/usr" bindir_relative="bin" - tipdir="share/doc/${PF}" - EXTRA_CFLAGS="${CFLAGS}" - EXTRA_LDFLAGS="${LDFLAGS}" - ARCH="${arch}" - BUILD_BPF_SKEL=$(usex bpf 1 "") \ - BUILD_NONDISTRO=1 - JDIR="${java_dir}" - CORESIGHT= - GTK2=$(usex gtk 1 "") - feature-gtk2-infobar=$(usex gtk 1 "") - NO_AUXTRACE= - NO_BACKTRACE= - NO_CAPSTONE=$(puse capstone) - NO_DEMANGLE= - NO_JVMTI=$(puse java) - NO_LIBAUDIT=1 - NO_LIBBABELTRACE=$(puse babeltrace) - NO_LIBBIONIC=1 - NO_LIBBPF=$(puse bpf) - NO_LIBCAP=$(puse caps) - NO_LIBCRYPTO=$(puse crypt) - NO_LIBDW_DWARF_UNWIND="${disable_libdw}" - NO_LIBELF= - NO_LIBLLVM=$(puse bpf) - NO_LIBNUMA=$(puse numa) - NO_LIBPERL=$(puse perl) - NO_LIBPFM4=$(puse libpfm) - NO_LIBPYTHON=$(puse python) - NO_LIBTRACEEVENT=$(puse libtraceevent) - NO_LIBUNWIND=$(puse unwind) - NO_SDT=$(puse systemtap) - NO_SHELLCHECK=1 - NO_SLANG=$(puse slang) - NO_LZMA=$(puse lzma) - NO_ZLIB= - TCMALLOC=$(usex tcmalloc 1 "") - WERROR=0 - DEBUG=$(usex debug 1 "") - LIBDIR="/usr/libexec/perf-core" - libdir="${EPREFIX}/usr/$(get_libdir)" - plugindir="${EPREFIX}/usr/$(get_libdir)/perf/plugins" - "$@" - ) - NO_JEVENTS=$(puse python) emake "${emakeargs[@]}" -} - -src_compile() { - filter-lto - - perf_make -f Makefile.perf - use doc && perf_make -C Documentation man -} - -src_test() { - : -} - -src_install() { - _install_python_ext() { - perf_make -f Makefile.perf install-python_ext DESTDIR="${D}" - } - - perf_make -f Makefile.perf install DESTDIR="${D}" - - if use python; then - python_foreach_impl _install_python_ext - fi - - if use gtk; then - local libdir - libdir="$(get_libdir)" - # on some arches it ends up in lib even on 64bit, ppc64 for instance. - [[ -f "${ED}"/usr/lib/libperf-gtk.so ]] && libdir="lib" - mv "${ED}"/usr/${libdir}/libperf-gtk.so \ - "${ED}"/usr/libexec/perf-core || die - fi - - dodoc CREDITS - - dodoc *txt Documentation/*.txt - - # perf needs this decompressed to print out tips for users - docompress -x /usr/share/doc/${PF}/tips.txt - - if use doc ; then - doman Documentation/*.1 - fi -} diff --git a/dev-util/perf/perf-6.17.ebuild b/dev-util/perf/perf-6.17.ebuild deleted file mode 100644 index 1a49b45de0c6..000000000000 --- a/dev-util/perf/perf-6.17.ebuild +++ /dev/null @@ -1,338 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -LLVM_COMPAT=( {18..21} ) -PYTHON_COMPAT=( python3_{10..14} ) -inherit bash-completion-r1 estack flag-o-matic linux-info llvm-r1 toolchain-funcs python-single-r1 - -DESCRIPTION="Userland tools for Linux Performance Counters" -HOMEPAGE="https://perfwiki.github.io/main/" - -LINUX_V="${PV:0:1}.x" -if [[ ${PV} == *_rc* ]] ; then - LINUX_VER=$(ver_cut 1-2).$(($(ver_cut 3)-1)) - PATCH_VERSION=$(ver_cut 1-3) - LINUX_PATCH=patch-${PV//_/-}.xz - SRC_URI="https://www.kernel.org/pub/linux/kernel/v${LINUX_V}/testing/${LINUX_PATCH} - https://www.kernel.org/pub/linux/kernel/v${LINUX_V}/testing/v${PATCH_VERSION}/${LINUX_PATCH}" -elif [[ ${PV} == *.*.* ]] ; then - # stable-release series - LINUX_VER=$(ver_cut 1-2) - LINUX_PATCH=patch-${PV}.xz - SRC_URI="https://www.kernel.org/pub/linux/kernel/v${LINUX_V}/${LINUX_PATCH}" -else - LINUX_VER=${PV} -fi - -LINUX_SOURCES="linux-${LINUX_VER}.tar.xz" -SRC_URI+=" https://www.kernel.org/pub/linux/kernel/v${LINUX_V}/${LINUX_SOURCES}" - -S_K="${WORKDIR}/linux-${LINUX_VER}" -S="${S_K}/tools/perf" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86" -IUSE="abi_mips_o32 abi_mips_n32 abi_mips_n64 babeltrace capstone big-endian bpf caps crypt debug gtk java libpfm +libtraceevent +libtracefs lzma numa perl +python +slang systemtap tcmalloc unwind" - -REQUIRED_USE=" - ${PYTHON_REQUIRED_USE} -" - -# setuptools (and Python) are always needed even if not building Python bindings -BDEPEND=" - ${LINUX_PATCH+dev-util/patchutils} - ${PYTHON_DEPS} - >=app-arch/tar-1.34-r2 - $(python_gen_cond_dep ' - dev-python/setuptools[${PYTHON_USEDEP}] - ') - app-alternatives/yacc - app-alternatives/lex - sys-apps/which - virtual/pkgconfig - app-text/asciidoc - app-text/sgml-common - app-text/xmlto - sys-process/time -" - -RDEPEND=" - babeltrace? ( dev-util/babeltrace:0/1 ) - bpf? ( - dev-libs/libbpf - dev-util/bpftool - dev-util/pahole - $(llvm_gen_dep ' - llvm-core/clang:${LLVM_SLOT}= - llvm-core/llvm:${LLVM_SLOT}= - ') - ) - caps? ( sys-libs/libcap ) - capstone? ( dev-libs/capstone ) - crypt? ( dev-libs/openssl:= ) - gtk? ( x11-libs/gtk+:2 ) - java? ( virtual/jre:* ) - libpfm? ( dev-libs/libpfm:= ) - libtraceevent? ( dev-libs/libtraceevent ) - libtracefs? ( dev-libs/libtracefs ) - lzma? ( app-arch/xz-utils ) - numa? ( sys-process/numactl ) - perl? ( dev-lang/perl:= ) - python? ( ${PYTHON_DEPS} ) - slang? ( sys-libs/slang ) - systemtap? ( dev-debug/systemtap ) - tcmalloc? ( dev-util/google-perftools ) - unwind? ( sys-libs/libunwind:= ) - app-arch/zstd:= - dev-libs/elfutils - sys-libs/binutils-libs:= - virtual/zlib:= - virtual/libcrypt -" - -DEPEND="${RDEPEND} - >=sys-kernel/linux-headers-5.10 - java? ( virtual/jdk ) -" - -QA_FLAGS_IGNORED=( - 'usr/bin/perf-read-vdso32' # not linked with anything except for libc - 'usr/libexec/perf-core/dlfilters/.*' # plugins -) - -pkg_setup() { - local CONFIG_CHECK=" - ~!SCHED_OMIT_FRAME_POINTER - ~DEBUG_INFO - ~FRAME_POINTER - ~FTRACE - ~FTRACE_SYSCALLS - ~FUNCTION_TRACER - ~KALLSYMS - ~KALLSYMS_ALL - ~KPROBES - ~KPROBE_EVENTS - ~PERF_EVENTS - ~STACKTRACE - ~TRACEPOINTS - ~UPROBES - ~UPROBE_EVENTS - " - - use bpf && llvm-r1_pkg_setup - # We enable python unconditionally as libbpf always generates - # API headers using python script - python_setup - - if use bpf ; then - CONFIG_CHECK+="~BPF ~BPF_EVENTS ~BPF_SYSCALL ~DEBUG_INFO_BTF ~HAVE_EBPF_JIT ~UNWINDER_FRAME_POINTER" - fi - - linux-info_pkg_setup -} - -# src_unpack and src_prepare are copied to dev-util/bpftool since -# it's building from the same tarball, please keep it in sync with bpftool -src_unpack() { - local paths=( - 'arch/*/include/*' 'arch/*/lib/*' 'arch/*/tools/*' 'include/*' - 'kernel/bpf/*' 'lib/*' 'scripts/*' 'tools/arch/*' 'tools/bpf/*' - 'tools/build/*' 'tools/include/*' 'tools/lib/*' 'tools/perf/*' - 'tools/scripts/*' - ) - - # We expect the tar implementation to support the -j option (both - # GNU tar and libarchive's tar support that). - echo ">>> Unpacking ${LINUX_SOURCES} (${paths[*]}) to ${PWD}" - gtar --wildcards -xpf "${DISTDIR}"/${LINUX_SOURCES} \ - "${paths[@]/#/linux-${LINUX_VER}/}" || die - - if [[ -n ${LINUX_PATCH} ]] ; then - eshopts_push -o noglob - ebegin "Filtering partial source patch" - xzcat "${DISTDIR}"/${LINUX_PATCH} | filterdiff -p1 ${paths[@]/#/-i} > ${P}.patch - assert -n "Unpacking to ${P} from ${DISTDIR}/${LINUX_PATCH} failed" - eend $? || die "filterdiff failed" - test -s ${P}.patch || die "patch is empty?!" - eshopts_pop - fi - - local a - for a in ${A}; do - [[ ${a} == ${LINUX_SOURCES} ]] && continue - [[ ${a} == ${LINUX_PATCH} ]] && continue - unpack ${a} - done -} - -src_prepare() { - default - if [[ -n ${LINUX_PATCH} ]] ; then - pushd "${S_K}" >/dev/null || die - eapply "${WORKDIR}"/${P}.patch - popd || die - fi - - pushd "${S_K}" >/dev/null || die - # Gentoo patches go here - popd || die - - # Drop some upstream too-developer-oriented flags and fix the - # Makefile in general - sed -i \ - -e "s@\$(sysconfdir_SQ)/bash_completion.d@$(get_bashcompdir)@" \ - "${S}"/Makefile.perf || die - # A few places still use -Werror w/out $(WERROR) protection. - sed -i -e 's@-Werror@@' \ - "${S}"/Makefile.perf "${S_K}"/tools/lib/bpf/Makefile \ - "${S_K}"/tools/lib/perf/Makefile || die - - # Avoid the call to make kernelversion - sed -i -e '/PERF-VERSION-GEN/d' Makefile.perf || die - echo "#define PERF_VERSION \"${PV}\"" > PERF-VERSION-FILE - - # The code likes to compile local assembly files which lack ELF markings. - find -name '*.S' -exec sed -i '$a.section .note.GNU-stack,"",%progbits' {} + -} - -puse() { usex $1 "" 1; } -perf_make() { - # The arch parsing is a bit funky. The perf tools package is integrated - # into the kernel, so it wants an ARCH that looks like the kernel arch, - # but it also wants to know about the split value -- i386/x86_64 vs just - # x86. We can get that by telling the func to use an older linux version. - # It's kind of a hack, but not that bad ... - - # LIBDIR sets a search path of perf-gtk.so. Bug 515954 - - local arch=$(tc-arch-kernel) - local java_dir - use java && java_dir="${EPREFIX}/etc/java-config-2/current-system-vm" - - # sync this with the whitelist in tools/perf/Makefile.config - local disable_libdw - if ! use amd64 && ! use x86 && \ - ! use arm && \ - ! use arm64 && \ - ! use ppc && ! use ppc64 \ - ! use s390 && \ - ! use riscv && \ - ! use loong - then - disable_libdw=1 - fi - - # perf directly invokes LD for linking without going through CC, on mips - # it is required to specify the emulation. port of below buildroot patch - # https://patchwork.ozlabs.org/project/buildroot/patch/20170217105905.32151-1-Vincent.Riera@imgtec.com/ - local linker="$(tc-getLD)" - if use mips - then - if use big-endian - then - use abi_mips_n64 && linker+=" -m elf64btsmip" - use abi_mips_n32 && linker+=" -m elf32btsmipn32" - use abi_mips_o32 && linker+=" -m elf32btsmip" - else - use abi_mips_n64 && linker+=" -m elf64ltsmip" - use abi_mips_n32 && linker+=" -m elf32ltsmipn32" - use abi_mips_o32 && linker+=" -m elf32ltsmip" - fi - fi - - # FIXME: NO_CORESIGHT - local emakeargs=( - V=1 VF=1 - HOSTCC="$(tc-getBUILD_CC)" HOSTLD="$(tc-getBUILD_LD)" - CC="$(tc-getCC)" CXX="$(tc-getCXX)" AR="$(tc-getAR)" LD="${linker}" NM="$(tc-getNM)" - CLANG="${CHOST}-clang" - PKG_CONFIG="$(tc-getPKG_CONFIG)" - prefix="${EPREFIX}/usr" bindir_relative="bin" - tipdir="share/doc/${PF}" - EXTRA_CFLAGS="${CPPFLAGS} ${CFLAGS}" - EXTRA_LDFLAGS="${LDFLAGS}" - ARCH="${arch}" - BUILD_BPF_SKEL=$(usex bpf 1 "") \ - BUILD_NONDISTRO=1 - JDIR="${java_dir}" - CORESIGHT= - GTK2=$(usex gtk 1 "") - feature-gtk2-infobar=$(usex gtk 1 "") - NO_AUXTRACE= - NO_BACKTRACE= - NO_CAPSTONE=$(puse capstone) - NO_DEMANGLE= - NO_JVMTI=$(puse java) - NO_LIBAUDIT=1 - NO_LIBBABELTRACE=$(puse babeltrace) - NO_LIBBIONIC=1 - NO_LIBBPF=$(puse bpf) - NO_LIBCAP=$(puse caps) - NO_LIBCRYPTO=$(puse crypt) - NO_LIBDW_DWARF_UNWIND="${disable_libdw}" - NO_LIBELF= - NO_LIBLLVM=$(puse bpf) - NO_LIBNUMA=$(puse numa) - NO_LIBPERL=$(puse perl) - NO_LIBPFM4=$(puse libpfm) - NO_LIBPYTHON=$(puse python) - NO_LIBTRACEEVENT=$(puse libtraceevent) - NO_LIBUNWIND=$(puse unwind) - NO_SDT=$(puse systemtap) - NO_SHELLCHECK=1 - NO_SLANG=$(puse slang) - NO_LZMA=$(puse lzma) - NO_ZLIB= - TCMALLOC=$(usex tcmalloc 1 "") - WERROR=0 - DEBUG=$(usex debug 1 "") - LIBDIR="/usr/libexec/perf-core" - libdir="${EPREFIX}/usr/$(get_libdir)" - plugindir="${EPREFIX}/usr/$(get_libdir)/perf/plugins" - "$@" - ) - NO_JEVENTS=$(puse python) emake "${emakeargs[@]}" -} - -src_compile() { - filter-lto - - # capstone-6 compatibility (#964350) - append-cppflags -DCAPSTONE_AARCH64_COMPAT_HEADER -DCAPSTONE_SYSTEMZ_COMPAT_HEADER - - perf_make -f Makefile.perf - perf_make -C Documentation man -} - -src_test() { - : -} - -src_install() { - perf_make -f Makefile.perf install DESTDIR="${D}" - - if use python; then - perf_make -f Makefile.perf install-python_ext DESTDIR="${D}" - fi - - if use gtk; then - local libdir - libdir="$(get_libdir)" - # on some arches it ends up in lib even on 64bit, ppc64 for instance. - [[ -f "${ED}"/usr/lib/libperf-gtk.so ]] && libdir="lib" - mv "${ED}"/usr/${libdir}/libperf-gtk.so \ - "${ED}"/usr/libexec/perf-core || die - fi - - dodoc CREDITS - - dodoc *txt Documentation/*.txt - - # perf needs this decompressed to print out tips for users - docompress -x /usr/share/doc/${PF}/tips.txt - - doman Documentation/*.1 -} diff --git a/dev-util/perf/perf-6.18-r1.ebuild b/dev-util/perf/perf-6.19.ebuild index 7af6ffeb0a41..4b59f5b3ff03 100644 --- a/dev-util/perf/perf-6.18-r1.ebuild +++ b/dev-util/perf/perf-6.19.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -177,7 +177,6 @@ src_prepare() { pushd "${S_K}" >/dev/null || die # Gentoo patches go here - eapply "${FILESDIR}/${P}-subcmd.patch" popd || die # Drop some upstream too-developer-oriented flags and fix the diff --git a/dev-util/premake/premake-5.0.0_beta7.ebuild b/dev-util/premake/premake-5.0.0_beta7.ebuild index d427f212d0bd..8fbda5a8d314 100644 --- a/dev-util/premake/premake-5.0.0_beta7.ebuild +++ b/dev-util/premake/premake-5.0.0_beta7.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -16,7 +16,7 @@ S="${WORKDIR}/${PN}-core-${MY_PV}" LICENSE="BSD" SLOT="5" -KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86" +KEYWORDS="amd64 ~arm64 ~ppc ~ppc64 x86" REQUIRED_USE="${LUA_REQUIRED_USE}" RDEPEND=" diff --git a/dev-util/pwntools/pwntools-4.15.0.ebuild b/dev-util/pwntools/pwntools-4.15.0.ebuild index 7732f87462dd..883216615bab 100644 --- a/dev-util/pwntools/pwntools-4.15.0.ebuild +++ b/dev-util/pwntools/pwntools-4.15.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -24,6 +24,9 @@ fi LICENSE="MIT GPL-2+ BSD-2" SLOT="0" +# <unicorn-2.1.4: +# https://github.com/Gallopsled/pwntools/issues/2619 +# https://github.com/unicorn-engine/unicorn/issues/2134 RDEPEND=" ${PYTHON_DEPS} >=dev-libs/capstone-3.0.5[python,${PYTHON_USEDEP}] diff --git a/dev-util/pwntools/pwntools-9999.ebuild b/dev-util/pwntools/pwntools-9999.ebuild index a37ff9715050..636536001362 100644 --- a/dev-util/pwntools/pwntools-9999.ebuild +++ b/dev-util/pwntools/pwntools-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -24,6 +24,9 @@ fi LICENSE="MIT GPL-2+ BSD-2" SLOT="0" +# <unicorn-2.1.4: +# https://github.com/Gallopsled/pwntools/issues/2619 +# https://github.com/unicorn-engine/unicorn/issues/2134 RDEPEND=" ${PYTHON_DEPS} >=dev-libs/capstone-3.0.5[python,${PYTHON_USEDEP}] diff --git a/dev-util/ruff/Manifest b/dev-util/ruff/Manifest index 45fb5d05da1b..2c39785f9b65 100644 --- a/dev-util/ruff/Manifest +++ b/dev-util/ruff/Manifest @@ -11,8 +11,11 @@ DIST ruff-0.14.9-crates.tar.xz 23756736 BLAKE2B 096331190e95db7701bd80ef61d38dbc DIST ruff-0.14.9.gh.tar.gz 10435624 BLAKE2B 8a11be76ac46750c97efd6f8bfdafd1d2bdeac81302b85f2d04feba59165fe9ed1b24c465a9df0d8d415325af6e9c6e020d21f295ef94c52f24681359c00bb3a SHA512 67c58eff480232871041156ddd8448a856b0e3c9bb68ca82577d34f353a711b85e3b1e032f98ed0abe5d0fff2855a109380e59e8909dd2742c3bb6b96dc972d4 DIST ruff-0.15.0-crates.tar.xz 27175004 BLAKE2B 6d6b0b701576b7f26a306211695b40903a2605f0a6cbd19058e2ecb27c82657307adad760fa3a31365dc0589a0a7050862f656583421399de4971b8ccff550b4 SHA512 9ba8fd8fe9e199b35a8a4bcadf51eaa20ef0fdf4c3492c1395d0e49340cee5a58dcda93e2c2452993a296b765cbbe6d36f4bacd5f7c15f2ddc4fdfba4a0377b2 DIST ruff-0.15.0.gh.tar.gz 10873810 BLAKE2B 721a3895412faf0b456fef0c361ab576800b3b51d2ee03500b62af769680bb9942f5ee8be7aac4a24df409de7b20c9879b4b1e482727edf6d247921c692e8dc5 SHA512 b9584eee521718d1d5d27215c1981c38c3ab947bdfb4554ee323c220da6fc69dcb33b2cc7a23d8d730b24bf61a02c986499e037950faa3d500e2172d67e7d926 +DIST ruff-0.15.1-crates.tar.xz 27160512 BLAKE2B c59aca33f25cbee3970e1f05a0f4d6fd4411e8b9968eb682f29e2775ae17db10c8acd3e1de69a3aaff162a368e2af1d18c007e0d53cedcf65d2fc78096c6d8b2 SHA512 61e24937d6efce02013b2484c21c3eebe9f74d1bda740dfa9771e93846a8dd1d18039b6d9b905441af35062f5550a3d62342b5d4c63b479152d3de92abea6048 +DIST ruff-0.15.1.gh.tar.gz 10974921 BLAKE2B fbae4979a96a443dfb9b9492c4346d89ad6a8412a23934acf068b84972256de7d3a4e857e99064d29157ee2eaae15ac1d4ceec97861be66b59034a79f0adc221 SHA512 e8fa0bb254714a5d361a1d49aadd0633a6989d91c098c4dc2689991634960aff369f3e987546f1d9018de2920a4af40233f52fb8091f992a90d34a99be8ad855 DIST salsa-309c249088fdeef0129606fa34ec2eefc74736ff.gh.tar.gz 733433 BLAKE2B 7e624438a1bc329e7874fbd2b2efb159933b4297664567e6e0c367d4fbe9ab98de9ca1ffc09a2e2b3e15efd7b6a855298e8e861560157e6eb50ff0251260ad39 SHA512 5e4ee81b8bdb21c98bac9fd8f6e51946a393d5a8e526c8f2f1153234450f25b37618fba26aa1f102439633cc271d8b46769ab86a02d9a51ee1071cc5eed6e876 DIST salsa-3713cd7eb30821c0c086591832dd6f59f2af7fe7.gh.tar.gz 717350 BLAKE2B 3db412c1ce2953fdde9f182e9611d8dfe09b197be36c69ebf77344fbdf1efb542b94ca61c5cbcc39fdb3df8ec1e374d19e1e1116174f63f907e28b51f14f19cf SHA512 49bcdede05f7f681d075739b685e1807e978d8160374b2d6176246b90255d72c202205e7591af76ce362706793ca8c15f1a3854849c63b466313eaf363ad8c61 +DIST salsa-53421c2fff87426fa0bb51cab06632b87646de13.gh.tar.gz 742301 BLAKE2B 90a53f87b823c360fce95c32fa573650892e40d4f7b260b52efa9bd96da903342ba5cd8adfffed34f168e546a9a1c140ecf22c80731d458cd8e06c84bd6c4d24 SHA512 4471203f3a2a6db0766ce2d426583f9c55277987200bf863c31b1ef09f9ede77091d47ad3a971ae2653d34a02cb2f79b5fb0e6da7a0860dca6636ebba1651ae6 DIST salsa-55e5e7d32fa3fc189276f35bb04c9438f9aedbd1.gh.tar.gz 731425 BLAKE2B ce720abaa295b46c7e1fa06a73e2ad9a48a6b9da7f2b4a91edba38a28bb9a63a1661886fc7c5d6dbc915f589f2e055731a544cdf18afb4dd7b3f6815c59e543b SHA512 91942cfc6bbfb7f07366cdd3d42e5296bff877ee723b24868ff3c278defd0ef247f03e957332bc0696553f0f1977a41c18d08efe7887f5bda3a1cb98543bddbd DIST salsa-9860ff6ca0f1f8f3a8d6b832020002790b501254.gh.tar.gz 738416 BLAKE2B a80aea2f5e89bbadd5aecd7bf728355f2ffd84793b2e3581e94ba10e32c68fa7b9eb2663b17e47089ba60f5b6019776f794f91771435a9e8d10876f4e38b4d97 SHA512 ed1080daa458a77dc1634381863c671f3facd34e048c952358253be950bc87eb4d11079566be8caa90eb1f704e1dbc3591418a03ed10f1b7147222afcf44fe63 DIST salsa-e9b9ddd4bec50ac777e9353bbb8f1180e5669d89.gh.tar.gz 741206 BLAKE2B 627fac673ca5010e430df998484ad0819ec4975c94d46d0fcf740a48ace92ce411e82f50c75b1645f6e1dfd8c4732081aa25e3fe8255c2059406892f5cb4f67f SHA512 285744b75e815249fad001eed2dd790b0e79b0d5a655806ae335b464b959f1ed47777041e3e4c0f3793be5b8920e43eead1ee78a9c4af9865ca76be2b4215104 diff --git a/dev-util/ruff/ruff-0.15.1.ebuild b/dev-util/ruff/ruff-0.15.1.ebuild new file mode 100644 index 000000000000..c9365b4e5002 --- /dev/null +++ b/dev-util/ruff/ruff-0.15.1.ebuild @@ -0,0 +1,119 @@ +# Copyright 2024-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +# Autogenerated by pycargoebuild 0.15.1 + +EAPI=8 + +CRATES=" +" + +declare -A GIT_CRATES=( + [lsp-types]='https://github.com/astral-sh/lsp-types;3512a9f33eadc5402cfab1b8f7340824c8ca1439;lsp-types-%commit%' + [salsa-macro-rules]='https://github.com/salsa-rs/salsa;53421c2fff87426fa0bb51cab06632b87646de13;salsa-%commit%/components/salsa-macro-rules' + [salsa-macros]='https://github.com/salsa-rs/salsa;53421c2fff87426fa0bb51cab06632b87646de13;salsa-%commit%/components/salsa-macros' + [salsa]='https://github.com/salsa-rs/salsa;53421c2fff87426fa0bb51cab06632b87646de13;salsa-%commit%' +) + +RUST_MIN_VER="1.91.0" + +inherit shell-completion cargo + +DESCRIPTION="An extremely fast Python linter, written in Rust" +HOMEPAGE=" + https://docs.astral.sh/ruff/ + https://github.com/astral-sh/ruff +" +SRC_URI=" + ${CARGO_CRATE_URIS} + https://github.com/astral-sh/ruff/archive/refs/tags/${PV}.tar.gz -> ${P}.gh.tar.gz + https://github.com/gentoo-crate-dist/${PN}/releases/download/${PV}/${P}-crates.tar.xz +" + +LICENSE="MIT" +# Dependent crate licenses +LICENSE+=" + Apache-2.0 BSD CC0-1.0 ISC MIT MPL-2.0 PSF-2 Unicode-3.0 + Unicode-DFS-2016 WTFPL-2 ZLIB +" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~loong ~riscv" + +RDEPEND=" + !elibc_musl? ( !elibc_Darwin? ( !elibc_bionic? ( dev-libs/jemalloc:= ) ) ) + app-arch/zstd +" +DEPEND=" + ${RDEPEND} +" + +QA_FLAGS_IGNORED="usr/bin/.*" + +DOCS=( + BREAKING_CHANGES.md + CODE_OF_CONDUCT.md + CONTRIBUTING.md + README.md + assets + docs +) + +src_prepare() { + default + + # Experimental cruft cleaner. These crates are not used by the ruff binary, + # and when they are removed in the git repo, the lockfile is regenerated + # and gets quite a bit smaller. Hence pycargoebuild also produces much + # smaller CRATES= variables. Less for the user to download, fewer distfiles + # to mirror. + pushd crates >/dev/null || die + rm -r ruff_{benchmark,dev} ty{,_{server,completion_eval}} *_wasm || die + popd > /dev/null || die + + # tests that hang in the ebuild environment + rm crates/ruff_annotate_snippets/tests/examples.rs || die +} + +src_configure() { + export RUSTFLAGS="${RUSTFLAGS}" + cargo_src_configure +} + +src_compile() { + local -x ZSTD_SYS_USE_PKG_CONFIG=1 + # Gentoo bug #927338 + if use !elibc_musl && use !elibc_Darwin && use !elibc_bionic; then + local -x CARGO_FEATURE_UNPREFIXED_MALLOC_ON_SUPPORTED_PLATFORMS=1 + local -x JEMALLOC_OVERRIDE="${ESYSROOT}/usr/$(get_libdir)"/libjemalloc.so + fi + cargo_src_compile --bin ruff + + local releasedir + releasedir=$(cargo_target_dir) + + ${releasedir}/ruff generate-shell-completion bash > ruff-completion.bash || die + ${releasedir}/ruff generate-shell-completion fish > ruff-completion.fish || die + ${releasedir}/ruff generate-shell-completion zsh > ruff-completion.zsh || die +} + +src_test() { + local -x ZSTD_SYS_USE_PKG_CONFIG=1 + # Gentoo bug #927338 + if use !elibc_musl && use !elibc_Darwin && use !elibc_bionic; then + local -x CARGO_FEATURE_UNPREFIXED_MALLOC_ON_SUPPORTED_PLATFORMS=1 + local -x JEMALLOC_OVERRIDE="${ESYSROOT}/usr/$(get_libdir)"/libjemalloc.so + fi + cargo_src_test --target-dir "${PWD}"/tested-target/ +} + +src_install() { + local releasedir=$(cargo_target_dir) + + dobin ${releasedir}/ruff + + newbashcomp ruff-completion.bash ruff + newfishcomp ruff-completion.fish ruff.fish + newzshcomp ruff-completion.zsh _ruff + + dodoc -r "${DOCS[@]}" +} diff --git a/dev-vcs/fossil/fossil-2.26.ebuild b/dev-vcs/fossil/fossil-2.26.ebuild index d96ab9ef7d57..be80cd0c5728 100644 --- a/dev-vcs/fossil/fossil-2.26.ebuild +++ b/dev-vcs/fossil/fossil-2.26.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -17,7 +17,7 @@ SRC_URI="https://fossil-scm.org/home/tarball/${MY_TAG}/fossil-src-${PV}.tar.gz - S="${WORKDIR}/fossil-src-${PV}" LICENSE="BSD-2" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" +KEYWORDS="amd64 arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" IUSE="debug fusefs json system-sqlite +ssl static tcl tcl-stubs tcl-private-stubs test th1-docs th1-hooks" RESTRICT="!test? ( test )" diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index 97b57411d9a1..8efe5417747b 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -1417,17 +1417,15 @@ toolchain_src_configure() { confgcc+=( --disable-libstdcxx-pch ) fi - # build-id was disabled for file collisions: bug #526144 - # - # # Turn on the -Wl,--build-id flag by default for ELF targets. bug #525942 - # # This helps with locating debug files. - # case ${CTARGET} in - # *-linux-*|*-elf|*-eabi) - # tc_version_is_at_least 4.5 && confgcc+=( - # --enable-linker-build-id - # ) - # ;; - # esac + # Turn on the -Wl,--build-id flag by default for ELF targets. bug #953869 + # This helps with locating debug files. + case ${CTARGET} in + *-linux-*|*-elf|*-eabi) + tc_version_is_at_least 4.5 && confgcc+=( + --enable-linker-build-id + ) + ;; + esac ### Cross-compiler option # @@ -1450,11 +1448,15 @@ toolchain_src_configure() { ;; *-elf|*-eabi) needed_libc=newlib - # Bare-metal targets don't have access to clock_gettime() - # arm-none-eabi example: bug #589672 - # But we explicitly do --enable-libstdcxx-time above. - # Undoing it here. - confgcc+=( --disable-libstdcxx-time ) + confgcc+=( + # Bare-metal targets don't have access to clock_gettime() + # arm-none-eabi example: bug #589672 + # But we explicitly do --enable-libstdcxx-time above. + # Undoing it here. + --disable-libstdcxx-time + # bug #970098 + --disable-libada + ) ;; *-gnu*) needed_libc=glibc @@ -1779,6 +1781,10 @@ toolchain_src_configure() { fi fi + if in_iuse ada ; then + confgcc+=( $(use_enable ada libada) ) + fi + if in_iuse cet ; then # Usage: triple_arch triple_env cet_name enable_cet_for() { diff --git a/games-misc/doge/Manifest b/games-misc/doge/Manifest index d69a4e8336c4..1a29cc1a338a 100644 --- a/games-misc/doge/Manifest +++ b/games-misc/doge/Manifest @@ -1 +1,2 @@ DIST doge-3.9.0.tar.gz 64607 BLAKE2B 012f4d5e73915e465a868ff0aeafeba6d254f1614dd752b2fc0961c88a0a9ca37b8e20f52ea158750d3686e3bc8e1322ba87b19e459f279f79f2f501dcd734e6 SHA512 cab5aa4adbd6a442a0dfae2a855b88185045712dabae9e72cead28678a7fe8e4896e84617cc70c3c876f24339074c5841b3f70b00d9343b5eef01dfdd5b86cce +DIST doge-3.9.1.tar.gz 91146 BLAKE2B 2e2043ad52cf447de9faccb8c864ea4df1d20e5d409b7cc700846ab2f0c07dad41e553f26823c3619dfa190324be2002547e7e4351649debcdef7ab3b2ebb558 SHA512 465ad55eb1118885acffa1c179e78fee0362de9804b43d201dcb6aa8ad35a8d76b93be53eac6d382ed6d8260d1ebdd653757a83fdbc485dc91f59a2b2fdca2d1 diff --git a/games-misc/doge/doge-3.9.1.ebuild b/games-misc/doge/doge-3.9.1.ebuild new file mode 100644 index 000000000000..a78a75bbb838 --- /dev/null +++ b/games-misc/doge/doge-3.9.1.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_SINGLE_IMPL=1 +DISTUTILS_USE_PEP517=hatchling +PYTHON_COMPAT=( python3_{10..14} ) +inherit distutils-r1 pypi + +DESCRIPTION="wow very terminal doge" +HOMEPAGE="https://github.com/Olivia5k/doge/" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + $(python_gen_cond_dep ' + dev-python/fullmoon[${PYTHON_USEDEP}] + dev-python/python-dateutil[${PYTHON_USEDEP}] + ') + sys-process/procps +" + +EPYTEST_PLUGINS=() +distutils_enable_tests pytest diff --git a/gui-apps/deskflow/Manifest b/gui-apps/deskflow/Manifest index 84456d8b55af..c57781854db2 100644 --- a/gui-apps/deskflow/Manifest +++ b/gui-apps/deskflow/Manifest @@ -1,3 +1,3 @@ -DIST deskflow-1.21.2.tar.gz 1884045 BLAKE2B 788823c9154ec9113944bb04e32b750412bec93e096357cb64b33d47a3e8e4b64e3532443ba73660210908e17f0f43c0666437faaf7089b7b527bf2a17c7a1a6 SHA512 e6ef54fb0abbab99dd14502db4e86a563b2fdbf05c632c718a65c8f4a9e85820b1ef61036abf074903d36265f951757148784c8b9331f9d589cf9cd6bfe64ee4 DIST deskflow-1.24.0.tar.gz 1848123 BLAKE2B fe8a8f9917cf583deb9f49f8e669735612a3968c666924b500846f48f2f7eb97adee542f8a9ed0030123217e71f6ecdf008c672fab70b483a80e5d7bc87f790e SHA512 fce477239d5aa11d20c95ba43a97e36b58c5548db40035557c73f295650a0f08c862a867cccfdd39f7a0594c1207d2ab17b982212c7f0cd5182e7db4ab0b7e48 DIST deskflow-1.25.0.tar.gz 1291356 BLAKE2B 1e262ce2a11b8ff15d4733f6d5004810af478f12216c16be2ebb7bf58a8fd2397c0560b7e27e6ed68a3e3d3bf99c88104fda0019934528bdde1daf192343a33f SHA512 a9fa7deea2d1ec38932cf36a32ee788f86713bc0a7ac0e2d4078f600eb004dad0557666dac079f4c3d3228fc8c4f195c6f387c1aec5504538b039385c9490887 +DIST deskflow-1.26.0.tar.gz 1306972 BLAKE2B 09eee3ccfab32ade944f912b3b1025641067b799181e1a9f95e73cec13beacd9c7c11906ad3398b86bfa2a749f20ee97ae9f95c08379c3b69bf59c3ec1162c26 SHA512 419eccd26ae9199d6f98167e3e97c1de44e316b1b3b49d7318cf323e9955934e5ee6c4c5175ec05fc6410e5aeacae619406a98d6084a11643b24220179eb7cec diff --git a/gui-apps/deskflow/deskflow-1.21.2.ebuild b/gui-apps/deskflow/deskflow-1.26.0.ebuild index c3bf0132295f..1b51e88181f5 100644 --- a/gui-apps/deskflow/deskflow-1.21.2.ebuild +++ b/gui-apps/deskflow/deskflow-1.26.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -10,7 +10,7 @@ if [[ ${PV} == *9999* ]]; then inherit git-r3 else SRC_URI="https://github.com/deskflow/deskflow/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="amd64" + KEYWORDS="~amd64" fi DESCRIPTION="Share a mouse and keyboard between computers (FOSS version of Synergy)" @@ -18,55 +18,53 @@ HOMEPAGE="https://github.com/deskflow/deskflow" LICENSE="GPL-2" SLOT="0" -IUSE="gui test" +IUSE="test X" RESTRICT="!test? ( test )" RDEPEND=" - dev-cpp/tomlplusplus dev-libs/glib:2 - dev-libs/libei + >=dev-libs/libei-0.99.1 dev-libs/libportal:= dev-libs/openssl:0= - dev-qt/qtbase:6[dbus,network,xml] + dev-qt/qtbase:6[dbus,gui,network,widgets,xml] x11-libs/libxkbcommon - x11-libs/libxkbfile - gui? ( - dev-qt/qtbase:6[gui,widgets] + X? ( + x11-libs/libxkbfile + x11-libs/libICE + x11-libs/libSM + x11-libs/libX11 + x11-libs/libXext + x11-libs/libXi + x11-libs/libXinerama + x11-libs/libXrandr + x11-libs/libXtst ) - x11-libs/libICE - x11-libs/libSM - x11-libs/libX11 - x11-libs/libXext - x11-libs/libXi - x11-libs/libXinerama - x11-libs/libXrandr - x11-libs/libXtst " DEPEND=" ${RDEPEND} - dev-cpp/cli11 - x11-base/xorg-proto test? ( dev-cpp/gtest ) + X? ( x11-base/xorg-proto ) " BDEPEND=" virtual/pkgconfig - gui? ( dev-qt/qttools:6[linguist] ) + dev-qt/qttools:6[linguist] " DOCS=( README.md - doc/configuration.md + doc/user/configuration.md ) src_configure() { local mycmakeargs=( - -DBUILD_GUI=$(usex gui) -DBUILD_TESTS=$(usex test) + -DBUILD_X11_SUPPORT=$(usex X) + $(usex test -DSKIP_BUILD_TESTS=ON "") ) cmake_src_configure } src_test() { - "${BUILD_DIR}"/bin/unittests || die - virtx "${BUILD_DIR}"/bin/integtests + "${BUILD_DIR}"/bin/legacytests || die + BUILD_DIR+=/src/unittests virtx cmake_src_test } diff --git a/gui-libs/qt-color-widgets/Manifest b/gui-libs/qt-color-widgets/Manifest new file mode 100644 index 000000000000..53f647fe150f --- /dev/null +++ b/gui-libs/qt-color-widgets/Manifest @@ -0,0 +1 @@ +DIST Qt-Color-Widgets-3.0.0.tar.bz2 208851 BLAKE2B ab6eb2bbeb51bb36a52be794cb071322cabffbd5c121ecb34ff3b835b38a8021c14e5549ea25108bb6d2452d3f9cd4250ca2d2bcbeba3de4f85a015d67de45b6 SHA512 934362868099a79b81dd96184833d23431d947b75cee9d97f852885417ffe3701945b8e3a2bd78ddd481495bb69af01d8df662289cc662630291e28734f2bbc6 diff --git a/gui-libs/qt-color-widgets/metadata.xml b/gui-libs/qt-color-widgets/metadata.xml new file mode 100644 index 000000000000..334ba5821af6 --- /dev/null +++ b/gui-libs/qt-color-widgets/metadata.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "https://liguros.gitlab.io/dtd/metadata.dtd"> +<pkgmetadata> + <upstream> + <doc>https://mattbas.gitlab.io/Qt-Color-Widgets/</doc> + </upstream> + <use> + <flag name="designer">Build plugins for dev-qt/designer</flag> + </use> + <origin>gentoo-staging</origin> +</pkgmetadata>
\ No newline at end of file diff --git a/gui-libs/qt-color-widgets/qt-color-widgets-3.0.0.ebuild b/gui-libs/qt-color-widgets/qt-color-widgets-3.0.0.ebuild new file mode 100644 index 000000000000..9423d9beba20 --- /dev/null +++ b/gui-libs/qt-color-widgets/qt-color-widgets-3.0.0.ebuild @@ -0,0 +1,34 @@ +# Copyright 2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="Qt (C++) widgets to manage color inputs" +HOMEPAGE="https://gitlab.com/mattbas/Qt-Color-Widgets/" +SRC_URI=" + https://gitlab.com/mattbas/Qt-Color-Widgets/-/archive/${PV}/Qt-Color-Widgets-${PV}.tar.bz2 +" +S="${WORKDIR}/Qt-Color-Widgets-${PV}" + +LICENSE="LGPL-3+" +SLOT="0/2" # ${COLORWIDGET_PROJECT_NAME}_VERSION_MAJOR in CMakeLists.txt +KEYWORDS="~amd64 ~arm64 ~x86" + +IUSE="designer" + +DEPEND=" + dev-qt/qtbase:6[widgets] + designer? ( dev-qt/qttools:6[designer] ) +" +RDEPEND="${DEPEND}" + +src_configure() { + local mycmakeargs=( + -DQT_VERSION_MAJOR=6 + -DBUILD_SHARED_LIBS=ON + -DQTCOLORWIDGETS_DESIGNER_PLUGIN=$(usex designer) + ) + cmake_src_configure +} diff --git a/gui-wm/gamescope/Manifest b/gui-wm/gamescope/Manifest index 359a25151e99..571cca31336e 100644 --- a/gui-wm/gamescope/Manifest +++ b/gui-wm/gamescope/Manifest @@ -1,4 +1,4 @@ -DIST gamescope-3.16.19.tar.gz 906139 BLAKE2B bbf49420b741c65966299c6c067a44268f59d6df85a64be524ecc3fd63b55caf93a30be160dcf81e4a02e1c9d3734dfdf011e7d9e7539522e6ed8a5ab937c2e0 SHA512 345c1f859b537a7046b24583e3c7e90d06c48892c022e04c7d82783b3cc669dc2ee09f172f8d464d48409de467e3d95518d90d2eb32a44475c9e0c2e19ed99bb +DIST gamescope-3.16.20.tar.gz 908258 BLAKE2B 863f9211e601d4d80578a93fdfa225b49b190bc3095b873089aaf0c72c60007b3dc6325b8be7b777d2755aa85558f8dead090fe6690b9d5cdb7abdfab5c55924 SHA512 198798877e9d1cf2280fb98196c64df544b59e258f56058f6e940136be8da93424a39a6a43b198c5975104c7423ddc1e0c40ce11c6433f4117b327f6b88045b9 DIST libliftoff-0.5.0.tar.gz 39076 BLAKE2B a5c35c734a5ba4049661ce336401bd88d393001d7c49786d486146998d39530c364f7752b53968f5ab48f5eb774fa9c4245087bdb016f459a729991377023f61 SHA512 ce808f6a087f1f629cfebef95bfc7e216a09fb409b96b3c9f6b84d9d986ce50c5d7bf5b45c68e8baa99566b3627d754c269855b6f4ec3be63ae7b9f5109d5f08 DIST reshade-696b14cd6006ae9ca174e6164450619ace043283.tar.gz 1684777 BLAKE2B 3b2fcd1ed53dd6a8c459cf716697eec8a21f6fd9c25e4f6baa752e4226eaf35837e0f1595eef065a064bb0d76b1b067f643cd14ef896875448c99f57e10e6fb9 SHA512 7fe1fe07622efd90bd94e1755019ca47657acd07137669e00b97bf70017a58c1f699e3dec1c720caafd1296275c7a25fd2f4d6e478cebbdf48bd69f985a00cdf DIST vkroots-5106d8a0df95de66cc58dc1ea37e69c99afc9540.tar.gz 352651 BLAKE2B bc6c7a4f5b4f810c4d87a6cef46e73adb292bc22ae9a40666a6c7c8ab0cbc1973af405b32a5c7a3d38623c92e5d41e8472dabb744fcf31cf29118b9684dcfc32 SHA512 726e65dd0bb322d537e985ba2e504c68ef1b474574f11a5b102edcb8a7b74a6d86dea132c3b11417399a00beff9163e7aad413a389cf6073ec44d5ce6175ffc5 diff --git a/gui-wm/gamescope/gamescope-3.16.19.ebuild b/gui-wm/gamescope/gamescope-3.16.20.ebuild index 0bd2c60c8df1..6a31df76d204 100644 --- a/gui-wm/gamescope/gamescope-3.16.19.ebuild +++ b/gui-wm/gamescope/gamescope-3.16.20.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 diff --git a/kde-apps/akonadi/files/akonadi-25.08.3-fix-db-migration.patch b/kde-apps/akonadi/files/akonadi-25.08.3-fix-db-migration.patch deleted file mode 100644 index f79f53ab6f42..000000000000 --- a/kde-apps/akonadi/files/akonadi-25.08.3-fix-db-migration.patch +++ /dev/null @@ -1,210 +0,0 @@ -From 2e90160b6c68abe19351691a06e201c66101dcb3 Mon Sep 17 00:00:00 2001 -From: Christoph Erhardt <kde@sicherha.de> -Date: Thu, 16 Oct 2025 18:44:07 +0200 -Subject: [PATCH 1/4] fix(storage): segfault during database migration - -The `akonadi-db-migrator` tool reproducibly crashes with a segmentation -fault (or a failed assertion if built in debug mode) while executing -`prepareDatabase()` on the destination configuration. - -The root cause is that both `DbInitializer` and `DbUpdater` expect -`SchemaVersionTable` to be populated. This assumption is not met by a -freshly created destination database: the table itself exists, but it is -empty at this point. Consequently, `SchemaVersion::retrieveAll()` -returns an empty list and the subsequent attempt to obtain its first -element triggers an out-of-bounds read. - -Fix the issue by checking for an empty result list in both places. - -Refs: https://bugs.kde.org/show_bug.cgi?id=493393 ---- - src/server/storage/dbinitializer.cpp | 17 +++++++++++------ - src/server/storage/dbupdater.cpp | 8 ++++++-- - 2 files changed, 17 insertions(+), 8 deletions(-) - -diff --git a/src/server/storage/dbinitializer.cpp b/src/server/storage/dbinitializer.cpp -index 01b3359b7..3f430ae4d 100644 ---- a/src/server/storage/dbinitializer.cpp -+++ b/src/server/storage/dbinitializer.cpp -@@ -79,12 +79,17 @@ bool DbInitializer::run() - #ifndef DBINITIALIZER_UNITTEST - // Now finally check and set the generation identifier if necessary - auto store = DataStore::dataStoreForDatabase(mDatabase); -- SchemaVersion version = SchemaVersion::retrieveAll(store).at(0); -- if (version.generation() == 0) { -- version.setGeneration(QDateTime::currentDateTimeUtc().toSecsSinceEpoch()); -- version.update(store); -- -- qCDebug(AKONADISERVER_LOG) << "Generation:" << version.generation(); -+ const auto schemaVersions = SchemaVersion::retrieveAll(store); -+ if (schemaVersions.empty()) { -+ qCDebug(AKONADISERVER_LOG) << "DbInitializer: SchemaVersion not found; skipping generation update"; -+ } else { -+ auto version = schemaVersions.at(0); -+ if (version.generation() == 0) { -+ version.setGeneration(QDateTime::currentDateTimeUtc().toSecsSinceEpoch()); -+ version.update(store); -+ -+ qCDebug(AKONADISERVER_LOG) << "Generation:" << version.generation(); -+ } - } - #endif - -diff --git a/src/server/storage/dbupdater.cpp b/src/server/storage/dbupdater.cpp -index 527cb4f65..38976e0ea 100644 ---- a/src/server/storage/dbupdater.cpp -+++ b/src/server/storage/dbupdater.cpp -@@ -42,9 +42,13 @@ DbUpdater::DbUpdater(const QSqlDatabase &database, const QString &filename) - - bool DbUpdater::run() - { -- // TODO error handling - auto store = DataStore::dataStoreForDatabase(m_database); -- auto currentVersion = SchemaVersion::retrieveAll(store).at(0); -+ const auto schemaVersions = SchemaVersion::retrieveAll(store); -+ if (schemaVersions.empty()) { -+ qCDebug(AKONADISERVER_LOG) << "DbUpdater: SchemaVersion not found; skipping schema update"; -+ return true; -+ } -+ auto currentVersion = schemaVersions.at(0); - - UpdateSet::Map updates; - --- -GitLab - - -From 63eb46ac4c77ed57a7b9afee2ecddfba9a3aa3a4 Mon Sep 17 00:00:00 2001 -From: Christoph Erhardt <christoph.erhardt@sicherha.de> -Date: Fri, 17 Oct 2025 23:46:59 +0200 -Subject: [PATCH 2/4] fix(dbmigrator): remove leftover entries in - `db_migration` directory - -This avoids potential issues when `db_migration` already contains a -stale database created with an old schema version. ---- - src/server/dbmigrator/dbmigrator.cpp | 13 +++++++++++++ - 1 file changed, 13 insertions(+) - -diff --git a/src/server/dbmigrator/dbmigrator.cpp b/src/server/dbmigrator/dbmigrator.cpp -index 575a9da16..402e55452 100644 ---- a/src/server/dbmigrator/dbmigrator.cpp -+++ b/src/server/dbmigrator/dbmigrator.cpp -@@ -326,6 +326,19 @@ std::unique_ptr<DbConfig> dbConfigFromServerRc(const QString &configFile, bool o - } - - const auto dbPath = overrideDbPath ? StandardDirs::saveDir("data", QStringLiteral("db_migration%1").arg(dbPathSuffix)) : QString{}; -+ -+ if (overrideDbPath) { -+ // Remove any directory entries left over from a previous run -+ try { -+ for (const auto &dirEntry : std::filesystem::directory_iterator(dbPath.toStdString())) { -+ std::filesystem::remove_all(dirEntry.path()); -+ } -+ } catch (const std::filesystem::filesystem_error &e) { -+ qCCritical(AKONADIDBMIGRATOR_LOG) << "Error: failed to clear migration directory " << dbPath << ": " << e.what(); -+ return {}; -+ } -+ } -+ - config->init(settings, true, dbPath); - - return config; --- -GitLab - - -From 9a730ddf1938666d98552d592de1c9867ce6dc84 Mon Sep 17 00:00:00 2001 -From: Christoph Erhardt <kde@sicherha.de> -Date: Thu, 16 Oct 2025 18:45:14 +0200 -Subject: [PATCH 3/4] chore: remove unused `#include`s - -Reported by clang-tidy. ---- - src/server/collectionscheduler.cpp | 1 - - src/server/storage/collectiontreecache.h | 2 -- - src/server/storage/dbinitializer.cpp | 2 -- - 3 files changed, 5 deletions(-) - -diff --git a/src/server/collectionscheduler.cpp b/src/server/collectionscheduler.cpp -index 41ca84ece..82098600d 100644 ---- a/src/server/collectionscheduler.cpp -+++ b/src/server/collectionscheduler.cpp -@@ -9,7 +9,6 @@ - #include "storage/datastore.h" - #include "storage/selectquerybuilder.h" - --#include "private/tristate_p.h" - #include <chrono> - - #include <QDateTime> -diff --git a/src/server/storage/collectiontreecache.h b/src/server/storage/collectiontreecache.h -index d64e73cdb..cd741e749 100644 ---- a/src/server/storage/collectiontreecache.h -+++ b/src/server/storage/collectiontreecache.h -@@ -9,8 +9,6 @@ - #include "akthread.h" - #include "entities.h" - --#include "private/tristate_p.h" -- - #include <QHash> - #include <QList> - #include <QReadWriteLock> -diff --git a/src/server/storage/dbinitializer.cpp b/src/server/storage/dbinitializer.cpp -index 3f430ae4d..3a58acf89 100644 ---- a/src/server/storage/dbinitializer.cpp -+++ b/src/server/storage/dbinitializer.cpp -@@ -20,8 +20,6 @@ - - #include <algorithm> - --#include "private/tristate_p.h" -- - using namespace Akonadi::Server; - - DbInitializer::Ptr DbInitializer::createInstance(const QSqlDatabase &database, Schema *schema) --- -GitLab - - -From 19740df0fd4eaf2c5bb6e3d53a1daa32496ee01d Mon Sep 17 00:00:00 2001 -From: Christoph Erhardt <kde@sicherha.de> -Date: Thu, 16 Oct 2025 18:46:15 +0200 -Subject: [PATCH 4/4] chore: use `QDateTime::currentSecsSinceEpoch()` - -Recommended by clazy. ---- - src/server/search/searchmanager.cpp | 2 +- - src/server/storage/dbinitializer.cpp | 2 +- - 2 files changed, 2 insertions(+), 2 deletions(-) - -diff --git a/src/server/search/searchmanager.cpp b/src/server/search/searchmanager.cpp -index 7f7d7d05d..17072f28d 100644 ---- a/src/server/search/searchmanager.cpp -+++ b/src/server/search/searchmanager.cpp -@@ -294,7 +294,7 @@ void SearchManager::updateSearchImpl(const Collection &collection) - } - - // Query all plugins for search results -- const QByteArray id = "searchUpdate-" + QByteArray::number(QDateTime::currentDateTimeUtc().toSecsSinceEpoch()); -+ const QByteArray id = "searchUpdate-" + QByteArray::number(QDateTime::currentSecsSinceEpoch()); - SearchRequest request(id, *this, mAgentSearchManager); - request.setCollections(queryCollections); - request.setMimeTypes(queryMimeTypes); -diff --git a/src/server/storage/dbinitializer.cpp b/src/server/storage/dbinitializer.cpp -index 3a58acf89..4e8d18a07 100644 ---- a/src/server/storage/dbinitializer.cpp -+++ b/src/server/storage/dbinitializer.cpp -@@ -83,7 +83,7 @@ bool DbInitializer::run() - } else { - auto version = schemaVersions.at(0); - if (version.generation() == 0) { -- version.setGeneration(QDateTime::currentDateTimeUtc().toSecsSinceEpoch()); -+ version.setGeneration(QDateTime::currentSecsSinceEpoch()); - version.update(store); - - qCDebug(AKONADISERVER_LOG) << "Generation:" << version.generation(); --- -GitLab - diff --git a/kde-apps/messagelib/files/messagelib-25.08.3-dont-ignore-ssl-errs.patch b/kde-apps/messagelib/files/messagelib-25.08.3-dont-ignore-ssl-errs.patch deleted file mode 100644 index f514a7407452..000000000000 --- a/kde-apps/messagelib/files/messagelib-25.08.3-dont-ignore-ssl-errs.patch +++ /dev/null @@ -1,123 +0,0 @@ -From df525dc91498423f3c45e143efab1c7102776652 Mon Sep 17 00:00:00 2001 -From: Volker Krause <vkrause@kde.org> -Date: Sun, 23 Nov 2025 11:30:04 +0100 -Subject: [PATCH] Don't unconditionally ignore SSL errors from Google's - phishing API - -Google generally has a working SSL setup, so encountering SSL errors -actually means we are probably not talking to Google's API, and as such -we shouldn't continue here. ---- - .../src/checkphishingurl/checkphishingurljob.cpp | 7 ------- - webengineviewer/src/checkphishingurl/checkphishingurljob.h | 1 - - .../src/checkphishingurl/createphishingurldatabasejob.cpp | 7 ------- - .../src/checkphishingurl/createphishingurldatabasejob.h | 1 - - webengineviewer/src/checkphishingurl/searchfullhashjob.cpp | 7 ------- - webengineviewer/src/checkphishingurl/searchfullhashjob.h | 1 - - 6 files changed, 24 deletions(-) - -diff --git a/webengineviewer/src/checkphishingurl/checkphishingurljob.cpp b/webengineviewer/src/checkphishingurl/checkphishingurljob.cpp -index 25c675f524..d05c5b68be 100644 ---- a/webengineviewer/src/checkphishingurl/checkphishingurljob.cpp -+++ b/webengineviewer/src/checkphishingurl/checkphishingurljob.cpp -@@ -37,17 +37,10 @@ CheckPhishingUrlJob::CheckPhishingUrlJob(QObject *parent) - d->mNetworkAccessManager->enableStrictTransportSecurityStore(true); - - connect(d->mNetworkAccessManager, &QNetworkAccessManager::finished, this, &CheckPhishingUrlJob::slotCheckUrlFinished); -- connect(d->mNetworkAccessManager, &QNetworkAccessManager::sslErrors, this, &CheckPhishingUrlJob::slotSslErrors); - } - - CheckPhishingUrlJob::~CheckPhishingUrlJob() = default; - --void CheckPhishingUrlJob::slotSslErrors(QNetworkReply *reply, const QList<QSslError> &error) --{ -- qCDebug(WEBENGINEVIEWER_LOG) << " void CheckPhishingUrlJob::slotSslErrors(QNetworkReply *reply, const QList<QSslError> &error)" << error.count(); -- reply->ignoreSslErrors(error); --} -- - void CheckPhishingUrlJob::parse(const QByteArray &replyStr) - { - QJsonDocument document = QJsonDocument::fromJson(replyStr); -diff --git a/webengineviewer/src/checkphishingurl/checkphishingurljob.h b/webengineviewer/src/checkphishingurl/checkphishingurljob.h -index e370005283..67ca355a65 100644 ---- a/webengineviewer/src/checkphishingurl/checkphishingurljob.h -+++ b/webengineviewer/src/checkphishingurl/checkphishingurljob.h -@@ -40,7 +40,6 @@ Q_SIGNALS: - void debugJson(const QByteArray &ba); - - private: -- WEBENGINEVIEWER_NO_EXPORT void slotSslErrors(QNetworkReply *reply, const QList<QSslError> &error); - WEBENGINEVIEWER_NO_EXPORT void slotError(QNetworkReply::NetworkError error); - WEBENGINEVIEWER_NO_EXPORT void slotCheckUrlFinished(QNetworkReply *reply); - std::unique_ptr<CheckPhishingUrlJobPrivate> const d; -diff --git a/webengineviewer/src/checkphishingurl/createphishingurldatabasejob.cpp b/webengineviewer/src/checkphishingurl/createphishingurldatabasejob.cpp -index 1da04a452c..b34be279d8 100644 ---- a/webengineviewer/src/checkphishingurl/createphishingurldatabasejob.cpp -+++ b/webengineviewer/src/checkphishingurl/createphishingurldatabasejob.cpp -@@ -42,17 +42,10 @@ CreatePhishingUrlDataBaseJob::CreatePhishingUrlDataBaseJob(QObject *parent) - d->mNetworkAccessManager->enableStrictTransportSecurityStore(true); - - connect(d->mNetworkAccessManager, &QNetworkAccessManager::finished, this, &CreatePhishingUrlDataBaseJob::slotDownloadDataBaseFinished); -- connect(d->mNetworkAccessManager, &QNetworkAccessManager::sslErrors, this, &CreatePhishingUrlDataBaseJob::slotSslErrors); - } - - CreatePhishingUrlDataBaseJob::~CreatePhishingUrlDataBaseJob() = default; - --void CreatePhishingUrlDataBaseJob::slotSslErrors(QNetworkReply *reply, const QList<QSslError> &error) --{ -- qCDebug(WEBENGINEVIEWER_LOG) << " void CreatePhishingUrlDataBaseJob::slotSslErrors(QNetworkReply *reply, const QList<QSslError> &error)" << error.count(); -- reply->ignoreSslErrors(error); --} -- - void CreatePhishingUrlDataBaseJob::start() - { - if (!PimCommon::NetworkManager::self()->isOnline()) { -diff --git a/webengineviewer/src/checkphishingurl/createphishingurldatabasejob.h b/webengineviewer/src/checkphishingurl/createphishingurldatabasejob.h -index d576877186..9651279423 100644 ---- a/webengineviewer/src/checkphishingurl/createphishingurldatabasejob.h -+++ b/webengineviewer/src/checkphishingurl/createphishingurldatabasejob.h -@@ -63,7 +63,6 @@ Q_SIGNALS: - - private: - WEBENGINEVIEWER_NO_EXPORT void slotDownloadDataBaseFinished(QNetworkReply *reply); -- WEBENGINEVIEWER_NO_EXPORT void slotSslErrors(QNetworkReply *reply, const QList<QSslError> &error); - WEBENGINEVIEWER_NO_EXPORT void slotError(QNetworkReply::NetworkError error); - - std::unique_ptr<CreatePhishingUrlDataBaseJobPrivate> const d; -diff --git a/webengineviewer/src/checkphishingurl/searchfullhashjob.cpp b/webengineviewer/src/checkphishingurl/searchfullhashjob.cpp -index 129cad9207..70f148fa76 100644 ---- a/webengineviewer/src/checkphishingurl/searchfullhashjob.cpp -+++ b/webengineviewer/src/checkphishingurl/searchfullhashjob.cpp -@@ -39,17 +39,10 @@ SearchFullHashJob::SearchFullHashJob(QObject *parent) - d->mNetworkAccessManager->enableStrictTransportSecurityStore(true); - - connect(d->mNetworkAccessManager, &QNetworkAccessManager::finished, this, &SearchFullHashJob::slotCheckUrlFinished); -- connect(d->mNetworkAccessManager, &QNetworkAccessManager::sslErrors, this, &SearchFullHashJob::slotSslErrors); - } - - SearchFullHashJob::~SearchFullHashJob() = default; - --void SearchFullHashJob::slotSslErrors(QNetworkReply *reply, const QList<QSslError> &error) --{ -- qCDebug(WEBENGINEVIEWER_LOG) << " void SearchFullHashJob::slotSslErrors(QNetworkReply *reply, const QList<QSslError> &error)" << error.count(); -- reply->ignoreSslErrors(error); --} -- - void SearchFullHashJob::parse(const QByteArray &replyStr) - { - /* -diff --git a/webengineviewer/src/checkphishingurl/searchfullhashjob.h b/webengineviewer/src/checkphishingurl/searchfullhashjob.h -index 67e8ebe56a..5c80ec2caa 100644 ---- a/webengineviewer/src/checkphishingurl/searchfullhashjob.h -+++ b/webengineviewer/src/checkphishingurl/searchfullhashjob.h -@@ -41,7 +41,6 @@ Q_SIGNALS: - void debugJson(const QByteArray &ba); - - private: -- WEBENGINEVIEWER_NO_EXPORT void slotSslErrors(QNetworkReply *reply, const QList<QSslError> &error); - WEBENGINEVIEWER_NO_EXPORT void slotError(QNetworkReply::NetworkError error); - WEBENGINEVIEWER_NO_EXPORT void slotCheckUrlFinished(QNetworkReply *reply); - --- -GitLab - diff --git a/kde-frameworks/kguiaddons/files/kguiaddons-6.23.0-missing-guiprivate.patch b/kde-frameworks/kguiaddons/files/kguiaddons-6.23.0-missing-guiprivate.patch new file mode 100644 index 000000000000..5a89443aea28 --- /dev/null +++ b/kde-frameworks/kguiaddons/files/kguiaddons-6.23.0-missing-guiprivate.patch @@ -0,0 +1,50 @@ +From 41674ffb8343499704f8278b39ccabe03328e050 Mon Sep 17 00:00:00 2001 +From: Andreas Sturmlechner <asturm@gentoo.org> +Date: Mon, 16 Feb 2026 22:21:55 +0100 +Subject: [PATCH] CMake: Find Qt6::GuiPrivate when USE_DBUS is enabled + +Otherwise, build depends on WITH_WAYLAND also being enabled or else +fails without Qt6::GuiPrivate. + +Amends 344679d5aa2e1f0aa27f63be59dade3be2b7f651 + +See also: https://bugs.gentoo.org/970127 + +Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org> +--- + CMakeLists.txt | 5 +++++ + src/CMakeLists.txt | 2 +- + 2 files changed, 6 insertions(+), 1 deletion(-) + +diff --git a/CMakeLists.txt b/CMakeLists.txt +index c2cc52f..7d85072 100644 +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -75,6 +75,11 @@ endif() + option(USE_DBUS "Build components using DBus (get color scheme information via XDG portals)" ${USE_DBUS_DEFAULT}) + if(USE_DBUS) + find_package(Qt6DBus ${REQUIRED_QT_VERSION} REQUIRED NO_MODULE) ++ if (Qt6Gui_VERSION VERSION_GREATER_EQUAL "6.10.0") ++ find_package(Qt6GuiPrivate ${REQUIRED_QT_VERSION} REQUIRED NO_MODULE) ++ else() ++ find_package(Qt6Gui ${REQUIRED_QT_VERSION} REQUIRED NO_MODULE COMPONENTS Private) ++ endif() + set(WITH_DBUS ON) + endif() + +diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt +index 1deba45..cf8cf13 100644 +--- a/src/CMakeLists.txt ++++ b/src/CMakeLists.txt +@@ -79,7 +79,7 @@ if(WITH_DBUS) + colors/kcolorschemewatcher_xdg.cpp + util/ksysteminhibitor_dbus.cpp + ) +- target_link_libraries(KF6GuiAddons PRIVATE Qt6::DBus) ++ target_link_libraries(KF6GuiAddons PRIVATE Qt6::DBus Qt6::GuiPrivate) + target_compile_definitions(KF6GuiAddons PRIVATE WITH_DBUS) + endif() + +-- +2.53.0 + diff --git a/kde-frameworks/kguiaddons/kguiaddons-6.23.0.ebuild b/kde-frameworks/kguiaddons/kguiaddons-6.23.0.ebuild index 7297ab56509e..ca9497826267 100644 --- a/kde-frameworks/kguiaddons/kguiaddons-6.23.0.ebuild +++ b/kde-frameworks/kguiaddons/kguiaddons-6.23.0.ebuild @@ -15,8 +15,9 @@ IUSE="dbus wayland X" # slot op: includes qpa/qplatformnativeinterface.h COMMON_DEPEND=" - >=dev-qt/qtbase-${QTMIN}:6[dbus?,gui] + >=dev-qt/qtbase-${QTMIN}:6[gui] >=dev-qt/qtdeclarative-${QTMIN}:6 + dbus? ( >=dev-qt/qtbase-${QTMIN}:6=[dbus] ) wayland? ( dev-libs/wayland >=dev-qt/qtbase-${QTMIN}:6=[wayland] @@ -46,6 +47,8 @@ BDEPEND=" ) " +PATCHES=( "${FILESDIR}/${P}-missing-guiprivate.patch" ) # bug 970127 + src_configure() { local mycmakeargs=( -DBUILD_GEO_SCHEME_HANDLER=ON diff --git a/kde-misc/tellico/Manifest b/kde-misc/tellico/Manifest index 102287a1fc14..66c0e4474df1 100644 --- a/kde-misc/tellico/Manifest +++ b/kde-misc/tellico/Manifest @@ -1,2 +1,2 @@ -DIST tellico-4.1.4.tar.xz 6874740 BLAKE2B 576b1499c3facd294e0e84a82a7261c11a0bb76a1b0363a17b30d6310b6493fc95ef2b2aa1135e9df34bd222f68c9ecd00d7b17d73e8a80556e5c39416be2590 SHA512 0b69444ba3df0b1d8fdf75f7483e26b4dbd84fdd67f00c0484dc12575eb4d73d9716d6ec642c8f60e46151fe7f6ae4e981a0be6481432b538679a867b37b17d9 DIST tellico-4.1.5.tar.xz 6856536 BLAKE2B ffb4fabf3c1b97650486531069234c3448ec8dd82ccd167cef5257364ba48f9b5ea2f5d85ee258718578a30fa787218f7db0a85c65dd5ea0cfca251cc2a7fce0 SHA512 40b7a26274dace7c9ad097dc50b3bf60d9a430f336e3a6e5f5c6946ba6a24097d8a0d51ec64e21c9379ddab2b4abfd0d60d5d1de635f571260cb0c3901dd4df5 +DIST tellico-4.2.tar.xz 6894344 BLAKE2B b4ceb0357b062cf6768416679cb89638e6bd05d566e43567434d2a678af66799a16fda2e836b97a106b48a88dad168321f624e4feb841dbf1205a3c92149eb30 SHA512 aa4fefcf0aeef674a9ffcdf93dcc16481c61ca755b88c545b811a500bb0d28c82070b58686d6aa4bc513d21c136dbef02bec8015b752e69f4116357ae321fa2b diff --git a/kde-misc/tellico/tellico-4.1.4.ebuild b/kde-misc/tellico/tellico-4.2.ebuild index a0e10517d3f1..f0666aa0702a 100644 --- a/kde-misc/tellico/tellico-4.1.4.ebuild +++ b/kde-misc/tellico/tellico-4.2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -14,7 +14,7 @@ HOMEPAGE="https://tellico-project.org/" if [[ ${KDE_BUILD_TYPE} != live ]]; then SRC_URI="https://tellico-project.org/files/${P}.tar.xz" - KEYWORDS="amd64 ~arm64" + KEYWORDS="~amd64 ~arm64" fi LICENSE="|| ( GPL-2 GPL-3 )" @@ -27,11 +27,12 @@ RESTRICT="test" DEPEND=" dev-libs/libxml2:= dev-libs/libxslt - >=dev-qt/qtbase-${QTMIN}:6[dbus,gui,network,widgets,xml] + >=dev-qt/qtbase-${QTMIN}:6[concurrent,dbus,gui,network,widgets,xml] >=dev-qt/qtcharts-${QTMIN}:6 >=dev-qt/qtwebengine-${QTMIN}:6[widgets] >=kde-frameworks/karchive-${KFMIN}:6 >=kde-frameworks/kcodecs-${KFMIN}:6 + >=kde-frameworks/kcolorscheme-${KFMIN}:6 >=kde-frameworks/kcompletion-${KFMIN}:6 >=kde-frameworks/kconfig-${KFMIN}:6 >=kde-frameworks/kconfigwidgets-${KFMIN}:6 diff --git a/mail-client/thunderbird-bin/Manifest b/mail-client/thunderbird-bin/Manifest index 60a47e08e89e..38588dd0e18e 100644 --- a/mail-client/thunderbird-bin/Manifest +++ b/mail-client/thunderbird-bin/Manifest @@ -1,458 +1,131 @@ -DIST thunderbird-140.6.0esr-af.xpi 316217 BLAKE2B c7238abeeca8275eeafa982c35d46816de5c0c0751f037f6acfc07833077c521a752946b56b1c3b92e756212be2105b8203b4172da6cfffb66f47d1f34f2aee7 SHA512 f7ae8f8ba1e12e85a6cade91d0520ef957f1ea4b8da086805aec9c5e2d22b0d3667b5437bd5a9177c9a7e4e4759e083e23ac4b6473a3858d98465073540d2148 -DIST thunderbird-140.6.0esr-ar.xpi 436191 BLAKE2B 6a00d9f3b2a2985058dee6065c320b66d37a187f48be4d6ba7f970382a2ab564d12d1bb4babd2692572c7f1e7cb320e8d03e510814e295bb9c00a7eea1ab076e SHA512 38c52544ff236113c57a1722e2767a2838a371bc93c2b028d0cc52e188bf407d35e99d37584d3c15fee465975e5f8d0c2489d987220e7016a9436f50f21bb903 -DIST thunderbird-140.6.0esr-ast.xpi 340597 BLAKE2B 2e7eea3d13f0e84650f425d5ec8a4705ad78416f095726db60fd0f2cbfc0947e9b3b02439db7c7dae310f8fa8a92f63f24b2a47287f60f03b886e8124bc97510 SHA512 c479cf7a42b8698b520a6bd29490000d47c8be24d37b49b1344d797a2d80fabe9a42676403fa210cfd12d676695fbf90e09325b4ded1ad69f05fc68f1b4fd255 -DIST thunderbird-140.6.0esr-be.xpi 520643 BLAKE2B b8f0b7bf7bd42a8b55347520ade526f4261977d5e5c768fe356b33452c283b95264445513f73317a967cd374fad5f9492f5f098dd081078477af75ade24dddbc SHA512 c26aefb2d8d48127239ee4ea4f777ce5fc8ba27655e44ac90328191b1c1b6e33c804bad636e0e6e781f52286354a1f6513d4c343e19599dc240f0a8a357e1906 -DIST thunderbird-140.6.0esr-bg.xpi 536115 BLAKE2B f6018cd6c6acb9a8c8af4406c2a7e6451f3c64b2e96e5d3ca1e32f9b12656ea37050cf9a9471bb8d45fdc74c8c4d71585defe171239090dce7cc432325264c26 SHA512 cdfd405e480bfe53ac3cfb43fdae85b06c3810824964eb29dfb0e95719a3a68c6ee2fdad983903fdc3970dcac1864c69fbc64e4d81a29d4fb5cb8efcb88abba7 -DIST thunderbird-140.6.0esr-br.xpi 402747 BLAKE2B 56b53654f52dd69104f813b0022d97c1ab9a66caf23741ecce87ee8a158b75808218300ee49db3d658387e6a85506ac19c2a73590a888142df4607e51c158431 SHA512 dbbc22a5deeb9d191b10cfe19caa69ecad94d462560741a3d2a7816926cb442fcc39786ca9188c3b7cf0aa4eb11917119ef71b393c6eaacda06db84bd7f8b76a -DIST thunderbird-140.6.0esr-ca.xpi 440583 BLAKE2B 19df0e5b6dd7b3554122328469cbd75dce2be6f12d1fd24ed60c2c464208d962a026ab03f802f6d075c99388b277e295fb15e52834b95fe647b77accd3ff4f8a SHA512 ef1318aa8d46a36e13a9eb4411eb63bd59cdecb74ddf00355e504667fad312a545e70bd6ef0127088939c2a5aeae91dcb567c608b108bedcdf8ca253514d65da -DIST thunderbird-140.6.0esr-cak.xpi 418015 BLAKE2B 8cf3d40db61d0d2179799b2e20708ee4b5a0c497fab1bbac615671af4dbdbc031c272445237bf3f4dd8af93aabba9066d8101f3a78aa2f0ad7b56cba3bffa704 SHA512 86bad9fa12199a658916154ada0d19c616e9baf01a603303ebbef5a17dbae3ffdc16cb1e8c39e220f4f0a1deda83b019743729439f3c4d34da3ddd5dd2c886a0 -DIST thunderbird-140.6.0esr-cs.xpi 519495 BLAKE2B 076527c919fa0c7ed14be3d53a3fced3aed451c9a771acc64476dbeff55e10caf257c9f8a243190152adf816baa216f1d75feeac71d976f4c2221a1cc907b6e5 SHA512 5272aa222ae8669e8f811eec9eb9dd1befd7ed52af14d22e172eb56700440c849b6ee2aff2fc8ce28ef4bac6878ee2d2d538019398cb9e0c96dc2505028ff43d -DIST thunderbird-140.6.0esr-cy.xpi 487641 BLAKE2B d48c1eb5835f5285acacf2016b0d9eba5fb3d48eb605d08175253ec2d5d8dc0cd1f2a56af37d5b72a2469b4c5e526cfd17ba83f2087304bfa1d1084b38243e05 SHA512 0eefc2e1af001faf772831436bae8b875878f10b6cb98600ab0db26eff1acf33809bb0a3565d5f0048201989c10719d1a9b3957eac1d026a5d6ab3de78592882 -DIST thunderbird-140.6.0esr-da.xpi 476637 BLAKE2B 0074d59af15661175dac0c418a1176e98ea3df86d54fffeb8985b267100f712ffd6efff94191a5abe1441c361bfe36d76b91df1fa7e2b4dfe5fbd221c7c4cb07 SHA512 e4f29c9f4df8d79076c0f64b251a120e9f244ab81b5fc8bfbf9b621ce05127bb9f16e5c7a247a40098e876e81dd6960464f2bdfbf7ceecac4b1abd232af9866e -DIST thunderbird-140.6.0esr-de.xpi 505061 BLAKE2B 08d01a7aff58b4bb35512399f59c634d87934687bf237ecbc383826e2113e4bd8cc44258a69be7ae74d9f15799eec27ebfae928a6d3a0c200972ce555d612b7b SHA512 f3d21197935c89937482687272e96d7552baafed9ea940bc1a7cdd6d28ed81d9479a9baa056c47ddbbf75e7e49509b63411869af9f5781c79b1d393d82392e94 -DIST thunderbird-140.6.0esr-dsb.xpi 517902 BLAKE2B 01fca0ae71bbe34ac6c42ba1aad79f866c980f19f2047b0b4b40ad9a25dcb1dc2de03e95d1731b4b7c3b5d18fc952b8d896b27a2ff873e9971f0525fcb49a954 SHA512 acf8247566c83a6506585c476b9d6138992f088cb9ed51f122acb2eb56ed3234a9b63085c30ffa9aafad9186556f74078e849394271922f4cdc04c444e3e836f -DIST thunderbird-140.6.0esr-el.xpi 609075 BLAKE2B 78c24ab8d8a2ec402dfbd37d5e4d4ad47d1adfd2d3fb2aead0ba61b69cebd45fe02358d2c864396f9e1765a68ae0eb99bc7ddb5782ff609472c2023dc7e376cc SHA512 70f6486acf0c148daed93acec3f28e5e2fabf31f6b1854549cdb978e7c36c132ac7d8a8e6d6688a2ed616728e1066cc63a72fac3d725af13e18ef8bbe4bfe009 -DIST thunderbird-140.6.0esr-en-CA.xpi 451442 BLAKE2B fb41500ceea1e1e8ac3b210f97ac57306b8e3cb77f6adfdab661570aea85651569c73ef85a449d4a53e1e821c6f4e6533fc32031aadfb10d5b0a9e8fbcfe4e78 SHA512 51cd61d87b61347e39250153cf874e7713e67f9c0f75470968defed14e039fa05b838e03c04fa9a678b3042df65d355ed2859432b50abdce8fcc231de4d1d2bf -DIST thunderbird-140.6.0esr-en-GB.xpi 452065 BLAKE2B 9acd79cff437c69d57e1a1804a6402ddf62580aa1498a12135995805f3aed1dcdbece2c91dfc8c17a66659842b81b2061affad7dab24baaf233a1362743436b2 SHA512 d8cd8953c8af3aaf857fbd3856c4f66fba5e2d85b87e1583501f177c4ce5f736ea75ac42a9b634c148225b40768b36672706b3f4128689ce663640adcaf4d867 -DIST thunderbird-140.6.0esr-es-AR.xpi 495265 BLAKE2B e0e22a64bd2ba0d581ad4b7bca50f7b1ea20ee496955b4f7d8bd34bc6c6be444a812177c3cc3704c4b20509be4cac7c8a1b30230df28f969e0ea8c4c2e06130a SHA512 7711b9bbee0688b512433b9e2e44104a1e401628a204e85cf2f282dd9e29394f5ec8dc310ca068a279b520303b04d98e92702a73394e873eff9307d6012ce682 -DIST thunderbird-140.6.0esr-es-ES.xpi 497279 BLAKE2B 4178fc26c469246c39f92b273a55e4e94c50bcf1f770ed392fb826b19bf413d58b89b9060fe9f756d967a368e4ade83d99eb7add8ba84baa62eb150db51163ec SHA512 49dc394e1651a396b8c5d0bad705035557041bb6245266403cb98cab8b6902fb0714df031f689de755128e2859a729d93fd70e0dec2451d91064ce8a2d5de65c -DIST thunderbird-140.6.0esr-es-MX.xpi 490405 BLAKE2B c3d63e824cc435aa313c07d9a173201175e67a75c996ffc96d82a68cf70c6a4d7916d15fe96c8048a602f713895c02439953587bd7c001ba29f00fdd87637729 SHA512 7fd5a9fae190f086e5aacb540da5b662d99adee08efe10101e45669d6541852a7f4312915e70e1592cba244d57b4c318f5f826c2b0a4053ef4588feedc2fcff4 -DIST thunderbird-140.6.0esr-et.xpi 443606 BLAKE2B 0226ca55046dc3f9302dce76b4a170c0c34e854726baf23ae822ab645f119a40c6a02143e9170ca02a77a8153601f1b598d23d32eb5eef16514d9a999eb7484f SHA512 ccb8baffb881469abbfcb535a3881d1a2cdb37cf59dadcc578e5552c20983afc277adf709c0192cddfa5453c4b36dc164a3c04f787a291262b4edd8a19b9ee5a -DIST thunderbird-140.6.0esr-eu.xpi 473741 BLAKE2B ab3c25abc4405fca4c271a9df7021ac06f51cbc46504fa8c029e45ce8cd93021f366c7f34ef04a63470cdd498811cfcd9391476600946078502649edd2d5385f SHA512 3ad121483988335a196ead2af83747e8ba1724df71459ad64020e0bb6c80796eb82364cae8965bbc2c23f65ea6afe625441412303ffd330144f928a6ef7b38cc -DIST thunderbird-140.6.0esr-fi.xpi 474613 BLAKE2B 432c41aad84ef09812e40bd7718370aabcde937ea2b287a9befb52fcd787675ee98c7468d5b8241c21415ca61be591757950a8fe5f87dad7b1494fccfc6a86bb SHA512 2f495d974db0e35f583e3176c5d4f5cedaac0e90b74b2b8accf6d48def1b3bb63fc0697f6732ec0e79cb7ab6d755e29588ac3adddd84417152907ab404b8b6ab -DIST thunderbird-140.6.0esr-fr.xpi 508256 BLAKE2B 3dabc65e4e20daa54fefd9c55663c166966add55828cfadbca0a7d3a71056fcc547331add965dc4779ba76d50818ed7d835dd9603f53744ac7d7ef7a881bd32d SHA512 3a9730651ffc98e85a9caa23ce39596327d4fdbc748e0f6002ffabaff956c9c03c65ad3995bca190aa5438803c8758a51ff443048965abfbe378fe7207039bed -DIST thunderbird-140.6.0esr-fy-NL.xpi 490669 BLAKE2B 6fb464dbe65b1aaa0e8f3dcb7c0afd0b207ff4c89bfaf60153ecb0c74990620b3404dc7189fc14c085436e960d9e71ba6a2b26937b106740a2d040e7e7ea5687 SHA512 95d5e50a1c876e52fb98070293cfb53972290cc2861e97b75cd8aeec5ebea711e90994f4ae83687967dc7548f8417a53af4dfb04bf718de69c3b22b50090ad7c -DIST thunderbird-140.6.0esr-ga-IE.xpi 376738 BLAKE2B d135395de569dd8ba52691222640e6c50c1f116821f8d2c2e2d8f0c40d0b4013caa9abf691cfdb64adac03b28dda2f30f548d2c622117485c6df1f915f4de2bc SHA512 067376719408caded8a422db50eba211d124bd5f4ad9aaacf426dc1144ecbe038269640dd7fc00ea15f43f6744a9fb6c7cf92d6afdc610c3b9824f912832be07 -DIST thunderbird-140.6.0esr-gd.xpi 461955 BLAKE2B e041d900d02d011b06fa4486ad4c6015bcf7c5053504ee5e83a387e973c8608b7f16776bd00112692450880d19406e9f70b64e514b030bece42eb6b1ec7944d7 SHA512 86b855480621e59cb384c8c0df8b46a6072e40a273eb7f6dd55c447dd486e2459d19f8eb72a75a5f73a716a8c03316a63cd6284152b3e176f3cec4916d5acb77 -DIST thunderbird-140.6.0esr-gl.xpi 486669 BLAKE2B 97d08356c141a3bf4824ec3b84683c569562d637952b6cc4e48d2501370cbce2f203622c34ded2180411fe22ab2f4a1a26d73ed909da901967eba800c412c611 SHA512 6aed957d95c19223bc13cd9a7c6037a937d6a438f1cd442d8db3757d9d62625cb9f66d52a14d10c14f6d93a5473f4f60ab8a7add91919cea7500b851f0efaf6c -DIST thunderbird-140.6.0esr-he.xpi 441607 BLAKE2B 1d741cf23780344ad479c79f1e729d1485a218e0baef8762ac721b332ea2cb0fd062aabab8e89ef96ad5ddb81fe5d8a5ef6a0ae325d7ae4f07644c76511e136b SHA512 8679b0244abb6b657f0738c1f90c0cebb71788a2d7f8caa1c5f2d18fe5d7009698aa4f3250b7b5817174c5412ed1c20a6cc95f1775c023081b3fe20929e7ca8e -DIST thunderbird-140.6.0esr-hr.xpi 464031 BLAKE2B 25c330462c1efa04b533787352ef9534588c55b2045fe8d590a5837b79a1d509cd00473b0bdd2c70ffb1c9cefdaee7d8fcb9aad3f46f899140f853ff00755a70 SHA512 7c0ee5be513c1244bb55cd07b258d1e5e376aa5cbd4bf323df8e8d3078ce10b26c776d7bec6837875ad44254e32559a0f58ba5a5c40e3ff270f5f613775c3771 -DIST thunderbird-140.6.0esr-hsb.xpi 514943 BLAKE2B 37438b879f059e229ec4360288835e8c0b5d19e0e2db9dd96d12bfdd746ca8118fd1540c3b858c0bd4829ad573c1eec31c751d275e4c66cb986b69041b9d2313 SHA512 48715da7f4e940cea3ed13da82f393202ae35d73aa76a275307daf6798f314fe2186bdd9dc0ea46778d86368c05c0b7d935cdd61f96aa2ef57738bd619718bc8 -DIST thunderbird-140.6.0esr-hu.xpi 517536 BLAKE2B b53a14f253638c1dba138ad22c7cf5799870fd74a3444582586e7979636289388a8735009ce6dcd75b4c354921c3ef5625b931b34b8b753fb952059e5a16aef7 SHA512 81ccbfd044bf434c5443813a3fcbfdc0ba27e2ec7e0422a98c0a3d768151da0fdd091dcc83c59b1599b4f91c4a12a8721cab8890b2c90b986a378dea9d42e3d2 -DIST thunderbird-140.6.0esr-id.xpi 464963 BLAKE2B c52119b3303d1eff075770d1d2d02e21cdc20c0d9aad3726038aa9d5f2d20099bc5972dd837d8b5f5495c2852e0efa8bafc9cd7d567f39fead7fc861b6ab5e10 SHA512 e2f65a7bc0d1d00bf1bf7d3e4ae0c2ec398f997054f3eb3965cda44f68e1a1999b2f25288c5d890831ac1ad54711a47e0260b1985fd8f6b5db403af97707282f -DIST thunderbird-140.6.0esr-is.xpi 482735 BLAKE2B c8899f10a03513d69d24aaaacf555712e6d06368d8d10a2ac330e3dd28adfade5ef47ad5e885ad7d6bf665d510f223ffce8dc5acbae02f70480e4b2ad68cdeb8 SHA512 f59cdc203ab55621cbb2193e04b1193d086b2ad4440bb07453ef5e8dcb12231c5bcab62d27e24d2bc0be1e9dfb5f35835a06246b742627d8f1af7f7a869187f8 -DIST thunderbird-140.6.0esr-it.xpi 488525 BLAKE2B 0f0ac397f3d59c2803047ba950ed7bf9bf7b28c368eb1c116ef4cc68f1d926a5aa09829ccbaaf28bae6ed1b31e5e4a5796b66bcecf27b2792d7269e78e2b73b5 SHA512 5a48e4200e9045e3d846b0a408f8beb92af27077ad4d57d20949d78d4b1ec8df4c1f5b4a1fce316ea98c8a4b9ffe9f85fcb6e4d89db63c3077624dd7461c7832 -DIST thunderbird-140.6.0esr-ja.xpi 539339 BLAKE2B 8e873e560d74a1e5d8ddc2e33ead0899f3c9235caea6546327c1051531696d268559eb0018b607e6a392738d94d80ff8f1dba113899239f46430667b532377df SHA512 b67c93c7656e9a9426c2676b21ba6fdbfb8dd0b14f779f8c2365bf1466960b12068db90090ab4b363a162019e458d0ff56ce96a81daa9001e837a51163fb8035 -DIST thunderbird-140.6.0esr-ka.xpi 551190 BLAKE2B 17cd3976ffe29f0ea816f9b2ddfdf31936b597355ab7c519df89c8ce2963c088a976fc995023204d69a0ba097dbce3c4552d4aa06937809d7eb40930a76a78ba SHA512 22fe98ea549af63cbee2548550519946b18ba60cb3849340d2eb0398b4523247d8e24bcbff96078469e31c48254a1b9342f4c0576a8d5b396638a9b20680e9ea -DIST thunderbird-140.6.0esr-kab.xpi 470184 BLAKE2B add5b7a181155687f487ee0dbb0f541ebaab310e57114b2a7e7517cb6a9e37f37dc56a90a1d8184826ca670fe68dd2f36dafbdf87b56a7df38dc5158a35d887b SHA512 ad696fb61b9fd970aab0e78e04730503ad55bafc6cba223584ea1f2f3dfcb0a9f063123fba239fae4585d5f8d4a3ec0efa565f098c1b41b1e2acf339f96843e3 -DIST thunderbird-140.6.0esr-kk.xpi 573876 BLAKE2B 994a11a7a138290cf0deb9364351d1173623751f72405c638a285bccebd01c40a5d19770eda95f495d7900176f33f8dd51706947fddebcd377e4b8e315fee525 SHA512 e439ca07892702767e23d53dab84bb1604a094c85b3217d34be971a88aee60d8b9b6c1c630f30dff2072dd170711dae5fdc0a178bb183794c9b8df2ed418d7d8 -DIST thunderbird-140.6.0esr-ko.xpi 514489 BLAKE2B e10eb62ed5649605e65597451a6075f4f8a1bde7065de6207a04da8eefb4be54fe7d1ac8b0806faa2220f4e94759c87f361430a9b53d9d46c90fb18549dc4f8e SHA512 dfd6cde12f3f13e9d031bf05e62bb54349555ab1bc7c95b6ce9bf75256935e4a019ea89223a409fd627d0c57fe1b1da4f520bed67fd02f9943eea501bdc34ecf -DIST thunderbird-140.6.0esr-lt.xpi 441852 BLAKE2B 4d796ae1d3b43a6b5f100c2cb784a16a1f747ec4b7313d74bdd3a83e7d9f9662e4dc03c9e3d30fe42621383b682bb6c944c01f67aeed2230f0d15bfaaa211023 SHA512 7cc78ff05005008e2b4a9677bdd5ac97b8f6f3fff94659a82730fe3e910f1c9135e011af903a5c9254ff4995ecb7119c55441b475fd38333c28390688499927a -DIST thunderbird-140.6.0esr-lv.xpi 392814 BLAKE2B 059979b84a05462579991bd5c2989541f2b3ee7918a6a0750f297cc78359d9fe2ddf804c48ef280844f41fe1e9325f294d3a4e7e4a15a56ac09cddbaf2d8562a SHA512 c6782faf23a3c4b8d32ceb8ee49cb0d8f166daf9d7e326fb9c4feff5308c583cbd89ab575a28dc226f1aa04234c31d2d2309b2ebf874f3a65e18362502e47b03 -DIST thunderbird-140.6.0esr-ms.xpi 352173 BLAKE2B 89697ff96a0d7b0dfdc60a8a64113421cb9dd312dfcc02d3d50505317938f34cf09dd03afa599a6f232f4454b4d277b591a5e709a69af392342ec4de33f1ff95 SHA512 32c2f9c779ef29d67178488236139c3ecf00416063e1a3cfdfa84a66e39ced57b5f8222fcf7e40efe3240a57b05562687288ab7c88f18d5dc52318533c84483c -DIST thunderbird-140.6.0esr-nb-NO.xpi 447974 BLAKE2B d45e1636628d003a55c05494a11fe5caef8657bfcfeabf2b4443e2502051d1b084494ccfb756d50d4954fdae712d2b0498b046109ac72faaf1fae15c20200c48 SHA512 a0ee9e33472e664e83ef8cb671aab81b2898b45dbef8f7de4ad4d126dedfb87b7266ed481606ce62253b924eb95efd4ed9f5b67a7d509927d50030760ede6f58 -DIST thunderbird-140.6.0esr-nl.xpi 482130 BLAKE2B 201b6e5657fcf715a3aace8c6143931a2361ef3eb9df3cd6208a1c7d90e24913c707f1a587ccba8bcac7ddacbbbbf8a4e3936449e5817dfb5fe1cfd9169c6413 SHA512 533a410a0f87a2bb608166145f0daf2c672d0d9df38a5a9ecc9ad4f76e56b9099d424d692cbf773d166cefb70d59681b3ffd05d0a3687457c094ba366a34ec37 -DIST thunderbird-140.6.0esr-nn-NO.xpi 469410 BLAKE2B a93c7512c80e9dceb29d077229c64c8b8331a74e33e6e5f145f5ef691201ef340272607a570a841d0186807da8f999efd9bd0798870b1385efd584f4a63393a9 SHA512 89888e10da9afd1fa8211f7447536af97942f533c17199c4c42976003b107c09aebf7e9b14d332f65fb864bed22fc4e66a04395063a2bf4c66f7408f3a7c95cc -DIST thunderbird-140.6.0esr-pa-IN.xpi 435421 BLAKE2B 8389844249acb88ac902893ea9b6e83858e4e857096bdde91817601fde19824d383f846cebfa3d24b35001c1056a9a1eb0e9c65c6bc814c69739148eb09ff3e5 SHA512 867a3c5db1547d60fbc7b8e9fe7faccb79effa228cdfc8ea0268ae2b70c7c37a0e823e48c292c71368ea5652f1d1616ca3f76d802f3d416e7df1c153731a95e4 -DIST thunderbird-140.6.0esr-pl.xpi 515046 BLAKE2B f3a8ef8a0e883677e5e6053b81def1f361d8a99622deb21f07c57f938367a8ef965bd712b095e93d710ac471f0c01f10f18be3072e09c42794ff0413808907b6 SHA512 c77217aab9bbf1039bdaf7b69bea5639bc564075c1db32158497b0f0a85a8240bba3a59dc8ce4fc18ee3dd51c0e280e2a02f2db6583f16332dcf501e9524bcbe -DIST thunderbird-140.6.0esr-pt-BR.xpi 489972 BLAKE2B cbbd7e88a45e1e8e5a7231baf000200cc2695f908100789dfe21e62c48090d3237cb96d0bcc5823c82064328828a73dba5e25c08695314ffd2817f62730c5496 SHA512 16a4e36c351e11c2a50b31bf4699ed754a30e34678a6195e0a98b8b8a05746386e29b38b919a0ea880abd1a7f602f840456aaf454ded73e5dcd5468df6660434 -DIST thunderbird-140.6.0esr-pt-PT.xpi 486390 BLAKE2B d20dac01e9808af5ba65a08cbd6502e4dcab0e75dc2e28b126266218a0388e45cc7ee1bf7de87139644fb8c21529cb3696ebc6c48855a463b93171ea753e371c SHA512 07d0b878605fee1a8b7e6e65cae15cef2e57a79a0c9f02a61512897f5ff433f784855add3b20e7b65e11128ad56a86a25de920d39724b1c4c4872b45fd899a2e -DIST thunderbird-140.6.0esr-rm.xpi 487373 BLAKE2B f8a0fd05caa410b569a51c44c7accb43aa91abea577141ca29bebb814d92cb176f214b73f58cd7ca30c0846ce6dec1b476c53d5a0d7653b2fe0b1db908b28642 SHA512 4c092cdd64564b8abc5943624c899d314d249e34335083e9f8f28cded02ec3ed74820fc3355b37425271ac1abc48fe91b9727fa9583c710bd0573adfbc14baa0 -DIST thunderbird-140.6.0esr-ro.xpi 451873 BLAKE2B ff8ba34bd3e7cc964b1e1c741f8955f2faf338c7e838e7ff402598b0e951c5faeed303b610a7ece6eb3b76e1fc66266028a390e1aa24e21f5bcbc4128a390bd4 SHA512 b405a435f7dcdaa5b042d7970f7267da98d1fe191f9b89f3d91d6352b2490e4235fc220e9c8ba948516fc20888d33e76d2038d51206bab85971b21843a6708b5 -DIST thunderbird-140.6.0esr-ru.xpi 593181 BLAKE2B 70d4f0c8a050ea968680f2428b7ce76da66c6eb43c595da23d7a98e30471bd10c174b25afd6820c1b9ba25f4edf9cdf240754156eaaaf2a7ebd6dd3f5ad54840 SHA512 7cf8c1df843aa4246f73d8b9714e92df0f0d6d37b2aa6410beb7a298ff400862a9ddf6f01bb3d7a9bd4697c2907059f1e0636c9ebbbca791a4ec17a6cc3a171e -DIST thunderbird-140.6.0esr-sk.xpi 519337 BLAKE2B 7f84db783034b32f6a882a6ab3855d71bdaf130d4fac6d13e6cdbaa741ee94156614a624c3b23a41a3520bd69f7a39e70937f042f71abffc7a5ab1931500864b SHA512 199fdd78110d0bb73f8d7e1036dd65dc019cec1f24101ca5d2488041ecec146c06f80bf81f3c73fd1851f0c8e39dd4805f38b6a005be7b6b3d01dd4065a69783 -DIST thunderbird-140.6.0esr-sl.xpi 485954 BLAKE2B 027ae372451d65100e19a70acb25a2e5109011d63b2d4ed00a072283eb867de8130b030a7d6aca81c9056e22539b4309f363908aa3b81dbbfe529e3a7e5be213 SHA512 d10b2b9ed208a5f787fffb6ad89d603a4fbcc148103742f5e2f92e00d0c34ce12ec3adb26900231fd1ad13cf6c8f667ab386b36cb03a48f70fea3f69d18d94db -DIST thunderbird-140.6.0esr-sq.xpi 505906 BLAKE2B cba18e31d6768ed573fbb2408681319e2530cbfa0c0255796e28895f28efbe9e656dd22a1362f77b3753ef0fd95b01ccab57af60a63c62376e6de6c1295fc762 SHA512 43266ee3be189232e501791eacea3ddddad4a53ca6dffb310112e933144915a5b6d985ee380b9bbef519f75636e0a60ada214c7e490abdffccf7b206b0426cd1 -DIST thunderbird-140.6.0esr-sr.xpi 495986 BLAKE2B ee497e75f58dca799d92fb286c3f262b57d19c6be1e38dd1e951a00acde4e66939c8c1b64143b0f4f39b8b9cb72bdea23701ed0b8741d1b591d796c4e8a7c924 SHA512 de6a25c080b913f019439efde5341f61dcf65ea63c986443634cb2061428c735089324fe33f6ea8b3e3fc7060efcdde42316d710d7e26ea715648ef3b6e537c5 -DIST thunderbird-140.6.0esr-sv-SE.xpi 484416 BLAKE2B 3f4a2227e25c40144d138cdd42c40f14d75c80e7fa783e6d1b7f8bde84effe6b2d06d9ce2b79ad4c02d3eb3a0ae1ba30b96fb3756386e19b03349e0a2879be32 SHA512 ab2c2180d3c7ad076eee14908b8184f163ab60c762b5e808ef0d447fab73f77f6dec07ef2c4503c72973c04fadbea4258bd576f98b1fb905f85874c6e6612d78 -DIST thunderbird-140.6.0esr-th.xpi 565611 BLAKE2B aa1df5e8c51c5581e3dbc1f6685e762961bd43343dadef4edcbd8f51017bd2be248ce6e6b75e1f885a9c4172a518404358973595964e6cf205d415b18ff67248 SHA512 ac07ca14386d8e41c167d0116597ad8505872a614505c0cb63312f5399c0de1031ca39a4d5ffda9914cc6e1ce2073ffb751af8e9238ac24493a3f82e8ae50d31 -DIST thunderbird-140.6.0esr-tr.xpi 495575 BLAKE2B 046c3a2bdd751f3684566348b9deea18981d7ae1ddf6fa212cb97b2d5d1171d7a111f74dac8ea15b9fd0ebd6ac8c31e258a086f2004a3f87fb2b10d66dc6992e SHA512 3e1d605b3ca14f06250f3b45c5ce5b1fd6badcd2b5ba26bcdb4febb0c898f66c3e09ad8a8c7818712faeaf8774d4bf794775c632989c77909c50e3671832850f -DIST thunderbird-140.6.0esr-uk.xpi 582127 BLAKE2B 503de93fb6db402af8bbf652d5d583727e40db4e6d3bfb14c14412d158ba1860129c096e3b9b7cb21cd422dfd40f6f5db6bf3366f3358221e8a549caac7521f1 SHA512 0fb636018417e91147dcf387681453f20b554afe23445dd63a923d295f8131bbabed33ece87121efeed3b2be42f368791d9aed9a2aa517db6244cd03e2ccdc3b -DIST thunderbird-140.6.0esr-uz.xpi 355262 BLAKE2B 643dfb68ff2e284ce81f237fd22873736f3f870484ba1f62577cde1e6df9b5a725b72b3b8152cb5c222a6cd46b2a06d0835815da85f261ab94e70c91b4cb6a3e SHA512 371b9437637549dab2b853796dbd69952fa27ff3e1504ce4310848bac49e51c7423ccb5d37c86ad984860927726f12f494cd2252da6d8cd1f0fd9ccd510bd392 -DIST thunderbird-140.6.0esr-vi.xpi 518884 BLAKE2B 47f3212e30dee2618eb656f7be8e927782c8373d1b529810dd442eb6c13c2ad42b1fc4dda4389bac33bfca6b4f931c576c5c8278cf98ca37404fb43535d58f49 SHA512 815c0f065c60d57c750f7c64e80968fdf33abed80032e6fcd27c7ea16836bd2e829827cb10b0813d36732631c35b22d92e8617afc4f8fda126493f54c3f67654 -DIST thunderbird-140.6.0esr-zh-CN.xpi 507816 BLAKE2B 5e12d7bd198298d123696cf4c2d2548c9fe79380ae0051fb1adabb174d02f51fb12fac379d11e7a6ca5f6fd95d49ae1c1bb8bb510274091b69c0f067966c7bb3 SHA512 6112a797abfb744e351abc5d3f1a37c1cd7b19942484e2a39853ac941421772d2f7deb8bb1594f62f387e1cf1a2097062c9185488ef4c3f69323f0388df9c64d -DIST thunderbird-140.6.0esr-zh-TW.xpi 511176 BLAKE2B 556e5c8543cd750da47a7111a1362da6579480b5927a11c6c619c7b463b0baaa3875dbb8244163c0a089327b413fd66035841a802a1d568afe2160e64df96103 SHA512 ba84f99cb3bb79beb2444585e2f3d55fa7e86d41233a866f4c513cba2104918a5f71e69b11ef23e3b55dea3eaaa2a4136137aa8be56528b4a85299db00e2d643 -DIST thunderbird-140.7.0esr-af.xpi 316217 BLAKE2B 1bab34792c1141e8bd0b68b6fee1233324a73325313588aa6fc2f354018023406a56b4861d32d4ba8c4b2746e2a967e1ca5ac4e4f12cb5e2d011df3257eb6cc4 SHA512 53bf5ce8d3c64a6b98899b0bde9f922d1bda700ad804590731e90a4d6b2005564b6ad8a1a59b5a5d27536c9f169ee3d227d5cf36201d11552b0529d7cef38ff2 -DIST thunderbird-140.7.0esr-ar.xpi 436195 BLAKE2B 739449bbd9a02acf10916ac7a032a1ae9b7282d8807ef7215813ecd4a210d73613f730428c995a56d06ddd2b570d649c0bd2cec038a7fb5ffcef4020d8862f76 SHA512 d84b652ccf46f2e31440f61da38b89960cef13ec8c8de4f7840c59d8455ac39788e342586a27d5ebcf5782e00ba4b746e1a9382d24c1493392ea64e03c473990 -DIST thunderbird-140.7.0esr-ast.xpi 340598 BLAKE2B d58a644610dc7672e017dea504fb88a175439d5f40143c734a033244f8a557706038da2aa1ab2296df3eda15f3cd88d330d357d51c7ec26e23bca97dbf12802c SHA512 e589c927db9f4a13697a7d4d04afe1114acc4c6b09831b063f5fde1d0afbedbb4f9f1df1d3432585d244de4ef7cc1258a6c421b230170e591fa4f6f0beaad068 -DIST thunderbird-140.7.0esr-be.xpi 521573 BLAKE2B 9711122cb3123be19a60e78f4037fb500bfe3a66c2d064b878ceba23a8c64c50a9d2da9a25941d1b7eb68c884682b283ae5fc2761b4719fa7ae5dd1390355e83 SHA512 39a076ef6dbb97bbf4b7d30ed8a9d20c84527ce8dddc555a9d80273f902ac73d8a2dc1f9f3659de46f9869a5e87f95e7c6c3f35aef11c6a0bbafafdaf2482f0f -DIST thunderbird-140.7.0esr-bg.xpi 539805 BLAKE2B fd2620c7bbea9ad41f9591aa0010a1ee9ac535bad1fc3c2161e5fded8ad2ca0f57b252244df5da608cb0cc5b1c6db1e1d695f5cded846e082eeac6a771f6675d SHA512 7e95fc50eeeda647a2a3e6d34286c1e486e2f88b2ff2843d8c54358068975853fcbec33274f89f3ad03a110e2707f68d031afbe4b848f2979fb8680861944cef -DIST thunderbird-140.7.0esr-br.xpi 402746 BLAKE2B c80cc649d3503d5848747ffe996eefbce6465dd6c0365e6c20fbb0a8e3909321372d7791506c6e5155b4a90b3930d4ac9a3948f7f1002f278bfa98c5c183b267 SHA512 b03241b765d59eca6773bc93cff287e8f5ff1b1172d7e2311c8d8823809a8172f0751dae1f2c0b5d59139895039efdf7284a7a2c44aac91c408f4946ed58f958 -DIST thunderbird-140.7.0esr-ca.xpi 440587 BLAKE2B e87a794da3cf2999321d6d3338763a58b53334c055be8b29d98581459d13686b46cd1c7b1ab723ba9aca5cfa833f2f5b656a669adb09cb77f7af8b755ab43d47 SHA512 ce837cd15bc8bf9f059679098789466586b442bda1a90a1becc5ec3ad3781a0b186e06f4c1ec43b886b094a144943817a63113eebbf183715ddad9dcc282182c -DIST thunderbird-140.7.0esr-cak.xpi 418021 BLAKE2B 2cda5836b2ebd02f27c72a415abd9a37b57fcecd03bcb9061d0ca88f71e25ca969c00654e072ece9e27c5bce87e1ea0e11896ace5927f7507bf97e14f1a0689a SHA512 2a16b93fb35e266631a33754eab163b357d35280e76ca90aac4731f00481f3650f5e7299358ce1cb0ab3a2714275561c6f4430cd041846c79375853cffa5d73c -DIST thunderbird-140.7.0esr-cs.xpi 519507 BLAKE2B 8b17a8a49aed09b5bf6c035e47a41ff4690a9dc3c4c76d2731ddadc59f75d2f6bbe58d7d5bf9779765544a95810cda5d28ad8c2f3b2c62d30713b0a8d26e17e0 SHA512 5286c4886b58ed1bebc1ccbd3d1ec261e73f95a0ae383ea1b299ea8e970d5beaecb044521eafa47dfc2e314994de6c0ddf2a1cef3971477d41c48b65d38ae738 -DIST thunderbird-140.7.0esr-cy.xpi 487650 BLAKE2B a8c618890e095f3d2193a04e4ae2b000ec0b6fb43eab643ae835db172f92390f8fb1e87b681c078472f1ffc8bef027a488ca3918d2729d161c593fc79b12bfd1 SHA512 520a1de323a4912d66360dc0066eccd7fb2fa0096066cba387a604019cfb3f29f1eb6859609c7030a88981efaefa46418dc2fc2f3006c23f06701875fe3ea86d -DIST thunderbird-140.7.0esr-da.xpi 476623 BLAKE2B 3124d4ff6982a27acd3d0dd43a10363918b2a5d6cde89b08a1e2657659d32aa5a95e259ba494a8e3f99cc67f7cdfd14680c7f188e07fa9840146bba8f9034fc2 SHA512 de8c2f1e714fd091288ffc49af664c3cce60d1ca29535c9bb3316e6cf309922d85435dd4f39cf0d080f5511001c35ef423d5e4cda8231cc303d90f54339c6746 -DIST thunderbird-140.7.0esr-de.xpi 504707 BLAKE2B d490e74958b2609e799b13b5e957e798b3b379fd3ec8992ba93ce3488923264f674d8aa4912d2038dc3f22a015f40b6b1900ed3fdfe76567f53eab18cec92f5a SHA512 faecbc104d75162ea5af8909ed1f4c2ed25c869d9a17fe3d9cd5737dd1aace796cd4ddfedf9ca8c31b9d9ede1af34b5e0c9f6ea9551abfcc0a6e69f6f90c7162 -DIST thunderbird-140.7.0esr-dsb.xpi 517898 BLAKE2B 671921323fde1c42a4be3ab02758ec7cc37b4be4439397cd8b2ac8dddbea4f8d64708c9a5582e2d1090f7b5a1edb24d6c0ec1574849a206bd0c4bea22bf5d153 SHA512 0db854158e7e05dddb81a45172a5514b00b8eb8995505dcaf74fa5d47b20d96d336fe2a464b3ec8fcd0723834cf955f0893ca446bf88e45f1747e74ec09ee1c8 -DIST thunderbird-140.7.0esr-el.xpi 609028 BLAKE2B 7888f8eb246619c594a584cbddbe4f545661ec9c22aee11b8eb01dc3c0967b773f75dca7970cbf6214abf4d939a191a99d9df9fb2cdaa243e19634566cd19f01 SHA512 3e18a9a2e4f0c1fa63ff1f146c17baad152a06d1223be480f6c8890ecda4c94ea99317f562c265a387b65fc3e70272b5a5793a7b8c11eaa0bc6b9346ad84c300 -DIST thunderbird-140.7.0esr-en-CA.xpi 452238 BLAKE2B d647134e95b1ed708b9eb3a3d0b12497bbe12d4d6d3185e58885f62653a24b9fe74db7bd6a388fb3f6b08fc9fd8809e3e9bbdd3d18b2502cdf10804aa80aa585 SHA512 ae1dc889ea7787eb92e402d7922886f4cbcd37c764c10a34d32792b43aabdfedb0ad7696475546942bcc28d52f6498cc681d8ffa3e6e1c45360fd97f137bd152 -DIST thunderbird-140.7.0esr-en-GB.xpi 452066 BLAKE2B 8579fc546973131897bd3a2ee7903396958e8513638dbacabc2044fc6017a722aa1b9c943726039942869deb432e9cd1cbb985ce104ac832840162875b82c729 SHA512 7dfa49cd52f7e15abdfd1c4b6b2a2a97131ff4a1381e850db94f07bc45911aaa22ffae970f664622fba74e31bab1f88116964f630a1eabc608bdddf803ba3578 -DIST thunderbird-140.7.0esr-es-AR.xpi 495269 BLAKE2B 84801e05768757c12b63457e444e0a5cfdc12253a9ed60381e99b09040221ec4e66b44398bce3b66f7fcbb20ea522861aa911d9b4816db44a584c06f4f33d9cc SHA512 db31ab9693e6c6edd50345484670f9760bed05e7f65666ffc80837c38a9f30c5e9260fc013fc2e035d9dce3f36fa1ca4e5459c1d5c9cd888cf81f24035cb3a5e -DIST thunderbird-140.7.0esr-es-ES.xpi 497284 BLAKE2B 02264d2c8db2ca45530f24ce2a3c89456f44fac16ee6a440d30444c3185c86ba4466808f02c9b86e8b7cbe7671748646d302e5b730a95c8ef8b5036219bd1924 SHA512 1855c788084decc2815f0f7c7062808474af89f196da1ea04a0e3e2a0488f414b1bbab309bb74d9b2678b30d38fbfa060e1159924e74985a7c2d346dea481c3f -DIST thunderbird-140.7.0esr-es-MX.xpi 490409 BLAKE2B 18941dfc21f9c0ed628d16ff964a36ed2d07e37af1448409406471c8ec9fadad7a57a1cfc093c8a5e55d93d5227aaea9334aee3d523f4780a0f471c31f97a92d SHA512 f9a2b19f0843efd7a4fbc22c33eec3b276bfdcb7eb79890f4b0441a38155b0d51d2939b0b0bb8b61c073fd8e53245f5b5ca6c58276acffbcaffe964f3f273709 -DIST thunderbird-140.7.0esr-et.xpi 443617 BLAKE2B 1cdcacabd71f7db34db3b906feaf97ea8e70031c44eb150197a7bdb26a2d5097921b9578d79b2881a40f8f4633e1f33d679e4cc107d85b3488227045d55ea011 SHA512 1df3fd8511693fe518f33620a71ad783df4b3912960d031f79eb9a648d629b83a7957fb18b28bc30a63d499a36a05c71b9e5a6d0913237eab27ebb0b5aa21b9e -DIST thunderbird-140.7.0esr-eu.xpi 473922 BLAKE2B ca47960f00579e33e233c941cf38688ffa301d2c1b04a373bab111fc25095ca1b6115eaa82274609ceafcb86467fff44b42e4cf013d202e47fdc7fcf02bf0772 SHA512 6943dd9e4ae434fa72a7bc47fa8283584754ed3fd2014788e92d6f6ca23f18965cbc30555cddf493c3b4f4d25afd64a19e211719ffc294191e1e9005c6fe6884 -DIST thunderbird-140.7.0esr-fi.xpi 475608 BLAKE2B 656000ba978593d0c12da5aec9fa5bd430aa6fb75bf707dfad92cf9cd315c8625f91330b7df68609ea329891d76e6c3bb8b1104d77525b4cb4eb741dca1cb516 SHA512 4fd5759def6485b334aafc195bf258810efa89b62de92b9112c0c0a23790fbaa7c63ff857fe6f6eeab3fb39ac9c98150f3490cd25da63fc2768de0a6afc2ff9c -DIST thunderbird-140.7.0esr-fr.xpi 508319 BLAKE2B 94179c49c5a3ef2cba67fcc2f2785a3229060b907be6475efff57a94741aedae2fbcc5074e85a2f2d30719a056cc9f8ce1a66e7e49ba74485e47f915f7b510e2 SHA512 a7bba0ab8f2553fc8507af91a08b9b4ec71259f6387e0d8b95c72dc76f9f4c5cc42feb7b0f7a9f77bb2bd0915aad212da0201cc27723ba727b3e2da10cdd93dc -DIST thunderbird-140.7.0esr-fy-NL.xpi 490684 BLAKE2B c3f5dc31f8e2f42551103c54386c81f3f770d44495e5da31b4494e502b4c9c526853f907bb9c7b1dcd270d09c3cec5a3ff321a49780e93c76409f99119124d3a SHA512 7e0622efdacc3a44be1907c1af222f92c6252016a005cf28b8b3043505491ad20d5cb18d7cff41d64e59bc135e4e3a44395c94af68c689622e57b7b6ed7598d9 -DIST thunderbird-140.7.0esr-ga-IE.xpi 376744 BLAKE2B 2ef00c30f77d51f972de691258f995d9370cbbe51e1d619156cbaf958df96b024a7cc2dc36df3511c6983ded3e20cc32bc65675621ee0677da4f98ceac8eefcb SHA512 eb4bc171a6ca7758144990afd846764ab2b4710b56f973b405493e6ba9dc03d9c62b7b685b3bb472881191ab3f6bd5f6f932c38359be6d4a3acf25424ae3aea6 -DIST thunderbird-140.7.0esr-gd.xpi 461957 BLAKE2B 04be864f94da1faaa083eacecc04533ae74f7daad23be490bdfd120680d1f5b71992231d5df7758988f471f1feddae6755a633b4ab082c55c0046c1b730d8f9c SHA512 033aaf0c9f4b27445a41b296e3d5cddad254c123678060c3078004d281f152234df797c547ad2c171393e98e9da2a6172a5be480ec112eb79562dc82ea6cb5cd -DIST thunderbird-140.7.0esr-gl.xpi 489345 BLAKE2B 928d367de83098c8e06b0f20fe3a9bdea8adb5d2600ee18bacd97de924768671da318f0ab90291f134f2a15c85570dc654ac73d6518e268cc7f6b9238a2c2d6d SHA512 ac91c7f664ff437cc5d24c1bef7d969687ab3894f9acfd18bfa1485ce5096b35790299f0ff7bb4803762f3cbe0e05c96e7de7833afe3c1fe94ac9133f4651a9c -DIST thunderbird-140.7.0esr-he.xpi 443587 BLAKE2B 203ee7e80cc9c84b0823fb82fb13c9f95dfdfbbcc72a3bf0bf2ddec66dff750b078ac5590cb3f13dd1a1a66dc19b687e7163c4a0d1967ce47ed78f8bbcceaa79 SHA512 fa6134c4651b46aa0e2771e233927263af78d5af10f389afb5dcf22e3a431d09d5f4461c8ffeeb008650fa0eacec0f2d5ad3e7b0b125bf2372ef07cef4ab0bee -DIST thunderbird-140.7.0esr-hr.xpi 470679 BLAKE2B 2a3e9ac577d689ab2df1aee320b1c91185fc7cbc6afbd18135848b1ade7ec0b9b2dd9825c67d034eab097c249e32d2f196f235b4b20cad5695f147155ce37520 SHA512 e5acf440fb04b4fc4abfdf978ef4d9378682a50a0c9e8e5258692d244ffb6830d09f0617619902ce66bbaad1b76a67b07ed34e269906d979691843e1451d3a92 -DIST thunderbird-140.7.0esr-hsb.xpi 514933 BLAKE2B 7b212fe7fd4b2b82b0def0f0b502a360583ffbc19315116ecc480df38259914d4a6932d886441a061fed059608517014bfd5a606ea4e9067914a8164a7d3a864 SHA512 af0e9c78d397f05f02dffed4b306711aac6d67624ffe0dbb410c40cdfcc64c7bc2be2fdf0da38882f64daa29a9916580c8ac7eb180b6523dd40794443dffd876 -DIST thunderbird-140.7.0esr-hu.xpi 517543 BLAKE2B aca1adea84788eba292ba805e049e1cc90fdb5b69c306f69d02083e3091d9b5c0a4bc6a164fde34f153a3beedf1723472e7092af69daaee28d24713e881e90d4 SHA512 3c144c1b52df6fe12d0d999e3444bcbda3d0d82cb5ecfc2d44754a0d61996c38eceb51e00a74d3ffad1a802797a394d75f1dbcb6f341b88c4211b8185c12657d -DIST thunderbird-140.7.0esr-id.xpi 467003 BLAKE2B 9804bdb367a0655ef4c7b2af5a139bbe6f750c39bde880c2fa919300271dc73ebd09685e0a62a6ab2a590effb7171bc1fff01fe728a9c6bd18e3562e5a95f3fe SHA512 07486610c8cca121bb9f2951a0e504cbf8f5607e051bd45538c110b49b55c293de53151a83d7a0c390ad87cc02ac342ab2f04fed8d5f9cfa3c99e1d07924ca7b -DIST thunderbird-140.7.0esr-is.xpi 482738 BLAKE2B d83974b657f1fb79ac460c2b398ff2bca91a3bc6f0e877f07f9170805136250e6344d8b590898da7f1c6dce2b1528a19c9a9730d9d8f8405fcf8121225f15ac5 SHA512 3a1a24c4c8ccb274ac021e1e9d13ff29376b56223c59222f2c1cefb15ec6c869c1cb378213d18d18ae76bb2d31e42a6b1fcafd5ab85f32954d468db47bf58c27 -DIST thunderbird-140.7.0esr-it.xpi 488502 BLAKE2B 708a4e48847f42a680f2255fec2e41c15c0057e684551c4054193a765ebc1813057e6e6b13b308f38f765504945f6b100ab8fa3283f0540e9bf8a47e3fd90b0d SHA512 40f37086dc205cff4ef416b2c508f1ca0509e4338e1ae2821d3a73f72a52c112f5aa8f1677b3a344af66c9db3202c55f241393e49a8ed771d9a1490a89679745 -DIST thunderbird-140.7.0esr-ja.xpi 539196 BLAKE2B 8abd0dfaffec329b320d77cebd051b56ce155813acd8aac38785b24e39074a4325d2fcd2a0d8b841f42c32859f910b61d4c53c2cab5b7370c087e2e36eeda057 SHA512 2689a336e9b23938437e056393572729eddbb66a27f4382a29c00ff67e52a946789a6871680febc39411e8f4a166e480feda0d53a9918197155b9285732228ea -DIST thunderbird-140.7.0esr-ka.xpi 554773 BLAKE2B f6fd9c342b22c0634e2afb4bf2b20f5944f0135b39c0de7688aba00dc2ebf5007b4263556fdf227f20688a162e70e29b1bf28f03a94ac3f36ef7733e109ee171 SHA512 3f3d2c84fcf034fd9f3b0207eb7cc10292bfbf0dc5f827edff1afbebccb48a5515d57c0671392e0349eb806aed8464e03173dfe28b9e85ceccf5b2c5a388f114 -DIST thunderbird-140.7.0esr-kab.xpi 470496 BLAKE2B 641cee56a4de74e5abfbe405939f45acfbe3d1a3ac6cf08257e51bf04865c7c67e149c4e358e229ed490d26f6a62a4131b1ed93e9908a5af772c385475421ef9 SHA512 721eca97125221138800301ca6a704f62170dcacb1d0083fb3c35ee520a29488008a508ac0b92363c80d44e9c71900fb8b1d3a1be3b1766d08bf36e0cca57ae0 -DIST thunderbird-140.7.0esr-kk.xpi 573879 BLAKE2B 2d3b1cf2b6709146ecc583227d63189de743392de9eeb64457ffb2c33063c85e89774fb35ea3e80eb25b89a3c2d376360259b3fdf434b396030cc4f04fd9e7a3 SHA512 555ee46b1863d41371cb36756e880d274fe5f8b24076517f87fa0c4ba0aa0dd576f4cb4af5f8f620d04ee50e078d25ea08d71a5288fac4e482331f36efaf246f -DIST thunderbird-140.7.0esr-ko.xpi 515590 BLAKE2B 9cf7149aafbe88d6bc4fe5bb4c393af42fcc2841d80e420f9f9417cfea165bdcc9a6644c3fcb3a2d44fe38f8e76d65ab786ebcd8000c7dc5721904ddba816bb1 SHA512 111a2ff206210273b08a684f85385c6708f58d9e65afaa7026bd91e730eaff95d1d73f09e35ad9db1da3ae782e43d3b2f4eeb49d608e584c93621d1158906517 -DIST thunderbird-140.7.0esr-lt.xpi 453435 BLAKE2B 65aed1dbd638e672c847917b97a66710e7f48d465ad1907a7a5154f50c6b95b00c0b7bec22d64e0ac889ab7a382d1bba4a97ee9c1c2222223d5db0f38bcf2565 SHA512 94e9b8deef3e52ff7f52150d26912cb3be8b20f5e36e263178fd9ff6d438d23a50d8457a6bd4240a6351ec1cf6544d513452bfccf69b1a4ea85fc003dfa5710e -DIST thunderbird-140.7.0esr-lv.xpi 392812 BLAKE2B 3167abfbd60f97067c2144de3961d1c130df253d296f99c4056a8ee7e9ee6fe6e1b7b2f1615bcfc57ad85cc50b980c238dfed8f50ce465981013f14fc6d5634c SHA512 23306b78b3616fe8d18a01b8c83753b0af9c8909bc7c005e4094fb078bbec4f370714e4f4e0d3ba1d99e6b10942f03804a4f6b3553e330ea19b7aafd045501b5 -DIST thunderbird-140.7.0esr-ms.xpi 352179 BLAKE2B 762b0db883f6d754757b1bf14d1fa740a1b97ccb2fcf7d582af0e3a0364a65d26e23afffb6520acee70dcfbfe374f8c4b7c935f2b1f343dfcc453fcfbe93d0d0 SHA512 fc35ecc717d4da73e13f5bc7da5d5a5d3c83be5091f9567b1e9236530c1d3ea9092d5ac62e3790755ebbb041470afe86c3aa9b41548cd1aa92c40ed4a39295d5 -DIST thunderbird-140.7.0esr-nb-NO.xpi 476137 BLAKE2B 9fb43bbced14dd0e5f2647418ed25668ba262d777537e47885caae7c343747a1dfe3d3d55ddb60add43d8e4a2870b96a26f8652a128a1f36ccd73c2a7574fac3 SHA512 de2edc2eb0688dc5bc596e614c3c0ff77ee8d504fe37fe615dca67e2686d6c739dd91332ccdb389bea6bb1d753414ec75cea082a9f003b9e0de6eb1524d794ad -DIST thunderbird-140.7.0esr-nl.xpi 482123 BLAKE2B 248eb897d4decbd7483b19b4ef3c4e7a7aba45c85d13ead8103bb00b3ea46ae2938f716f81622c4bcb2792375d605dfac16922e9a3e9e63c5fda3996877c088e SHA512 a5c698c60af3dd2b54c3e546fa13e3e2fd86d1b51fe2859b2fa477bff7af2f799512c13626411be3d0d4190ba0310cd4c37aa13433efaa7ee122674f60931756 -DIST thunderbird-140.7.0esr-nn-NO.xpi 479759 BLAKE2B ab403f47fe91fcdd1da114fc2eea9e74a19c008fc403aa52953ec7b233a8bb01db31f5c98d570f633234b861d89114b2bfad77b92642759c8f109f926e439f79 SHA512 2a2fc6e469a74073933a20fa948c46420df4bd21f98152bab5735aaf986116236929bad51655c245402144e6839e5357710f993922188e6e865f83a5d2d77fb3 -DIST thunderbird-140.7.0esr-pa-IN.xpi 435423 BLAKE2B 153488423c18256c15bfc46ffdedc7a17b781dda92b9433249bbcd8f0a88c604a227337d6a135aa29ec749d8786db1017c14f02be2ae9f2a677d7bebb339c9ac SHA512 844d05d4c96e11c62414bf8bc02152dad276546c20534778f11fa9ca5404449442d1cc0ff9967b69e58fba06a1e4a87895873c4f2915343db811e9abb9153819 -DIST thunderbird-140.7.0esr-pl.xpi 515611 BLAKE2B cd5e7cebb533b7531b2df6b4c63b4be2a5556d9b0d45b8a4fe19c80a10ee164d2ac6e4380fe248102036eb385fa965bb3317f9a57eeb276af14b4064200314a8 SHA512 480cfb23dd1975858810e045c32c2c4bec0ea02cbf083d6bc61aa77c8fb6a78ee15d4215f63eb41d3f812825e430b9ef320de0c5b8c3f5e6e5d48b661c8ab5e0 -DIST thunderbird-140.7.0esr-pt-BR.xpi 490163 BLAKE2B bdc75e95ff3512eb8a26645e387d6df4e65b465ce9d0213cf7b0e141c42ed38b7cca6ee3c382dcc96735a65c4ff64d0b8559aa917b8c4d5d0229b6d042af2b4c SHA512 272bb936cd4f4319455707ac5d19a05cadd973ef7e36b7455850c529eb6f08041fa320c7cd29848452706784b204562ce7431a265446a6e252f8d8357b3820eb -DIST thunderbird-140.7.0esr-pt-PT.xpi 492523 BLAKE2B b5b64cca56f1825d2fc9d3f61e417a6bfa61b5e785b8cae87865b0db4a1922aa44dab813ecedb510c5b4cb24a68b4d796dda83bf567f3dcabf3df797218fe1f7 SHA512 ab34adc7baf97ea696b75777b1873ed18f0c4664f74b181c59a101fb1c4528d14303fa6478784c73c28c9b521154e33d65de36d01d9614b9f0cc7310534bae80 -DIST thunderbird-140.7.0esr-rm.xpi 487882 BLAKE2B 4d8bf4e85f69581070d2266ee795787f94973504a4fa88d8a940dfa9c30e6d63a712fc188ee01d3a661bbc213b68569d2e2379fddfe81808179f81612cc74d72 SHA512 511c2e680424b9b2cd3b44a23fd5eb84fe4c7a05b2f66e1d429d1961b43d67ba2b1629c3b62ff007365b9990f67d8c7137c05096ece21704dd0b6e901b2c167e -DIST thunderbird-140.7.0esr-ro.xpi 501094 BLAKE2B d6fc15f62d9f91ac17fd01a47c20d23debcbc907d58310ee6b866ca3b27872b0c1a56d77eeae51558d3955378d1ada107589cf0bcc4a260dd906acbdb380485c SHA512 78964900f66c2395d907a6e836da59574264a81da85d1e52b3fd17aa7de11adb4e9deb2305d52b50ba2738c6bdeb6aaacaf46d7d18f7cecf26cc0ebe128f2e40 -DIST thunderbird-140.7.0esr-ru.xpi 593283 BLAKE2B 532a082aa3a57f3f3073e1ed21fb53b40613e0551fbc29462a51ad73e14b76a9c299de3cbe4618b807ac06d97fe48406493ec2cbe911181e9f86aa941b871bc2 SHA512 1bb67458295e3ec7fc01a818dec02b83d47a3081f9de55d0a5ba9351265c40142499458aebef28cf83e2e784a291aa9610833915ee38cab3601fb0541586d0bb -DIST thunderbird-140.7.0esr-sk.xpi 519388 BLAKE2B d37bc1194e578d57b8d55f745127cccdc13a0d478fba1e3531af7b12d134728f1e85713761af76f2e4a1d8d43702fbfc687f3b51296c23d9facfdeb734baa0b1 SHA512 8949bbc24d442ce7115cc3b71a4cb0dd6279635ac182c5968c9aaa19c4da1051e963f9a54f2c48eac19b5804c9007d61ecba52d878896e298130a1fc671aaafd -DIST thunderbird-140.7.0esr-sl.xpi 485960 BLAKE2B 87b033a5ec71a357eb3135eecd8911ea00d4a4993262000cf418b2e2582c291914ba43fc3d04d7e6e4d477a92fe0082a76dc50d063aa191536178afa0afc3500 SHA512 0ef0df604bf7adc9e904c9434b0eeab32eaf8f2bab4ee69beb18311899b56a4bebf1b0c77608e8954b76c1a8faacf9935fe78be2c596ae634e38b3f5850682b7 -DIST thunderbird-140.7.0esr-sq.xpi 506267 BLAKE2B c4505a7ac872f841de5b0c36d96e77beb9510cf797344ed02578c7367b11adc82fd78846befa9aed93c36f5890f6c7e3a8922a70a7614219afdeef19c7555939 SHA512 b15eadeacdbc4dc880da3cd42546cb5813aa121bedd6f88c101005a17424b5c38c7d1b424ba4b6e8a156b9fa459149f679ac957ef2da1a1353726177ca704fda -DIST thunderbird-140.7.0esr-sr.xpi 495991 BLAKE2B d7d55b2597ec6946835d18725057ff07a76552cd6f8d5a6c8f5aa051fed409b59fefb7d46c5baccb006b7cbb8429df3c54bf2e7cd17aae53e03e2962623596d8 SHA512 121d170da94dcda4e6e1f43b695288d6b1be4de8714eda75f43620b7415fe53aff8ea9653c2219dabd82cfc201e27f13ae57f6cc7100a3ef3409de7d9da17e37 -DIST thunderbird-140.7.0esr-sv-SE.xpi 484419 BLAKE2B a2a967bba29703a53d222b1b39ec5ecd088e9aae1d36b82403c4da86e7c56516dd4f0b193accf227bd2c8987c018e7685eaca07e33becc5fb7a042451a38826b SHA512 bbf56ac2a1a10326dc2e230d632fc795d15727aa0821ef8f37c1b165c0c47a8622f8eb62e81d416fc0546a1dfe4e5f82d5a1089cbebe570e05ba3852d0e0d156 -DIST thunderbird-140.7.0esr-th.xpi 567946 BLAKE2B 059b92042f2cebbf5859238489ef5326953b6e7e635e36cd7f5b7f8231cbf0fb032fd401a7ef82648d39f22e96066b8163875b09a1c7e3d4179255644302f00e SHA512 790ce1a0df233b7319f3a2216a0c02e2fd2ce219e17839b30cde11a0ea0b0b629472d7fe80ec13486d38f39b6af47d31a7c764bc8f785b570ee6588f1552b339 -DIST thunderbird-140.7.0esr-tr.xpi 496181 BLAKE2B d8ca6e9e0e0262f9674be693b7f64a4942eb080a452e25d26d5fcf6fd655d8fa009d54d4a8d07674a815fc46d86dea8f93a4cc4a02606bab30e7f3f1b0b8ba86 SHA512 162b624118ffeb9522cd2073ab61416218343ce61097214e219f992964d8c5cdc4a6ac8ef4f168933321326dcc67ee0530974377f35995f478a77d4676e7655d -DIST thunderbird-140.7.0esr-uk.xpi 582152 BLAKE2B 938a7ba9a10d7c26fbd4a2c95db232b6235be836f73ead0d155a42fb9f55cb110a697c3c57704283d0cdfd680886b048fafe2f80b705e9786220a5557200c1a5 SHA512 674523fe9c0d7a666cddee2aba36242ca9475b058d38194b509f9538d2b23e829590f531adc814138dbac12d19044ba1506d67ddb1df8bdc51334aac21805dba -DIST thunderbird-140.7.0esr-uz.xpi 355267 BLAKE2B 9ca9c6f9b750229f6dbb02e5e7c7c9479341546d204fd0135c48356afdd8fd67aa916bb420d726aa5f80a1b5f9f64016dbb15ff3cd1fb8a0c40b418f4f530038 SHA512 1f940a3f213e5634cbeaa50cf934837b6bc7ede4d71a8d59aa5627c5f3baf971181cd2004fd5d73add17c8cdd7ec733e092b5d8e858232af41bf24af23eaac8e -DIST thunderbird-140.7.0esr-vi.xpi 518883 BLAKE2B c033750671e3f59e30e101b61cdae919f97752d25fdbf53e4b8802b66895c41e85d1f13dcee62c13a32e9a5dd6b0cdd3d97d3a723547b077529eb791eacbfb8e SHA512 76d5808117a390050da376b5c685d629f15ebef01d7b118188ee409c8f0103341974328d0f2b0652ce7d5f0699b2edad13443b41131ede1f7b0cc52cb54e0323 -DIST thunderbird-140.7.0esr-zh-CN.xpi 507837 BLAKE2B 3dcc0d32bff319a36737ca0d9c8b285bf7da0f4f9c7fcd2748223a2ee04ab5070069ba44b29498f0a4e94fd11db54d746175556a4cf5c7d346034d07adb075f0 SHA512 495ae611f6b5ab1c291d2b53af3afeb0cacc4c1200a386fed3e478bf92ea4269e3c366a2166896ff9b933ab8f4d6628d3f99c2925781e0dda5f923a2c29e7179 -DIST thunderbird-140.7.0esr-zh-TW.xpi 511430 BLAKE2B 18e36fbaedc0e54ce0316fd506e4ecc9dae755988cd22440b08eb1794f4cc01ee3eaae298cee21f5e14ff0167f15b91f496f82cff5cce56cc188bf9935064e79 SHA512 095ad671e67c8249db9943592933443aefb21c76145a1fb15b2b8166402f79fba5319026f3c5d98f88361bfecf268370838c587b69a62a28888836039b65dc59 -DIST thunderbird-140.7.1esr-af.xpi 316218 BLAKE2B 842ffb57dceca2faecf8e4029f990a57857ecb943e76dab696459d27b829c1496cbf74e270a5feef81cef653f19595a4d662d6e30bd49f77267c77f0b2ec1450 SHA512 0237605a47088257e9fb978841123a20449f52d489972f3bc76189f6f0dae24844f165cf1f6b5dda0a99e6d1a4359f1c1a3aa694d628f0297edce6d3381a2609 -DIST thunderbird-140.7.1esr-ar.xpi 436197 BLAKE2B c76de7e15ae2f00f0a70c11bd6e5562075d58cedcfed28c02e162d1adae5e1f44ba8b335d66f2c29fbfa43871b4ffdc9b39b154fd35c9cf838283d458e850b30 SHA512 53db36903662d0fedcc48246b89c2deb96c3f0a0abd777d1eea378f4ac216fe70da7d27adc39cd3a84301b0af0f362352144fcb9884e4251091ac5a160093e6f -DIST thunderbird-140.7.1esr-ast.xpi 340598 BLAKE2B 34d0e2074a337e73207aba79649104779937932fc5ccf4ff76abac24091bcfd40d6241e445c85685d9cf50d8be4b1f8b2c9dd889507a8fb76c8904f1670976c8 SHA512 2947b77ea5812334370344d6e2ebde602fe32ffb031bc08838086de2481fe23d08b4fa2fe7118a5fe38b8563317363a65ceec850d92bd2707c5cd3f04fd4c7b7 -DIST thunderbird-140.7.1esr-be.xpi 521574 BLAKE2B 065a9acc7f56058c338f1b87b645a4877100d9cdae4e0ab23af4dcb7faa95808e9cbc01bc7c26e0116032a044d8a0158c6ab0a27b9f4c4b1ff732957fbcbb62b SHA512 e8d6b843b9e38a68f1bbfa170121fbe808750d06d598138e6532fb984ecda933726ae874575590b7b7ae1ec0d30186464f2bed865ee96e6e662fc33068a935d8 -DIST thunderbird-140.7.1esr-bg.xpi 539806 BLAKE2B 79901297f40b2aa2fb00849de7958ee193818e164831642d7533d169cf69f16a346c2f9e8979cdf69742d5ebaed480e68e1daa844bb71eef8d62f8dbee7329ff SHA512 1c184737caca156ecb329b73a4c13d6d94a01a3817a69037ad1d0278b842c53301e34a0847cd5f1c6fb546e48f9fc850f88a294143c5c4e8767c6edf625b2e86 -DIST thunderbird-140.7.1esr-br.xpi 402746 BLAKE2B ab06242ec04f83a42848345957c44394233d209fb0a8b325c2a37151df876cf8460a5d0aa6514b7fffe61ed1fb9d8fe21716aae1ed86b0f071d6a3b988e4bb9f SHA512 359ad81f6f004a5093416b6ac384e3b357f67259bef02aafb6e9c630848f22a79f18ba48f50d5e9c7ac1aad8f1b12a7d7b54ef91769d42cc5eabf941eb2fc8d3 -DIST thunderbird-140.7.1esr-ca.xpi 440586 BLAKE2B c5a27936f323ea60a1d3e123c55406c8d66929f2e5951491a6ef8c853b991f4d255f015a566580decfe2ceaf6b5ad43afc737ee80b7af6bb0b0b80f40200a74e SHA512 06f5da1167ab3a8ccddcad2d21b8f81b9997f2e8dae89d3ed8c6fbcb667214dd2434c73347af35cf84272dd6798cec8f7f8fbbb0e57891feb50aec07b9104b70 -DIST thunderbird-140.7.1esr-cak.xpi 418022 BLAKE2B 1a746d1abe2ed5600935ae2a0b0383853530bc0819a7ef09126906d20995d61ba2d5a471768e64825dea68054d9e6ab8fba95b6cdf0ca601021205c529cd0ae2 SHA512 1d6d26297bd726dfbd92a8f6f5a90975ba93a931e348b51dd584a2ac43bce2709cf2f2f50de55b0a9df9120c9f00571a591dae1ffc3be78eef783254fb5e9799 -DIST thunderbird-140.7.1esr-cs.xpi 519507 BLAKE2B 76ec0d7ff72f9d0f1a00c13b046e4f2b80d9b91e0fc36634bcd1960763143cef01d3996a5368ed2444f1708156ff8299afeca2baf5f123a283f61cf4082c80e2 SHA512 a6e342d41fd0966b6c5c7c617060f2ab84fce83d6d44f4ab87870c880bc71afb237edca1dfa2d1ddff1f6479a93f4f32d447c942c9455491a06cb38fed95b0c4 -DIST thunderbird-140.7.1esr-cy.xpi 487650 BLAKE2B a756176f7336f9ab1ed5ebb20b851c75c39cfac0a733a79011e9c4e2e4732af2c94e4ddbf0e9960b0bd0e1f2d14b179f66b5ed8ea6e9db7a19fcb9cb00d8d0f5 SHA512 34dd65a3354de15fdc79d9faea0012af4850e9562f2a5373d5861634075b2a5fec35eb29231fa34de594fbae03872fd1372b240defe7d62677ae48f285f9ffb9 -DIST thunderbird-140.7.1esr-da.xpi 476623 BLAKE2B 713e99ba782ac68110a89c52dd55c076873ba995fdca82ace149aa6cfff31c5725f4be337238bfb8cc3e1955e263c3f086c915a269ef74dd8cd11d0ec42f2344 SHA512 901da0fea0121141557c27d0eed9f977e9ca30e7fd6aeb5e596c9b54ed60bc46721017fe1af2e3b662d2f734c4dfeb6d859ff052b8074a4892cd2f6d0d4bb9b1 -DIST thunderbird-140.7.1esr-de.xpi 504707 BLAKE2B 930debecde06b5a1105274a4c6ff30e44c2fa8d6cac8487d11ab0548db27eb7e36216eedcd0cc438ae1a00a16ba2319765866e1cc9a3f3baa7130024bfdfa7f3 SHA512 bf9c66d6be635e0c9dc8f226e35e39a3734a1f09084628d1b93d0ee384bef21eb6f5fd31e3fc4f94a29f298624cc3cfcfdadc7d4f4d6f981297f59b30b78019c -DIST thunderbird-140.7.1esr-dsb.xpi 517896 BLAKE2B 688b2f65aafa6936a59025590336a0644d40f187f6d1f2ad9edb24e85a05a55c1f3b80b70aef4a0bf072ce6268c8eeaac9c2ed8b803c74bfb24e736a97155a86 SHA512 fce79c0da3d1a19be375cecdbb7b841f7dad61000cd4de39026037b976df5c7a62bdfbafcc4472765de461e3ff2cd421474fdbf9c4e9f18173ce876673a2d3ea -DIST thunderbird-140.7.1esr-el.xpi 609031 BLAKE2B c8b36b53cc3e09e0767704b711286cd76ee151589e933d800d17e5f925b892d8759037a922b77973ee8371bb0900a524e4e1c563579902da8969b8f7b0e68489 SHA512 3ba28a9bb767002e65a77fc238105df4a9f88bbd7f78ba16fa8868a37ec7395a1be4f21f8964317f01ed262409c6f4b33ad3311c344746f58d2d68af334006e2 -DIST thunderbird-140.7.1esr-en-CA.xpi 452240 BLAKE2B 0272290aba2abf89b4635f090d93e517845a6edced387840acd4c1e4f561776c14bbdb9a2145ef47e799750c3f3bd130332548880582ca7c01bc67fd0178e406 SHA512 e99490eef0ee000c595d251ea0197065c94406a699830981d7c38c6a3b724ab8e49d8a859c8199cdde92311897b4ba9de6cdcb4cb163a72b46c1d835faf3ce36 -DIST thunderbird-140.7.1esr-en-GB.xpi 452068 BLAKE2B f93ff81a0de82e824683568822cca1450b578f02a1738ae2bbed3e1e16184056b131007999fdbdb458e26a7830a473bc463b411b69e398dbd8906087203fade5 SHA512 d0e84a698cb764c57738da43e99993add6d14573545c5dd0bc2f42384d78f5e4321f477db7f5843c6795d8acc0b0a2b885a12ceb5f52650f5a60b5ed98719042 -DIST thunderbird-140.7.1esr-es-AR.xpi 495268 BLAKE2B ae75f109a6e2afd19c769a8fd33e6a4e4a88efd23c3c6f899994d8187a09f1a2338afc72dc229b6fa22de01892efb8f0fa1aeaa7f1dad223cfa783601dc553fe SHA512 34a50c3354c2f25065a66daf03d8d9592bb096977fe7b51b6ca844a75e0bdb24d0177a0048827f200c9386a7e0acbc92f0b0f898943d52a3570264dc9696798f -DIST thunderbird-140.7.1esr-es-ES.xpi 497285 BLAKE2B 1dcc57c72a951fd457a0ea6d80be2dccb61f2b53eebce836c1fe3465ccee06132536e4fafe6f933beed2629d038c1b6b601db5fb32d5a5b75f152d546a35da89 SHA512 31baaa613d79faf2b592883b7fdd4db0a14e6cdb12ab255faa001dc821ffb2a12be7ffe796bea6409dfde59a5aff43b749b4ccf26b83e025a4931fdd44de0b06 -DIST thunderbird-140.7.1esr-es-MX.xpi 490411 BLAKE2B 5368ca3b31fee038ee6eefdff711b9fc0d8690e4377d89c0afd3f7c2b871f33a09c904d9c5b482c8394fd15ad43ec6b81120572d28ec5812b133ce241cc665fe SHA512 a9ccd7e4eb8901eaa556ce9427226d2c861baf2f14b8d7d30c6caf9dad0a9d12ae2571f826af5de58b94464e972b2eb240ed62906b67763d0c823657ed0372f3 -DIST thunderbird-140.7.1esr-et.xpi 443619 BLAKE2B fedc14ad8e46dbde85a296fa5951ae5626a6acb6609220f72d6ff73cadc0cd94ba4bad66251feada063c955bfa534fd006602151b0e595ccea67e47437ecb210 SHA512 09651981d1746142f3b1dafca4ec8b5e6ad94eff8c15bc8153478e946d9d0270b7304e69371aeeee61b8d426d8144a7430e80898fa64a85fb70849fb565c7147 -DIST thunderbird-140.7.1esr-eu.xpi 473924 BLAKE2B 859d50d56c933cfa9dcb90e991800be09652a666deb4dd84e7da44b59b37999c91ce78ace3852e84f5f27922f8ff5c23e58a593dfd7f11a11f23b6a959cb635e SHA512 094d65fde40205fe6c3d78f86e0a5a253ac32cdb01801a09ec7ded0a60504d424d33045779ea2db36d1d25fade754ab6679fb2d2af996b353e327df915d14885 -DIST thunderbird-140.7.1esr-fi.xpi 475611 BLAKE2B d5a91b869f310ef901e6ae0986eb63a05f7b3ac84cd587dc1025c7185f7ef5866abfa806daab42ad65212f3872bb3e10999881331e661bc3129945cddb747bbb SHA512 370c9e1ed89428fca369c15636f513c8473a5f60db99de93e2777cccb59c0a2ab8bdad5c694557db021841181b514c5e1e4b009dabf09b9746833ceb3fc6f4da -DIST thunderbird-140.7.1esr-fr.xpi 508319 BLAKE2B 8a4451311f65890f9513efa1bb65f115d2001c6471aecd32a400ee54dfff380a6277360f2851fb3affbc242c2579773d38b320989db8b35cfe2dd97166a87fae SHA512 78fcd20d2bd97e1934ee90e470dd084177cb5f209c5eeee2077ea2e5f1e20a048eb2d32d736e8185dc556cc868287dbff3547c874733343a7da1730eb645ac1d -DIST thunderbird-140.7.1esr-fy-NL.xpi 490685 BLAKE2B f0ce1d9506b5880ef63979c214f2aae3f83a85b2d191725507feb8293f57b76c05c540cc56d8f0022676b6757dd161124f58d8341288ccf220f685d20c9e7a3c SHA512 dd291454552b2adb703f8f780e806488883a4bc0be44275f975e93d69b33f36ad288faa3c8d27dee00002ccb49f16dcaced47916996f9c7173d25dced205c595 -DIST thunderbird-140.7.1esr-ga-IE.xpi 376747 BLAKE2B 748db7083f64fe1b2da62d49f951308cd5acf429d33a07cb8d1e27f8a8e6deb7f9bf8fab0e804c8a0c4d350038c9fc5e5a8714d14b6c4bd2146458f39b552588 SHA512 2083a46a03b8b015e46047c10ca9ae998de597c05dff8ed48a85f4e94e8c4897c1975ab5cad764f5e58b22cf230ad0eeb67c2629dd09fecac440bd1913059cd6 -DIST thunderbird-140.7.1esr-gd.xpi 461960 BLAKE2B 5bee2ab73e9eb0f2e0f5114088d0191472070ce80c6653a43e4ad6d6f701eb160a19329aedf0b6ce36f69499e02b548a8a435826d160d151a2c7510ecbe4e669 SHA512 32879ede0324f88329b195e7cd058306e8b5712065d64314939761f4fd923eb3829bd754a3e23ebaa4c2170f15206e8fb387a8478fa2e2f48d2a4f3682acd586 -DIST thunderbird-140.7.1esr-gl.xpi 489346 BLAKE2B 311443c2acbb5f889642ca88877574866632890698a660760d56437f5e2714cc36f2b6351fedf7f3a83eded5b763603f6d29be84328b631da664aa9b085d82fd SHA512 eb8f9d87d096941c182203f207607dd3d417999b63947f38c16f13e4f32bd86fb39f9e333299704eb2266465fbe7f82b1caead225e4457cdf55e7168c0801270 -DIST thunderbird-140.7.1esr-he.xpi 443587 BLAKE2B cea8bbe4af910a89b9726e52e3aec3d3d9266eab04348f19d102e72c43eb8e27ca2d8d3cf35354ede7272e75c3d6e6b3777b3d9f214ae78018b0749b95973035 SHA512 eb6b1b045785e7930c5d97d59bb027ec0e5f1b1ae05ddabc0761a608d8fafb3579e3b09395646ad8c864fb2dab4afe82295e4136d9edbe59736083c4d94f4fe6 -DIST thunderbird-140.7.1esr-hr.xpi 470679 BLAKE2B 42e67534130b5e37382465f52ab1371e19b242dab323e5c64888cd0afaadd9fd221c0ed7d8fceb9e56a99cd3eaa24645daeb67709e3d9913f315e29fd60ed929 SHA512 31ba46b9edc9f5598c5b77497ee870324fdcc7fbfbc04b279736d3001da15b64ff1a7d572c7c1d229a8c988b26342ecf98f5fe50063022753f36cdb683a325cf -DIST thunderbird-140.7.1esr-hsb.xpi 514933 BLAKE2B 442de05229125bb5004cd7d39e5f8a3392c6dbe4f4298d27181fb1f15d87dbae65fb2fcdb7df30d53278b05b440a2f1e27d8c8b8a5929f4feef3e58fe2bfea1c SHA512 bd70ecf6a9b0b5edad6e4957cb0253fede949c91ea875587454fb06525f5bdaef8e573e8daf35b9cc3ef8b5a9d1dedb643115d7ed746b7f933e11bfb50c50ff1 -DIST thunderbird-140.7.1esr-hu.xpi 517545 BLAKE2B d6531e37225594ddf459aeb040bc37e01010aa8ef9e715d75d30142e5ea582a5612b5d687e66e4d7b060ed9333ea9d0697adf981e561f01d3a79beaae2f4ceff SHA512 e7b51d04bf78bf6ace4cb5294b36c73f951db1eb552bf44b85b58ba7da4a76c1f6b9687ff9ce0c27506ac3dd76fec6eaaf575d9226bfcd0ca0b7c9da7861a481 -DIST thunderbird-140.7.1esr-id.xpi 467001 BLAKE2B 8c26c04c4e05fade83f49261f2a9670bb04e354a036d032b483ce79950191c2a740355dcd97769c57827a38977abe8da963f73b3af57a06256f0c0fd7559d2a8 SHA512 180724765f0360e2223a058191bdc43b14f09eeb47d83318bbb8220cfed0a37a70b44d432a9fed047fb8b170e4a59f137f255f22eeb81252deb28627f5690b11 -DIST thunderbird-140.7.1esr-is.xpi 482738 BLAKE2B 316f7e437f98528dd43b1f3cc373027360950818771d2aa072ef91a67daf054ec7039b11c62fb99f62d3f781587b06ed886f8a55b19ac5219c48b07ab40f5d1e SHA512 ef20b36c5ed21387746b5d50afaca0c035b401673083728e19090dd78d1c471f3bb6223f1609b863abcc96542d004e4edbe2be681c61153647226e6d0842dd01 -DIST thunderbird-140.7.1esr-it.xpi 488504 BLAKE2B 1a928e185f6cf5253f16c9b145d61685fc4fc9aa098f8946710235dea57f73e2041282e40bed01e0705770b41c2efe2dd74b42ac8cb2d442a3c5005e312b7199 SHA512 e692076dcbd84a7b97fe0204226eb7eb5f3995c9515f0f7cd19aff1ffefdba3e20cfb468a4eb3dd6358c9e0c75811b3c59d3be26556ea36de9f0b2db3f6a515b -DIST thunderbird-140.7.1esr-ja.xpi 539194 BLAKE2B bd80f8ac079af6972d0c79ce7d728ca867ffa9a4259261949e8452a353586c7da5ce281cf78a3b92367ea47a6f8dafc4a2c7e4ce64d27f9b6e80086c2fc7f52a SHA512 1a00ddfb2c12162e88133bf84b5c390cff9027d62d9186c4393c73170910b533b8660737b25e0e122e0d484adce21e4f9b99d456ba57620f9fa6b09e49a904b3 -DIST thunderbird-140.7.1esr-ka.xpi 554772 BLAKE2B 2637ce859b531931a09aa234510a4c3419480e3ae3775d5bd5d058c95b62753883abedfb234e2e30a7d32bd6b4a970409fe55de999e346f1d2ea1fa6e9610024 SHA512 830ba7eba2bfd29b6a04ed98c8a5b0f38f4e27e2bd39d20a0a0ebe95132fe0611859802617d040a391ff0369df7b49ea637f53063735d4cf8cacb54086c8ef9e -DIST thunderbird-140.7.1esr-kab.xpi 470497 BLAKE2B 34ab5c361a8be1646216c175de154e88618380028c1d07ae282d0362c645c3de19a6d03e8bc8a4edef24286b8fbb7f01b8e24908503b0f4c729c89991f0a7420 SHA512 2aec3abf6a89a2f30f0b7783fcd872dcd4201e337d144556f919526ade080f0380bd3e07e4dbbfaaecec331ecf901ed20dca8f76de870dc75ae0657e09737338 -DIST thunderbird-140.7.1esr-kk.xpi 573880 BLAKE2B 19713afcf2ef1b6f04b92a83039cb0c5608c903cbed06ad4cff67599b29cd7078ffa417ed144c7fe844d63867d58baf3115e842d7861fbff70dd52da3dd6f494 SHA512 e32315e637f81e215a3b188d2e718733440846cc635b87aefba6f1b7b7c33a161f331636e40d751712198c5db87fcd2a18f9e7a2724f04a5995ac0e920b6af2c -DIST thunderbird-140.7.1esr-ko.xpi 515591 BLAKE2B fe470ead6691992a40fe3e2dc39f65555e080da0190cd57b46d9510f1fb618cfe426fd37c2230c394438007774a5a2bb40273bf091199a32301cd5fed231fc5c SHA512 fc1127ab2c17477f03dda57885388477cd4a2aad3de9db4f5030b0cb840acafd2d65d6280c39711727d83a42c4b05bede0d13ffaef856ec2cf09eeb481cf2ee8 -DIST thunderbird-140.7.1esr-lt.xpi 453436 BLAKE2B 94037a9358fc93e6949dbd7ab0c92aa63c3b8de6c64e0db8a3a21255f29bfd2c5bebafe441ac083975a0036ab85e5a70d908d52b7f2417ce6d0f603e17fd12af SHA512 818b4be948c950d84ae99d4c96a4a75845165030a06529ef382cb1d471e9ffc2326dffa9126e10d1124e91d9d1e3e3700b4014984c1ffa9ef9abfc2e393bd584 -DIST thunderbird-140.7.1esr-lv.xpi 392816 BLAKE2B 432c5ffc09d62152402e8df06b596c1a5b56d3c9bdf1462dc0237c8d133e433281d713551aa22b01a4efc48661576d6a9b8ec644dccd091faffc933e90a0e2be SHA512 40d2f7e5a74540b6037cf37b5de17b5e0a917d2b93d3405a6b5aa1a073f8ab51a888f2dce306710eb887e54a02c16bc3fd8733fabe75f0e8d017738d71a2cad8 -DIST thunderbird-140.7.1esr-ms.xpi 352181 BLAKE2B fd78a990a23c81d9060cd181173e693a336dad0e00c23ea059e6be4517b0e5a022d9006d164d1e31b22877fed292256c419204c14dca134ba341e94dc2c1b102 SHA512 4362aba6a7f0eb5d24d080385ccd167641a42f26893483fbf1ce995e34dcf6bb16221d54ff29e67c47b22625005d9c46d28d5613634923725bf55c3d6f7af756 -DIST thunderbird-140.7.1esr-nb-NO.xpi 476137 BLAKE2B 267fb95e778949769a8796707ca648e685173ef0859fa66e79fe6fab83cd0758c4cba62c8d7d72a0c280144b64a63cab65b543a142dcbfcc340dae2098fc9752 SHA512 33643b016fe14c657e6baa9f9e0091ee59d9955ddabd879a5f1ea9fe86e5872104122005522d1fecb22dc986e1040212ee78f81d404524616f0b23d26dd2c5c5 -DIST thunderbird-140.7.1esr-nl.xpi 482123 BLAKE2B 2614ae08b9df9a70fdef04fc22fe4687668efc86ab637a84b8353b9f0d89d8e0914b8973655748561bfd22429ff1594ffc93ee57b05a272b4c553d32ea42a984 SHA512 61aa51037bccf5fadc721ca924d6784c1c3873e67dad6d23c1a6e550e3bc461c776b206b169d99e76910e8622b53e74729a0dfcfaeca41a231cd70370a799cc0 -DIST thunderbird-140.7.1esr-nn-NO.xpi 479759 BLAKE2B 55af94516c4cfdb463ffbb4866469308fcfe73896a6116c9d232e73b6e00f9a31f17035441c720943b6ec49cbd15884d8c8da2844f9f9d4fbcb6c7ce8edf7a6f SHA512 796762e0031abf93a7018498edf662bcfc5c267c488aad36306f00d2ad68d783148729ffc0c538f5fc0b26798d7acdf12297d34da286df03161c020c0b87ba91 -DIST thunderbird-140.7.1esr-pa-IN.xpi 435423 BLAKE2B 288582f88933be8e97d0dc454bad7a097d34b2aa50ad131559f403db328ed1b0fca44c0c3efce2c748d41b5ad2b3b1362f26b89211b9900c28d133ce01ce8f0c SHA512 a5a4edf82346ebb42356d24df85b3154c62df0990e58646f87326681a3c89aadce4cf1328907662151ed2402915434185bd4104242e4ab8cf4025ca70f00bf51 -DIST thunderbird-140.7.1esr-pl.xpi 515613 BLAKE2B 524ccacfa8e6300bb50d30eac9099f7b431beea81ba90a3493e0c294d38eb252cb10b6abca7023e2c159799d62ed5e35eb82dedfc8c4cfc98f8f38683e643a3f SHA512 3ce5211099c61f8cfb54c737c900ea29093b943ddd7fb57f7fbef1b0ccd53c406cf8ea33092888242e571d55fa9ec76ffd103418a37d762573402231625b1b78 -DIST thunderbird-140.7.1esr-pt-BR.xpi 490163 BLAKE2B ea02e320f2e115848208771cafefa4e6b127645ffdb3efd0dbb89fa69c3dc43bc9defaf4253b708a9d8a8f0be381c9b949ddb7452631a9cca5948f5e66041bd2 SHA512 8d24759af63db8e4d7fe35e100f780bf3c5ea3f0ebf093b1d9e9f27f536891fd21e56105a36f3b6a375588250a96afe21440be923dd2cb35cc0fd512270169db -DIST thunderbird-140.7.1esr-pt-PT.xpi 492525 BLAKE2B cb1b9a2186705c5e6056c8bb45b7360aad3fe75b48a998e78bf4d516457f4e5ae7a2907e22f7c9c071a7f4c1abf5325ab6dc270e3a65bbe9737c345cc089cb9e SHA512 28b23077b9fde3767f184174665446953188b46966dd0712e83ca9557e8eefde9e0390f1d8b5126d8dd9e6c804d7f345f8b640ee6dee5a475ce342d5db863b70 -DIST thunderbird-140.7.1esr-rm.xpi 487884 BLAKE2B 4273b2c316b0064172b2a7808363a71186561d2f9e7f9659437446d556b42589ee47ca2645e5fedcc74cc47ebe1a5fcf3e94a7fae7c342745424e4988c8d1a5e SHA512 9d020415fc60c5ba7cfae76a9d742041afed7ac04806a957f45517f4d0b0d1a4956070a90f078a64749669561e007ca94cbd0a15bca50b3ed9ee48497c48c14d -DIST thunderbird-140.7.1esr-ro.xpi 501093 BLAKE2B 00096fc20373c5a468f035cac35b1943e15be6b34141ebf5104cf462354e3c0a9d439deaf3412f6b1d1e23493424a88a9ca5b290216b2feacff4632e89839fea SHA512 ff39e041f95739df4db6b10b595d6195ef600ab752ea57696570b40a5ccc4c20be69b829e1cf34bf6cb85cd4d4cd5e140f5b55408727c5d6be5cdad82ece1bc9 -DIST thunderbird-140.7.1esr-ru.xpi 593284 BLAKE2B 22d638dce75638b0202d2baba36462ed171ae99ce95b560eeec0ce45ca0479140924c61dc330e22ea73b6e88aa15ce8b9e6236e670f5575bd630d038f6f8d394 SHA512 b1d2b573311b7733b39b3edb112f8a2d67bdeb7c19eaeb252d01dd7910e6e73bf01e953ecd8ec2f395043e3a69cea9f07624053d04901f0b3b89447c431735dd -DIST thunderbird-140.7.1esr-sk.xpi 519388 BLAKE2B 56846eef79500cd665fa90b6dadb6e2e22708fb6d671307a1983a3d5cd263682741d6136a36cad68a16d8c60332ff980fa11e3c76ffbf7c803eb065dc03edb9e SHA512 80ca9351edb51522106ac98fb9a8fbfd4d358aa4cffce9d9cd2c4ffe5c2ad62751a89a30943cbb51c19cb4143a3d11f70c0fe876093372facdb5e47d6d35296a -DIST thunderbird-140.7.1esr-sl.xpi 485960 BLAKE2B 79614ca391859477c280cce3605093b9a6521e90bd6a84b607316399ec99c025b2896aa1ae3e979907900996ffc5138f2dc232fa6be7c9644b936b7d8d70f143 SHA512 ead48a32a3c6c6d76f8a6447fac483baadbf11deec9f5008e8c28c01665235b373badf12868757f0084f9a992bcea950d39d0a631601773dcedefabe084751e7 -DIST thunderbird-140.7.1esr-sq.xpi 506267 BLAKE2B 66aa95a370b78cf39430d7de9dc09e0f7bd2e5bd6c3cef8cb955e4fd44d2142e2a476e8205b922e79e559fd88c78a735803caa9855fa1afdb82343f24b486e11 SHA512 c9994ffe66bb55e05026ea7cbe5ce99ec7373045f5443cd0b3289055044e74cf41ffde2a7619cc980be98f2e6b6733d95297a3ff8261eb371c3fa5defa933735 -DIST thunderbird-140.7.1esr-sr.xpi 495990 BLAKE2B 498d3d69802a474693d09407e1c12d6be42edb27f180a872ce8d00a14712a1b9abaf025a794e4c27bdea281bbf0662e06810c170e834b067154b374bb6c96c50 SHA512 4c79da087e43eeb3c5eea8995b6a89cd6425c439729c5e387b03d91621b3558e046c375b30a131f76050b49abb1574414b14de319dceff4f2b6a0e90ae5ba725 -DIST thunderbird-140.7.1esr-sv-SE.xpi 484419 BLAKE2B ecc20de54fc564d3653751189a3fcb65ab102f24be815485bd813a713b4ceff83b995d7524e309ef5c4eb885540086ec5f9fb06e51a47f9e66b99e04e6e7dc83 SHA512 3f0c760aff6ee86770393bc6acc638b435b8aa440558182fb34fd00a36487c5584fa9e9638e00e3e533f4729cd26f379a629c8fc491083c3652387c86c29238b -DIST thunderbird-140.7.1esr-th.xpi 567947 BLAKE2B 5a5b2e1dad99fc2be33b21d69631cbf9492640aa241ed045da7c9c2876696db42d7b910318006b9d3669cbae39f8b89226a65bba186429d5e169319aa7df48d9 SHA512 956be0d0e77daf27004cd534ea1023cc6ffbb9293020a9954ea8c9b2e3ad5e7e487a66b1f672c8214b2a7a8e0e22b1a5bd1f10516cca34009021db82dae6cd01 -DIST thunderbird-140.7.1esr-tr.xpi 496182 BLAKE2B 246a72e9995159fcc0fd00c73faefd503b8531eaa2f5f6097d44736e4591eb6f1a7fee5facb196506f8d487d58318c7c0f6f085b3f707fd43d8c36941fc41f6e SHA512 3101fd0b741ad2c798a6e83d73486b284ed25856728c704e920a350d9d3c68bc0b9257cce8975f829b1dcd698455904d5c33c83d0f3d8dac04f188596d20f710 -DIST thunderbird-140.7.1esr-uk.xpi 582152 BLAKE2B 288c751d0c5be0f38ebc5f4232b8dab141fa78d9f57ce1b936a73def19c4647dd83de5d9a4dc4c844650aac022470f60028a8a3d3b121530e2ab39bb5a0f5066 SHA512 c9c41aa20848d0d73668336737f2286755b66a7b09649f105c819377466bad01de992b712a7f2df2b122dfc931d259610fad9be387b623ae91a2cd8598522c77 -DIST thunderbird-140.7.1esr-uz.xpi 355267 BLAKE2B 93bb15bd61705ab9898cb41e0c841f44aa1a80c7ca4d0fbea4f531b47b35cfb5d3aead1fbd60b8f0dd743bda8dd60aee749a1b43e937baea3c73306d1f3d9b97 SHA512 4e748b9d359c874351fc1be7688c5170014bb359a6b9ddc6f0a6e27d12be215b9628ee3e6d3e5723b3ba4b7803e4f167c3dcc12209e602f5c9767c37e7f85695 -DIST thunderbird-140.7.1esr-vi.xpi 518884 BLAKE2B 626280769bafcdf9ec0a25ddcee15ac74ace71e0b6232fafb3efe1a6a5ba94c01b9bba7b42683f34fe090056908384fa91dfdbec0038f041a84de472514ba2d7 SHA512 e5dc3b65d0729b82f29c67b05b4e5c35b05c9bd221eaf207c8050097cb5a61f36f6e6b7f004683354520eecf7e77732b4467acecb0454fa5602c0f268c02aafa -DIST thunderbird-140.7.1esr-zh-CN.xpi 507840 BLAKE2B 44a04f6586695c9e098073d1f5f74ca766eb5bcee72063392ebe55e7ceb069eafe6502dc7e683d51bf2a500a770c4ae1bf6a75eec31ab2d7d536ef939b5b72ca SHA512 ca0fa3abed86be1ab6edab2e5431668dbac332143521cbeaa7ca5edfc561a46bcf1e238f76778f62916c9a68b7523ed279e2bb925565ae0bb671cdaf63a21bb2 -DIST thunderbird-140.7.1esr-zh-TW.xpi 511431 BLAKE2B fc9043dd3e6598d31a32aa1890c1eaad03358ed34b80fe3452274f41e839b5b084b524a04f1768e8229993675a26411e36388baaf4925d8b9f854e1ca2084af1 SHA512 814ce81f00b74ea8c7ddc26b0afa35a3a45516cb7ed6715b36d2aaee6da415dc3dd2d4dcdf2e5e857d6889c0b56bebc9808e54a558384a9a628d209374c3fb65 -DIST thunderbird-146.0-af.xpi 312102 BLAKE2B 1002d405b855ab92e382ac171d078a8cfb1d40c502d71865906c1a29e1d3e5bc3b5dd5dd3a623f769dd8617872361808a64aff7731e9ba476a2fa6fde2e3628f SHA512 21a4f2c6241d9252cad85b8a5a2111afb749dfb791abaa1f505ac433e4575247e7b1f3a47663f717e8c791f3c084b43bbb52312dd75787d7b0badbe243ff56b7 -DIST thunderbird-146.0-ar.xpi 433915 BLAKE2B 0fabb128da8e4685f489a928c38437bdb668a0c7d1c15b94c68718fc1df26303a5cf02d0d722b5ecc74b9a1521ca394941235647b8e6469825f3f13e3b57d6d1 SHA512 27e9fffe05fc2e52b902cf52399847d6f313dfb6cf7326e4a5ed8cdde55cf87694f39ceae38d5c7b680ede2b3bb1b5d7685df0e8751dcd8497ea0abea4451159 -DIST thunderbird-146.0-ast.xpi 336128 BLAKE2B 92491e55d73bcb204a23aa283d3b16d43fa0038bb24c6fcb0308d2c1d2d3017802995ff14a617eb9c5d5869943afc31ba1c96aa06eac2dff3989e9e41c2c9a7b SHA512 f74087a0cebf61e8dd5fc86d31ad1c9786cde50f312f40664e247a478e7a1f4ddbe547af529e1ca58cffa21e711b4ec6d61903af62d306394e490e9353486b5b -DIST thunderbird-146.0-be.xpi 521690 BLAKE2B dda1c10cee0b3a5e730b95db97381ee9c75e803694e3298ed4454893e3b68b47f780a7e76dfee0b7dedd8b3805c78f82fa1bd4992f88ad5962ea79c35ce5fae2 SHA512 f9ed3b7bfb4132debb512a39d625fa2e229ecfd8eda2ae2217d6acc1f7732cb9c5397b6793ca6140db772261e91dc85654edb80cbb6f6f1980b99d32e3c1c19b -DIST thunderbird-146.0-bg.xpi 542825 BLAKE2B 5f858dcec2985814ed2cf79eee8e1dbf30db9f52571fbbd3f373de27f0cbd215429fb573ee57f911ad74c60452f535d4873c375e137b8332a0ae8270f75a3e04 SHA512 d9dd3e044d4a76617e67128fbb4aceeeb41a7e4b45b63e4f837f5931ee10152cdb16c15059a0326c6a99ebe8043f870d5fa5029754c0ef67232f6696cfbebc07 -DIST thunderbird-146.0-br.xpi 400962 BLAKE2B 1ef8a29fd5c2b67dfce57112cbf32dc5b9a34a89849d4e4f7a58813cb116ede439c2023b11fbeaa08cfe169c9c4ee78e1b8016c705385515437e5012cb8c8a67 SHA512 bec10af90a6690252c1e1b8d7f44cd3184854038bd6184739ce56ec14b4995cddad8a6e7cf7eabe533ddf8c95e530a3118f782d1399aab955e15f48dbdf90839 -DIST thunderbird-146.0-ca.xpi 438173 BLAKE2B cd6058fc10e1cee3f6a41b505456b4c430d0e6e5cd68aee928dfad07cb9fb8e014cb3bb45239482d9718a2d38820c6d5898bea26337298af8ea468488f9561d9 SHA512 7434ff610ff8bd9f7c6196a89e870644b21d21b95f01c85594d2c8e9949491734f4d54fd19f7fb55022485d7cd3b802a1a3ffc94edf230f2a3c9dcbe75c4337e -DIST thunderbird-146.0-cak.xpi 414590 BLAKE2B b466b6591943f29fb2005deee82edae79983e15d8f44f020811cb29ee48ed955f00da058b1f36236413a52b07070336a1c3400e620c681c2726010f2dce5e448 SHA512 70c53a5b0df279936c1cd06f38f3091f45b46d4c1b3eea6cdb6c40ba75c69e8db3271ae0cacd7409facd424b64c90d4aa5efc1b970848005e05fa981b3f1ecd9 -DIST thunderbird-146.0-cs.xpi 526516 BLAKE2B 0e5d78d7392d30ec41a44b7ae12a57238a96c6ea2cc95df0267979cf4e138fd2f05b72fc43b558f7d3f0288fdc8d5ebca7eab54d439354e17d24b0b7b219982e SHA512 948b359cc7fad2e15b9cc2efc2cf61f265fb9c82b22d936557a23ff356d2d69ef5464bd69ddfced832126f391f7f97017bbe81236aec531b54fbf201a2c706a8 -DIST thunderbird-146.0-cy.xpi 494121 BLAKE2B 1d87589ca9c9ccc18c76f0fd708af430c052fd80961710dff8bc32a6843ae817bdf3d676f0fa323afbf9631f0c4a1c36f6086cd164cad705cfbe3b50a75e04ea SHA512 120e242690bbe84373990772524e1c2757ded8a98ddd48872ba26dfcab3a6793c9dafd46186e2374835c22ef851e9d96edbd2f14fa5ec72b6480e701333cb984 -DIST thunderbird-146.0-da.xpi 482468 BLAKE2B f50c1ca770825ea606e7d03d03551efaac25c7669e375719a1e032ef6674b9bedc38238224688ce2ebfa80ae4f4d8f13f8c5173ad2c9b3ba2a7de3c3302bcc35 SHA512 c9945c1eeed2e436ac7965c8541b45f71c6902a26a2abf28132487c490b8e01d050064d7a1563188baf91fd2047b3dc9af697f9bdd62312adb379a4962dee564 -DIST thunderbird-146.0-de.xpi 511098 BLAKE2B 38468eef0972ac7e2448ac79d72278557615482f4c0dc6b302247ab03ce5e3ffd711fa303bb2a1122b2b63a44dd676ae00350983b6807bfe76b95a7368e9f1d3 SHA512 5adc0b33d0a1a821a28e1aa4f49c40c373b0631a888f2591cac128107e357a6dc2b4549249c30a43653e1f32bb2dd4446f28292241d4368e37ffe4e53b19f683 -DIST thunderbird-146.0-dsb.xpi 524185 BLAKE2B 8727d61bb157baf2a5efaf60f8787e8b6969995193a65688b82d646b1f5d836966d9ed81c9a80e0bb5fd46e4c442e234856d579f4869599fc92cbb69a323886d SHA512 11be83881b9db84cae559e23e58ea7f7be74a768646feb496b6d85a1485ce637e918b9cb48657e1e3d37ccd2eeb1abc9eca3ca6f176dd7155dfdc0722c9fd619 -DIST thunderbird-146.0-el.xpi 615879 BLAKE2B 1f54f9a1e82415c22c25f500437cffcb63a2c759283c3fa5525c14ff17cb66d046d8c6f6221939501fd0e9d5dd75b62d44fcd641e9e43d96deebc1cc60d76110 SHA512 d59c43880c480fd3a13ef670bbc31debb499e24f93d08d345d42dc20b8ba1f76a5d0169a4630e2a9ded0ae713b306c36710fcdf0e97be841aebcf97b3a24fa60 -DIST thunderbird-146.0-en-CA.xpi 457745 BLAKE2B f82ab368e48b2369feedd9aaa31fb261e9a77a3e66314e760a58b30ff76d31a07f88b6ed60a681923c5053afdee80c7a9834cbc2fd6cfcf854a65413cb8bba69 SHA512 149ba6d2654f24fec835eba3c45880a590b8293796a988b0c04e40401261b167337637d80f7253d10923aeebca1fabff8815ff4404b952330c375cc5ac037643 -DIST thunderbird-146.0-en-GB.xpi 457595 BLAKE2B b83ce023e0d94c3d8a0e22f87053c72a1dfefda7a7f73fae00d4ca925652d8abbfa0530f0f3e7aa540a1088d23b87448636cd8165b3f5aa20d9198b3d020a768 SHA512 a7a6ec041d9e733d3b8184d92b70c34d7900a974612e3c394eac837720ccca12bd6f3b6d0d6c03904f215c7163d319d12b1ea1c391b64e3c3354f07312c3bbef -DIST thunderbird-146.0-es-AR.xpi 501279 BLAKE2B e82be8627811e903427b840f84d858fbe3702d4a06a79ca7817a7e3c048c17faa260d1e2d9fcfbb4ac06bccde625a6f79d1711c5e68e9188613cecfbb2384281 SHA512 972570e0cbcc6878672a84b321ef6e983c7ff5f1a1506cb78274e04b4cd5802f52d6fffefe1abdc399795df3299c86866ee06574198b0af0ecea79dc2e7a0b72 -DIST thunderbird-146.0-es-ES.xpi 503404 BLAKE2B d81408db4d3839c38b1004a48f6770af527042a428cb4088a6cdfe56d55ddee407da85dede404bd6684447ea6fc9eb938ebaae6e8cbd41e2a033983fa723c9a1 SHA512 ccdf469b374e94dbe41a99224502552d6a6ad1bd1188d9597afa60ca4c4a3c59d22edfe698edea7d79ea65d1cc58f834d8d173439528bd5ae355be4166de3aa3 -DIST thunderbird-146.0-es-MX.xpi 489583 BLAKE2B dc27c406043e5d55f9547abc4977712d358834c783032d22345ff5f2042fc56910ca636c88072615ef21b22e253b50d346121fc809eca2cffedb15323a4b51e9 SHA512 3979018f7a1e35ca66974b3ed908fbbf013f0ecc6ab9228ef7376c5a7cb92bc6d583360f62ab3fedd0e12375a014512f86abc6468d79ee379a2f7242a6ed66a4 -DIST thunderbird-146.0-et.xpi 441172 BLAKE2B 1caeaeb4778c24dbb64aa820f3d4386f349f5511daad6acd321bb658eec3616c5a08b4f0e50dc5d57ea2ac9c07f5d16308be78f476bc0c1c34204c1bbd07307b SHA512 1d23564521da241d5eeb72f215577e8f2ea8ca427d71a74891543c4aec00676a9def0f2fd994baf60066ba4a184ed65695b937089d3ab1ea8e5b5ad2cccdc74a -DIST thunderbird-146.0-eu.xpi 475559 BLAKE2B 02a4e5a104378161a366befd0942bf8ada329a30b6a46571819b668b695f51a64c1381366f730be9c94e682700409898a9939bac9ddfda1cbb3d82fa087a6e98 SHA512 c36b15cde4baeee6f50f1f273f5a801e23078dd7aeab142d155c94b287f53270148a1ec7ae6ec903a3bbc14637acae20d93e8900f14a5549a70a6c05c4b5b7c2 -DIST thunderbird-146.0-fi.xpi 478477 BLAKE2B 38ac61c59f7c931391ac175249252dbbb2778ee3d47ce1be6ef77d55776b04cc6fd1aab104fa19b49e4149480d43ad1fa4dab008fa229471439e3a139f171c98 SHA512 3fc6d16a6772605fbf8ce5b613fe26ab36682cb6dd0188a7738e84d9ef0749e0ea9cdd17535aa42eabaf456da04e737f8e81e3f60ec47db55e93677193534eeb -DIST thunderbird-146.0-fr.xpi 514482 BLAKE2B 96cf3f57d6eca0e2e508a7a2b36cdc836b29f62b791ff24a8da690a410fbfa045df2867ed894ffe31cb8c97a5f4fb386c0eb88056c313fa255534fe443cd0984 SHA512 24168737698f52075a42d8a5b6647913e53620993da80e3c292670c9e8d8e629692d85154980fc16064859602e02ddc9de39fd7e3691deebaf2d2d8693ebab5a -DIST thunderbird-146.0-fy-NL.xpi 496787 BLAKE2B 1c89befc44262843ea65186b21c24bf57af0a035726ef552349793235c2c596a23346a6f165e2959cff4ef77ca15b7b325f6aad7f06bb0983002b06f095ab8b1 SHA512 4cad0a5755425fe04df34e957a07188464e1b028faaca51be11c0157a21316506394ab5669a0b92e6c57e9fce7f879ff73773b64e665ff842858699f930fe1b9 -DIST thunderbird-146.0-ga-IE.xpi 374084 BLAKE2B fad967b7c40888bf2c9926857977a0520ca382f0c032a180e55238e4b7f4100130d663cf47811356070e85261fcc1bb710e7f27ffa8bf2cff4eac5e192b48108 SHA512 a0b230ce073681ea7bce0a2266fa7ec76d5ebed8d7f239299d653989ac903e15991ed0b0fa5c365641d8c73258e5fde63642393c1ca96a37bb64a2a0d587940a -DIST thunderbird-146.0-gd.xpi 459531 BLAKE2B d785a62adc934e35f7cd063dd6ed65e755234a8ddb341d7d4ef287349dcd0418f7ffb9e9cb209e29daedf1079c93c0fabd378610391db71db933f44c258440b5 SHA512 8711bbcd28bb6f8c46b2535ae1a412ca1092711abb7125f5d1faf88ea73b07d79f17583a30ac7392357ba77814e37827f3abc1f539499a5fbe4c8bc2f4a36b33 -DIST thunderbird-146.0-gl.xpi 488846 BLAKE2B b089c22a54ea5a6a55995e99bc2eb33281d405e7a1b9914b54c1c8777c91ec936a9504e895eeb945dbaadd10e292701dddfba1551aa429738d297469d46a6106 SHA512 d58a782cf0a40050c4b6760df3e5e7f77f54a02020f09ca7facebc50c5aaea57758dd07822c0ab41abec34575929048d68f1a2f61f730b362ad792720b0911f6 -DIST thunderbird-146.0-he.xpi 441788 BLAKE2B e1dc67ecc0492b4ab5e0648dbb467ac3f13c0ed9051f0c6571bab70f50c5a971f3d4525fc78d2e5cdcba7cfc93ecabecdd177fe3e5894ea608d04acd456aefe4 SHA512 442cfb7a896c3e6e63459a87fbdf6e48f0e3a8ad6f5f48e07cb559643c511666e664a69a6f20fa61c5008890f0726af018fc35fb49674c4ee49ac55d7d2e3a39 -DIST thunderbird-146.0-hr.xpi 468249 BLAKE2B 775312eda877a5ffa5d430035ca3a65ebf754b69a93964be2673a523825fcd2048aff3dd0b300c19bf7104a72112ce5990cb09e3679e2fe2b7383858fd21449f SHA512 0f865d88ba6bcdcc72a5a7cdfb421d09fee70f6c229b749728b1070a82b79aa3f796529f0e41c411f5b40de4ef11b75938a19376b09ecf0ae1e35be73ded62fa -DIST thunderbird-146.0-hsb.xpi 521215 BLAKE2B 3fb6a77281197b79bf7ff918322d12362995b3a7c1dda88d266154cafc5ee574f02104e0a4edc3b8bf4715b96c9a4152a4869b8d836d15ab724e642f716d7529 SHA512 46c308ebd1fe6a5bc2a689ddec023459f841d0f39a7a965f407abfefd71e97a4ff5c14b504f8ae7564ca27f48b5333d80903e960f0894b2ca9326c1991ae450f -DIST thunderbird-146.0-hu.xpi 523851 BLAKE2B f495198422087174df82ae556dc88338a3d0fc5bce61debecb072025443c33f6b294412ea33f8561cd8f475bde87b9da3d52c6be84e6196889fb29d8b4f057c6 SHA512 95d784546ec7c03545452399fa63708f94bbd05cd70edd64407350100c4bd8818bc67c0171fdfb46733e19b96d3b688fdcb10ba3a76467c675afde301edc03bf -DIST thunderbird-146.0-id.xpi 468898 BLAKE2B f884d5816230621c67a812c654e43f5f8b4001fbbaffa9e784b68e96ec8e78ed996fb565167568b4afd3935c9340f5c8fbe64a4dd2caf3747b37eacd7d63effc SHA512 4929804fb207e119da915d54a62eaceba92a6dda57c2a85b98ac0b53999a9522aac26deecb29feb15d6bb14f6e2c0e38a2332812e6eb4a1b13bb79ba294e0385 -DIST thunderbird-146.0-is.xpi 485555 BLAKE2B 6817706fdcd18742b54f8c81309c0d27cf4d6a87972c71029ef323326e428a49f1c0342921226fe6fd4c8847a79ae1f98a6c421e756b2a10701f8020341d0683 SHA512 2c5cdaa64bd509678d9b81add8ab449a21b621d4f24f68af94796d1e0d3fab8cdad0a09e5e1aca9370167f21625e3dbb35784010190c2f5495971e77dfe6a8b2 -DIST thunderbird-146.0-it.xpi 494395 BLAKE2B a4022d716300f1fafb6478432149e9ebf91e8a57225eed6814e9f40d09fb533aa8256a5ed6c684cf1a5301513484f76e85d6c9296d7bf2fb69589661f4c60070 SHA512 71de334874e21e808eb3d01b148d43c9a5811b47da1ca06ace1e494c67f9a2b6be9a8ffd987683fa3568e50b5106bd4eea2e354acd8c78fb1fb986160b11a65b -DIST thunderbird-146.0-ja.xpi 545489 BLAKE2B 7dc2a0400e8fee18481510d4a9a69cf143004d98f6700cdde102b7bbc681306aed511c31687a00e9639eb17bde7ca61a39a0ebae1ed5cbec3ff5c706f57136ea SHA512 0e7bc9079e634335f9e83fa2bec386988700c578d99c7640c9dbbe3db8b3c29c6d862c34e2943849282d4679bab47c96f63f0e4ee6be7976dfa501ccd6b5f034 -DIST thunderbird-146.0-ka.xpi 561846 BLAKE2B c4963d9bdbdafb811b94f0565b555364b2819930cf997f61134da6c1fb98b2633cf98d390f3ea4ebcc8807d6df483f0988f6480e8bb116b44252729180fbff88 SHA512 62b69bd732cf155cac1b341e480617190a60fa16a3aeae367391a25eff46f7fc61e551438892b83d0fe611f7f8b6d58a62d55ee244a67eecd64a70145e54ae25 -DIST thunderbird-146.0-kab.xpi 468985 BLAKE2B 60fb5471ddbd362f9bf33a6b07f5698d542f60290a9cf1269517f42081d0839f409ea24c0b729a831cb28fe08df12e69d9a4846a858172144ded40433569ceaf SHA512 13d5a63f7bdccd7a6ff21ddd4c205bb9b5d03605b488c9bff24527b755a1b2ca585904e4684fa1a6609b257cd5e050ffc911361e0f961760541b8d9bd74b5035 -DIST thunderbird-146.0-kk.xpi 576169 BLAKE2B c67e1d3eaac4108572be97936e7b230caf81221751e60010225372eac7f05ebeee4dba3146e2c89caaaa8f1b61dfeeee9a39f2f44483a2d252ff5637b2e25336 SHA512 c76440d80c9f2be0495c920aee74bc32f090b29fa601ba39ce5cddcef8f7f3d00c48d850742f001cd61cc1ba547b25d3b581c6916e6ea9a747db0a0ee61759a3 -DIST thunderbird-146.0-ko.xpi 518737 BLAKE2B 69ec590996276b70bcc107458177f7fb746dbf463a558d7c29412bd4e795cf2dce6507cb575837144f235b9928f572c865f4de668a99460296255b4f3e799e11 SHA512 dea7ac1babd96e9ffac3b48224205ae0d1ed7de9bca2bb5f5c23dd71c5b9c8e92e6386ee3fb85229caeb0f5df8c55a532617870aaecd344d258a671be50e34df -DIST thunderbird-146.0-lt.xpi 450964 BLAKE2B a908e00102c8d75eee606bb407245bc3f706da44d3de60e7f048fee1dc0204fc57ba17159bf2ad1441dbe96875d162c8801afcb2f17f579532dc17e5ac466c2f SHA512 75d227c9b8ef28ddf60327fc3f780ff78471bbf69afaf64e1b1d3beb62e53c9c38c593fff1b21f58f422561f53753d2557c600029265e92ee81f586aac59499b -DIST thunderbird-146.0-lv.xpi 388650 BLAKE2B 149e4fccd157fdbeeab0dfd834855a1cb7c50039e6867b4a04cab4e888be860402ce7ebb7d6b52251b07a6531c9893bc3e2bc6468701c869d271bf0fbb03cc69 SHA512 1f38c84b1f681c9e54740ea598943838b1d0d4f02dfca7c07d0ccc3c6cda0e2d9f899533935b677d2428e0e61ef047367ced7b9c4b4b0c64cf6010ce189afca2 -DIST thunderbird-146.0-ms.xpi 350379 BLAKE2B 9414ba94407b2d490c0c9b224886193db5ee5512271e8bdf45ff7e3927a99f0a7577fe1d524b34cc30bc7e0d74a32079e0ad58346e3df3cda745dd41e90fc2cf SHA512 32624fedb6db92dc8133aa2a98ea165df04d027703162adc19a1f129a3fd462f48379c6d22acfee1debe13d6fb65e49938b3254111a1415641d3641267ec77de -DIST thunderbird-146.0-nb-NO.xpi 481933 BLAKE2B 4f997248c3b12cea701be6b9f083e74e8de27c3cbf830b032e28a92be7e32caec408fe05bc50054368f521f55845a8760f6934fb68d5ff2cee6ba2e0847550fa SHA512 5eeb876d1ae2450a2661db0bd1c09a7f68b2aa45f37249b14fc428a78d5a9d3d18be4d8d07e3828fa8064921d71fc90dc6491391b913e1cc1efccfd65382d1ce -DIST thunderbird-146.0-nl.xpi 488028 BLAKE2B cf2fa5a9bd3c64ddadb564c1d6d7f0708588686943d46a59b839f5564f5f6d89181fcb713cca226b0e7af46f1167dbd9124a9bbea8d908737f381c743523438f SHA512 9df97caabee51de3f9683d67efb1d1233019df9eacf8d27047fceca3300c83369632e12d26b136d365685c0f659238fbb75cd568fa1f1009538b52d844abe2ef -DIST thunderbird-146.0-nn-NO.xpi 484388 BLAKE2B fa3fb53c6fe2cf31597a64f733c1af9cf50cab23e9352548be533715f0bf7aca50fde6da2875758f854a8ea23518e1e969d8bf51d001c2b10cca1d2218e0ac2c SHA512 222a5af2caf9b684182d322f76e20f4259195a77c7784a6396323842fb56d0ca1f006deff6b111b200dee9c0d802ee047c2ff4b822e068af85a2e144850a250b -DIST thunderbird-146.0-pa-IN.xpi 433835 BLAKE2B 30c69e73778d0ca677437305b8594bb2dfc5cb1c55eecdc9a0e2beaf066f2e1be8e56b4ec24cfddf484c85384af0f076729872c7825d842f5c367b42600ab951 SHA512 a88d26a4403af04d2430c9112e1240b7ce6d6ab211d9bee61ad76214a01f24cdbc7ae60411e483683d1332eadd0376698a7c61c735fa3b9ea0271dc0eeae95cb -DIST thunderbird-146.0-pl.xpi 521914 BLAKE2B 15dde376aa8c17aa4182460dd2caba08871db76421276a89486a4f5c30f694462eef0db208ec80c25590a29e71502ab9aa74b5b9741e6c09c2c6960077191e72 SHA512 8d09092eb6c108aa92c8ad7912024b42f3df9603ec9ef57e1e7488a2990e58823d30a82cdd0d187764f27e6e81cedfe8bd9a2ac988d4d0458bf25fe1e70db9c6 -DIST thunderbird-146.0-pt-BR.xpi 496157 BLAKE2B dec8ab681ba3082ade0bea45c04e9bfc1b37049da2f9ae70559f8e6ca70b4e7d26c7f815b656964477fc332a156e2a929d71dea416898e977bf3d4b8e5c4f6a1 SHA512 6e45eb1e6194c6eef26f34f1760dc89c248776f2f61e7093925222568d1784c1927a4f038ed036aa30d0b3181d5324048c8693df6b5082ab35a34b46a7bbe1d1 -DIST thunderbird-146.0-pt-PT.xpi 485443 BLAKE2B ec8054119bcdf7a23fa9250fe2e4b831448e3495752a1ec7163e2bea9f11d3fd95b35dbd05d2c186e3b829322d94e96304edaa9651c2c7d16c43ea4738adfe4d SHA512 826ba15c1ee44981b3ebea8d470b39c409330a66c62eb6060c1a8fef57c1df5a1c12018ad62579a4dd0d4334ea77cc535cce2d819bdc404746123e038ab5a3ef -DIST thunderbird-146.0-rm.xpi 487493 BLAKE2B 6ccdb724adb02ecbd6cfee7c6d0f310273a62bd2f4ab8ed63e8d900b78b1600c114b6ee83af4f02c9fd15c48834617aeae957da6fc53bec621bab293fcd77464 SHA512 288be0b19a29402762c98b3392b4be7fb346df4fe238f8b0b29177fd56c6367e6d96d0994ac49f5672c2fe8297e27e70f907c83d679f61e003876a6738d96684 -DIST thunderbird-146.0-ro.xpi 492284 BLAKE2B ee73a894ccd15e0b317ed25c82cb5824e3fde9758d1b0640120879cb763913ff66b364bb62ce084d1229cf561b16a083d3ccd35236d24459aa008f27ac70bd06 SHA512 bceeb7059c7384471c580f3f441017ff1268da20484efdc3de91c1499d62c0f15a7a2460ded0f06007af0c5985e91490803fac3ff79cd6e14cdb398b10c4f5bb -DIST thunderbird-146.0-ru.xpi 600245 BLAKE2B 679a982582d37332d5cb5597ea3b791dff2c21f915b4bdeab78068b03155bf70a8367e01f62cb8c9ef01d6cc4776af9c0c3fba2e4ba78f57bdc7424d99d8d19b SHA512 a9e7c75d8a1ab7ae7ebcf59b2be11595b7fd01b186fab89827d2888d2777bd366f8c7a193bab559ad58eeaf9b4ba379a93de4996711ed4297ea172966cdc78ec -DIST thunderbird-146.0-sk.xpi 526271 BLAKE2B a48a12411049e787b61de43159b1b0a45aa6531179bc8cdce107475cbf8bb3e178cbaabca73c9ec5e499f183355fc9d928d1e8d4b7331984a7294c96a1f30f66 SHA512 407ceb692673904f470cbb587c3adc6062238e861f4026b5cb2cb486629fa335a8835be7680160db49e4d5006849281fb88622bf9499f6eeb3c3ba9b2ee435c6 -DIST thunderbird-146.0-sl.xpi 490002 BLAKE2B e0ea093db73855e2665a770ab342b8eee2bbe34f3dce042727782d9f94c5773eaff3e76014f7351f48beca768a8ea1faae5c83ca4bc8dbef500b5aa6b122cd1d SHA512 a540f8569a9a938b14f777e2fb0924abf7ef8c4ae6f90842b9ad8bffff1d0fa5c3f9f8b56c52575361680bd0698c435165e770cccbf907b45cffa86b6ba747aa -DIST thunderbird-146.0-sq.xpi 512099 BLAKE2B 1568648b3ff8802ed61ca667065a7f591071e860b8e7dac565fb15544b7e56b0a98a66b84d0d882e92a2cf21d84376473972587353d23fe1f3f7d91b2a5b683d SHA512 13f63dfa30cdf8cfc13e85562c7dec4a85ece5c593cc7b55104054d18ea1b814c43c8ceee68fd4a5008ecae8c9a3364e96deb8a02f7a22471104c06a468b69da -DIST thunderbird-146.0-sr.xpi 492958 BLAKE2B 09ebb268a3fc25c8130f3dc70c326acecf6c5a48daa6ab08256f6cb2048028e77b1e32eb20ec9bbbc947ad67004422b152a1329f3dc2ad258156d1059651f8e7 SHA512 1577c73f02b8e345e553409f7e239356a0defd03bb3789fad5107ec0e8d00d8dd2357f064bc6c91b285d7d1b305fb6c986ea037516f0166d26bcd2979dbf6b38 -DIST thunderbird-146.0-sv-SE.xpi 490314 BLAKE2B f861897d7d7bdc18b38b6feae3af7b8405c251c852ed56da391595971ca1e5204b12b1a0cc279337e14ab60f99b7c8064f67b55feed1de7630469dbd88b86f80 SHA512 49ac2f76faf96981962f70e99d2097cb7c53b3134b331609b6a476a11614162f19c3093c8c200ce0cd66cb94c3c8a806ec7a996c9a8999b2ee47b375c574dc96 -DIST thunderbird-146.0-th.xpi 567513 BLAKE2B b6e46b86e73af8786e6cf66de5a043af4fe39ae6f1ac79e5fa32281a6d782141da08bad0752830fad0a607e54a9f636761058c83233ea599b6f1004c1ddc2f3b SHA512 4119fd1b04d1f8e51cca0d03e36e9ac70185698b6bba659724a709055171856e04bb468dcbc09a0374479d904917e32fe53fbb7a869dd90109c650a8d1703ff2 -DIST thunderbird-146.0-tr.xpi 501719 BLAKE2B 73a04fe8b20123bf6502f2748cf4f70b69abe6e08f940782abfbf6b4d0c66c4e232b06b3ba1d9245f8429c491d6e4ffa32aab41173c7800c1659cf95454e7a7b SHA512 b8c47a25c277e18491a242192bf681448247294febabc54c7cc9739b9e63a97bdbe257cf5e42e5596c279b4e729c6fe1f5373705ac5b2e268eb67b1cd2143182 -DIST thunderbird-146.0-uk.xpi 579201 BLAKE2B 1bcacf7a2b7db6628aef3ab061847eff150c1a218a3bd197583e7d07d5643b34d732058db3af92095f19444aaf022ae517b363724fca4fa56a887190e32e9844 SHA512 4e9d1f77d2642e05417a3c8a8f626033253e3978ca57bcdb3ba7cd693b95276f446436a5e4f9c043f79fd1ad25c1b4fe8f28e71c84f02349f26768d43cfcd256 -DIST thunderbird-146.0-uz.xpi 352670 BLAKE2B 235ef09c9e8b607991758468983dfc98bfb8bd190295fa77c53599dacc2877cd6fbff98c0946b577b6a52568203fdcc71537f2aa806c36294c6cddf03b4a7eff SHA512 1d7e5709ef101ac7c086dd53e6bfc1d902414a96bdc77e7b45d36a1764a50d62d4c060f1955456379d56c4182f264904b780682d7e6a0ae02569b3537daf03c7 -DIST thunderbird-146.0-vi.xpi 524684 BLAKE2B 0ac58c75fb3630984477b8a2f71a3e028e07174f19a52c701deb62ff1ce9d90da52f2b2395c8f847f0d05d3fdabe6bca62e66a033afa0e450626f6f453ab7afa SHA512 0b983752312b83c7c6bab36ecdb744502483501fe72e05311a16fdaac6d946c1df1c8b61e9ab77a70045a18bc6657251e36deb3d0c6d28b92fb1f465f477e138 -DIST thunderbird-146.0-zh-CN.xpi 513420 BLAKE2B 96925ae9b65a7a6d366cb77b6e8cb8a9b1a0c6ef1ffbae6fa01f66cf7881e441ccf1b24c8657397fb85fdf4590cac8217a8c0147e931353bc97c6505590ffcea SHA512 53f521826c2f9a391ef800ed6e76a65ceb3f3e5e80a7e06741db2322db80572728ea657ec9dd5ad865a5ffc93075a8a1bf096ca37d272b77d8ee8872035b3dd4 -DIST thunderbird-146.0-zh-TW.xpi 517241 BLAKE2B dcddb768702ac5f62604370840aaa5d24264e50213eab9021615e56a709953903a2597e96f28aef8d0833fdaaf616e008160b19906ec70e63d4d0d77c003c880 SHA512 2e2c08e229c7fe8e19bf694dc5870da6c3cb74e3e3355d5df9b620f0d91fbd09ec348e084f46a7ef52c0a483c47c4451f66470d099419726d4f61bf807cc3c88 -DIST thunderbird-146.0.1-af.xpi 312106 BLAKE2B 67b39b9d237d0d699e612de41d0c98e95419b3733750cbb991107d5a802213a44ac9893398f5b9918bcfc42870292ce80c375cf98c6ce14117ad521ec4fe78f7 SHA512 c46c6850d8be131a79d0cd513487e4b12f01c91fc36dac58e55b488031018d5d212e70c3193896ed6770af2ac5744eedf8a3ef0b873048c4026a587e92a40dfb -DIST thunderbird-146.0.1-ar.xpi 433917 BLAKE2B 7d920780b545a2912412e067a5d59ffae5ebf326c882723649443b4b181cf9338d852062e8751dc4e65586705b101aa7b13c46cd82e87dacf877579d08f42193 SHA512 b61661f4aa47d658b454602f16a3f4fae5874f75e5973c39f969c5e06ebcdba413b2c7c1185c27582d933d9c1361ff994a529e682131d3ccb4dea424e8551f1f -DIST thunderbird-146.0.1-ast.xpi 336131 BLAKE2B 68db66b551cea594d159b24a43db686fb2090f8be45d937af36e0cf673a022e54823a52ce2a6249989aed713333515c26387a8f61f24e789b84a96b7c901468a SHA512 3dba11b0997ae5892b969f54e418d3b9e0f4f4c32d894a43a477578c0849ce87c4b51d0c0d3a3b1213472fd81aa057d048a789b5bddff7fbcad2e9b5fc4d8fd1 -DIST thunderbird-146.0.1-be.xpi 521693 BLAKE2B af9525d3f72de92708a27514570957b44220ecbd36d19b6814892ea662c4a1c1c29bd8d29d32f86180efcfb965ff50cdfbee587c77da5b7ab63f357376d02f39 SHA512 b08d3c71f22f8e74cf3c2cfb7866f54848967a6876f15a94351d2a6222f9149bee7f96d2b7570a0309a6529d4b4797bf1f879b914e6d8140ad38f30e2d107ca2 -DIST thunderbird-146.0.1-bg.xpi 542826 BLAKE2B 9164ef4b139fbf9743cdb76273f4f5004254811bd23cb795b6ba986c7ee21b6fa7ff764c0e326e834440b5a0e0dc173fcaf88f0afecc93ae575046ac776b5aed SHA512 2f476544a17a67ee7457b934684957d97810d42af6ae012f96b057efc4f83b0964a1e4055e22b4104d198317e52b99a27a374753675018ae34db87a25af63e1d -DIST thunderbird-146.0.1-br.xpi 400964 BLAKE2B 59ffcc7f138d67172b1d52f5f5ee11cb900ab9550e226f95b6de1ab2de0e6c837e9442392b45edb10dfb796ec42612ed0f0c277d99765812d5629f52d52e3bb5 SHA512 b366073b6d1cf6f6ff18726aa50e2610d1269df7fbbb057414d368c4e2182d9e72be104b40e6948063b4e2f619cf7e42de88e7bbe5c570756339c587b59d5728 -DIST thunderbird-146.0.1-ca.xpi 438175 BLAKE2B 19fcb0153f04978bf8fc72f2bd16fc61e606f12a115bac2e1eee5b100ce73c2f64f610c07280d2e07a1d9bb3f249597bb4c0d147531baed969a76109d7888f8c SHA512 bde2ed3a487974b278ad8ca3e9fbf7ec654e1b371cb903a72e08080c32ad2f2165dbf75f92be112a3fcdf84f4233e6b912349156712b641b2d1c7e26e75782be -DIST thunderbird-146.0.1-cak.xpi 414593 BLAKE2B e8938b7512dc84622385525e8db00edbf3e377350af03d493def2abce689df4eaee4946dc751b3b5702a8f8bef053c965c7114b419a82311357afd599349f3b3 SHA512 021e712ad73331b32dda5a3ecb28d961211c7259659317fbb002e6cb7006f08686f089a281421caa3ac899ca7be6ab3162d426df5a66270876d089f24b7d527e -DIST thunderbird-146.0.1-cs.xpi 526519 BLAKE2B abfc27997a86939539069c3db3dafa0848c575d08e7f2ff4e2b35d75955cc7f4d9dda07fbf93f69ee2c1c284997d4192eea1e5ea384df6ce4bca20e34ca93d1d SHA512 92c5b76f720f5091cbc14725e8211f4690a5291dea1d5b816efce56e2ee4ee2b3c50f05f47db896567cc036f9f2480cfc298c13c37a13a450148bc6f3b662df0 -DIST thunderbird-146.0.1-cy.xpi 494123 BLAKE2B ca18f09b0a794cc3e36fc08cab86a9570f81e9231663dd409fb23928a4e3d9c80e2677cc9eeb288c486576983d2451e337f802585eb67be03ad1ea93054b9565 SHA512 8f3b72cfaca48e739c61843a63068a815baa97083844d6ab44a40e770491fb0dae7b6fbf439364e25e4335324e5d7c85350c32cfde14a138ff278813da26281a -DIST thunderbird-146.0.1-da.xpi 482470 BLAKE2B 9ae07f4ccf0dab18b9f03f83265caf8a055aa4d21dd43d526806b0b8629085bc530f612c6cd010d1923480d8e2788bfe1846b6e036b9cf3b799de684d14b8953 SHA512 8daad513580c45e22c1ae21ebacb240324e45d96601d075b8556c790c8f9ecd14aa265e442262b2b30f05e92820b467b385d4d37805c8927d7b1138ce7465ff1 -DIST thunderbird-146.0.1-de.xpi 511100 BLAKE2B 58dfb7516acfd9c86bbff913b2372728aaf96f42d195bc7ede097a28ee48852cc36c5be78afcf5007c73cb128a6f50fc257d903fce09979eebfa98df1d892909 SHA512 05251288811c0336d2a04635f64e5b2a5fd274c33e23cbd5d44957bb3e33e04527e38b97974b0f0e75f62c16ed4015573b2c79753f276bd74181be84b5c4cf59 -DIST thunderbird-146.0.1-dsb.xpi 524189 BLAKE2B 8aa868c2658096e25a292cb2b753180d3120a914c24b02e92bf8aef16595d495c7102384314b886ee99c89d096b0427bc585df8cf68d4f1916c729beb0a90e56 SHA512 199cd18ff9ca35e32361d2816b79a15f2f1a257905211dd6c7883f0edb66aaf46a804b59670dce455fc2352431fb59b6c6654b227335d1f5f841a50a972e5c10 -DIST thunderbird-146.0.1-el.xpi 615880 BLAKE2B bf851154718a98316d52fe16916d11c2a92b0f49e28212ba5cc94c24f3367952aeb038a7b1b1e6e6a26379fe59b9e7831494b5a29e9cb212ea9757c08cb189f3 SHA512 b985768dde161defbc50b22db4b0a29343683130d435d42f50b10372b872b997ead8d1ed4b0070b6896ce0fe2eae29dbcc5667c7a5e4777c5f1f9c6ff4176b8d -DIST thunderbird-146.0.1-en-CA.xpi 457748 BLAKE2B 1ba6c6fb33bd70f4c8e9163e993de8d715199e6e39999cda436f120ebf359b40754ef8873cc5e8ca4d6a69d2840ef1349889d8b8ebcdfeab35a3c8ec66292f5f SHA512 5bd01b3f9859817358b29ace468746acc586bbc8e98e4bb6c820f93ec61cc859b83f2d178be29dbd6f46a1e6823f1ae4810c9e47b5d2a05f1e89de0ac86a2fdf -DIST thunderbird-146.0.1-en-GB.xpi 457597 BLAKE2B 514332c7e11d8a5ad899daf90123e90987f3bcbfcc692f1e4a820b2f3649be20244ce5a659d68bfcc1e8401476df16408aca6287a4bbd8182e83639123dc8a16 SHA512 2bb42534cf1d8eda09b512799590f96b2adfe5c8873aa951fc699f57e15fc24e5d90dc154920b363753dd6fe8c433877a3c19bdb53021aedec6c336f0ebbfbc2 -DIST thunderbird-146.0.1-es-AR.xpi 501280 BLAKE2B abf72f1ce2176112193304d92977c38867ee8eb44d9c062b7e0185135bcfe5645e2fd21046331f95a5738d3ccab4e955cb0b4d279ba5f933ae1c0cb809c187fe SHA512 6aa553211f28b160e5de12de9e864361e28c33309c5eb72f84e9bb10b21dea53b49af170daa4e7706806634eb467f96a371c44da4dbee59f6bf5e41d1f8b6fcb -DIST thunderbird-146.0.1-es-ES.xpi 503406 BLAKE2B 01d5e73bdfd0f373cec90352ecd26f7a94ee8741b56f27502633665c448aba41dab6400b42c044795c01745a649264dfd2183b74497ba243cbb9268e41e7c740 SHA512 d8f17936ec6d8214e48369b98a9c432c061756c4a5c72a4e9b4c3c6d0fea90e0c5cfcbef0d69444ae851f97d2603f4d3d81e962599213f9bef6226b2bc56173b -DIST thunderbird-146.0.1-es-MX.xpi 489584 BLAKE2B 15d9df75ab0c1123c8866c61442377871ed578b52a8d42ad23f67247318e2b8c56e21544cbb1b72dddb36e950198f9e890ed5569e11d3ae5b60acda83017c4bf SHA512 a770c3c1d011f5a07de66fefeaa653993ef940b2af377045ffcd92f6792f43968b85edb769e5d8c2593374e0332dba957a294a648da356a52e2c33a3fa410984 -DIST thunderbird-146.0.1-et.xpi 441174 BLAKE2B deaf83d00a18d2eb5cdc82a7b7794661c6cc9aff90e8573743c9c9fcc6d9fb9fca14407e07807b368f0229a3dded1542c7ea6aed1e5f7ba0e2b3f327a6f52176 SHA512 99d993abfdda10a26636d4f43d9fdf16bd95fa737213da0e4d5efbd779ae0941a429e74930e146c3dc9c091aec253cf9ce2ca05b35caba14d45c13982ee60053 -DIST thunderbird-146.0.1-eu.xpi 475562 BLAKE2B b66731c70c4239faa8e61a6fd606db00a687d8ead7468f403f9983852d83fd41c0f0d1671870c5fae2999dbaaeaebb9a66c0443f2a932f1f950b52689618a317 SHA512 5dcf3e3d4be256b344ba9f35f39e117bd638149e7139bc2baf2ef8b83ddc64eb54991ae0ba94ed2d78a7c50be7135514135d38bd1af40d24598c382993f46549 -DIST thunderbird-146.0.1-fi.xpi 478478 BLAKE2B 1360bbb40762f8c4b809a667373aad75ebb6a7288dbe2cd047412be2c7ce8e4cb428b307f3c8d9418ba4793e63bfa07ca9eed9098040a64bad07791345559f27 SHA512 a51cdc9db2f61ce247a433fd7b45233e4623416e6e708cea3dbc34211da1cbe938354cadff72e18a494c1e8a102809d6fffd38bbdff83ae24d9f1620d0496f13 -DIST thunderbird-146.0.1-fr.xpi 514484 BLAKE2B a7467991a52cb190d4d57c0af47a74b15b4b28697ec941f1ac1d14b549e5801e7f87621490605eb5f7b611e3fa73ec29be4e6f0a6af1d9eb60373ccaf310338b SHA512 e0b9078568f7432dd64f21c1956854135dbf4562eb8682afb4e01ca658aab6fe7fc283a8fd5358336cf1bd3271e6f9d869b6bb45830fd5ebcccd3e30b154eebf -DIST thunderbird-146.0.1-fy-NL.xpi 496788 BLAKE2B 3a1c2fcc9a31c0a844fb8f843972f192f8b3c32a8290d98c696457849c7adfe9bd519ac9d615e6f24069da54efeaef666e435f9d856946f9daefacd74046be82 SHA512 878d208ac4c3da12f9ed523a57944aaa970d58943cccd28a3bca421d20d961364c91191bd99a845bfe58fb0f952a3cc6826dbd5ead317d0fbb4c52483c9bcf3a -DIST thunderbird-146.0.1-ga-IE.xpi 374085 BLAKE2B 9b49fc0b686985687965dab17b1221992b59fbca5d5ee54e55ee0859204058e9bb56825fd49fcc95a6d8864c438fcc4bf9aad8e5022c0998bfcce7ed6933dc7d SHA512 d81ce0ef82a0680f8754a68c3241b4df9c832c8bb1967d8d2fac7dfd25289d95327f409f93afd3e20061aaea43480a6d70a19b741ce937b20242ee3f597ed4b1 -DIST thunderbird-146.0.1-gd.xpi 459532 BLAKE2B 778889231201beb03bd712d9f17e7718d2484721f4fd1522ae561629ae32a16ef3d7be00a2e2aa16b78e19dd82a0f4468fcd2396020aea14c3fa81833e99e407 SHA512 b512ac4d909d983649f50ec93523695b58e355155a4f0f9bbcf3dc0bd66493c22ff86b2007d11a4276500953a742c900322674775e1ba8c2a7816c9455e5a879 -DIST thunderbird-146.0.1-gl.xpi 488848 BLAKE2B 23e9d116c8a1c2e07833928abbf74d296f3c9b4f5cae418953072fd1fcec1f77f9df25e7248ac78800fd5549d4f528552d178f089290b1594f8a78fbdc439640 SHA512 f95dc333f74ae9eaa14ca60d44626da3b8675e5528698f55ecf1b081a0a3a0aa2c3ac59c9947b2c18fe7e2418803575aee65ff14a1c8c2a2347245cf19b52c11 -DIST thunderbird-146.0.1-he.xpi 441791 BLAKE2B ab92cafadbfc0b7b3504e72a8e1ffb6d3df9070a37a7d49032a2580d25e98b85639f543c4436e98923c5c3f798b1a00a3bfba73c93f30bb68c6d5875d291399b SHA512 eedd28456357c461f3933d5b6abd610ea25eff54c279b02b98f72f59e81ac87d0b0b0e74848da708370751382396f5ae19e65640e2286d6d66c47811312e110a -DIST thunderbird-146.0.1-hr.xpi 468251 BLAKE2B 00a05331ada75eaef8e5471372021d4743468e7e05a0ee32ff85665451cdf0e6ab8058851c444c120ef415967870e00670428fc3b82caea26fb9d67b08443ab4 SHA512 a4b40911a2033bb5e3d211855e57bd5134774edc35db00d435b1f55dbe8ba6ab158133d180cdc3ab6c5acdbc606c64a84a93f5da2bf57a47b045447e2fe95a78 -DIST thunderbird-146.0.1-hsb.xpi 521217 BLAKE2B 68117cc7d9d9007b95e3d634cb2c8ccaa045d22355a5d8a9e0da8a58f51137a0e68bf5063abc214d6fd06f2036b2d061556cf26834472ccfa7c0c11e779c8e55 SHA512 42cdbe2a656cb9ac7a9c99b225cc7a62a621a02292a153ba711b0ea5876f006c226033ff8ad0bd54440faefa98b5da482c4d6917bf2d9ac6bd76369ed73c24b8 -DIST thunderbird-146.0.1-hu.xpi 523855 BLAKE2B 45dbcd41bcf438d0a69ba54df746310935f563c11fcf2246962087b31a9797e7e2e64a7885093d548435b89d2a8c7e8c78524265d2b40d1d282fb2d4968696c8 SHA512 fabb9063d508907043f0188c805942ad387425f35a2d6722c91dfd007a9b8459dba52dd1e8c8e9410bd4cb7dfc03b589d92a08a796eb1e29aa03d2a44bfa7c02 -DIST thunderbird-146.0.1-id.xpi 468899 BLAKE2B d390077a55c0e367449e3bf6a8a6c06dcb21acdcaba1c57a95c2a3288f00b2f4cd2f68835a556a3a9fc16240d594612445b897d4dcf1f3ba3d3165838d781ff8 SHA512 02fb21e73811c9ed7eaa21f4ccaae27ace2829025256c99f8cfff74901e068f2f5ef15682cc7795d40c4f5e76c3911e31aba6a5fa52a683562c5ecb0f9847806 -DIST thunderbird-146.0.1-is.xpi 485559 BLAKE2B c47b2fbcb1ddede88f57c119eb983e6417966562d8a8da9a49fb65f5d429a0861219f1ed9a8635576d86e59de64ba78cc4ba2c1be9b2830c1333d9242d938c42 SHA512 1f09555496e17d4e56bc24d9ab062aed79f6537e41d237b1a055a0df3005a2faf215448c35ba28188d5f9f32326378b9793296f90b115c82edb258a1ce847268 -DIST thunderbird-146.0.1-it.xpi 494397 BLAKE2B e2eb6f34fb522ca9de6e779790bb18459af21b34d71949746f80a520404358d8a9f8def0afa5a3c9ae8aa576273443b91e8c104c8644cf53cf725c7da053da73 SHA512 91a88d3c867f05af14108ff21ab4127a5f4a2cb6c50267fcbfaf4f82ac14185175572a5b5e6a8dbd63eb373153785c1cbee3adeec5dffefc7e7e2c2b8d387e5f -DIST thunderbird-146.0.1-ja.xpi 545491 BLAKE2B f63e318611debef6e87ebb302b89ca6333665b2ac4ca4d2e41055bc1c17320c62eb06cb158886adcbc5a345a01d78bd77a9838dff74f7946c2e002e4254f9e9b SHA512 e45729e6bf985e4dcd5bef36637e40e4e239700cc0f4ee3bddfab5da718924a02429f4997271d34fcb9d9ad4e232985804d6a57b65097321b380555ace78d99e -DIST thunderbird-146.0.1-ka.xpi 561847 BLAKE2B a1d64936a1dee83ffae8478769e541f27942d6dc1c45ef442bfe8cffa6f4ee2e0100c83d466816f4ba62934e9a00fc4b4a420492434cd72a938e58d49ca628dc SHA512 0569397b80b67b6ce32e8d468c3da28f7145c899e90a0659e4a3e1b2a6d07e816f5de8bb4cbe928bf9aec8401706c1c18b455f2aeb67fe591ff79ebed26b3d65 -DIST thunderbird-146.0.1-kab.xpi 468988 BLAKE2B f33bed798572a978901c1b550055e4f4678af51aca536bf02780410f169665764fe40bae7058fc49dc113ec9ca6bc48773f7c6db1632ec93c29373823ba5ebbf SHA512 645a4e250242c3e9f79700fc58087a4d268d6d1ccb096a86a883ed838a6de3f6b648ed1c4500d1860105e0c83c8d0197b13169b08578feabe6c440a7fa4537e3 -DIST thunderbird-146.0.1-kk.xpi 576172 BLAKE2B 0dd7ac284db76e590b52fec5793bb194681999d2ee1be3c106485f3068791d3b9eb6fe86a6eb95bc8e26dc1b2463c91715cc2516f538d74dd0efc115214191dc SHA512 9778f8658a1ec85a045079b88dff13874841d9ca37644c8751af4c2cdda1eb116653dd86c0f52adfa3730c4fcad501bee7d8ade025c2b6f201cee7adbcd79059 -DIST thunderbird-146.0.1-ko.xpi 518739 BLAKE2B accc435fad96caa9fe90fae93f8d4b33c4ff8656be6bd5021af4da4786dde0a15b815f9ba01890e145c238c78554c45b9c35cda8c8aea58b984cf7f98ad2b4d7 SHA512 ee0235c0e136d33c41edd8fe53df0db5d6401c1623ac6c6d56cbd28d3dc9133d3acbb0ca62a6ca245c93e90589cd644deecfda0a81e4b234c049450925ace46c -DIST thunderbird-146.0.1-lt.xpi 450966 BLAKE2B 85edb0a76a9bf4e89dfe17cc639c53da7b30a422b0779dfecbef73c6f3c311f4bd4acfe5b74aa51c24813d921144b380d92698dc86b75816561c785662bbcef5 SHA512 ee2dc422783789a4b06571b600fb8d880f3ca6064a6c82394d8d926992240b7b44b6072437f41ec9adde7517bbf3e6ef62d44f7d0ae851af0ef8a5126698e4de -DIST thunderbird-146.0.1-lv.xpi 388652 BLAKE2B f0b047e0674dc5e9fb75df71e76d94bda236310b79e7f52c1542676e298796ffe3f44ce5a0a13dd59942e60b5533da12c8f96931f9ca3e7c77c285a5b1f19034 SHA512 b050f16effcb7f22bb95bd7a922aa421a6cb053c2f587bc19790eb90540f1f23562906f27d942b7a0528f894f522655006a9c4aae69019ba4e77d40c06b21224 -DIST thunderbird-146.0.1-ms.xpi 350381 BLAKE2B d4ef7cb08c0f7b9331044bbe47827019e205bc11c64973624d4979cfa97879168542c959fc073f35243a0a956e0f6cc7d578eb31e59c19ae3a0abcb3e2c7508d SHA512 3124f7aa57a91cc759a9a2b48dc216246d18ce5b698b3bcd6c1ced9f304e5f5f50ad7e3706819bbe7c9fd47f838b16262d7069f754f7572e46d61b4b7a73499e -DIST thunderbird-146.0.1-nb-NO.xpi 481934 BLAKE2B a9c1859b639775c78764718764b8bc2c03de5a149616ea5432fff57bc45c59ed30332b6862d0c1e65ff3b02d28660288dd252e8bbdbf641426b6de3fc370ac25 SHA512 0d6bf553807fb038e0b7496f2d70e44ee67914eafa5824364f188ca00b4169a6e2457f79f97be2f7495a59acaffb140704c559c57826077198bf356ea17cd5f0 -DIST thunderbird-146.0.1-nl.xpi 488032 BLAKE2B 01b2cf7b5feaceef7c4ab4cc0bbe0a69a5ed22cc0ed51ac100d13e28d7552427099cde8440a0d550189547ad8b8c836026c91461864caf12ac244e0abb40d43d SHA512 78f06fcf9ac5a12eef7cc6bfc877e303656dff1d4b86590202097cb34006bfe27e131408648d7b0d9573815071951b9af22994c89e916dbbc2352a0a14adebed -DIST thunderbird-146.0.1-nn-NO.xpi 484390 BLAKE2B c2baef77928a1374f88130846eba6adff07ebd46a30ae0833e3fe5d415d28767440ba45f4b2dc3788aec18c405d17e084e971094e104d61ff449e73d9e22412b SHA512 134a0463797e841a506bce38dec2d378375fb97be7a0f2ca02b6d098f035608a1004ea266e8221cdf07cadb55fcc5ba9ff49dcfece325fab232aa1fdf1d6f694 -DIST thunderbird-146.0.1-pa-IN.xpi 433836 BLAKE2B 718b9a13aeeacb9fee5f45337340a7f5215cd2a8b0889bf5254f82ae2de2fe7611d45d748595d7e838a960ada41604fddc5a91563aa5e2e1d3147201f067322b SHA512 c7bf2e232a2f55ea1b29a5e3f4e59deaa71e119e213a9d91a24edc94ede856c18c2d7a925f2136b59c5ea044f1fe23c64371b0b24d4ad245fa16919b9261634c -DIST thunderbird-146.0.1-pl.xpi 521917 BLAKE2B 4ef7e91367e90aabf1084eabfdf9a4fcb446581f2c91a2ff2318c83c1ab120d8484bc1d6f92be7e6a318fe6d4326a782d3141f836a7adc4c4b1b86a40b96911e SHA512 cdabe227d034c9708b859cee7ffbe247d0b0ef8a18831c3c55dfdf71a097709b4140a9d9d52778efa4747c2590be71b28e7d1e105214e083f14f1275c9219280 -DIST thunderbird-146.0.1-pt-BR.xpi 496159 BLAKE2B ecc4bfeff6f0440f0aacbd51a0b6ba6b7881bf9157059904c9157c15206d0fcbd352eb5d8428e94decf1fcf4aa9ba002d27b50733494265ebeefb12726af752f SHA512 dda43b878a085097581205eba42600479d52f5b1a0c12c46301a24ae1515029478c4171e3db3db7a17d8977cad879f04d66b7ed67927d98d2ff91718de539019 -DIST thunderbird-146.0.1-pt-PT.xpi 485445 BLAKE2B 7ab27252bc61951ccdcbd70eec41a1932ca36c917c49d268884a1187e2782614fc921f389dd9ef7ef8cf62c6acdd42dff3a307012aa21b81fcf999c9328dc544 SHA512 d408295e9571a4cc498a63f85958e80e22143c12e9040d6ede9383744fbccda27ce3ff81d5cc275eb0fa391fffaa7f661b4eb0082fcf1c0abb3b2cbfc4400377 -DIST thunderbird-146.0.1-rm.xpi 487494 BLAKE2B b59c2723f0d6a701fb055c6e22e08ac8a6d1225d96cb50ab481266ebbaafb524d92ad9b71258b549f48a42708b5937d9e8ea0320350fa3c4287c201f1c7f07e3 SHA512 4689589db4e5308fa8b73d54f2b89d93237bef1845aedeaf4470a42f300c7e3a2d1a7968b0fcd2f4f0dacf38a6960de0cb5f463a8f52490d609907888f209c85 -DIST thunderbird-146.0.1-ro.xpi 492286 BLAKE2B a9c3755e8c40e271995609ae8fb50eafb302650c01e6d69028c33538e312850d1ca3b7734d208939295c3a4bf803a17398a5948cd57456d3594536360b019d59 SHA512 5a8db67efa5011c8b0af61a8b4a5436b1d1c166086667565f89ddf199a32a02b6c58fc50ed1c86bb4797f7e45a5caae45dba4212cf4d35a0eb54f5c5eff311d8 -DIST thunderbird-146.0.1-ru.xpi 600248 BLAKE2B 43483fa61c005ba7e1631a629b647eaf4accfbd66f31310dfb28440b801a6fd96b38012e7b2d7956fffb4e38a6f5345583305887c0e57ae2f816ff00aca02bc9 SHA512 6157f07f42e7b92788f685e52bd6418e4344dd399c3a63255831c6f8962f33d62a016201bc7da57f97a2c81030d83392847985579a030522a1265e38601e2573 -DIST thunderbird-146.0.1-sk.xpi 526272 BLAKE2B 33a329a49e0a2f3394d4ac827217887a0bddd5ce05f5d21b18677a194902884ec37f44e84bf9063f21eda1df04e9d5f1e0390df2fbd67f89add8976577901d72 SHA512 bf8464c9c009f837bd6746932567af06513c22e0c11305621f4b90f8b16a553c8001d478258b08ce12ae4435926f770792f973aa769c8273529a33b7318af401 -DIST thunderbird-146.0.1-sl.xpi 490004 BLAKE2B 3d50b3d83d68958acde3c0f7a5bc7529a1d0b1a054ecf1f4f7ce998717fa724d65b370bb83e5727279ef5f75f6ecf5349d8fcad689123e251274c64e8956abf3 SHA512 6cd39e46325917e0049d402e94011b4843d51b51ee33a8c09661f2a1ede9ca75d63499682f2a781545a31f968bc977e96e9c53d976c1d86fb3c65c3f8e7427aa -DIST thunderbird-146.0.1-sq.xpi 512104 BLAKE2B 02c359f7ad155b27edf9fbd590ae823c489e66330436f52af24f279a7253e927bef2c80c2c00553d324ad2edeb039530a7187424a92e88e5daef4287c0c9a7fa SHA512 f69351026f782c0eb5be19c2639f4ac5ad55d6f4bb9853299b157866893fcedbc7e8bb26bf247bd1bf776a8413bb847059e51e3875db97b5aec13246c3ca8f77 -DIST thunderbird-146.0.1-sr.xpi 492962 BLAKE2B 7314b6dce2c6147b81b60bc8ff78e300a20dad528adcd499528789a2af85dbe90a00b6de94c9be1a5a34cb0092f947181dd04ae4a5cf44d8ce3023d3c2f2f492 SHA512 d23fc374b4f6ca08ce3af35cb5c2ebbc4776de61777f7a74716fd9f93bcc7948a578c6b91daeaf9452c2a5a7f6b4d5718b06e221e4ed61010de3260cfc4d5008 -DIST thunderbird-146.0.1-sv-SE.xpi 490314 BLAKE2B 023026f02eddaf4cb439b6cbf79ea4e05e0451dfbcf441e1d1c21e7bdcef8c0ef1610493afe8b87b95785b80980d79de305c3b81e2fbb14fb3d3a663676313c1 SHA512 b2b7a48d8f8959b570c0d1f175999bae8598af06c5ce431dd92b1297893c871b52e28760fc53ff20f0c75975277cbeb51fe27c1444dbcdeb0d51a57a10e91b9f -DIST thunderbird-146.0.1-th.xpi 567514 BLAKE2B b81605a793bb5e36af65d9c197313e0438041865d400f1ec71911812a325c634c449cfed38980f064edca65748ab90ae114244474ed6d9f0a8ca642f2b5258db SHA512 8759921e9667764520740e8b627e52bcb347570c3ac3de368eb9d6c50071518d799d9183d0248e3c04b3c50118d2e3391bd03d0f05c853b61e6d8ff7b1cce8ed -DIST thunderbird-146.0.1-tr.xpi 501720 BLAKE2B 88238c654191bb430a872c1ff55bc1a7719fd94b33b4c8a5b84ca4a7dd2d47cd8050bb187be67a97d54cc3ebce6a97c40cb2d813f30dce95d73a8eaed6cee35b SHA512 f7e9e2d537d341fd2b79351cf039285d6b49838ad779de76e2c9e7d4e2cee994415db483e68cd012489bd6361067d5e86fce1cda52eb45d18e86d8b48c6ff42e -DIST thunderbird-146.0.1-uk.xpi 579203 BLAKE2B 8c577263ae25fbb8d2fa9f29f7a9c97399e7b50294e7fb8aaef5b869623b0bf75e459b46d8ec0a55620b802f6fd19e0029ed15a5346de9d27f2f6dd0c2873173 SHA512 558da39b0fb21b2ac5876c8ee5581b8b08b57aa5c8161853dd16163dc2f627a9ef5a35d6766fed7f00f8bc2b2191ea8ef52e6080953d16fc6a82207fb06fba04 -DIST thunderbird-146.0.1-uz.xpi 352669 BLAKE2B 7ed6e43a207f3d55802a3ee26a44c3b3b77a77a1fd3ae4d97bf9e197f9338c9b69635ce753e262af1ac5f9765458a6b01e52f0003fb044a910e95461508a187c SHA512 04048b5810fb22d3699ca09f70a5c7be3068093a01785dca60165857e72288e5fd1ac1c0821353658d7219204bdab648a67173b576c7cd32043a82c4eb483400 -DIST thunderbird-146.0.1-vi.xpi 524687 BLAKE2B 1c9554c217392b27ce16dbed960e1f39d0e12abe0e39ac8296080ba039ce7ea75a5eacbf0db673bb6b53f9ede242500fbc304bdf4541565b21b68f1b742ed924 SHA512 7a298d4a816bf2a8ede4ac299c7c2e800ddfa0726aa88f42fbe089461bb71202eff0d2b170dbbc79dc161b467b547c0c282bac3e6797e8eef561c4cdb5a34ec9 -DIST thunderbird-146.0.1-zh-CN.xpi 513421 BLAKE2B e74df18e649754cf5f72eb241836c64603257d8ec4219887c1eb5778636fb7b4ac46806538ef09336bae1eadfd780520301892665c96748e1a75bc60f06e67f8 SHA512 9bd0b24efdc7015a93bf523de39435d4f116ba114674ba97677c0d047e32b89e0d028dd263e2ee5e1283666bcf99a5bdd59a1cc1e76a3f802f3958dd020833e2 -DIST thunderbird-146.0.1-zh-TW.xpi 517243 BLAKE2B 1c52bcf03653370927fcc82bb3664a079468d352071d4bf69105b2a05164633584740e7b61717a6017bb78d0f90b2fae977f1bcf14bab6dd82ccb676696c3cbd SHA512 051c8b0a55b8639c080e84a30f31fe09418e9fa877f3e659fa7c67e47ceced474dbb217b7b31af6d10cbf426a190439f747b1437875d8f54c6291f15c730654c -DIST thunderbird-147.0-af.xpi 312140 BLAKE2B a64fe3fcf2fbd31b611b8ac256c583f00dfe22570625d67ea9d09262a43d9f606027c0d48cec432b87c4375635c574158b71d81c732324345863894da6cc3caf SHA512 f7359dd68984f2904270912703e6d14bece1af9cd100a8d0d886069951b99bed221247d3ab4edd6a8a90250bccc0ba28d7c33dcf47088cefe7b394187998463a -DIST thunderbird-147.0-ar.xpi 434056 BLAKE2B 89fd64ed7d762c3968abede40a87f86dd7534e7889c69573bb1090aae2c6f3a59a1abc844b495364f6a631b2a4e79cffe307b7edd74308c5bd980934d2f510ec SHA512 fb2f52b76f9630eb7f9373dd4bf1339daa0e9909e3f2f171596c3345eaeec992f547062b346ce0705980f8c79d3a3d37262dd960d55afaf1d9c53078ad74ef4f -DIST thunderbird-147.0-ast.xpi 336204 BLAKE2B b32e09d2bc3ef5cf0c156f107bb808f23a682b353323c4402c9a7d74a1843a18408bb3d64517048b765830494fbdf1609d52a67577c37bfa2b987bfb00ae6d50 SHA512 bc864cedc8d4a259fdaf6ff254369eff2ce9589a29102c3050d69e52c8013cf971a02030f07c2b55c66fdf35467f818aa06534736ba456de2ca3ab7e40678159 -DIST thunderbird-147.0-be.xpi 522285 BLAKE2B 7a106f1c40b11cd550c18adf075a937812c8c23750284bb9155e408f08c2b5e90002fe8bf64255def2088dea9983e623d2d1d209ebc06526fff6f68b955240e7 SHA512 3b09e50ca58282dbd53c7c31ce6fa0c2ccc1d89ebdefe8a91168416655896c5fb70177ba4a4826b7559cb78afa652134287a8f3218d853a2c78720cb8d4d5c8c -DIST thunderbird-147.0-bg.xpi 543152 BLAKE2B 3e1f0e39a8eda767a490f7b1ef3085f6e2b8d351e673a7aee457a8a3bfdae95035ca48b5fd2c1ecd0cf244e7f86ac7e97be4a59140340ed442af6de04df31870 SHA512 1592dad0cad77f4d8710b95ba0282c6698168528e60643946dc517ae4e98c8e3fb0c12e19daf6a89fbb04885ada208b6e05881baed4d38a6435c0ae76ed82c17 -DIST thunderbird-147.0-br.xpi 401079 BLAKE2B 2946c7a3a02c2d3b7e1efa520c9ab714d83c65bd827d48c06301bb181124b44d85ee7a9ad083a4aa996f63709d7642d9058ac693075abdd4cdc317327ad85af3 SHA512 01b55b163283a6b756cbbf56c632e7d4b9efac96f9c0716be7022ed101edbf316f32727dede4045b86d6e56985d6848dd3158d30498bf40bac4861c9654f3087 -DIST thunderbird-147.0-ca.xpi 438291 BLAKE2B 0b41b81e5fb101b75950a91eecabd297d75c556daed6826e7298d30262b29da2ee943456e751891d82f60fdba78c35b3f90d56530e8be5f2f2e244df27f38ad3 SHA512 5064010337f94bc37c2bcdfad68110da4de96e6a2eb120ff05ead3a6472866ac0e70169e0432f1786ef3e5a19aab1d61b6aaa2ca186399781704ad670b768f72 -DIST thunderbird-147.0-cak.xpi 414737 BLAKE2B 356ac1ae367b0f04ee6bee36ab0a9a4f3665f079ffda3ef2aee0a5be45728a4d03ed32afc45253a9adabf7950a22223e466e46fd579ecc6167cd6b78338cecd3 SHA512 a963014e75db9564fb08b9783992fe87209a5741989e00d94d470cbdb644de303455cd37b7c033ea9116ce6799e4bc19d78df81b1fbcaea8df09e3e12702b1aa -DIST thunderbird-147.0-cs.xpi 527262 BLAKE2B 197292fd5b5d89ae1670efb5ded93102430e08f78d92f4fad3e4e052b503ca423057680fd50aeb1a8cc967eedde488fe2ed543599158db69291cbae51bd021e1 SHA512 b1f8cf66e0b02d0baef6c8411fadf5e01f24bbf301e3c636218903580e176aa29f5a10e8282f18811b0ed463e5dfda93f750c03b2161d4e0501f2e0599718b7d -DIST thunderbird-147.0-cy.xpi 494798 BLAKE2B dca6c2ab08eb5f6d797c6fe8ff8763ffbae5ad4debb244953344576da4e2e8ab41041e3b5f64c555ce65217a1e30c4bcdc0d280a4e85677a4f30543fcfd0b4c8 SHA512 4731e26941aa57de5cb94038092a1893ddebb17577a5db211050842d1a84e6cd1ee8bb0ba1dc21ad69229b39c0b4f8541add35680bc615a09f060471adcbe6da -DIST thunderbird-147.0-da.xpi 483074 BLAKE2B e34fd2018b16329982734f747d1afedcf27c9941509c882d0aa89e1630a29f3884cb440c8d7467cd25fe1961eda122b77819dd2d9de54814dbefb7de1f0d4905 SHA512 11061235549e50ce3dea252f77b65e235664df2c157c2564ef3aeb7ee9ebfb2e946d866b669c386920da08de7a232dc067ac52b836c8040802eec116f316d914 -DIST thunderbird-147.0-de.xpi 511735 BLAKE2B 0db9bf46be7b712ecc722d288f118b1c1a6d8dfa7c2eae98b6d8a42f6956cdaba34f887227b57ce705957a5341ca13a1d785af7d3e23089a439f3dcfa5d9227a SHA512 3832710e1fb64cf6b64800a0be5ce91484f01ab75848dc4551f3ea650c5aa8fe6370ea81291adb2fc39acb283674f7fe0793236a035b6ec9f557f2d2e66fd575 -DIST thunderbird-147.0-dsb.xpi 524692 BLAKE2B 68e75dac56ae280ab1d9b6d0860ff97f7e4fdcb86975881277a66ad9ab56c581447be82b53266245f58a15416800d1274618fedbb4f00fb0caec6e8f0046a801 SHA512 c1b1209147cca59cb6180754046d916d199089b70cfdfe7cfcc807fdba0a215d03474f546f88c53811a6d74a0f56e7401f5d5c265e4ac7d83a3fe92900336452 -DIST thunderbird-147.0-el.xpi 616559 BLAKE2B a074f2d6af52f7118d19615fd35f609408e77a37c11752c32a9c4a6c0f9bea71d89c264983927c3dab8f4a036ef741381d8ea613a421dd90bdca8506ef28020b SHA512 e41bc367e5c33fdf312f82365dd2df1a7d30be758886b6760e6bbb5e3f4ea1bb8597f066d2a26d4358dfadc24d06c0899984bf993fb442c45c978ba1a7edf6d9 -DIST thunderbird-147.0-en-CA.xpi 458144 BLAKE2B 9f362599c8be3f54618e2a143eb123c1037880ef8054ad127099ea723d5beac0b93d558b1dc2d8a7c15839ced5725ad25221a1686eb9d553828cba35ca8aae45 SHA512 c62b1ea8b9f2e8af2f4c80e84dc8e45c568bb2d6ed4b8a67f5d50454f419f531b2a4a310056d8a9b5852af5c195948d5509b8db040b2b3a41f8652ec56af0d52 -DIST thunderbird-147.0-en-GB.xpi 458132 BLAKE2B d9dffef5860b967705ed20090d9c0feddb4f240f289bd9cc57704888bcc8b7c12fde78656a92ad333900476958606eb68467b6d8be217490d943f15ebad33fdd SHA512 86f33f37426c1ef165bc3f6525b189433ac458fb758dfa7c26269a42cf331feb541dd378e4ba8117c9b0f0f644772c2089f92f62c29535a1823d53f42983e099 -DIST thunderbird-147.0-es-AR.xpi 501883 BLAKE2B b51ea52a55baa9e6f30d3b4249e485b5b539e79854d2cfe3c6544bc99cfc8683db2fbef209c96f3ab0494f8676e8a0bd69f791b066b7e6087e4e4273b8bb607e SHA512 6991d84918c3af88731fccb06a61673b5d0d59f7d576a9b796637a2ed59ec0119b4d93f44e6b5bc3914e198e96786232a14b46f6a262e43b7cf4a96c180eae70 -DIST thunderbird-147.0-es-ES.xpi 504070 BLAKE2B 883e4812a380add89a372793c59089ff33256447771483e7dc67a3cff128e5e5c90faf229ca2479c340b30ebcc6622bbd7c80a64ade5f6113588010845ad79c1 SHA512 1cf4b197cf9ef55cd50722c6c268798240aa85806a2aa8c142b1152964edf35a81e1b3fcb455e6ae0142a251ebdfac1afc44f6ec9ca9ae5b1a8da68f659ee1e3 -DIST thunderbird-147.0-es-MX.xpi 489658 BLAKE2B c4fc7ce564df24640842cbdfbccef51c46ad175a10f116c742ee2eaa76f2e4090468d0c28318b899ab1bbc248460a7520b4b76b2baea4cec47dd54e5dccdd45f SHA512 911a54e3b32b1e714900a89a4359c9a3963717df4bd66ae53611949584b2c9f507862175a4921b9ebd2168b10cea44ca54a1ba2df90b55d87c4eb637dada5e1a -DIST thunderbird-147.0-et.xpi 441295 BLAKE2B 8acfc9620249098b1c7b55c83bd499cf50ec955eeaadd6bd20b706296570a86b7ec87ed3219081cd65d1bf422c3230e7a8a64420cacc8e0aa811965d8fc7c814 SHA512 2b1767d27867bbc478cedc84254571bba831b27ee2a357f29f627d34b92eb6fde05f2c522b8fc8ddbacf5e0845fff9ac79dc86f917e38db10453a9814e43e975 -DIST thunderbird-147.0-eu.xpi 479688 BLAKE2B 03e250cdb3e648d800b2a2025c7ab4466dcc0a6a300180da7507ff66767abfcde87d11c749a7e0bddcdd5237050e8ec7b58d3ec0a551acbd8d7152d2901adbac SHA512 75ac5528e436f5bcf99cbd54dc287329cece5947e203ab6e110363b2847db883a1fe1b55c4064bd9bfbdb55ba7bd5619835e59d596bf8cba80beb105057807c7 -DIST thunderbird-147.0-fi.xpi 479304 BLAKE2B cb78c64c4dc9b5266e07f7947a5c90f22c4d7a9731adb9e68ddd4023443a6bed1087a8ff58eabb842e7dc9584fb1badcd8558e52b4229b6c39ddf7daff951dd2 SHA512 b84e14db13a2d99155c2c96299605b2617b5ffa88f064818b8ee48ae9b33c6c521b22236ee7a56127567a1efa42629354ddd56fc5aced9ba3c0664e86019aa07 -DIST thunderbird-147.0-fr.xpi 515109 BLAKE2B c62ba33caebad184507936f7171b36a8b97c37c2251c765a151e7bf7ca551782fc4cec7d431656583aff119e1e5a04da13cc23af579c08d8e799a645899c412e SHA512 05fcf576a949551e781e6ccb7669c7ab39a5114697ffd5241837535ae234590b2fad32f8de83c579aa07a54297be021a8d3b501a7bb51d041f67c44ca10f94a8 -DIST thunderbird-147.0-fy-NL.xpi 497416 BLAKE2B a0f3e15975ea21b3edd1ffe41014271aa822eaa0ddf2f65649989461a2c61b077e849e607943202d11c443dc0ce47f2a73abd5ee6be4fb2944d2d8d309d78d28 SHA512 1bf07ce6f51463be30cd4cfeb955e7f291dc804adde1707484a77fc0f523bb95edf0a5d467bdeffb3b6766d96aef4f01dd960469c679a616c7f12d5c26a5b0ee -DIST thunderbird-147.0-ga-IE.xpi 374258 BLAKE2B 7c742b9eb22f854a86d5e99643f61efa836119c8714c72e40f2ef1cb3fae272d29cf6cf8c8e2a24c64c7d27e89688fd9c597467316845c2e750f8ba99954feb7 SHA512 be74cd06b0577b8cdb59714f1ae8d31e12d626eba8b4817cb6ab3677f80d42c4c3cc0af7028e4730fc778fd7184a3b9f5a30e0f537406b078093d792675f1693 -DIST thunderbird-147.0-gd.xpi 459623 BLAKE2B 019d7ea6d43fa76cfadd2e7504bf1a5605a9757ec3c04a77ad76d9a502f887f75d1659107b8423a9db84f211ec97014b617ad0f31dabca3006067f420e67bd28 SHA512 9ca7bd5d622f6a1c262b3262b689647a0dc3960580fe129c988aa702e5681c22a90b517c6f3f8daa8fd8147e1c5e640ad2c7a84be1f1735d75893e7a88708c0f -DIST thunderbird-147.0-gl.xpi 488945 BLAKE2B ce2c39dbefd9914a1d11c92f3480423a0dc8846eb91883297a639f0ceb6d0feb552c24b434ced08ffcd906358d644dcede3958ca73b96d1e7476023b85e051cd SHA512 5c3a04d93823f85ec4338c59c95ef889afa31b84454d126881e0cd03bb87f0bcf36080021a8e5cfc63e2d751cbad6b524b8775171953d225a495c229322fbabf -DIST thunderbird-147.0-he.xpi 444177 BLAKE2B b1c23dda6ec08f04dc0897a8877302c08c2438cbfa330c6786b5dce016cb9eee9d96a78719d2845c3de1aa949bbfd8894e6d335795fc4b92ccd88c652650291a SHA512 326330d36db2f8e9ed1253afe58cdf8f6c285b364b561681a2b6fbb827882c673ac68716457e62297b555ea9e45eb3455341d6667c73e8cf172144ad160da640 -DIST thunderbird-147.0-hr.xpi 476173 BLAKE2B 2555894b164acf3579423d47a5fa4519eda8af073a90e351c6f5b91fbf681f6b8b5e56e458d4e22e34066d74f40287867fa9bbe955d3ccb61d4a31c4dc36e153 SHA512 cac0f1119e4655a3d77a12e0df069a93956a32b9754e5b656936f1b9ff745cf220b19de2e0738a045f5a91c84fb3f0dad4d6cc3a523d2734995e7b5c8d9852e2 -DIST thunderbird-147.0-hsb.xpi 521893 BLAKE2B b2a910561055bec22efbe54e17682047fc6b41563b7ccf75f355696e4c3f14fc8e40c114712d908df8b2509ec6a4799a3965de9d0b9fd7460b8f7bc3293c6131 SHA512 2ed90fb10adce40435bbbfc2fd7fb1b8adfc6d67f17f91304a8122f4297723659566caefd8f4409650e3a00df1b65124ce32d58c464950ed753f661e167374d5 -DIST thunderbird-147.0-hu.xpi 524503 BLAKE2B ff9fbe96184ff3c9192748baf036a130e393c87499e58f42c74a852f81a29df9b261b09ac29194509fbf9f79c90e40da12fb410f69fc58bd0fdb55bd066edeb7 SHA512 f89a5a5b1176e379ee0d26192da89af4ad10c5d0546927c99cafea90f8cded97155cfad7961bcaff4012c82d07ba144c4e7032b3dd483220fbc5b1c0e2a6674d -DIST thunderbird-147.0-id.xpi 471094 BLAKE2B 1b72e2bcd71e6c955f8b7a09057f124aab58765cca1f358fb27f3baa2e406f9175cbf9b1dbc76cd64bce05b0dac8c770f0f1753d158d5549242c3f1054430d3a SHA512 fbba284be7023a3176f8cd22f551accd298b5277cd059e9fa254f08e4c95a0834ec310d90c98299cd3baec64f5f70f68c8f15277ad6c086abe3a463fc5f006c4 -DIST thunderbird-147.0-is.xpi 485923 BLAKE2B 5ea1827665f3599d2a84e8771049f15e2a262df0474929d57d015e8b91cb48d3bb6cd0a80b1152e69bf2ee446815c4ae83f6588046989aae2b85d4195d05d80f SHA512 939e3381116be23b1f2a8882d6bbab741d83f2fd3530018196b68c3067b70439ce37d0ee9743e0fdf3bea991110ec27065a20d47b2f4066ec2b6c857c019752f -DIST thunderbird-147.0-it.xpi 494991 BLAKE2B ddb58a24098cccd4a2f08c0bb6f020cd9574342c73af78e058a7fee0b95993afb9a432dfe3316a55b08071a9fa0f8534f9cf1ba5d0f7d52e77637d171c928f15 SHA512 ce7500f812dc71257496968923fa4cec89bd439eec0a35d31348053d80f1c29a9bfd006d9a9bc14f1aba01734e4b7b738fe856ce7cfd07f5a75be82d4ce6b6e0 -DIST thunderbird-147.0-ja.xpi 546207 BLAKE2B 2052a202f302db415e944bf416657b6a55c768f03ab496e7f7c7b06cc184615c70bb6d7009b3c1b8bf0161d386cde86680d5248c9a696e523aa6c59b32b808fb SHA512 7c6c886588708edd4604669e98f40aab2e74dd5113c900cdbe5f9c19ab6613ea617720d2b49983d584e6aaa836889bee19a8cb7af4d6f92d865549dcfcbbcbc0 -DIST thunderbird-147.0-ka.xpi 562232 BLAKE2B eff8a25638ca2ceaa4d5901752fc5cb755a8fe5fcaf7ac3c5f19bb0378d48561a9238543562028684ddbc45c2ce756e94738ea2d2c413e196e5857dbeadd1cc5 SHA512 9d017e9da60085ecd783190f242f21f7ec91d26eda7e510ee2fc5d1e823f9f8345ab9738a902d47137f3acd8e88ad42521552dccd0d97f797c377200cc5d8eaf -DIST thunderbird-147.0-kab.xpi 469114 BLAKE2B 4d319c965d186d9b05798fd997fa323f3c6abf670c9f3e6365806c6d1105204cf272faecac36be2109ce81e18fc3a44421e1ab45da59f28a8ae25c7da411d1cb SHA512 c4a0bd30a079aa404fb33aa65b8ccff540d5680be07c8879c1d4e15a52322661f1de49e4fdf65770a154d1127321788a0d4b8a336d9a06f049052b5599d67762 -DIST thunderbird-147.0-kk.xpi 586395 BLAKE2B d780a739045ca938b241e0196397fd1ea53ded8f5ed7dbd05493aeea7003f3075766ce56d2a87568370dec89c54ccdea794b10633e1eafa364b472aaa07610d8 SHA512 965606eafd607499e06599fe6c8af2f829265c863e0fc6731f6cbddc147acdac46528b2aae3cec48a957849454e62442f07a4416b7996a4a932c7917a5e31e3f -DIST thunderbird-147.0-ko.xpi 519363 BLAKE2B 09cbe32a52db325a7502068c14143e0d0cd010c83f2c404ab32123f8f76c93c89377c97e9a10ca46f1d089884c378697775568ad27b17fb2845bd81604906dd9 SHA512 187dc9a21d8953d5303ed8d1e10fe5bd66c2f9ef2da86f5a6ef0e9da0ed6e98a19565e53d93810aaafacdf73148630d3f1a3f64ef33a733ed41434b77063fb48 -DIST thunderbird-147.0-lt.xpi 451108 BLAKE2B 9897c94d83f5d379be2241e2709398dbcbe4d19b06eddaef5274304bc98f9cb00d29695bb4fc3f33c226d260104a206b65b9a943084f88b6a2ee7ae60c5dcb2c SHA512 2094e2d441e89a2f94e92a7409c0895a0e6b5efff5ebce22e4363597e4bb3ea5c658e88d8326eb7014a48c9cf2c88f434a3b002dd93cce4d6abdc6aaf5f3f4db -DIST thunderbird-147.0-lv.xpi 388699 BLAKE2B 5fd2608f2fbda9e173396a397fbff3c4f8f8c87bf7c7684fc2748a54d92d534f1ef79befcec33f3a8356eefc5063f6225a6b0269601510aca80a64067071181c SHA512 c2987f8ace62ae004d293bd71c9f966de3551e25079d8708eb85030a97c43f0cbdd81c3b6b5db0a773a8d7960a22e991bda585762f99f69b439ad3fb53274239 -DIST thunderbird-147.0-ms.xpi 350559 BLAKE2B 7460075146ff8d756e9d6075e9598a319e90f838344368eddebf2e03c90fb5ded9fb05ec81288bd939ab17ec0c6d54b80f529fb274723b881ac383ac7cc1ed94 SHA512 db8674c4fc7bfa27c56afaa60c0d1cc9c4ff9ba00c7725937a42db5a5e60860630b556a0de4397c5c3cdf092a1db8ea39d2451a17e9a219c6c7f9bf2c51e9f51 -DIST thunderbird-147.0-nb-NO.xpi 482518 BLAKE2B c45c7ec2b0fd94833d41a2e7793a66c74aed18951739ddd9cac39437958d2f734521943ff2a710f4f1ae12db30c9ff77f0ea94b2e8735df10b2f6ef3865a419c SHA512 c648da3b98e8b5fc24723b409fb903c6c0f5dc2c289402e08b732ca3e2200f69c4a12fcab042361cf2fd70ea18c548635b2f20bd0598296d539480ebc92bb0b8 -DIST thunderbird-147.0-nl.xpi 488672 BLAKE2B f077e7a0b4ff8629614f93c037ff690861f3005c2157136e6effbdfc7856ac82ea23251f78941a2634753ec171fdaddbfc0ec2d7b469f5c834ada51a94580020 SHA512 53a40d050497d38ff64adee5968d1047f9a5aff6609e7beba1268a06e060218bc30e02510542eba9f1bf67dc2a28d48aa0988b008619bb105139e07976b1e196 -DIST thunderbird-147.0-nn-NO.xpi 486396 BLAKE2B 6d47b4fe540823869a9888c66e4b6f6bfb50326da51cd915deacbbbd4e66931b3f4b012482c5a7ae0e347d4940b820b9b113c0d179a4778825d31f36420c3e75 SHA512 134dc18ad67d333a907bb9d2284525437caff9f7d43d89eac48d3fbe70585bfcd919e2b659fb097f53b9579ee4962596059065c4eb9981c0e330cc6a88f4b390 -DIST thunderbird-147.0-pa-IN.xpi 435804 BLAKE2B 6ebfa855b05343eecbb342134c2d70ae8027863c93fc1bb9e9c314c00a58a87fe58ed08b516bf075c4b7b26bd26b151e5fbfa5f9d40184773b79dd33afa648b5 SHA512 88381153750e18a9b616da045134b0d6560c977107c92e13d34936bcaeaee1a2cc2f3e3948f57668ff0e3a1015993ca2ec53ea0ea7eea35cb46ae13feb7b5dcd -DIST thunderbird-147.0-pl.xpi 522617 BLAKE2B d094a6fc93cb9a50763f9617fad7975b3a144b820676275434b5815e7c5c03b53ad4a98f8c2111423fd17d1e63673da991bc68c4dbdb56641284f05f26eb396e SHA512 587ad1046866dbf386aab9856ea895bcf764de95f51515c0fa153a53d16914a0ce57c52483dc6321329c74b3dac7509c3e1f715c6a61c6fee4bb907214681bfe -DIST thunderbird-147.0-pt-BR.xpi 496743 BLAKE2B edfba08ff55ee99862267e1b1023fdc104f0d8e4cb223293ea636d4184950bb391ed6c35ae390a08f9d26b868b3fb7c4a273e3833b94d360f03d034171c71db3 SHA512 c6c696d674444fc84bb624bde2cf120dcd04c8a6abd99736d876718d58ff28a19cfc1a85fe47a1367d0f2d2ff62fcfb91c7cfeac695cf1a41e5a3124aec654de -DIST thunderbird-147.0-pt-PT.xpi 486033 BLAKE2B c109ac5fab4745495d74042e9015030d6d456ff165fe008803612632a807ea10da303a97d49dce6be4878d893aa1204d2a55ddde9be01c4f947200e2f1699411 SHA512 9da557bf6f328bde0c0c9d995e5f8b742f4b05476af5755c4e0e1a684ee95dbab829857db80825f58086378aa6e2f5644f709cf1ad3e0647c15072cd8044f39a -DIST thunderbird-147.0-rm.xpi 487589 BLAKE2B 0dbbe83f8505eef928fa2ba2656105b89860da3dbc5a05abc16865b59e078795c50202711222d1b2727275394edb192f1bde306867848e433679ba5e3e872ba4 SHA512 3f54031a8d96ba6b6daf920c2374b0f91a863bd4554d84d9da618b0d2ae9f5fd5f9268d9b9c367d2f6ab5e7b711fd9bb893913ca3e72c86c6d0e7a9e88ed3e05 -DIST thunderbird-147.0-ro.xpi 507922 BLAKE2B a95cb9791f23bbc3fabd928fc30c430359200ac7e9537dd50d7b8417ed33472c9fa58892a3bdd66288bcbc6e11303fda2162074f6f3a33f31edfa0f5566c1ec2 SHA512 0ac7eff98cccdfcf14fc108e042a77b328273427ed45fdb103cfe58e085adbd95e9ce89fc42de85e36220da040b19fcbc5fa00e95a9820c57c15a5b3a171428f -DIST thunderbird-147.0-ru.xpi 601166 BLAKE2B ec64890a47a9f506ccf11fc962df9cb537d201dc614f7cda2a4d666c2cf612a623f0b080ade5d545742cbc1804e6da4c1827d3a7cb4f9338f22b1f93ce9e2b90 SHA512 5f42c9d0fad32dbfb69c7207c686b42e3423a2c46e6d4b835241fccbd63788c5388bcf184b4e42d0255c00563d132fa42b9244a848596bb27a67024ed7750e3e -DIST thunderbird-147.0-sk.xpi 527054 BLAKE2B 36550bb5d023730a12739211b2565a8470283cb272cc9bd684489d86caefb625897bb652396f3604d9818a81cf8779ef1810296667411ad0a7fe6faca6388c53 SHA512 5e180f80fbd51b31dfce74a83ab9966fd166ceef951b3548396ad84666ae26d3608fbe328ca54e85fd88500250d2d925c23788fcd817c5b4d9adecd90b520962 -DIST thunderbird-147.0-sl.xpi 491182 BLAKE2B 911865534dc61d77e1ea2e15a7fd8c2052d97056d51bcd26bba12f55915a7f3dcf8b1b742ea603f40b51b1976a84df7a615026f0b1f0656096bd11fccdc1ee25 SHA512 4b408e8fcc2ecedb2899e3e85af6421dfd49d97ab16d27d09d32814331104aba1fc8c7c9f50bf73ec7400948dfd0ebcbeff64061f1840757856b5427c54dfd3b -DIST thunderbird-147.0-sq.xpi 513075 BLAKE2B 9c9c99708a9c8307ee08431bedacb118c3a2db2bde4d40ab62c8829df4a94f5df2929138e31b32e08a8f49a7a0422f62c8e20e2b3bfd194340f3b0e5428069e6 SHA512 8ce8d3304f6892ce3f602a3c6a9c84d65c0fb182c11f642f2de833bc5e011cdd4e66690203f49e294d3416dbe6b9d77c3419bbe312dab9480636411c28020997 -DIST thunderbird-147.0-sr.xpi 493074 BLAKE2B f71b759a53091504864b386d01e36b086d09f9f190da77824fa14f6649cad693b30f759a176db06d768e36c4bc7c78aba28c9a27d3ee7c12aff053547d0f9568 SHA512 e880c659c92fda08f6d08bbf95dd1cb4e8b25f61365ca2ed708c453b2636611d3302a7fb3199fe44e71be61c0332c60c40edc06dae681d88060b2af21de92db4 -DIST thunderbird-147.0-sv-SE.xpi 490952 BLAKE2B 2cde2214614d50952eeee5318fae9562d1c6e943d1a76708c4ad17600bebe2f3818a6a5c53799da3d895ae9885275206ecfb60261d4b2efa324d5c1b5f7b4336 SHA512 44f17e018befb5be77591e43acd21cee4d2c949aed41bc7c6f7922140f9f25f9935c71e98f2fa2ff02d7da622ff7aff26a221a5e6e70e5667b86ac5c30aabbe3 -DIST thunderbird-147.0-th.xpi 568261 BLAKE2B f16c84e1d76bfc8de98f2b5835bf87c7be324772729ad17f4ad75e442b12b99669b8622aa174f4e12ed1ead852c90bf40a12da8b322bda7029a1e98d60eecb0d SHA512 72cf87fa0013773410d0325552d0f2da894d1564efb247b54342ce69175d21911d64372046d05ad5555cf4c0b9a6f5ecb68b2c964d38ea2bc4a982703aeb5acd -DIST thunderbird-147.0-tr.xpi 502700 BLAKE2B 8848acfdd2db909cdd20699e913f41f0be41d2750d7fdd3969fa9594b6bb0a724c886eaec629fc5b3f3d081608449542a549c2204f0800d98314d138737c1a04 SHA512 566bf38d754e420c33dc1fc48a107c39c07a5d5060bca76786a32d644af69b7ae04dca65d2e467e41152e2030fad075b4104c3b20b149d54534bc00fdb4d8528 -DIST thunderbird-147.0-uk.xpi 581403 BLAKE2B 708adf126b197ac2ad4a4c5205c6129ab508f776278711fb79e680621244737066cec860d9d7354e5b35a63d87bf94f2cd1b6fa61673fe61344edf499e7d18f1 SHA512 961d9d051a96f781d3ba5f86bdd7332ab0cb5129f867c46c653b18fcc91a4175ebbfc8eadd76e7ec1d978a9c41b603d8db19806985710061e86535e748f26d91 -DIST thunderbird-147.0-uz.xpi 352853 BLAKE2B 265b41778f264cba71aed0ab0edf29aa8163a3507a0590a66068309edd5e670feac3532c1ab0c96c404a77e1d7bc06649591c12f02d0fbb133611cc91c4d4021 SHA512 74a025576405bd9f0ce4ad9af30cda8fe28826fa64cbf01d002af4335046443d455d42c53765fadb64dabffaf12971edd8ff979ac1c68c9dd087a146f0b737a4 -DIST thunderbird-147.0-vi.xpi 525244 BLAKE2B 69c041687feeb5667d7020da7527ce18bd47c612a2183cefd9278134db19ad4c86b9a7d24bdab125b3b9cb02b11bea19ea212c4a9eaa468a3059bb2be8ca033b SHA512 2a3cf8aa906c5b2cd3b40ebdf28531fab361d2a1d219d995d8c41c38cdb93a8d0e5e4c0dbb0fa93217f8392248eef25695502abd8c635f4afd1b08a6d3a9687b -DIST thunderbird-147.0-zh-CN.xpi 514161 BLAKE2B 619857edf1cfc6277eb8b51e92db033676c1fd51abbb98950d8175b2077028fca5db1c6be03be9cadebf3bbba4d85bff43b824ada70cd4490b80da59fbbae7f9 SHA512 f26fb76ab74540e0347c282c25932356d1e1d0fb47d6cbcb8928110d3714b9f8eb2f1e09cd8d5958c81aae46246bf8600051428cf5c635b23d56ea4bacd6d641 -DIST thunderbird-147.0-zh-TW.xpi 517868 BLAKE2B 3d89c8b0931a0cc5adde833ad8fb0ba2c0651e317ae0633160bd9af259ddaafc4c39fdfeab985775b0075df5082d74285d48bf5692a6f0db6daf9d49b9cfe9d3 SHA512 fdd6f43f5467aec5c5e290c2088f63d42b88d31f138fece1d5893ef4bec9d9cc54339cf240f04fda9c6b033a5a47c39f09a4ac99dc2389daee1c28617aa233a4 -DIST thunderbird-147.0.1-af.xpi 312141 BLAKE2B 29861527fa9e7011d14111004c23b73b77619b1a3af79f46a7c3aa7a9a39fdc89cdd0e93160ea83845610f3056141e358c5631b9439241faba7ea5708e6f15b7 SHA512 e45a16852624a7b1dcfe67deb4443fb06fd1378bc4452bf40a8d46518ddf2c06cc20cf2dad0dbdcb4e6c35e58d36cf619c7e4c6cade57d4dcff7ce115f315418 -DIST thunderbird-147.0.1-ar.xpi 434056 BLAKE2B 36498d77b7c64a47c4015497f72d3c9dbd4bb1075eeac06b20ae3bbff1b827b7a9e4befcdf60e158a424e0d06e15ef0eaee26bea869642f6bae01b0f65c502fd SHA512 0fe0a1d2725d36b3af02af2a56e53a4757ca9d7694bba4c289a0e0d2ccd16471ecc912b04cca4a6bc0df9945bfd8110a1f2fc8b66f8a9ed5103397aab636f68f -DIST thunderbird-147.0.1-ast.xpi 336206 BLAKE2B df2cf8b3c3b3006a08b192767cee74e76e8147c58cdebf0982adca9b18b7c4e3a410cfccf10d4fda941650023da04f1cc371ed17d46f144e324e50e495df5b56 SHA512 d5cb30946bf0b273f5f5351ec6a1915fb815c5f1ede255d3b83f3b64d2d43b9c77cfcdb87f41444da517d56fbd44cf954474e235a5decc8ebd36e147b004a50d -DIST thunderbird-147.0.1-be.xpi 522340 BLAKE2B aeceae1ec9b35aebb76a0c6188a4918f05c6f9dbdd908eb90c0e647d8ab462c6473e6951d939e22e4fd193a105bd6d256ad08833d96670b63a620bbbb5591064 SHA512 c198537700f1eb85fde44f90a8774eca953886435f22854586c09c6de025ec4ea248b487b396ffda6e190d44c98ad1cad2067aab2aabc356f8719f01979ff6ec -DIST thunderbird-147.0.1-bg.xpi 543153 BLAKE2B 03d294ff7be72282e9ae0f719d551dfe682bfaf6337b531be07a1b94c40abaca46f8bc13a70efee0b9944b383e27bec9bc26c307007df316ee53c96aa0ab3692 SHA512 eecb9857baf746ff089259e692e8b800f7b680a6e5a3da119fc0ff95a01596f31fc83fbb3939a4cd9115a6956dbdb9ba365e59c19d3b7c790dda2e2371a100f2 -DIST thunderbird-147.0.1-br.xpi 401078 BLAKE2B ce7a831010a991ee3cf9d86367bbad6b3ea6aa9d0cfe1c9b97b87e4d94f1e25d7e30a1eb3289e786d8b8ff81ab0103b8b33b3c5bf672da2e248166286e83da36 SHA512 7cb261ca5cc6af78bf351ca28a8fc9c622100cc7aef2f1b556d021ce31b52485f855d5b6f93647309366ab46750913b9ff86a07cbe465d9cc6d8e8b899aed9ad -DIST thunderbird-147.0.1-ca.xpi 438291 BLAKE2B 09968dc0bd5047ded547b50b4d49f7bf40cfbad999624ec2079ee55cab15fdebc615cd849f32a7e9b620b2bcd8af77ab474e7e9232454adbde4c5ab96c05a4a0 SHA512 333b194954d2cd40b9e5db174f289fe34f33ea68dfffd04c5d83b87587ce007a00899e2e4e68006ffda738ea31ae71971f6d204b411fac528cf94dd0b54437f7 -DIST thunderbird-147.0.1-cak.xpi 414739 BLAKE2B 904b7703c64a9711ebce9a8a2b391d87f711499a72ed46f25d050e3298be71d2426b4d45ceb5f5ed8d52e6a88584b1e24d8b17cdc07abe790d239f2401f12b7a SHA512 b47ac00dd83fa1f8b4ef60350d9b8c295be746e875a962cead2df741fbceac59d5d25dbb2c5766157f0eadc0543cc7bc7c5f55052e52ce119ad0cde73a083f42 -DIST thunderbird-147.0.1-cs.xpi 527274 BLAKE2B 6b791cecc049b28c9fd26833a8dc3f46ab0e1a108126712eda6414a6613d34d883c01fafde46b2cd2e209e8ab070432d2faab5be2d6ee49bf83046374695ebf0 SHA512 b8460fbc241191a0a5d8d7d5b5764e0af6d7db1ff6cb941b107f1054f3f72747cfc9c3d049971f7176df201864826864692b8daa48aa75fa0b88fc488b5fea8b -DIST thunderbird-147.0.1-cy.xpi 494802 BLAKE2B f2d09f139120fb3ad66a0619d8f99b57894b96079fb36b67602a8ae881126abc21d19dd0c886c44fbf5044276db203e9b1f7eb58adea9833d52bfcdf139ecded SHA512 625fe23a3429b665b44db62792bd22f41be06009de1d992559f320a5cb42f33f72b5d26719c0d5d98ccb37630ad916609cee3b12e318b1072a00a8b5fb632936 -DIST thunderbird-147.0.1-da.xpi 483074 BLAKE2B 03d53f6fecfbc562be1e9c7cc16f46095acc368ff0d68c28812fef01acbdb1425ce67d8f1d4d9162bffdadc110bcf83fea18677561f01402c1ea4f78894ded50 SHA512 ba92b24f755250e39c81b5284fbfa4667df9990071a3211675a8a1049779959f15277a14fae7ed7ea5b60ffec17fe1c46a4aeff188cf46592e31f3e93cd1c4a1 -DIST thunderbird-147.0.1-de.xpi 511734 BLAKE2B 9903dccbdef32394b59c63f09d99fc3666e0533097f88c76d2ddfe30001eb9728db591f56faa5a75371d141782a37027e57891ac664619370cb0ca5386236b0c SHA512 493e7d452475f57100c617d8deee8c8767045542ef20d27bcfdd9fac3b6f2655b2d40a00625e24de1d021a16137e1082913eed4d103cad76d7e643e4d7aac024 -DIST thunderbird-147.0.1-dsb.xpi 524708 BLAKE2B ac9463fcd8a0c262f1831f81fb117812d01c724481767522a083c4d5e024c626fbdb1fd395b98a12a4858e1d4664787e77cf236cbcfb0187d512e91996a55ed1 SHA512 46f9224ef1461fa80e0d1cb9eeffdd812fbc2120571d6fdfe3725e01499aac106bc99f1fe6651f24b82f793b407c80f585a92ce8ba0de00dbe4ec45b858ffed8 -DIST thunderbird-147.0.1-el.xpi 616560 BLAKE2B 8035fd438901e30376a4926ab39184e1f118a8e4a6a935f2d2e0b1a92b41cf2e344a23d31c75a0e55c3b76a1009d6578781024091bc794a4b74860cd99b37938 SHA512 fa98947c183614053818625c9b037d88bba2810eed526b6b155f786f2c3ffa34a55a266a02f5bd07ff4c5d634d0a9135032f51b8e1bf108f9efd8857d368d38d -DIST thunderbird-147.0.1-en-CA.xpi 458185 BLAKE2B eddbaaa0e351d190644443df93203cd97ab320287adc562db14247af83beb6b3445f58379226d349e00b9484e6c326d87a984b4a4cedd46b731fd03e2fb08e89 SHA512 378a564c5d9912f18cce349ab7bc49c7c542a88805e42479b75de4cfc059e27d7a83974f5625efd8d3e4d044b152e9c0392e3cddf22df12cf34d29b8e9b97e45 -DIST thunderbird-147.0.1-en-GB.xpi 458133 BLAKE2B 4e3fbdcbc2a9430347fb0026c632a171ec59ea9f014ecc3d428e753188ab6b329d6217748e0f2d91842eee713f2287c9b9cfc3268a046156814f73d3297292e5 SHA512 24324294270545c4bc73d5fda13da56aba477f484a89acb12e88c432fc83da5419490d9acd5b2de711241f351438dc4bd17bb86084b7d92031590dbb9e229cd1 -DIST thunderbird-147.0.1-es-AR.xpi 501884 BLAKE2B 97a804d20fe5ab060b5a7be34714110af28d1ee13c700db281feb5788812962e7780148ff58b401149a35d369e7b8f37108c3adce34c7c9bbdb10ca1b63398a7 SHA512 ab9429973806b319a1feda5146aab711430e7d1a031d449aaa0fc62ec2ede34ec4213a256342f2feda48c2154c2ce22173aa5653293f0792bd521c3fede59eee -DIST thunderbird-147.0.1-es-ES.xpi 504071 BLAKE2B 18eeaa2e267e6e35f9665532282ec8f9d6190ada59efbf239ab37938409800aec2235d3d0ed2d1a9d22e3b04a226bb5b01680b76285fc6352d9f2a2245b8713f SHA512 28ab554a6ad079fef681f4d596be2f93d1e1c2fbcce639413a446c6bf4897fc65299bad8d3982a1b89bd97c13979661d1c0dd5c32634e48f49d7e41d893033c3 -DIST thunderbird-147.0.1-es-MX.xpi 489659 BLAKE2B 80ae9b9361af6248270f264cf9ce864abeedd8378926f28a65da35c0031252342f86418d8d85255b025374282a916534c3556d96ea37f04b0c5cd5d3153f0f85 SHA512 67fb1d4026578c4ee0c595093957a6eb7fb4cd8b42f4972ddb895d28426c1a3c27e19de37adeb5399d33e14bbe187c05ada7a663dbf27fb7f19b033ef492272f -DIST thunderbird-147.0.1-et.xpi 441296 BLAKE2B 6324e81fcbca2d9741e48c8167a1e8eda34a6ffa0134cbb42a83c1b1565b8c47bfafdbc53b09f28f4110fad9980e03c5dae760811a5ea845ed1af9efcf8a9581 SHA512 d722f16eb34ef6b6febf251fd281f9b77c054d53b9c5446e7e2cff20ed7ea8671dbd1345fe26d71f4de287974270b87563eda62fafe923a8f0685f2a99f99bfa -DIST thunderbird-147.0.1-eu.xpi 480260 BLAKE2B 768dbff6846330f68287553914c2f664a0e6a2271e2bef29d22b3ad51a1195ed5a1ad51b7fc483af9376c7d6e992da0f3a614eabba5076b4770bae0fddf01197 SHA512 4f453d5995154c59f17505134aacfd850b2ca3bdeb09150c7c0fe8c555b006d4295a610062dc8d443acacd8a9facac30f6a86e95853455713d9910c1ed239d35 -DIST thunderbird-147.0.1-fi.xpi 479305 BLAKE2B 105c1975e5535c9618dadbe584f839f3f77180f5478a74011782bf536279d12f3033d5192a3e648ed0e127d98a45fb37631bc152cd0b8e87956837b601796fd7 SHA512 0dc441d7f52bd597df76dd8a1849811b58963c1d18e37ae2b8b4d0b6d5e5c576509464d9df87ecf1d8452f8bb50689144b3ff771d00060f77e41b2a343bd0cee -DIST thunderbird-147.0.1-fr.xpi 515110 BLAKE2B 379026d8ef4510af0c1ec29575f2ad51b59d2d932aa406e301a40006ff27d40834ef1101304d062464f987b0e3a3fc6952be3768811e3cf616dc2bd962ed61a7 SHA512 0df3645609cf81f46bd68d4fdef3fdb55536afce87da2dc4531abfcf62ddb61c7ee213c32b520dae9a1ef677c71a05c52b7749b0793d643b4f610207510f514c -DIST thunderbird-147.0.1-fy-NL.xpi 497416 BLAKE2B e31291cf1716d9a8c684f711570f369d3addef7abeac05c6d4e2daa2a39c6cf072a099de0e4335aa1a35a5fa8f8e0691aa0199865113e1ae4711c578595515f2 SHA512 503777754c28bf14b4239a41af4add07d3dd8e7ede431363ebd3a825c35a686d82964cc469f1f44cdefe8f2c82ef3dc77d98debaa6c6f4496ebd1ae18677a81f -DIST thunderbird-147.0.1-ga-IE.xpi 374259 BLAKE2B 96df93726e4431e140656fb555050eec581baf5298df575d62291fa36625c6440ef4846d80e2e9c461ba9ee1350051ec425c1358ef9611517986946df8547bc3 SHA512 7726e5d78309c296691ac95f3180da038decb971c21f30fa4f13f9a8868608933013df378504ad01be4bb3213af0d1dddaa9103e67f2667646e867462e4aa11c -DIST thunderbird-147.0.1-gd.xpi 459623 BLAKE2B a301fab450e076adbcb9e730e4e9012a9eb257cc71390de4bd54d54d377239fd40cf7e0806d4400a699704f370714993c3a691af0028e09a3e51f5f60e0794da SHA512 1cf26f2681a728e9c636f7c19be96468e05a8a4aa332273e775e1f6f3d4cee15f3e0679c73d81be51f561a47ab74421f9a57f6f842e11d806f2be5b25eb9c480 -DIST thunderbird-147.0.1-gl.xpi 488946 BLAKE2B dd6e46ad48fe1e859c29f36e6ecbd2a7d3c20ddb82189e97f7a554247f915c33161cc5aab0eef19c6171dfbd4e7ab59afb42728b6ad037511530db04d61c17db SHA512 a83cc7cc44a78f9233d4e738ff19b609dc3e3f0eafaa39b1306f829d08b28f6ca01db38dcaa30475010bba147bb95dee32882a0c1fe5fa5c57a8b945f29e3842 -DIST thunderbird-147.0.1-he.xpi 444170 BLAKE2B 062fdf8fc44fa2d24b6a611024be66400c5d586dfb7b2e94ff2af21d22fc245fa2e7c98902c4fd59a523f54dfd6ae9bf226c06a77ecf4007a33dcee693e882ed SHA512 8e2f77fc7f7d974f6f1cbcbb27927aea826f9deaf29ff74391345a22a33f8281556d42f18d2485ec9b7c70b8046ac933d5e3fcfc5be824f5ecc128032ef18d89 -DIST thunderbird-147.0.1-hr.xpi 476345 BLAKE2B e2242d0092e3113c534baf805cd4633bb056930c55fdc43e1bfde27e70875e4ba51dd2ff8c23a309010af340b241ee6e466b70a8e481b653d3788fcdadc4024a SHA512 5a0a072a4e30b355c816f5d3647da1b12e97e740cfb490a88074e8563407cd1bc720e2933c3d1683a9e4d306bc8ec0bb50b1f229f5600dcb1a9bd8e29dbccdd0 -DIST thunderbird-147.0.1-hsb.xpi 521894 BLAKE2B e1e7dc54e7d654bf26ec346b08ea145c41ac0982fd325f760e14506939606b3a3b6072e28f6b2f5802f43de056bbf5583ff9e5c90774a766e67327ee3f3769d2 SHA512 4c7b264ef5f65734875aa8305748e7e0df00882908e9dd056b7499812632b737069132c1909fc8a925ad8d459a27af901ff69a29a4836ad44c1e78b5232fc647 -DIST thunderbird-147.0.1-hu.xpi 524548 BLAKE2B 9f1cc1049a00b4fe2503f327d44bad008bd320472dac24235f48dd62de44c9248ab5e4f172f622fe1e01d43bbb7609191c63f422fa1c7f6f88873e59e86af4c1 SHA512 ac425687ef3f4e7aa8ae23f50addea91914cf15e009c58d81e99c27686cc312972b758deabe9c08600dbed6293c9499beb143e2b514a2002e96af5e7dbcb3acd -DIST thunderbird-147.0.1-id.xpi 471096 BLAKE2B 6687d920aefbecde8811d331076b71dfc8d501f86711d31cdc36c05a9f350da238405ffff886751859bc2fd5b3c4810eeb1126c0416cdc9901d8bc279cb223c1 SHA512 b8d2445b57bc30adb201d422cb5c6ebab10272c1a0b1c9fad36004aad5b76b24b3f2800d692b4787c05f97947b5f14aae75df8850d8008eb58758c425fb72f63 -DIST thunderbird-147.0.1-is.xpi 485923 BLAKE2B 5aed1a4dfe3fe999213709c88a4b3928ab2c8706061c39721fda31306758e1dfc6c14fab050b39728553d7f898582256490d905e3559d080a16166a3341a8d49 SHA512 94b10e73fc77fe1b041366fca001cd8f7464c13e26977fc843a3c05dc53c6e87255a23549bd8e91ff5f30d47b6735ac02e8045f3fe4c3d4dfa980de7940cad1d -DIST thunderbird-147.0.1-it.xpi 494991 BLAKE2B deec3a5a4ccd1932cc24d776f6f2c4afc35b3feec3d4a9137bb98cc12a66720475ff111866e92fa2dd68d54cd07d71123ac649749e424a7e47633ccd27e46f9c SHA512 5c56de29c49b0197f78d0cd6dbf58d12c103f6dd5ac1797b1a7274515093461a6703fc97343feedce5c30ddf619fde4e8ef8e152e86c1e710e18bd4d4699c77e -DIST thunderbird-147.0.1-ja.xpi 546208 BLAKE2B a41e3a09abc98561545da92fd491964d654d47d7e9ec921ebf6de38d061a02fe65222c3a09ef589d4aa0fe625ee67759bb2a22790af91d57a4c9710e0ddc83ce SHA512 3bf8177280c8fda36f5b328cf95ae38ffd1950c6433f37c5c576ab688c6c6864b8440ed667e2bee81067dc2786720b01a535f2072af57b22d46274dc9f1c8048 -DIST thunderbird-147.0.1-ka.xpi 562231 BLAKE2B 612948d625cd6133886ba644e41a8e7bca5fbb8111ece404c326519487e431f75c11de2b20df5f04093ea4e56e9e0744055a3d2ccec93c4ec859f54123b7e26b SHA512 5a1779aa034a05a1a5050721473ebfbe73c76dddbaf9b084937cbbe26259ecd5bbf39a24d8ea8ede3a3ccb96038bb3ae970f414254d652364642d17e7dacb86a -DIST thunderbird-147.0.1-kab.xpi 469115 BLAKE2B c46a45e15b894059e1fa9b9a72f6631a2333fa4a5e405a21f972b5ffe8fbf0f3e0e646954ddfda1574ee89912dd5fe4be13bf00fc95c1de96d907f4b4c5634e6 SHA512 c76af17482069f68982bc809696b4f430a54d0436a92e58d993e37086e7790617ddde26bc8d2a708dbc76e6e3dd710b577a20be5f2ee42d570c87e4fca367d5c -DIST thunderbird-147.0.1-kk.xpi 586397 BLAKE2B cb618e066883751aa2d63a6aee5c9f62ca0cc58da0d4efac889def97a5cdbf7d883994ac5d89638cfefcabc85b4932ed1aba4bf0fb3f8b5b2173728cfe3a8e88 SHA512 9493cf0375fe51abc22c752e68dbc2d6dedb6de10e8a15f7eb6cfde99afbf1a78b4c8f4809b3b03b9ec85b76c6e05ee3e10e944f8b8ca9ebdc50e7566c60c766 -DIST thunderbird-147.0.1-ko.xpi 519363 BLAKE2B 2ed965fae55aabb42e87796af56e550910889da5a57e6a36f10a846063e424b917033819bc8855805ff524b994e8051625de9d7891ed1d6b4843924ff9ffb887 SHA512 36bbac618f7b604bf95222dae72d19b8acf3a2892b6ec5bd85f0cae6ba0d5b0600fe1a101e9264a1937105e950d9b8b5f4d17c515bfd92098305084bcb92a0fa -DIST thunderbird-147.0.1-lt.xpi 451110 BLAKE2B e9a806556cdc42bbd2620c629d9e47099b0e608bb7e0809782c4dbae5ad93cb96389c26cf21a0f7d268029a402314bc3d6a52f862b7837bf4c91531bd44e1f07 SHA512 816a76744908ecd650776d9e389e406090ed5a6011424beb4606f003f410c6da3f2922ccd1af0fca6ab83a3ad2a235ed4f3da31f23c3155ae4e73992c065ffe6 -DIST thunderbird-147.0.1-lv.xpi 388699 BLAKE2B 87299a4e3e4fddf1a548284831ccff7233763936282ec6b7f27f0b9418cc3d7c9ee172e3b9f1c246fd74bcbafc8a9669247bb8007b71e07fe52f9932f6b4d101 SHA512 47f9b4b885a0ca4641f52f520f38d230eae9df651f2da1a69743bf6e04da8fe010f5f555c175eec3636d5acfb7f5e4f49d39c448768ea27a6c734cf315833943 -DIST thunderbird-147.0.1-ms.xpi 350561 BLAKE2B 4f27a545b920afbd73045bcda8c453af20e82f7a4abcefe90a8518755f85cef7836a772c3505307f47929f001f93a6a5f4ca5b888a31b6fa74e37a56ea339794 SHA512 1d295af49e3ee8cf88e758e9466d175a96424e5ad89e5eebc5189adddfd41ec1d8c626bc2b8b2a9af723282cf6c10575eb903b8bec6ff458a55f741439095a9d -DIST thunderbird-147.0.1-nb-NO.xpi 482518 BLAKE2B 4fd352550ceb1350b62a0da3ae8da5c9c34007f42b5b3bad290de07734c40e30e5f9a6bf3c74f197756dd21e1f6bfcef3160ae675a189ae17a6498282fb73aba SHA512 06e5b898078d73d08f6509e222247e2bf78b1cbde03092f49ed65322b6b231cb743befaeddfe6a793e6fc617662c3b9f7813d8b8c903fe1eea41998cfe01b715 -DIST thunderbird-147.0.1-nl.xpi 488673 BLAKE2B 87c00c72d7ad580f876c90b55c6cd569f4fc92678227ef2b355075d61bab3973147978d89b5d686e0b082a12007b8f7b3e9ee492197c01b9460d72a7ec499c3d SHA512 abacc92d38a40046f6a6970927ca756ba530d632d6b929e6552c955dc1a982c0bac344d5f1f9b5e5e99d75f94f7d6ddc643dc52baf13c0406c1b7c8008b16ac3 -DIST thunderbird-147.0.1-nn-NO.xpi 486396 BLAKE2B 62bbc2823f4644eed44533cfffce3a73e668fc034eb50fd65a68224ef84b1d2205aba5e8dae16e6a0085adbd066e2af96f5ee34cfad6ffba20e7135f9d7376d2 SHA512 a07c0d3810c63207eae34f89ff95552c01302c97cd5ca9a6c070c8a3e92df2796168669d5835e6be82456f6395041cb6646dc4ac9688e72afc1da17497ab18ba -DIST thunderbird-147.0.1-pa-IN.xpi 435804 BLAKE2B e0f04c283cea8d834b9dd9d5612fbc17de481e1e9095695737af9788e973599ecdcb7673a5d60aafb17c832a5e7990c5052f72f1a36f28902abacb37d6600700 SHA512 d7cb75f561388db9be322c904fb9e69ae020ae9adf798bcd93e741f76d4cd4ac6dad92d37b10c01f900339faac5387968d176a2c4b505fd5405134f371134271 -DIST thunderbird-147.0.1-pl.xpi 522619 BLAKE2B b06d058b2a196f8bec989441950a97c4552f98cc90baab18364bcb2c49e66924309272f061b8c1bee921621a9f0f7c3cb91b1ed3868097a0247b91abf6baa30f SHA512 ab418d5bb2978101da235b8e5bf1c5b427894e1fa624e3373e5e9fc407700b328d93af5a3fdf7c20cd3458a5ecf934985b2321ba4a5cb83116c766194dd14796 -DIST thunderbird-147.0.1-pt-BR.xpi 496744 BLAKE2B 5f12b88b144674eeedb19c916e4710f75f4810cc18010841876656bcfa59d9baaf0ba6d8705d2700fa8694d4155f8ce1e7a1bd0b3eaaa1101b2956fe226d4ed8 SHA512 06753cea1f48f64efc6fdb7080ea459e44a1d904a71bc5971644c89ab857a08744773222505a91d0d75a3fd431890fff1fec96cd856722cce1c608c5c7d35f62 -DIST thunderbird-147.0.1-pt-PT.xpi 486346 BLAKE2B 4c210396b3f4cfce16c01c0b028ce466012dc8010fba9fb6172a979871ab9505fa16f8b1f2a7561d6930eff30aac60db25d993fca32d0ab206bd52a6dbe217b6 SHA512 4d4b3a5a72a10ee764b09dad03f40df00cb024d77bcf69eac52e062d1a5e488012fab472ebe8799f86417b1ba103e41bd8b491c25c48f9bba6c89bbfe8c03fd8 -DIST thunderbird-147.0.1-rm.xpi 487590 BLAKE2B 1bb2aacd9ec0aa0b23d29141abbe38c5a6593e173716c70b4c88135bec6761579fe8a454d1be03e5205fa631addb6c2279150a10c7d52665c99d7d7d6ae6a8dd SHA512 26298e79c2daa2e6a512e46e1611dfd9a0107a727247d89e4f6705c9df84ac67cd7cd87781101096a7dd3c95d2c87ef57c52c4bfff6a5187f459bc658a30d893 -DIST thunderbird-147.0.1-ro.xpi 507924 BLAKE2B 3929b8342007b703ae19a093ef0403490c2ed22e779ecd63f7c1a5c6b3fa01f2a3d51836952c6a9f92bf5f8db5d5dea7a2cdb2aa5512ea15cdfde11ce81b42ff SHA512 e20b93496b2e057a96b035adfc64b89e1c014a2939eacc84c6d1b30c6cc384cab05027324ade76c8dede5e4eb524664089a0ab54033c32f3dd0bc2ba70cae6d6 -DIST thunderbird-147.0.1-ru.xpi 601170 BLAKE2B 645fee737afaa29e9af35bc91266b7f1b952385accf1366789813fa5903de9dde39827e2c8097a613329858d3248f5f691414e3a3d05327f599d4534fd6bf98e SHA512 d46c1c224fbb32bc2cb3917e9a7af819534f7a0aa9cc757faccfa55f304469f792c94fed0a88bcb37b5616f1de76045e303d91852f7213c1a82ac98470d5fd61 -DIST thunderbird-147.0.1-sk.xpi 527055 BLAKE2B b8092ca289de4cdaef41d68b6395c792e3d79948700f0019a1f9df3bb0b08dde5a84281c607ee45e3c532c917386c832a7f9a4768b019c3a3da7f2665d4c2cfd SHA512 61e6b41b652ad50b9b34e600247806db10dab117a403398e6f3ee384891711a43ca84fdcda68c4b40ef9e05dd2fca47ecb20c504b825436669cbd8a07a74680f -DIST thunderbird-147.0.1-sl.xpi 491183 BLAKE2B a46f5f81f118d666248a359575edc183aabd9429b4f96f7e32da1bea1106dab0dedfbe68a99b73639cecd628ca8bf97b8277da7660b7176d8f0a43cefc19828c SHA512 369f5f30ccf21c7122a5aed6841fa14b0d9dc962d5bed6ec52c411b4036fa28f58e6bb6da5596b4e9f9e9b485e71ec38700f681c8105482a678438395d16554a -DIST thunderbird-147.0.1-sq.xpi 513078 BLAKE2B dddc1a45dededb0d61284dae37e307d741c3bd7cc1b881cd3999a39efb3d13764b8f95cb3f552cd7d17b163abefe499c85c25a5a39b78d56ad1d81103601bb7b SHA512 7ce6dcb645d5b3386bb3003c27954744081fafce32551d81b7ec764d5c55fb4eaf097221cbb8b43996f4cdaa8b24532a10124fdb285e56f0aafc74ca4db428a5 -DIST thunderbird-147.0.1-sr.xpi 493074 BLAKE2B 16ff9744fd397c030cacd6267491e8853e641c0a392094d8171da415e6155a2124661423328cf601daa39d19eb7422cfdb9576061a3ca93aa7a7f98dd32882f7 SHA512 ee11cb29eb3c34de105ecee3fffd983c8a251172df718ae5984e3aa27d1224f9fa3771f288a9f090959f8cbfa717ec437ff58263bb2d7a9054eb0d034d3150b2 -DIST thunderbird-147.0.1-sv-SE.xpi 490952 BLAKE2B 927b8993c45842974a60d8799b18ba8b1f92ebac26f92f7176223e0999c7782416523c8a4c761caf54d480b55f9398c5aad14597ffef5247cdaa7a77570fd547 SHA512 29ecee273f7f4ac31b6b3a8b737024b698bc6aed35f38ed8e5c2336ca690fa486b8a841f9b843d8427ee85edf8129850fa87040a40f9c4c144e364f861a691ae -DIST thunderbird-147.0.1-th.xpi 568262 BLAKE2B 8836e391c3e320b6f1d8727277167b647444f1e25af630cc4859192c5d23d0526c6001a7b03946785d869f4e3d5e01010ddddb09636e38107d3be9218d23a081 SHA512 e47a0681cf78300c54607ad4c5a004547649538c2a8f83d71fc4dcad889a6f8a4534b6b0616521bbf668b9e3a2c0e8602c00be6d19801ad6eac04024dfa82915 -DIST thunderbird-147.0.1-tr.xpi 502703 BLAKE2B a2c2b99ec7dfd66b6d176b183fbc1db3571ffa26deedef7b4d97fec1a18c56af944e1b7a6cd51bb427b12c21b096c282cd5a658721a557851948772eebb15bd8 SHA512 ae61258c25bae2c4e6d4c22465a1039e6cb044584ef03c98f04629514e7917c6580f68b6054d5df8497b7147fa40a5b6497b74ea4a447ad4b090ff178cb560b7 -DIST thunderbird-147.0.1-uk.xpi 581933 BLAKE2B 3409ece349f408d6b3234f7390691ede04a67fa855e5225fc7b75f030be328ea397428802c892953ef70481665b82e2e5c9961189c371030939eb569a87449c9 SHA512 67780ded3aeeb61e1f7757a46587067b5ad1a100380f9812a3c6603470ea69a5804c932d37ceb71c613b5540a9a22e41b34396d0b080a45a5fb52c2f13e475b6 -DIST thunderbird-147.0.1-uz.xpi 352854 BLAKE2B 2d3c7dbe4709c34ed8bd939e582a631a1d38aeb6edf9c0b2e418f281c868d37b239ffbf9404d785b0271e161bdddcf55d0e57ce36e5da190e9e381ca1afc8590 SHA512 0f765c9cca883f57559a42c0716a962b9be3461378f64a4c128ee5efbc99b357510ed3c0c047c88832a3b1c586cbced634a8af1832cb3fb6742f0c527350d105 -DIST thunderbird-147.0.1-vi.xpi 525246 BLAKE2B 6d6bccac26064f5e2d80694c9064e2e0fd75b805c48cfff67b6373b99a6cb32ad89b82b971d8ff2e164801077f2f5144d1bbaa25ea0c87059cf46100501abebf SHA512 b965f4d4cfe6716816becf55f7a74faa0108729bedacc97e0ddf9b37a58e62056c9695c2b27ce543bc6bf80f801ce3a394f48d8ae75c322d31fd519ceb83e9a1 -DIST thunderbird-147.0.1-zh-CN.xpi 514162 BLAKE2B da588c5cf6b81b93b7bde3f67877d44c619a0223c9dd357af6d6fd87381642b855164e16f63ab6761c77f5d17e048238b29db8330bd0e0552bd4787f2fcca06d SHA512 7ffe5e15bffc097904afcc2152589dc27d96b3e81e88ffcb72a2b4056fd21ee1afc926e26792aeac9fcc3190696f30e65b80668c98cb9b492ebcc1337e511be6 -DIST thunderbird-147.0.1-zh-TW.xpi 517870 BLAKE2B 2e4afa7f9619b53de13cf4737411b25beefc15b0adca128077a1a5728400bb9b0dc3a0522dc44231642a942c662ad75e5fe9b441e195ca09261a30d863d97290 SHA512 24925956e15289e924a9cb9f3d4a433d3b49794faabfca918af4bb630e5f799e0acc4b30ee43a0828237bb747383edc7721ca418c3b293c1aee93ace41c0f6d3 -DIST thunderbird-bin_i686-140.6.0.tar.xz 77903400 BLAKE2B 334ac6374c99203c79bfb040230ff0fcbbdfcbf146d806e42ca089991b8ece526053dd0e3d3c019c3e7fd45d665537bbbadf9d08983168c04863eed3db975e1c SHA512 d3ea7a026e7ebfa2590df88c5b480b936b2ee5bf9e5cc715aa112ad48c09be6177c7f5a084a46835af4d277fe60d958dd22dc7c62ea46cdb6da4f2817a566c0b -DIST thunderbird-bin_i686-140.7.0.tar.xz 77991732 BLAKE2B 92b5d5259d87e2f80d2b3d71623af61f8411c188ca7d13f6291301f56954834121900fe9f97fc95d89056bcce37af951ab78c6a4cd1eab664bf51f507652216e SHA512 cabda09f8aabf00d1e8e5b8fc4294d10e2452ca1d624728b6291f833f81f378ca4f0a88168778be71edaaf8aa8686fc4f95ddce9ffc0878e1e2dd0d8c468e7c8 -DIST thunderbird-bin_i686-140.7.1.tar.xz 78159820 BLAKE2B 9636c96b166f30ec88fd9ee97668ebd4be09305857419dd749e0cfbbecdccb57a4bdb88c8cdbb4366c32089e45726221e8fc6126d36841fd0471f16a35820b72 SHA512 81c3266ecd94812ecf2d765d2d156fb71e3fd10262b8b79ef1496ec7592398152c234b4a0ea8b1a85484772c9a00ee980a45ea461ed4348ddcc926cba0403a70 -DIST thunderbird-bin_x86_64-140.6.0.tar.xz 73753384 BLAKE2B d43ebe44e58e813aa47e99b3dcef63105e1e19c3214cc379db23263b08867e05c099e2e4872bbda53f136ccc0b5c08d7f867d397e650652d22920e675c11f1b9 SHA512 b4815fc33f251a3959c6ddc017df9951af236043d1df3e7ba0b561e8f9894cd04592b61edfa228b453ea7b856a0f832ca360c07d16e3c42584b0c49a3cd589cd -DIST thunderbird-bin_x86_64-140.7.0.tar.xz 74163120 BLAKE2B d6b347f69b69d8319f7e26c8d8e8a7c4f9e8247f63c0388bc5f67c92c405a103dd8b5fd2781db087f1abbade05dcd005e41777e00d0a4ee7a7a0a1492726d048 SHA512 b05eeed6f6a719b17c6716a809bf2ed9cd4b88e412c65df3b6448d3774b2fe1619a149b5e760743fd4181a1d46c7a9b7d54a4f87530a32a8556324588c60592e -DIST thunderbird-bin_x86_64-140.7.1.tar.xz 74439152 BLAKE2B 500c93c0968af4dcf996c290b99e9864f059a8f535fcbb59eca2964791dd16ae63e0d89f0fc31a6fd09939461f90ca9e3ac87646c8e64a5221181ef476db7d61 SHA512 517d716e8f4ba8e01f22da92b92fa37c1cf65992685174fc6ba77d33a4f7534e97e6d4bc3c7caa276fdc3b5cf21aa16c2927144a806eab7a5db83d2facbda34c -DIST thunderbird-bin_x86_64-146.0.1.tar.xz 78857508 BLAKE2B 7b2295d8026e486c1b3a53859af29339c73ce3ff5d2405cdae076ae3a4d357b8ca573946372b18110811b376c035001b5a48e14b621c8e404a49164a74929b8d SHA512 81fe3252d8ff5a4129ddc718c0c5958a3b81676e66b7d515ca10ad23f3043f02e488e921e900a8870cd54e6cfce2d50e71ffac11708e4c7424c69f8180b847ff -DIST thunderbird-bin_x86_64-146.0.tar.xz 79008036 BLAKE2B ca8ab000b6e18d71b1904be2188b02cc443f2bf118e856dc35cbcac176df2b0c89ca04fafc030e0397447835aee402ab447af1b175306ddf18a06b4060578789 SHA512 ddff8929f6f6f8ae90e148863eb24d2e026d8f05e8999b99caba3ce3a498170dffd2abde0a09a711604547316affb8b0b685c02f2697f328f980abc673fbf43d -DIST thunderbird-bin_x86_64-147.0.1.tar.xz 80054488 BLAKE2B d29b575beb6954bb4fbc32a27855e0b8fb87c35a00d9d18f8490b0063e28bd0b41a96a2c24e0eac3313882e2e487fd4d7d61fc503600b212473494b7f983be86 SHA512 ac993cb1e2962bdb6b181d7a722a0b80226b4c8bfe47fd36809c509a88f5d7cf592c382602298e094edaf748a39413d1035afdbf0440baebd2fd8b3793f9d839 -DIST thunderbird-bin_x86_64-147.0.tar.xz 80281712 BLAKE2B fc2ee075c7a53d07f97d5c00c93aa8bbcf7930ac937ec5c8db8e2f294ceb40448f3c8f0151b926575e6006d2a09762fc3fca6f8b5431418c6fb500cc089a1a46 SHA512 50d45d8ca05b6119b8f0f871ffdfb437840c98894f140af5fda1dddb3b7e1563008bcdf3d6d713cb933976273dc4d6ed305236a083e4166feafb58524d2dc048 +DIST thunderbird-140.7.2esr-af.xpi 316218 BLAKE2B e05621d27f36d4044b3b0cd354aeb5696ef8b8db4c7698f36c69d5c5272efa8be15dfe7fcf55a8e19d7e7bb5c17934d71745a3c73e74194892b85e38cc98678e SHA512 cbd5df4b393925697d1757f52d5c7b9361f2b03d2ed02d577840fddf78209b6167bda37a7720ef5f52e6cf5c6e5d178f93de6935f4f9c9c202b5756ce89fd43a +DIST thunderbird-140.7.2esr-ar.xpi 436197 BLAKE2B adbb1c4206437757b413b9796177c4855746bc5279466dc7c401787d498557965ada0d8dd66e6151c97cefbb1285d0bb8244a28881548cf2c2a98cf954f06eeb SHA512 b6d92d0584cfe71bc7c0f5504df5892b30bf5f4d1d32fd29e747274b12c60fc82a775a52f4e8e1ad8bd11819082eb8aca84c06247dccbb9c4347ee173fb958d0 +DIST thunderbird-140.7.2esr-ast.xpi 340599 BLAKE2B 353abac80f13b027f469565236b5726c88426f098ede69ce01b4175c5e1f7e2a8e35c8d906563f2a099ac0bc3f606b154af45436290b006405dd0126ddefbfcd SHA512 2933cd5605c21e7b5c4bc0a22582adcb331988809277e00c47e7cf1f83a2b69cc6535a934b0e33ad56b5076cc5998360cfe71db5a087425fcbb7a7ac1245a541 +DIST thunderbird-140.7.2esr-be.xpi 521573 BLAKE2B f315c5cbcafc1aefeff2c2f2c7ac93c5531a8e5c1fbbf8902c614076989620cd2f20426021d2b8eb90752ae1646e78c2c82cf1e9cbe60987bdde6c6ac4ff4c23 SHA512 6f954730eb553b89f2f94488db95dd91b4331dbb098729205bd51c93a82f8801c5b288bf4a34accece51d682d48153b5e5862e884a927c87a511030b7dcde11a +DIST thunderbird-140.7.2esr-bg.xpi 539806 BLAKE2B 3ef5b0b077f9a9e9005681b466a5ba4f4177b33632bdf6d43a3765ccf6cdaac1cc67a9675931bdc78dffcb6425ab431254917ddc1fd67f3ca4bab98dae928b04 SHA512 709e9a4c5a8ca68dcc6c4306bac61c577b339ee68a5805c7f9f0c0658cd00e32acdfc54e9ccf36903aac7e9f9907eea536c198e5189f7b74bfcc1fd5233843a1 +DIST thunderbird-140.7.2esr-br.xpi 402748 BLAKE2B 0e30f7d551652e495cfa9cb4753f0054b3435721a64bf23cc3af7bad4951f38c559d34f7b1f1df8aa3ec791c266e14159225676e1ac9bade84471080f9761c87 SHA512 1f2cffd259986f898ef381ef4c5c5243bff89d7d26fa438fcafd85e8ae31fe7fb17e2016f6d6922ffd98974f2890794aec25c57dbaf1b1a73a1fbe0a88891adc +DIST thunderbird-140.7.2esr-ca.xpi 440589 BLAKE2B 19404fc8002b6bdbef649ce485f4438929d397f21257f5e01a353fb4677143350be8dfc8bdc6579215cd254513109c2fcb711d4e9b717ed3a8dd4c637a818986 SHA512 4055fc02ecc65ae89dc680615010e42d1c48770a2a496771671b769f80dd801e466161c33fc57b45706f2e3a7dad6610c05625a3fb38fc00d9e98b658107d68d +DIST thunderbird-140.7.2esr-cak.xpi 418022 BLAKE2B 7672326dfecff5a24356b71e95408d93d0741fc33c1b144e44c7d214e6a1f6efa0f84049f5c2d2c70905a6224daf1a21af24a5258f00e451034a06a2bf1fe12c SHA512 17abcfe498c7a0855873e9db0ba29f7b93447bdbbd5a94787c23e7cb120fb4b04e6d1301b83b33b129d01a954067bbc7b994c4e52c1b1eacafb8c576c26baa92 +DIST thunderbird-140.7.2esr-cs.xpi 519508 BLAKE2B 02f4e5942f011941e2707b31360db8f93ea1b4e87a483ab3efca89170f57f5a5216d1c5af123144bb4c0a2a766ddeeccabaa963aec5bba41aa1fbf1a11f26083 SHA512 2d0e2de980e0abab78e1437fd62f409aef51ffc2d95c99326c79d888c4d12797a32da9a366288c1e63a2ce3420b5842cb6bd9ab05ee037e005a93cdc931bcbab +DIST thunderbird-140.7.2esr-cy.xpi 487651 BLAKE2B 17195203921d89dbd4aba4b75a24e975c76251bafefda672a6f425876d09867a414b3cee3c0426baf93a9b557f7f3262fda2907d3463bf2c0797fab0faf79abc SHA512 b936b47361ddbcc056d0db3902a06cda02d51554d0b54ce0ef601f6f8b34323284271e6c9697078b16f5c9ed750b105dc932a7686826362b640bf6fcf801c768 +DIST thunderbird-140.7.2esr-da.xpi 476624 BLAKE2B 71f2d66e5017b2c5f0f667bfb93cfa90db1278d34e25c1764ba43de87a9110bb5d3556793d90f8d818012edacb27e4163af5298e1666857b490bba508126b70a SHA512 7b74a1d644e26759410fd6151d5792ccf9dfdb9d738d0f3ca1fe991270e2635d90787f5b7b94a4fc92fcfbf09c73dadfcc9605619f8e01e521cba9bff0fe32c5 +DIST thunderbird-140.7.2esr-de.xpi 504708 BLAKE2B 87b56371c3325f0382665ec3f64c47de8368de248e66e3b7f43d95287228509767d2d29930094d46742e024ebfec909bbebcc9090e743171aeab21af5a8cbf42 SHA512 adb65bec6dc68c6dda42c16e1840379fb111af208fd8304212ff9c323180302ef84f014de0e743e25c8330f7d1c924f6e69e6a21b327ff4be807f8e587d9ae0a +DIST thunderbird-140.7.2esr-dsb.xpi 517899 BLAKE2B 03d49adf21e5a52edfe6a54eecb9d00c557e58be48ff8974ba261468fce4bdc3950e5cf068f5cce150bf1bcc512abed00dc8c1fa3fa2e4f22c9fe2855a8dc03e SHA512 380766e9c259eeb2eefd87df524b2dc692a46b026f5ba672128393ea7a72806bc1227f5034d4e6c460feda81686d6f7e1deb600a8b21b9f4903fa52443c6f9b6 +DIST thunderbird-140.7.2esr-el.xpi 609031 BLAKE2B b154bdc7d9df6b1c8c30b25ec353088d0822218f7898e058a607e920bad743ea27dcc6f76416a71c7775c4470b98f17800fbae9b5001caa51abe8ceea7e2a7f4 SHA512 95deab65e08bf2dd5872cd9c568d0038cb6cc469e4a0a3cf422d869fc5a1d5cacbd827751e9b85d3de0eb74d31dffa90024c6520a1585615e73514c79e8b29d6 +DIST thunderbird-140.7.2esr-en-CA.xpi 452240 BLAKE2B 64e35ec4ce0bc9132dbad7a9792b783730af9b4ba5a8f8fbaf3e2ad6b997ccd3de139e2f5bf94748c831d71fd2fe7a85dc0058086035a5e984b3aedb586a4f10 SHA512 89218e980b2d28b2904e0ef5f20b9fed81b99e2311286243fed91483479c3240d49114e35ceba20e9151a3771d9c4a1b36e0d7ad491b783b2d0726b9a10da8d1 +DIST thunderbird-140.7.2esr-en-GB.xpi 452068 BLAKE2B 4a7c28c4005a12002bd89f37258e9fe41fa2e0c28c564201aeda76637c899f1b4f655fa5b888e65ebc97a029936d842e2be7aaff05954c91cfc01ae99f544511 SHA512 c4bdee11f09862543d1c3e4a3319abb06faed0608529d90e8884e547a40f8a1f999d128a5b6c99a6c9e9aed8e9f799e6f21c0224bda54d8e15cf3a6bb17c87b7 +DIST thunderbird-140.7.2esr-es-AR.xpi 495269 BLAKE2B 485a60062536e35248aa8e3b1a576fb3747b9eef8d9e167799aa37bc9110c7b0dc9a1039dd153f7fd68c9d334673c2c3d3d969adbc1f3c99747cc22190d4b3f6 SHA512 1fb15630c73e39cf103e3b2e2ef9837b4c1cc861b1fd4d15bfc342d5c0d7b2f84e085b6c72456a09385b2db63f28575f9e7122c5a3ac8ae8a878bb849c04cce1 +DIST thunderbird-140.7.2esr-es-ES.xpi 497284 BLAKE2B f274d212516fce96b839f71330c3400c7f7adac46f1bc146daf869fe51927d192d7c6cbfae1e652cd44bd6d66b539959c7e749290ce1636610649548f731e995 SHA512 09b2009e54ab6d572eb6e68aa1c7567404108b68d96562fc011b320ce168a3c73762e24a65c1da66fecce44df9ebed71009ac4db24e1f0150325a34c6a3a49e1 +DIST thunderbird-140.7.2esr-es-MX.xpi 490411 BLAKE2B 29f78fb94380f40565d9a182e3139b7a1d60e291417ff07bfca6a90dd8e43ca913697f6cd1913b09a6c472b7e1326dd75b851048da5f66d938848835ea6f8849 SHA512 618fcad9a3ec9d43559e5e9f41ffdc39465bbb0bcd923f2cdf83727f38adbda2d1cac321a9998466a83c50049b3433596059746f3ce84ab04e135fa14d455436 +DIST thunderbird-140.7.2esr-et.xpi 443619 BLAKE2B 4021668d7d6a0f0e71af989d3d6f9359d209c09d252b2599cbb9b781913ca6117cf5fcda1f7c7106a1d367c8c76403b5b2fac046d96a5a9ab749e338308b5c08 SHA512 0331064662e4fe89fd94b6db309e048788433ae7156cd544a3130dc7df8e813a94e9be68e5de7beaa61028ec831dca769d5bcc5bcabc31ee38541ece7ec088de +DIST thunderbird-140.7.2esr-eu.xpi 473924 BLAKE2B dfc02118883051b3feaadb048da18cfc2abad688b695553cc0e359e7b929b4bbb983b2e278022184c9b2f50b3758bf24b48623523a0061d753372a369a52b24e SHA512 aa7c603458abe3b06278e91ac017ca8cf803e97994b3abe72538ce46b8fba6cf67182950eba1821f2a30143a4af5973a93744d1256efb9f1f677de311624f4eb +DIST thunderbird-140.7.2esr-fi.xpi 475611 BLAKE2B 216cae4f701776a9b2857aa1375e76118d68a969a01c7331371b364c9bebc315a32d1e114c71e0f6e9677c727eca4c3779583e830cccfbbb7f72ebb6ba564945 SHA512 df9a187d1c3e5d98d0db20232143f9c21aba90965c0ccce0aa8545aedda97c3ad659c069d3933d061cee8a75bcb51be907139bda0bf8bdebc702ed799de0d1c1 +DIST thunderbird-140.7.2esr-fr.xpi 508320 BLAKE2B e12b3300300c414b1f1898a50d1332c1adac68e1378160b34b3396471ffdea59643962764b98b06bac14055c28de247230637470dc6b7440f63e999ca65f1c4d SHA512 348b6e38507dbe75609ce8bcae175c31460c997c482694621fdfc5367eba9fdece9d3423fc1de5ce39bce842cb7a5e15fd44808c737401199ac494f91ca1fc7d +DIST thunderbird-140.7.2esr-fy-NL.xpi 490685 BLAKE2B 14e4326d28945ecc280b3c673aa0cc5e82798a4e18ff25d691f095bcd22ea78aa0d0187bf16aa4c933537bef9d55c79dace74c1f1aa8161be4d9c07e5ca60234 SHA512 539abfeb06a85aa67dc938418229f884661ee84c9c27a292b60aa01452cbaf690aab6514560b5e428724c656b4f411e305d25268d2ca0fc2af346998d79a7d95 +DIST thunderbird-140.7.2esr-ga-IE.xpi 376745 BLAKE2B 992f923b45ac2fdee9223ba66d605383879e6ccd56db47efc6875c2924478e8c5f2c40f200477055c1f5aebd390beb288d5ea96a738c7f21137794068cc784e6 SHA512 5d6452a0f10f120fd59cace797c1fdb85cf8653afd3bccb93584e1bfa42bad9d9ffee8a50abd1467b8634408452c5aff4f99b4b243a583ff9623574e38c5c803 +DIST thunderbird-140.7.2esr-gd.xpi 461960 BLAKE2B ee7ff999c3d5ce93f63473c612835b996e70cd03079351ec0c06a3e2abbe4c1c2c3faba91dbbd17f5733ee82515991dd97a4c5e8f38088b0300309261f78abfc SHA512 6778f815a7ef9fe474e636c3ba1aae7ad85bdfe9789299ed49b014a0c95de940cf79d87e3d7aa52b7065829200365cccdc6daf63d115aefa3ace464cec936eb6 +DIST thunderbird-140.7.2esr-gl.xpi 489346 BLAKE2B 0494e57845163da66d59f2242f0394d9ea137e9c2a2f14922bd7acc1a29e0a4f9744839bc167e57b0e01b82f463657059f4aa22e3b348458236e253265c92d5e SHA512 e9aaa1c57a07dff346d773ea31725e382f2523e85be8b77f9a5b348b2e2c5a5f3704cc55b7cc292454a619e65af5e8f098443ab54c610023574ad45a5e94a085 +DIST thunderbird-140.7.2esr-he.xpi 443588 BLAKE2B 6a79cb62924482c16838596e625364c64f4dd893339ab3d6ad4dfa726b1fc0369e17930462798b9372ba4c36f0619d7c7acc9ce79ef5c0f9142326d9fa67e199 SHA512 fb16a81420b3aec51780d395ff35d152f339b0b58c02043bf23cfb76b69f86c706737ef4ac593c78e9ebc4b0809a385d77547478aa06c1c49494b5c3a753f23f +DIST thunderbird-140.7.2esr-hr.xpi 470680 BLAKE2B ce75cc413c66c20dab4d4ef0b401fee4f3246c44d5cb885484cbe8641f7439ea2630211e9a10bc5ea44c7be7803b2893af6b2e2347573180b16bc01ca3063c1d SHA512 2a1bf39406ff877f56eed2bbe69d8720cd0b880916eaf4f1ced411fe4ba07873c1c3d2d0992522e21576823fdf24b5459c7a54291f25d7641c99524719b1dd0f +DIST thunderbird-140.7.2esr-hsb.xpi 514934 BLAKE2B e1166a9e42672df050e3b7437bfdc85fee8c4d2804de99e790c8ca91c4bfee8bb44a235cc40d73ad3654276c82ef1a21699b3aa69cf9874a430bb077d55f6bad SHA512 7e83a4fdb3f2391cd2992196f369fb696bcb0ccdff13efb2e2ed774f68610d884e9923a4d3d5d7e00d2209a6ac9f5df246ff7d41a7d9e9dd1a5fe41005bdee67 +DIST thunderbird-140.7.2esr-hu.xpi 517545 BLAKE2B de9a7328f82be0c0b8ed0248c04b4f95101bfdc0c8542f996ef071b582fa6b3eaae030a78c8b075b075676b9ce43be914b8669a5c62a520473aadd986636eb9f SHA512 a1bd82a477ec6e6e0a6ebad714e92a762dd1229491adf5c217d44424745195d90b973e473ec01c63746dbcdfbcfe9fdb8669afaf0a381026407a61f3da855e78 +DIST thunderbird-140.7.2esr-id.xpi 467002 BLAKE2B cb3c320c62f5df3d8e3ed5caba411723f5e17fc0f0c0deca9cbe7581de914c4973c9b36b13d2d6135c56d3c4a76e9fd31e7008d16efc562a42797ba4efc45e08 SHA512 8d3b29b175d5795ec95926f1c72190cb879fe78a28b92ba2bb9e50cda5ed4e2d5e6af05680ad44e5c2e9cfc652c49dda3a3c5c3912914f339f0b8197b972296e +DIST thunderbird-140.7.2esr-is.xpi 482738 BLAKE2B 7d5a108071bd69b6b957e939211f22842d78510069fe2b30e80960080a32c6e456eb842ff919b8ad39e26debe1a0592cd3c31e64df2b15bb73c19b1046c4d46f SHA512 5390ff269e0a2ea735baa6367a8fa748217fa1e0f7b398ab764919db79ca280f19cd079e8fe636b3c25bd0a3e6cdd8882dccc1066ae383e049a6675e6c8b1c99 +DIST thunderbird-140.7.2esr-it.xpi 488504 BLAKE2B c53597c8e36a692e7417344eaa977a87103c2f69f442c94fa9b9d110edcafdc76d211ba9bc06f40696246306d7d744c22aff3043f4238b1957f039463974c9b8 SHA512 2b7a35f670ce706fa517b77e0d42ef355b144aadbed44f59f83cc63831bd42d8cac09a84dfcb782abfd8e4349724fd28f98d7efbd224076a04782facacda9ad2 +DIST thunderbird-140.7.2esr-ja.xpi 539194 BLAKE2B be4bc34bfe12aa81aa6962e1810f9fbf387b188c4a4d1914a6aa4966f33a874b724d0b536f612301a7972574efe2f78bf196ba1a6630ef957631f2b5a368eaa3 SHA512 d51a3b1499c17cbf365ec3fcfffa96824bc989fde6773c1fa564d21b7a4ebc73f825353dbccc515a353338d0a085f0204cdfe4611d95e03c5d7c564b11439549 +DIST thunderbird-140.7.2esr-ka.xpi 554772 BLAKE2B 0624c1c9012593c59a811b60478a40b6102bd5431c8517764b2ed2192e48220f04a6176c8a27efd4966fc77bbfd0e52fc977227efb72a9bfc4cd8efee63fc58a SHA512 67d8da0e9314cf7e737b2c78f893ebc58ac0ec567938431ec6da21cbc9a3ac6fb0f181ea408f032c9c28e55fe143138dc20583d5891a50979e021846be74ae9d +DIST thunderbird-140.7.2esr-kab.xpi 470498 BLAKE2B cc4c35bb809b340fc2772f5f5a1f00f64dbe66ef05a98a644a9bceb966c550ad1f4be73d8712a393b24b48cc112d00946a35478e0c7df3effa700528a33a8513 SHA512 f64ba37f7b9bcf3a3446be7f0c4cb2a3b827f40639327e5aefaa55acdbca371c00dfcc88cf62d42bac34be5e9a3aefaa1a56335061b9504d09ba9442e2f9d821 +DIST thunderbird-140.7.2esr-kk.xpi 573880 BLAKE2B 7dbfbaa3d117b2208b811623d8b635c8bac168d6e81198a8f215af21159703750d8bcc6f63fb2dbfc2027e49c2ab31af3537cbda243550080c445c2c7f2bf9d5 SHA512 a1dc0ad47de514f9064a1154634598a97ab030c432d7f8a7d1c5ef318607a1b5de703a18ab70282f6c3ad3180ad18705f5323067efa5b409b6bc1d3def802c30 +DIST thunderbird-140.7.2esr-ko.xpi 515592 BLAKE2B ae6973d98f2ab8de1c7ef7cf598f07d563ace81eb6a9821e69a38b2eb0ad9d6c7717693ff90f53956b1c985e3a819a0c0ca0680d58d651545dfc0218453266dd SHA512 415857e3410da0240df3ba8c0a12f0d1db6313772c6ece32d2ee25536f8d87fed6264b3c94a69fe3f3139b4637892ecb8f2c3851d4baa029e6b35841f8b621b6 +DIST thunderbird-140.7.2esr-lt.xpi 453436 BLAKE2B d1ebb2b2efa7ee9e2d38cc34a5121b7ea82e6aa92d85149523cd2828272acc3a8738f07f757ea550826093fdf66b3b24cecc7c4caa9185779b4617c83fb01d56 SHA512 d5c724b3ff065867bd2cee2cc138b65c957d6c1928bb4f48aa0e75adbf64b8a6583201e543f1dd9114141be1fd205df09a05c1c6ebe01b1e8592fc35ad25ddfd +DIST thunderbird-140.7.2esr-lv.xpi 392816 BLAKE2B c9695851a953a59e9a48d405b9647b10e741ccd15b1c9afdffc32c938207c4cbc68e06a49c5678851d8892627e0c8e875c1aa3185dde6e2509deceed5f9548a9 SHA512 c2109c51253c8550c7c9a377b4414d03d2001dfce6724b5e7fdb870211e38c3713de78fbb385e2a0b5c452215853610d296609678e82a5cb47799e717fecd234 +DIST thunderbird-140.7.2esr-ms.xpi 352180 BLAKE2B d684caa0302c7e271d5e99d6aa15a7071a7aaa745a2b0f4489ae672ffaa899dbbbadc5171b31de923cb133b07fcc141e8f63a1f9f94041363930f33bef4e9db4 SHA512 8deb706e338e02db4fc96f7295e4eeed54f98e3878466873b2c3f09d04a860eab9e04f80eec150185fc502a48747bbebbd726a49edc0b4d3697ec20eba82b568 +DIST thunderbird-140.7.2esr-nb-NO.xpi 476138 BLAKE2B 31d964b97a0347ca4a12bdc3665a1c6eb5a38b519fb78eb9bc221c781f315b7c65d8a3c227febf8a2af59b2580dc49a355e39edcf68f0ab8876e327db85902ea SHA512 c1963c64facbc3a36116e18d11d15041f5241b11e376b65f271cf86ea943082f35a17956921e3903ecf378c62bbb0991c1e47af598b243bd8d20b0f72f9955d9 +DIST thunderbird-140.7.2esr-nl.xpi 482125 BLAKE2B d9f970def570161c71f6d8350919f48597393a5aad38636180c5e95baaf633ddd5c61f4dab2d9f21909ed7f4532c9175b73ba1b971e5e6bdafafb2c9e901b8a9 SHA512 a497b1db1aa47d28018436a46623e167374b08acd61e5a4b8df1cb20f59454397d576dc459665b0aaba249feb486466de55b95efa4ceb9e8e62eb7fcb63737b4 +DIST thunderbird-140.7.2esr-nn-NO.xpi 479758 BLAKE2B a56bf6e2553225b8a58da9a71154d060c27f3dbe24e0b8299ca545b8d918e55ef42366154c6d15f688579057f033f0a9cfe29cd6b6940ff413f67c357b3d5032 SHA512 09a29d08dae02bb8d3cd7f6c3b1bd24e5d336618636fc53d16b32320fc315d3f8028f2d62c9715b5e8ec22b624141b65a3d7b797ec793d58b79de9b0d8d5c099 +DIST thunderbird-140.7.2esr-pa-IN.xpi 435424 BLAKE2B 8a004c0f7226319df3801520f5fdaca910dcc8dc2287cbf2370c90aaf95b9fd827c99eb085f5b9703bbc32715c0cfafee48fa2cb29a900ad35f3ee1f4d46bff4 SHA512 74696abe255c237b56674e8484328e625b1c993427e6da08864845f2d60660d3e7e3a46c6c6e8bb35fc74f17ceb669a2723b98b03457d6f5f14230f649dacad8 +DIST thunderbird-140.7.2esr-pl.xpi 515613 BLAKE2B a513362a381498880ed66398e11b81ea1fe90f708937da62a1f69ca3b95f6ec8293091290005fce47c25a2da81176500f71982520525c78a5d976c1f1d14ac38 SHA512 bd1db13e861a4b0312fed6c9ea0605048c4bdcb7f4e8cbb1a1b35f5ac7b16c4b2b58c040931ecc3be704ae44aa0e0aa431316a9b3a1746de2833855155c81593 +DIST thunderbird-140.7.2esr-pt-BR.xpi 490165 BLAKE2B ffb7c68f69fcc2488f99ba8057bf5cf27d22d2720b3730ea99a33e5c5a0e466ecb7ac92da0f7543f6317c24040b82942b219985925fbc2c5b6cf45b9a1a795a7 SHA512 b8532b116850d51dd3c9bed73e7f8b3511ee3b30574a370216e0a2f7ff40c1299b76d63cd607938188ee00d70695825f75bb688e30ad8ea0b0ef0ed9e9c4db91 +DIST thunderbird-140.7.2esr-pt-PT.xpi 492525 BLAKE2B 711957ceb267efb860abc47d524755db899897d7e09314ab70753055aea78a23b3c8ebc70b028ea299009f90e4c8831bc3d346faf2d780dc31051fab3aef3fb8 SHA512 ea7bfaf056d804202021f752f5577e3c32a46eacf8169018e291e6f9e5f22bf8b823e8ee7d1ce906b99b802fe1afdc05d14fc3084cc109a6b4f7406cd83ba64b +DIST thunderbird-140.7.2esr-rm.xpi 487883 BLAKE2B 4ee4c754d40ac5b4c0dad6c1e7ef491f5d26248dabb4f488616fba43c45cb90177a4e190b1851989221a3526c035abb0f18b885f6928d275ce561442c650c352 SHA512 051f7fc3d91295d7e24659d719ea0e67d010b53b3118597fae60742f36ff40089e70903613347a9b641b9d69b6b9a34654cd9588f851a0aa4f7a2674334d41f3 +DIST thunderbird-140.7.2esr-ro.xpi 501094 BLAKE2B 0c9a5230d9a96f660ec425d96347b174f9250bc3740b262e4329a1aa011b9340aadee72836f064447a3dd12eb98a8e7d1c351b4de2ce612d70646fa25e5d600a SHA512 2c83593e57ae01fb804ea6b4a201dfff9c486236e9ef21da5ec9db4a037c9e0eb3659b2834468241d78d533f1cd08a74a643429024db391c071737ee6ab0f133 +DIST thunderbird-140.7.2esr-ru.xpi 593285 BLAKE2B 8a35f179ae7d7bf4f16f41ef4f542ada9da921105ad3a14af0788259d640770529ca7e8c3d188190ae4c025c70a17e2a6ab8ab485f0010bd949e8a41af40057d SHA512 a56335103eb94f48917e34a903a2eda8988815e79c9a8d8ed977151e3e5d9b1f0ba169598483090bc80f07771416fed0cf2c6a6a95d3cce09e37c1cbc7ff176a +DIST thunderbird-140.7.2esr-sk.xpi 519389 BLAKE2B 857e50f064bedd5237ca6f116294b1851b974b28fd68fda36856c3b2ebdbac38caccb651e6353f2df97d9639913b5d25b382c1c4b604fb73259548c1e7f80680 SHA512 413f77b88b1fd7ce14c6cc84c12dea2fe2bb75da16a80b5ce9acc12c0a3107fb37fabba37f2efe451d1f9631dea41533dd365cbfac74eec9d60335a85bc7f657 +DIST thunderbird-140.7.2esr-sl.xpi 485961 BLAKE2B d15151b40e7b4341663d1bec2caa2ec331d280ed4f38599309129d330a6012a588ae68b3dfcf381137147494d288cf521ca27052c02389b92e9254ba9a8b162f SHA512 b75d4936e4b397d6f132a6474040e1b9e1db597fe522028f50f08331e3dd4e67cc8bca30578dc3b65a0aad51b602001c4cf9c02a9a46282acbe41197e733331e +DIST thunderbird-140.7.2esr-sq.xpi 506268 BLAKE2B 488cd4e89f2948c1e6fccc3abb00bac5532975b35e201795e89673eae183a171d319bd3dca0d834dfa77e596a2184f2102b51b30e8642cf68f528ed555940b4e SHA512 6f4049b39310af2d33b5b85f8c2bed4e3fb562b044951324d569a4fe663aafc5209089f31b2dfa075a4800aee2df79d902dbd3c43c729ff79c17d297b82c0c2c +DIST thunderbird-140.7.2esr-sr.xpi 495992 BLAKE2B 955dea82680c7ff505496a8bde7110e38d95e8c5ccd35f48f870fde9b97e0e1c3d5b3b7d646796a4c83f29e1724ecf5d299118451d753da150f37ef2a5eebb9b SHA512 fc13368b3df8884678b2788d17da90394b6ac4625726abeab49169aab78a6b2ce3ffe6ff7bc5af0e26093e686bcd467ef89bc43e59323053860893207bb9adb3 +DIST thunderbird-140.7.2esr-sv-SE.xpi 484419 BLAKE2B 4509b7effda6fc9d4ebf978704b2f50f68a94b3d52d6b55e24074af69f1b31c763941d9476897ddc9a0ce202ed88a91860c725caf2a173458767928cc2b065ab SHA512 810a81848615f90877dc2e1b5b3f65d1a5d9c14ba676711bc9e34a709e1c8f7e98e590d3daf2ae88035de20ab19ea162eb100edd99025431f3f8a9e652a6e35e +DIST thunderbird-140.7.2esr-th.xpi 567947 BLAKE2B fc8da94032f6ea87b2ea3878ea5d248cc6b9055d27d1993f093d0416e43c8957ed5e4a20a6e1a1e40c46ae1d5cdc3c57af0a0ad1bcc550cb786eab8696fd6e36 SHA512 6b214a4b2e3d78002c3fada93a6be6cc7e49febe935bce4955cbfaa1ba004ffdf6d64a017541603a1e0456f965fdd3dc3ea53c52b642e96136baf161f9463fa4 +DIST thunderbird-140.7.2esr-tr.xpi 496182 BLAKE2B 8db58aac1548e334499a4ba57fc71fad733db9b92409e974dcf5a5d1cbb08db11b1c276eaf0ca0cd55f695fff611c5b86511c530d52403ee29cefe36443c8a1e SHA512 c18b44d233846cc96d431c1ba1a45da36847bf6823be294fee386f65e68a27296cd5c0c6a227376af3da483967d72aec928a4d81b5370171d783e77f712e29d2 +DIST thunderbird-140.7.2esr-uk.xpi 582152 BLAKE2B 1040091655eae1bdc6da2b1cd83784b33d446eb64c8b9e05a3594cd61886d2b5d7f143a82ef85edf1d38c95bc2155c26ff0bd67f893b8c477d50c1aeaae6318c SHA512 30c55a9f09f5c9cdd5315d553a296323aa917711a0fff3534d909f63c77f4bfb6e34e909f513442c166fba130d1927ffa92707d2bfe00cd69d2b8ccf432aefa6 +DIST thunderbird-140.7.2esr-uz.xpi 355268 BLAKE2B a54904e6dfb6b14f956de5bac4dab49894221ae64779841977c3ce1113eb853e55e331df18d63cdf5975a2227533a59bc9b1093dba56ac4eb3140ce39c23c9da SHA512 d22273157fe8268a69f46d581d2e47d2eb9961ac72a0cf531ea1c68beb5858732e860e984616a0e3467b251c9311860c9a8c51027d97035f43e0c5eef1fca79a +DIST thunderbird-140.7.2esr-vi.xpi 518884 BLAKE2B 046abbb23a4f0ecb23a693b1842efa57635a839cbf897dc0aaf86ec672a111c1abe07fee7a090da5a93f6091e62a4af5ac89458ea70ac2a1746e334b1a2b5f38 SHA512 0fbe36f05127e6ba8630e7cd7e821fe7e153310acef3b3483cb6e2527070618f40bedb920a19416b2e7db902cbdf1fd7fb55ea0d8135794b80e1ba40c1d3bf2f +DIST thunderbird-140.7.2esr-zh-CN.xpi 507839 BLAKE2B 7a32d22632c722f2a9f268e2650a4751918d59515673389dad23c0c4ab02ff12b559987cf74f96f7b3f4f0a50346002beb50e1ae8d8b29c4de7ada64fc558e50 SHA512 f5d197567092fd05479f9c0af42d0ed92e6ecccc2885577082e800163baee9262257c95d2a15a528ea90157e8410fa5c2e76e507c41515b8e720e0df677cf28b +DIST thunderbird-140.7.2esr-zh-TW.xpi 511432 BLAKE2B 43764d979777ee1beeb4a4a00caabbb21b314533899818b92268f48b239007826a3cb454a0e81a6fc2b9479bb9e8c2203b5442b8fec578f7abfd4c97a8e16232 SHA512 4ef6688bb2393508a34dd569af2569d4f9faffca92bae5e2bec0978d576a8a9b7733620467115aa42a5767f77ae0ee06b1d55775256fb4324a0d0a62b82eb2cf +DIST thunderbird-147.0.2-af.xpi 312139 BLAKE2B 8cfe583bd0e55686d3a77517318aaa46d2b4038cc7eeee9480c96e775a5eeda6dc3c97736210763930fd9ca28896dab0100a770e1b4213381a26d2866a1270d5 SHA512 bf7a22ad64e2fd2479411f14f1e8f81330a200db87e5d7e3eb4475ffc001fe0ac51515aa9c50172d974f53ef2210a3fcc2493755bf642cfb6aa9106ccb9d4c59 +DIST thunderbird-147.0.2-ar.xpi 434055 BLAKE2B b8d9a4cfa2c13c1a940e14cff780a52cc4db60a9b856ccdf2348e90a07785fc6eec4ac9c399aaa14f6f29e7d8046d4ff8f9693327dbf5843a80bfe1ec8d0a031 SHA512 e1f24efa472c31693ba4dd9de7ce81eaadad6759a8699a235b32ec73fbe05a86a20b0c4043b82ee74ad5ea5dee63481da0c59fc1eaa76595a80049732b3fa2c9 +DIST thunderbird-147.0.2-ast.xpi 336206 BLAKE2B 4a72da9cb6087969f2ddca2a060db6f7e0b6ecc5e3508f49ffb566fa260045ea527f3d938e33c68551abe29b8c779fce50346f415f1b1eef8d5ec539dde957a9 SHA512 c6857c61c1ab2bf72c55ba6f967e53eb0b5a2af524f2c4eece806ca689ac6f451a49e2978a3b268d46f669d4205527532cb75de8abb78386b8c160831d25db8b +DIST thunderbird-147.0.2-be.xpi 522338 BLAKE2B 66492ebcd93a5b83559842082a3e69ccab70ada620e1946590e7a140d01dd22b98be68e79d6da200b0053571ae583072d7fb659f733f34b0509581f413e3c4b8 SHA512 39bc3e1c0809199eda25661c59e1f209c53a94ccbbfa6696ba782c4c53f49efda618b37b67bec082e9fd17b14cede274d244aa2562b0f45f9abf9759ba426c40 +DIST thunderbird-147.0.2-bg.xpi 543151 BLAKE2B e7e1ed93f68799cc1d2edd204eeb5f20ce1838901a386582cedd6095b297f744a345d0eb2b2e132e7d3bc2418491a80cdea630344ca7149776421aed87b42267 SHA512 46f4ab404b5292df867c6ed4097d15e344afff4fa2df1d636a688182d809efc12b7cdd720dd8f36b96476f6d4bf432803a7a4c063e17dbf3a6c6837901d2d81d +DIST thunderbird-147.0.2-br.xpi 401078 BLAKE2B df389d8509fe46c46b14c0eadb50dd1eb006c1d03674750c339d73f6a688102968a13da3c721d54cb41f5d072d9376dbb664cae9bc7fc4ba7957df553ae93ed2 SHA512 8cf28876f123642c1696ab0bbfa5c3cd3ff7676664b4e49af225ae473649241b6ffcbf3e41433e7e7d2c4d9f572396c0237410e53445d53923b9f70a9874f3ce +DIST thunderbird-147.0.2-ca.xpi 438291 BLAKE2B 9238ff89742e585fec4f12c096da10f72b2a9ed3a812a5303228adf19f00fa527e5322f3be3d4cd61bf46d8fafdb8ff0ed66bbe2abc6c1a6f09a11e628eacabb SHA512 8747fe482da70b31d429e5126b092da89e88a2779e1cff5ac07a235bd3a56b2395908e728ebc6a7357086402755efb23ebd2c02abda8a39a0a53bcf0a817e989 +DIST thunderbird-147.0.2-cak.xpi 414736 BLAKE2B ddf173db5c463ba63b78462419a91e8a9afd61feabd0916d27563a08d02b00ad333bf1c8c392b363e4fcef4419bab61bdec97bc5b7dec7528e5ff63a1bb84d2b SHA512 e57f08b59eef03be05f3fcb57a7533ac5b20d9c8a6266d694cb04e7507eed6a45aa29f8135b20b662ddc6417f95bcf0beee1679c465592f0d1739a9bb3f0d638 +DIST thunderbird-147.0.2-cs.xpi 527273 BLAKE2B 1e132ccf32d140bbcccec40dee21dae47ce2558cbf526c7439d6a6e5ae85767dcb0b35b2b23241bb3b3cecc167ab85b3a72f5e5ba5c1a2e67cf3fe0bee6af0c8 SHA512 af21abe2b0956ad7c60448ffa2116ec4dcbcdb0eb6912babe941582c8cc61843421833932cc62d70788b07796077c51d51a86f7fa7d0f38d25ceeb0291d3a0f3 +DIST thunderbird-147.0.2-cy.xpi 494799 BLAKE2B 12ea8248e4199c2a8e541a262d702541852b0d15966dfbb465459a878f6446d9661801ce1b7499cf8c578cf636884138a480ce9fd3705dc2af21f6125b33cc8f SHA512 4d98b28a1eba63887cfcbcc7d1946c35c418274f05c19cae676fe850e751e5d2408d2ec137f5533280dc32c469283729a3477d161da34ea83cffc991dc6b35ce +DIST thunderbird-147.0.2-da.xpi 483073 BLAKE2B 04e3d3080f777650864f95244bb6b4564e891a7bd533cc1d8624186da914ade1f76878063d4631b5615c4ab2373abf54d4166382610580c7715ac6cf95d61495 SHA512 67dfb5d6c14db201d82a28c6489e1b1c57d1f0c0cb1a6691ddaf149d73fad7491a9526d42a637f11ec15dceb69d9a6cda912047c46c667a9b1c148437345a2b1 +DIST thunderbird-147.0.2-de.xpi 511734 BLAKE2B f7eea184611d61bd53c6810da55429fe87090d0addff3952f4fb4aeab8d6504dc9798b4dcd3c5e1903fec963729782ad04ac2d10f26221be7837fe5ec8a0f8b6 SHA512 2da3a09103413ed15ca368606cc20f69c35aa808ea6ffbe31541d1ffe7cc3e8d2a66b96da57cf593a9603772909ff6e536eaac997349a4d6b0b2d21433e73ebb +DIST thunderbird-147.0.2-dsb.xpi 524707 BLAKE2B bfb74e548cfab32658825063e520d50a4299dce4e8eedae83b913696a928e8dcfaa298f7b5ff4586f240cd09953f2471fb3cbbdb365f109581ab40261adfb8c3 SHA512 92707bda9fdd92ffa5521d1bd170d1169680493a66e9e4b061cf60d2528a8da817f5fe47f7b94aff1dcf7240d6e2bba7cf983a6b4fbffbe0fe8e96b0f47c2fc3 +DIST thunderbird-147.0.2-el.xpi 616560 BLAKE2B f3830c1d3a0868bbd95d0d9bbf730dcc555992777dca935d25aa0192cd1aa96d522b1d3824ff983db9936f68d3cea5f039ba3ff93a93865ad596608402bcd232 SHA512 5ca22ee6ea593d606c36710d73f226aaa405cf7adf339137f7bf30e135e9b7d0843679797c816722d190308f67bea9487834237c16427955a00bd38b05787092 +DIST thunderbird-147.0.2-en-CA.xpi 458186 BLAKE2B 293ec0c6aeb3e87abb28f035bdeab1af1b9afc9feed98533e0862cc2d1a85aa44b8284529f02362f1124730d17f5b60f8ee666cd253d941e76ffa822f68ffeba SHA512 fb7d6bcf3b1bad87cd4a3fbea8afe63ef25baca38ba0097efd2043a646bfd372199769b4d4da0694dcdf55c2595d9a3d02adc0e4011b7252c95ecb6c4f56cb41 +DIST thunderbird-147.0.2-en-GB.xpi 458132 BLAKE2B 52818eaac1892053577e74c2b9341ed2b0b25c76eb6e276542d232042fe2a1aeeff2db8f6e6c9bbb518d3528c9de06e65f879d6c98f052e4739714f7b64836d1 SHA512 e1f9e965c1d584d767b0e3193e29331342f9c503f15e097e45399d74173a1c827230364c12e33085ffb0dfe360028e36ff2f6d01a08f21d75867fc04b8600190 +DIST thunderbird-147.0.2-es-AR.xpi 501883 BLAKE2B 8f7d99418dac64dbbebe14da59ffe0cdbbc6ec15b051ee56bbc6d595eb7f9e72e91bf99a195ecd2b64135d5e0a8b96637c81a21e53e0a9cfedf82042972c0fca SHA512 4d284107a5c73f9ca54fe98025c41d1153758a1d27d70d52d7bcf2f4a2c3bb5ee0cfe2d50d9d901ab9899852d82c1ac58362c2a9a3488be0a57626930c60f581 +DIST thunderbird-147.0.2-es-ES.xpi 504070 BLAKE2B 7a6892e5accda7278854aefde031d03f6749472e9839ddf830c23413a82a556d388c9aee1b70858e76857fa96ffcaf28886846d17289fc9eb3d17b6a208daa97 SHA512 2c3e21d2b696fa7399028847881e409711e5f4c65ad1ae11035cf6e09d17e7acdfed978df719a6caf3b4d745f590834b4b83880bf238298810a642c40f218818 +DIST thunderbird-147.0.2-es-MX.xpi 489657 BLAKE2B 2f0647c79503b001e94ad4c92ded26a01fac409e1c36e5246e6fad432438c0faef89c8e2872b80855ef9e13ab5f7d4e82ce37d9045de51e688d8d5cbff3d10d5 SHA512 6c233497ccf170e814c70aca69a064e50add4fa1e315849d4534b7248657d13e2c9b330b6aeca2d830c63a810c9228ef256130a138a0d18dbf6aaf0e47437e9f +DIST thunderbird-147.0.2-et.xpi 441295 BLAKE2B 23a27437e5e583b1594bb806b35150511dd71d70147160a555f9e9bbd0dc1a8f7b2d46d104d312b9d143b1d3a98f43f9cf042c77c06a24184f2537957b7cdb10 SHA512 975d794fcdceb3cd08494a9fc88c45a670c6593bc2145449132e557e9594660a318e556d2a152c4014cf4dd23ea1566c86f2542215130afbee953eef8930835e +DIST thunderbird-147.0.2-eu.xpi 480259 BLAKE2B 506e05ebc06fd3bbbe0c544ebfa124151a75e305f517481e92da53aa51f9d38d3ae4d8f6cb093c26973207114f6f8648cd334cd582793579ab9292ea682f6676 SHA512 e0bf75433aec8cbc1fd2d498d752aad140220d71db18498a92fa562a58aafee454a7aa93321d70c07c04c030b1a921ea27fb6fa7f0ee648fead43a260ad181e3 +DIST thunderbird-147.0.2-fi.xpi 479304 BLAKE2B 64bf0dd75ad5af57d1833ead39d90fb7b2bb85c4e360f01131508fb79c6d296292358b5c79ce5a6891931649441cfb577354f81ee49b89015691ee8004f68004 SHA512 38db6dcd696a3e44fbac91b1636148ed4851c1e1bd68166208249f2aa9388073efb6c58437244461516c9e66ac7d248c690e999b4bf426246f5b9446362ee941 +DIST thunderbird-147.0.2-fr.xpi 515109 BLAKE2B a973e20caabbc589f01242929515bea16331f67cbb090dcc7e62263e337a8ee7a7112683f73abb28f2e9032151e35b1d31d45c7cdfdd835c514579e0622705c5 SHA512 697f923cacd6ff63a7f232f853293595b6b869da73dd95f2c2df40531dd12c73cf09ce43f63513ab81cd590013bfe959dd3f33b95ada6003ddf1671b1a422203 +DIST thunderbird-147.0.2-fy-NL.xpi 497415 BLAKE2B 10a92d01f2dd34df254848ceb5785a3e14489a3145556e2298ef6ef07bf53a002156097395c3b2475a13d18c1fc0d71ced96068799606dcbc9140a9dd588bc1b SHA512 db84a14f898d43dc75d8513f6133e5b650930227f0f656d4e9b22b4de0ae1345fe035d1ba57eb915b342b310b646b0d4df4c70e8c2eefe6c961e8a365ee1ca75 +DIST thunderbird-147.0.2-ga-IE.xpi 374259 BLAKE2B 89f3421a31f570ec526f3642f2e31459dc10eff3fa8fbbd1a6c6775a32708f71616ee39b78ac7b83be0e06c402720a6251256f01b3e414360b687d71a452251d SHA512 76f57812d1af3965af11d138151cd908119dea0ae2edf982b619e4806408c53bed068ba6deef9d37a742230f5ce5c5b3bb296bb281ef347775268bbd023a28a3 +DIST thunderbird-147.0.2-gd.xpi 459621 BLAKE2B e847644e40a6b20127487deac4a3513cb4442c9fa6bfff2c03262767a0eb2eae5efa8a736daf66b7a8841d302231592f23c15002622811ad10bb17c1532417ba SHA512 3b4275bb4142fe245de596b31a2b379ac3632f964e3482e649ed2f8bab0f2838aae5cb605627e43db59415665ed14228d92c44f2a72c4384ab949792717dc347 +DIST thunderbird-147.0.2-gl.xpi 488945 BLAKE2B dc9e010950081ae7e26e0662fddfac912c000e293d653a1c74f1e76ee3bcc7d4fbae7919e7bd0a75e3fe385d10cc62cf32a0fd7d127e47e98befbb67fef235ec SHA512 e04ab4384ca944e4f7dd1634c71fd264c909625bf3d44025c172e13f305cbb0ea22d09c25682ddc1e9671b6e1c15261fbdac1e73e9f8318171caf20f3bea5b61 +DIST thunderbird-147.0.2-he.xpi 444168 BLAKE2B 781aa81145fb67330081ef0606afb9a7a452780c88370e55e41482b67f331169ad1a92a3d2b159657c801344e1b99f3390efcbcb05b73e3955d2b9912f68ab3e SHA512 a7fd857bd502e6d925bf5de0bda403f85af2324b01eb7a6f9b6fa935ced4859c0377e69ec76452efc579abac817993a2fd29dee78da01d764d3f104bea515e2c +DIST thunderbird-147.0.2-hr.xpi 476344 BLAKE2B 14cf77aaf01c7ae8bcaee10e394caef56b22fc46ada054b3da90d26a256852062af101a5d93e5299b4fe9cabda922f3d2fa21a5dd9e2040c8c32eca75c1c441c SHA512 222460fc4d637f327745768276a6875e93ac48e2a0055ca86a0a98131a4a40b47914cf105f71756d78e558b8ea0c3904ffe9298f3b61da01ad021a38cb7d908a +DIST thunderbird-147.0.2-hsb.xpi 521891 BLAKE2B 302c01c9cee582cd40d4938eca96366d5014a325e71510c05130d3ea447f7a74fdcdf5f399d7dbc243dfe34f0f494e1e0328123a40fbb29b5806e3d92dd3249f SHA512 624ee85674e517bdcb6ed39f570c852cb1c209a0ba4dbd99cb7f1583e00b9ab0bf692fefa19a04a89be88b8b61a2c306927de9f2cdc1774f9c4a4b3f68a995f2 +DIST thunderbird-147.0.2-hu.xpi 524547 BLAKE2B c716e996f736a9e87e361959e0d39c2b97c92c94d60a3b7d525a0c33e58e5164a5e0a96bc35b2c5e82eb67a5d47fefe9d8c1a22aea2e734bf504a4d111d69deb SHA512 b43fb08f307c5323f021b5d03ca1778c7b4b869c991ac4f9c832839d478dcc595b8bf8ef35086a633ad3f79496d3e12ef61d3d22e9818b62c0a18cd2cd817d3a +DIST thunderbird-147.0.2-id.xpi 471093 BLAKE2B db07616871873a44e8045bdb2ea06012583f79be07dc26ba7355a4657b82195b6447cf7ea742788e4cb8d8ffa45e7753e9fdaf228d42ac80e96ceb7b6011a784 SHA512 ee3f42e591665a9b78812cc96bcbb69d63edca381fe11a90edb57ec563e9aed377289f2ae7a2113bd5f5454fe59cdd27138e8732449b842a2a70e24669d3daf7 +DIST thunderbird-147.0.2-is.xpi 485923 BLAKE2B 1fc80fdb2996f28b431f90b9406ee639f49bc8a6bc0cff2fbde7df7b4c26541495238885c1f9e09731e3e8014500996f5a666345f73b74d25365f7095d7f4882 SHA512 e083308c41ea8715a0d008c6bf40d168da5439e86f6e072786e2ad2e2e7348daf45561c0917fe3ee3bea94372d8829e65b0386c695ce5cbad315ad0b7535cdee +DIST thunderbird-147.0.2-it.xpi 494991 BLAKE2B 0fe021b123c4ebd10a32b362cb8ff771f4f907c9f2669e2c7a63a71129896c2461d56d892cc4fae43c9520b2d183d138f27833dc897db44f5d58c4d4a9b06072 SHA512 fd7c496c33036f185b343c5b08947bbb9d6125f92a00b782b6a1fb0d6f3bf02b5fac7fee51f4ea296e0ff0cf06f717c7c71d9e34c2f2884f85a0dd70d49c9c75 +DIST thunderbird-147.0.2-ja.xpi 546207 BLAKE2B c25aca97e1c640eb57dc4eb4232a3217cc4643df6eba2de5c6030e90cc1b71098dbac08a37580fe61f09844e77681642a9920c9afed18018ec7dc889a29fd385 SHA512 c930037f7d473d8887bbea3d0fe313e6236dfda8e26e082f5dbb38e35d9f912b33c9fb02aee61c8e7e1017bcbe086d03bdde98c07184f5e3971259428dacd867 +DIST thunderbird-147.0.2-ka.xpi 562231 BLAKE2B 605afb85548789d8a514a2c721ccb80087182da76fd03c6c9216f569764abf1ccce35b3c552a21680845bf3856eb93e438a7720c0e244549c67566fa35536f91 SHA512 6596570e7e586bb9f90899c1b4d3734d1223619b159c697c364f0d8a4b8ef2fb8dbe47999ae0f3de5a1c8beabd264aff57f19fc52422d83e99441f292ba9fe68 +DIST thunderbird-147.0.2-kab.xpi 469114 BLAKE2B c7e690d5b5f33800ed1caff9827229624a2131ca3a45e9a1f73c1e71a9c71ae7351f154600dded4fe7dd676f69f67a0b80945f0f79a2951823995ee7d3b132d0 SHA512 8f28ab1ea9c22f68f74a7ea61f7b0133e749d10ae9d34bc475888dbe484ab4171167af932a7f3f73978211c7a196b691da2c4b4a115b7e4c8774ccd0ecdae135 +DIST thunderbird-147.0.2-kk.xpi 586396 BLAKE2B bcafd62cb61eb173efb7cbe4c36b2187cb5d53b39971a74ff28eefccefd9e9e97d4d8f73d5d234d36b1c4f1caf8f744a93341843e94dc4f45a3773a755cfe08e SHA512 9bfc30b88a05c6364b2bc4291953a2663af0484c0fca25f2ee3e748124238798e5ca3cf4f198e7bb41bdad81eb11affd900520b99be80bca7afe5c0f2e9e10f8 +DIST thunderbird-147.0.2-ko.xpi 519362 BLAKE2B a12d9a1b80260b6f564238e209b91a5e4238ffc0045b2217984c15d175fbfe90e0f8985e7f9a7b48c4a9b45d6faca4260403e26ca60da445ea42f9f272841815 SHA512 da0e172febe2824627ca948a150811c7d5ea1770672546e9bbb8a31d8b3790fa9cc1cc685de279f70a15093abfffe4abd15de7d1c96d18bf8ec9488497a8ab07 +DIST thunderbird-147.0.2-lt.xpi 451107 BLAKE2B 0f706096ec4d81fe7eb2e38e3f2ec23c0466e690b4360d7cf5282ccbf141deab8c15c5c2f1eb7424dd577d74d8e6940b1a8e5bdcca9d027d652103237a0085ef SHA512 246d148faaf8570d79f6ae5ffa89b8644b3e9ada28493a29e3598582b5defa02aa3e14d0dbb5e7eea0af2d80d1ece2e997d8c0cdff5ff613882d4ed56cf28023 +DIST thunderbird-147.0.2-lv.xpi 388697 BLAKE2B 60a2eab275021322b2866b7e00a7094f34a6e02159499a3433a18f9201b68c9366f46cd379111b182ad06400fa91bd2e821d3e40e5520fad80d29df9197df7e9 SHA512 0b31dcc81d20712cf537e8c7c606a74ab57fe8d1aa64adc3cb3d89df7fbeaa916e7c8d6bcd0684e8a403f52195111de506e94e67ac9609c224ef56ebd98e8166 +DIST thunderbird-147.0.2-ms.xpi 350561 BLAKE2B 42322ac1333c01a9caad4122c4391917514647a9809f4cf97cb9cab664130e5a3d43d0cee72275cf7564cb9cb2022def3c71632518ac12be6a95ab8411203ebb SHA512 ff33e0a159ef708f7a2fd571bb3f812f29db1beb0f9a01e1714c77fa1b5ed483c5b437023a4632db33bbc1ef7702d8e264fd79b784293e28fc420e5d5f60c8b5 +DIST thunderbird-147.0.2-nb-NO.xpi 482518 BLAKE2B 5cbc87bb524bb5a87fd25b9c0c275a1fc0ab63fad6142d0d2b4c1ac44acc0144a6805179b55c64590195b5a1047febacf77de036da33a94111086c3cbb3e29c6 SHA512 1d865536acf4bef5c1f3dace3514555a284cce1a4ca41044938cba802608770ddda3e05e9cf5e2dfff603bbc99389e3b065390a94d27f2558e91f6838dc14ca0 +DIST thunderbird-147.0.2-nl.xpi 488672 BLAKE2B 10a46f3113bb0231e636a1ccbf6861d101e3493c518628748bb9f8985d83ed8489b071356edcc8da7b656e1e79c58527da77da13c400d928730bcd066f96b108 SHA512 98d837b8a0c827d4a21f44f28dd95529d8a4767530e32645f3185eb40b3a76735fd3e1d49b6f4e1fe3a8e7dd18f9d872cad35e9b91671bc316ab666069b59a97 +DIST thunderbird-147.0.2-nn-NO.xpi 486396 BLAKE2B fbfb5bb1734b657dca1787c80df26aa97eb023972cdacca2ff4f18eb64eb6d3f7cd5bf4fa3adee8a10d48e934c0546fdfa53e27d0461919636f0637aa7a10805 SHA512 a5b639d8e4b36c74299773ee13f2052ae5c3e3903fde07164c012425627f017fed80980bd0b00b109224ac7263289f2fde95325fb45d4eb540ff4a6ee8622c28 +DIST thunderbird-147.0.2-pa-IN.xpi 435803 BLAKE2B 28dcf95f1e6642577dde1a82c51953ab9d02b09a8264a4183145ab7628c910f117809c0a2e1db02297c908145eacc627c362a5eefc5855eff9771673c6b01597 SHA512 775c58d746853ec71ba4438e1c21f8b63842e6a48a2d1b3a019589b1793af5a76b7007bc87ad8fdf3f5da380ffd1594e71f07547673a16ecffb8229f24401d28 +DIST thunderbird-147.0.2-pl.xpi 522618 BLAKE2B 6112dd1d430f04c7d2f54a050936015befe616ffc582ba643e8d44605c444160a287f623a9dac1f5b319b8b00e2a41e76a4292b15fe8e9fda152d447cb0ec6b4 SHA512 f5f513a38c41fe263ac8d46a17ad6b0e02a60d155e9be565687c65de4dc49acc1ba681b815f8642001f042b0a6887dd28187e7ef4990e9e4e9c9ca55f8722a5e +DIST thunderbird-147.0.2-pt-BR.xpi 496742 BLAKE2B e7a3f39a032331adb1e1fe46d2b62b817b54712dc91d706fd5220c1379f75537a9cb5745121651d24f1877267740c41dc37a35e2fc0b784521407fa18b09d9d0 SHA512 2237552b42413a1acc670aa12a2297ca637374ec2daa39197dcfd6b9b4e6ae884db429cbce9a3acf4d6285152fd7921269af956c2fd71038741172d34ab97fc8 +DIST thunderbird-147.0.2-pt-PT.xpi 486345 BLAKE2B b1bbf166fb6d28402c4cce8aea2d95dd9ffb234305b6685b46d49517ca0d623b84ced590e99aea9f917b5e5a28176f5d369af0dd6fe348210b9d0e4f75095c44 SHA512 770b05db55143ca77523f87e48fa423d6c367f86172091bf0a3375f05faa589055f0c7d529afccff80a2e1a857466b2afb7fca6d9151810659ddb0cd3c7345e5 +DIST thunderbird-147.0.2-rm.xpi 487588 BLAKE2B 80d4891358ab0312b28ea18f3504989291e5cd02380e3d9b1cd5a4305b13454ae58102e004485b1c087a2ccb901a488a9d92c703eeee0552f028c49928226da1 SHA512 960a0dd9ccf9fe95de281e45e1a8d1cba8e5d9919f0b033790be4eee53940a245e046b6c61f2196d441dee4c7f8e1c52a525b4338b4c4106e8381f97fb1d54f4 +DIST thunderbird-147.0.2-ro.xpi 507922 BLAKE2B 0c5c77a30c26b65a637cdffdbd54143a184f2245b5878e8950f7142120ad140f79f69297ecc3113f08cfb2b60f6dbab9bda959b36ccc3b70dc45a4b16b0c5f40 SHA512 a431ad1e5a30bdb6883c9d639c8c07f9ed5cc45a13b07a886adbfe9f0879de410f43eed9675d133c8c14259fc70da37fbb880b8e11a8d0c0c8458944e81b7e89 +DIST thunderbird-147.0.2-ru.xpi 601167 BLAKE2B 1264438b3c78618d0047899927c0fe69c0c76577beaf9d7923cae195a21d3e5ef3e6aff580fad8eaaade8c252f7463a67aabd2daa68610f0156adc8665bd0faf SHA512 2eaff7cc4c627ddf5d39a296b14063240418504ce1b268f80bdacd1a1928d978d53bf85a7eb3df5fd12a9e0624f0cfa153010fa9c1775e6f53e1a60a6320432a +DIST thunderbird-147.0.2-sk.xpi 527055 BLAKE2B 671625e90fd722f4d1fac776fe12aa1049ae6bac6e69e282dc5b7809cb658881fbba50fce7bd6f45aa0dbede0d2caef1aec8639376f093d912bd0a49d51b7d6b SHA512 5f16590c0403f87be4270296f041f6531f35511bc9b1c27eb1c7c77ba4602fda6ff26ababd19b15e088d37dbb46e9a1be098f3cc6c09ff5c144d534b2bf1bb69 +DIST thunderbird-147.0.2-sl.xpi 491183 BLAKE2B 9b60dad49d6128e4b9650d0eec63d629e8ce7c88e4a3a9d6b31b9cd00f5289c65637c42ba2c222a54e9648f213a7f4f81cf6cb07cdc9f8b7a7d244a126d75355 SHA512 9e9a46de5ce25b0debcce347d8be831f79b50eb835ebae8c6ada07659eef81d1a5c1e738a547d78518e4d23bed8096d81d55d06a2c24799303d553b044315102 +DIST thunderbird-147.0.2-sq.xpi 513074 BLAKE2B 9be58eb19c9fa7985dca4403ef19235a97f79c77ae8fbbcc2addd693e30b6cd7a0f44b6993e6d650f80902dd6f2bb33f7a38daf19c81b0ee7767fc69d38d84af SHA512 e3e6ec8f80ae0969bcf2708c5728ce84ad4d36c2accef5ccaca18e547cfa76350aeb964ae8286b9950dc7ee3d718c4de62c533180234db420bfa8adae0de5150 +DIST thunderbird-147.0.2-sr.xpi 493073 BLAKE2B 85a32420c5863035c08d9b8e7ac24c7c8b9d11b76387df703da0a35c3f584803bcc3db1130f40e397524b771625fb28f0d7e61796aeae4f56a60293a3ae2d30b SHA512 16d48f6423c9141b0cdaa8780ec9b7edb028c85f81e689ed9a342fc19f996bbcfffdac510a940076aa7b9b2f76f8ca6ab11d9f00c13fc70f46330e6a32ae60d4 +DIST thunderbird-147.0.2-sv-SE.xpi 490953 BLAKE2B 29b510192e7c76ebe7fb05ebacbfa58eb5f9faaa1df413a9cc189ed8a234a18e3737a1762e75936defead7bfc6ede7e092106c1dc46b0ba2efd3b7482c3d65e5 SHA512 dd020b761b76d5013fb666e3c01000ed8240122ac851bd75d6ded0106f33a0c2fa8afddeca6624368f9e471696612e517e20d1521b9f39cc29039fb393307c59 +DIST thunderbird-147.0.2-th.xpi 568261 BLAKE2B cc61a5c2101adc5d504d18ef0df5a9efd02dddfe7683a0c60a4f5fcc7e57cf6720547abe7c486be495e6bbc7d97b21690086ad692b09f28ece4d6266833ca1e7 SHA512 dfacd4622df44ab65065dd7a97dc23f468b3d9f657b6b7fc33f70fd47aefb0ae067f6ab9f626faa3bd445a49ad5aebb7d82608e3be407bbd548de756cb75b085 +DIST thunderbird-147.0.2-tr.xpi 502702 BLAKE2B d51b4316b9e1c6b45a4a1c78eae08856984c899354bcea0e0c67fa381e32a4890d989101720dc7ba34a3cd86d35e01602af74f6b586c8fde5695a090d3aaff71 SHA512 cc7dd90fd4cb2fae9ba75ec82bf694f7281a231a8f02916a23ce9127052e9a3719c11b17a792eb965a57479854dacdb04bb1dd285c39242a19ac33e114165859 +DIST thunderbird-147.0.2-uk.xpi 581931 BLAKE2B 8d07182cd393cf640b85c2547e5ccda950580f0e2094d7217d6887b55541738c885a7cdc4a02d31a8e77167c01012a0ac9c381f1431eb076f4a610c8b02467eb SHA512 cac62812d27143bdab1431bd846d4ac8e1b062e8aaf03d5bf3d652e8c4701e4cf3710eb26960cf4c2f8500ac5695a52abbbd34c5be522026bd7428f5a933f374 +DIST thunderbird-147.0.2-uz.xpi 352854 BLAKE2B 8f6f8f4331b83d1ecfd4325431cf4d09c1022a3a9dac3b3db2d6efe3f41a388de7490c40de48224d0f8c2f829e9a8a6e46b91847b4557767283fc801521659b0 SHA512 147ec42fd9fa70bdae5792497c63341b7d01f2cc3c55f01fd931ed136a7fd9a4144986717b213fd7a005269aa49596b140b4feff4ba6c9a03fc23a8271bf91ec +DIST thunderbird-147.0.2-vi.xpi 525245 BLAKE2B 5fe5f7d6b125d72789c593679ea264cca5defba481b80c276786415a257507f385ddf404cf03f3856477013e32e47fa16b1372d0482263f3f1fc66034a4aac1a SHA512 9487e8babedd829a9741aa836e9dd471451d73dbecefc70351f85cc53f2318a85f7f8fd1c3d9ebbfe52e73b302c25f0a2b18a130a4340c800617b38a0bc8af36 +DIST thunderbird-147.0.2-zh-CN.xpi 514162 BLAKE2B 96b946a52aa1babda7f05fa8e3d83aa56211373c97373d4586a4075af72cf6a9d623220a4ae44463291cf3ff320d32f96d000715550f190ebe6f19d8e4219296 SHA512 a369cd0f74acdb481e6491c6ae227577a0c13b5079eee0c9ebac030208f8db08f6a1679f6fbb3436d06802ee9a90c8e486a76cd52617111f6a34b8eec596d0a1 +DIST thunderbird-147.0.2-zh-TW.xpi 517870 BLAKE2B cde71845b27d99dcd75c3fefae6f4b7223095520340db2ea84c78368cd7ea28eca205ba29a36a0f964f58ad6d480f7da964a78600d404d010ec95ef689c2d04b SHA512 4a46bb590881ff16ff22b3e9725e937ae65de3c90f2d737df94277a8acd4089f79b4047a40b085e9ff6c4e491906e36bfb2ddf9c5e1be70e96eb082d4473ac62 +DIST thunderbird-bin_i686-140.7.2.tar.xz 77986436 BLAKE2B 9cb2633d0a10e1f5f0e55ccc0bcc0873de4f6385c7a241cb596f4fb19870bffb85d9a4a1e27a69f30bb074648b11202fc6c605d750cd3c1fd55f8214df4470dd SHA512 4777c71f8a971e53a03dfc333357814b1049cb8c3f8df3672988dc52b3ca64dd46c8d337e4e8266486310814da0d1a56012d02478198f5fa183b5f0b3f9f6ea4 +DIST thunderbird-bin_x86_64-140.7.2.tar.xz 74857880 BLAKE2B 5fbf87dbeee116ace84be65719599a3bf2bab33caaf23d5cd88db1cdf64ccc63d141802200a02ed47d58961610c13730ad1e7e71399ea142c111b894536a5cd7 SHA512 e869082d8d4b94083f70616ccbf50d32a529d379f091676182fc855890c239e58e82239ad8e21267cb7a8dd2d474ec2055108c42d9531dc2611e4de86ef142e5 +DIST thunderbird-bin_x86_64-147.0.2.tar.xz 80251732 BLAKE2B 63069de1ebeb1bb1db6d0492ba032542d6573900287940ed4a0deae127a7f4f760e92665c4e1e1218c1c71c02b5c62704115dffdb4eb9b437e0be9c5f6582746 SHA512 db746e35314c642f753abb832d4a1c30989e96054a4885dccad9ae1b60b36090386860e8551ebb867e5c0d6e7c9a73eeb672e4f5f5601c892a1f723461d27a4c diff --git a/mail-client/thunderbird-bin/thunderbird-bin-140.6.0.ebuild b/mail-client/thunderbird-bin/thunderbird-bin-140.6.0.ebuild deleted file mode 100644 index c41e59b35e16..000000000000 --- a/mail-client/thunderbird-bin/thunderbird-bin-140.6.0.ebuild +++ /dev/null @@ -1,285 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -MOZ_ESR=yes - -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 desktop optfeature pax-utils xdg - -MOZ_SRC_BASE_URI="https://archive.mozilla.org/pub/${MOZ_PN}/releases/${MOZ_PV}" - -SRC_URI="amd64? ( ${MOZ_SRC_BASE_URI}/linux-x86_64/en-US/${MOZ_P}.tar.xz -> ${PN}_x86_64-${PV}.tar.xz ) - x86? ( ${MOZ_SRC_BASE_URI}/linux-i686/en-US/${MOZ_P}.tar.xz -> ${PN}_i686-${PV}.tar.xz )" - -DESCRIPTION="Thunderbird Mail Client" -HOMEPAGE="https://www.thunderbird.net/" - -if [[ -n ${MOZ_ESR} ]] ; then - SLOT="0/esr" -else - SLOT="0/stable" -fi - -KEYWORDS="-* amd64 ~x86" -LICENSE="MPL-2.0 GPL-2 LGPL-2.1" -IUSE="selinux wayland" - -RESTRICT="strip" - -BDEPEND="app-arch/unzip" -RDEPEND="${DEPEND} - || ( - media-libs/libpulse - media-sound/apulse - ) - >=app-accessibility/at-spi2-core-2.46.0:2 - >=dev-libs/glib-2.26:2 - media-libs/alsa-lib - media-libs/fontconfig - >=media-libs/freetype-2.4.10 - sys-apps/dbus - virtual/freedesktop-icon-theme - >=x11-libs/cairo-1.10[X] - x11-libs/gdk-pixbuf:2 - >=x11-libs/gtk+-3.11:3[X,wayland?] - x11-libs/libX11 - x11-libs/libXcomposite - x11-libs/libXcursor - x11-libs/libXdamage - x11-libs/libXext - x11-libs/libXfixes - x11-libs/libXi - x11-libs/libXrandr - x11-libs/libXrender - x11-libs/libxcb - >=x11-libs/pango-1.22.0 - selinux? ( sec-policy/selinux-thunderbird ) -" - -QA_PREBUILT="opt/${MOZ_PN}/*" - -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 es-MX 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_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 -} - -src_unpack() { - local _lp_dir="${WORKDIR}/language_packs" - local _src_file - - mkdir "${S}" || die - - if [[ ! -d "${_lp_dir}" ]] ; then - mkdir "${_lp_dir}" || die - fi - - for _src_file in ${A} ; do - if [[ ${_src_file} == *.xpi ]]; then - cp "${DISTDIR}/${_src_file}" "${_lp_dir}" || die "Failed to copy '${_src_file}' to '${_lp_dir}'!" - else - MY_SRC_FILE=${_src_file} - fi - done -} - -src_install() { - # Set MOZILLA_FIVE_HOME - local MOZILLA_FIVE_HOME="/opt/${MOZ_PN}" - - dodir /opt - pushd "${ED}"/opt &>/dev/null || die - unpack "${MY_SRC_FILE}" - popd &>/dev/null || die - - pax-mark m \ - "${ED}${MOZILLA_FIVE_HOME}"/${MOZ_PN} \ - "${ED}${MOZILLA_FIVE_HOME}"/${MOZ_PN}-bin - - # Install policy (currently only used to disable application updates) - insinto "${MOZILLA_FIVE_HOME}/distribution" - 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-r1.js gentoo-prefs.js - - local GENTOO_PREFS="${ED}${PREFS_DIR}/gentoo-prefs.js" - - # 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="${ED}/${MOZILLA_FIVE_HOME}/chrome/icons/default" - - 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^} (bin)" - local desktop_file="${FILESDIR}/icon/${PN}-r3.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 - - if [[ -n ${MOZ_ESR} ]] ; then - local wmclass="thunderbird-esr" - else - local wmclass="thunderbird" - fi - - cp "${desktop_file}" "${WORKDIR}/${PN}.desktop-template" || die - - # Add apulse support through our wrapper shell launcher, patchelf-method broken since 119.0. - # See bgo#916230, bgo#941873 - local apulselib= - if has_version -r media-sound/apulse[-sdk] ; then - apulselib="${EPREFIX}/usr/$(get_libdir)/apulse" - ewarn "media-sound/apulse with -sdk use flag detected!" - ewarn "Thunderbird-bin will be installed with a wrapper, that attempts to load" - ewarn "apulse instead of pipewire/pulseadio. This may lead to sound issues." - ewarn "Please either enable sdk use flag for apulse, or remove apulse" - ewarn "completely and re-install thunderbird-bin to utilize pipewire/pulseaudio instead." - fi - - sed -i \ - -e "s:@NAME@:${app_name}:" \ - -e "s:@EXEC@:${exec_command}:" \ - -e "s:@ICON@:${icon}:" \ - -e "s:@CLASS@:${wmclass}:" \ - "${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@:${EPREFIX}${MOZILLA_FIVE_HOME}:" \ - -e "s:@APULSELIB_DIR@:${apulselib}:" \ - -e "s:@DEFAULT_WAYLAND@:${use_wayland}:" \ - "${ED}/usr/bin/${PN}" \ - || die -} - -pkg_postinst() { - xdg_pkg_postinst - - optfeature_header "Optional programs for extra features:" - optfeature "fallback mouse cursor theme e.g. on WMs" gnome-base/gsettings-desktop-schemas - optfeature "ffmpeg-based audio/video codec support, required for HTML5 video rendering" media-video/ffmpeg - optfeature "encrypted chat support" net-libs/libotr - optfeature "desktop notifications" x11-libs/libnotify -} diff --git a/mail-client/thunderbird-bin/thunderbird-bin-140.7.1.ebuild b/mail-client/thunderbird-bin/thunderbird-bin-140.7.1.ebuild deleted file mode 100644 index 1afb59006063..000000000000 --- a/mail-client/thunderbird-bin/thunderbird-bin-140.7.1.ebuild +++ /dev/null @@ -1,285 +0,0 @@ -# Copyright 1999-2026 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -MOZ_ESR=yes - -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 desktop optfeature pax-utils xdg - -MOZ_SRC_BASE_URI="https://archive.mozilla.org/pub/${MOZ_PN}/releases/${MOZ_PV}" - -SRC_URI="amd64? ( ${MOZ_SRC_BASE_URI}/linux-x86_64/en-US/${MOZ_P}.tar.xz -> ${PN}_x86_64-${PV}.tar.xz ) - x86? ( ${MOZ_SRC_BASE_URI}/linux-i686/en-US/${MOZ_P}.tar.xz -> ${PN}_i686-${PV}.tar.xz )" - -DESCRIPTION="Thunderbird Mail Client" -HOMEPAGE="https://www.thunderbird.net/" - -if [[ -n ${MOZ_ESR} ]] ; then - SLOT="0/esr" -else - SLOT="0/stable" -fi - -KEYWORDS="-* amd64 ~x86" -LICENSE="MPL-2.0 GPL-2 LGPL-2.1" -IUSE="selinux wayland" - -RESTRICT="strip" - -BDEPEND="app-arch/unzip" -RDEPEND="${DEPEND} - || ( - media-libs/libpulse - media-sound/apulse - ) - >=app-accessibility/at-spi2-core-2.46.0:2 - >=dev-libs/glib-2.26:2 - media-libs/alsa-lib - media-libs/fontconfig - >=media-libs/freetype-2.4.10 - sys-apps/dbus - virtual/freedesktop-icon-theme - >=x11-libs/cairo-1.10[X] - x11-libs/gdk-pixbuf:2 - >=x11-libs/gtk+-3.11:3[X,wayland?] - x11-libs/libX11 - x11-libs/libXcomposite - x11-libs/libXcursor - x11-libs/libXdamage - x11-libs/libXext - x11-libs/libXfixes - x11-libs/libXi - x11-libs/libXrandr - x11-libs/libXrender - x11-libs/libxcb - >=x11-libs/pango-1.22.0 - selinux? ( sec-policy/selinux-thunderbird ) -" - -QA_PREBUILT="opt/${MOZ_PN}/*" - -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 es-MX 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_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 -} - -src_unpack() { - local _lp_dir="${WORKDIR}/language_packs" - local _src_file - - mkdir "${S}" || die - - if [[ ! -d "${_lp_dir}" ]] ; then - mkdir "${_lp_dir}" || die - fi - - for _src_file in ${A} ; do - if [[ ${_src_file} == *.xpi ]]; then - cp "${DISTDIR}/${_src_file}" "${_lp_dir}" || die "Failed to copy '${_src_file}' to '${_lp_dir}'!" - else - MY_SRC_FILE=${_src_file} - fi - done -} - -src_install() { - # Set MOZILLA_FIVE_HOME - local MOZILLA_FIVE_HOME="/opt/${MOZ_PN}" - - dodir /opt - pushd "${ED}"/opt &>/dev/null || die - unpack "${MY_SRC_FILE}" - popd &>/dev/null || die - - pax-mark m \ - "${ED}${MOZILLA_FIVE_HOME}"/${MOZ_PN} \ - "${ED}${MOZILLA_FIVE_HOME}"/${MOZ_PN}-bin - - # Install policy (currently only used to disable application updates) - insinto "${MOZILLA_FIVE_HOME}/distribution" - 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-r1.js gentoo-prefs.js - - local GENTOO_PREFS="${ED}${PREFS_DIR}/gentoo-prefs.js" - - # 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="${ED}/${MOZILLA_FIVE_HOME}/chrome/icons/default" - - 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^} (bin)" - local desktop_file="${FILESDIR}/icon/${PN}-r3.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 - - if [[ -n ${MOZ_ESR} ]] ; then - local wmclass="thunderbird-esr" - else - local wmclass="thunderbird" - fi - - cp "${desktop_file}" "${WORKDIR}/${PN}.desktop-template" || die - - # Add apulse support through our wrapper shell launcher, patchelf-method broken since 119.0. - # See bgo#916230, bgo#941873 - local apulselib= - if has_version -r media-sound/apulse[-sdk] ; then - apulselib="${EPREFIX}/usr/$(get_libdir)/apulse" - ewarn "media-sound/apulse with -sdk use flag detected!" - ewarn "Thunderbird-bin will be installed with a wrapper, that attempts to load" - ewarn "apulse instead of pipewire/pulseadio. This may lead to sound issues." - ewarn "Please either enable sdk use flag for apulse, or remove apulse" - ewarn "completely and re-install thunderbird-bin to utilize pipewire/pulseaudio instead." - fi - - sed -i \ - -e "s:@NAME@:${app_name}:" \ - -e "s:@EXEC@:${exec_command}:" \ - -e "s:@ICON@:${icon}:" \ - -e "s:@CLASS@:${wmclass}:" \ - "${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@:${EPREFIX}${MOZILLA_FIVE_HOME}:" \ - -e "s:@APULSELIB_DIR@:${apulselib}:" \ - -e "s:@DEFAULT_WAYLAND@:${use_wayland}:" \ - "${ED}/usr/bin/${PN}" \ - || die -} - -pkg_postinst() { - xdg_pkg_postinst - - optfeature_header "Optional programs for extra features:" - optfeature "fallback mouse cursor theme e.g. on WMs" gnome-base/gsettings-desktop-schemas - optfeature "ffmpeg-based audio/video codec support, required for HTML5 video rendering" media-video/ffmpeg - optfeature "encrypted chat support" net-libs/libotr - optfeature "desktop notifications" x11-libs/libnotify -} diff --git a/mail-client/thunderbird-bin/thunderbird-bin-140.7.0.ebuild b/mail-client/thunderbird-bin/thunderbird-bin-140.7.2.ebuild index 1afb59006063..1afb59006063 100644 --- a/mail-client/thunderbird-bin/thunderbird-bin-140.7.0.ebuild +++ b/mail-client/thunderbird-bin/thunderbird-bin-140.7.2.ebuild diff --git a/mail-client/thunderbird-bin/thunderbird-bin-146.0.1.ebuild b/mail-client/thunderbird-bin/thunderbird-bin-146.0.1.ebuild deleted file mode 100644 index 125912201b84..000000000000 --- a/mail-client/thunderbird-bin/thunderbird-bin-146.0.1.ebuild +++ /dev/null @@ -1,284 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -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 desktop optfeature pax-utils xdg - -MOZ_SRC_BASE_URI="https://archive.mozilla.org/pub/${MOZ_PN}/releases/${MOZ_PV}" - -SRC_URI="amd64? ( ${MOZ_SRC_BASE_URI}/linux-x86_64/en-US/${MOZ_P}.tar.xz -> ${PN}_x86_64-${PV}.tar.xz )" - -DESCRIPTION="Thunderbird Mail Client" -HOMEPAGE="https://www.thunderbird.net/" - -if [[ -n ${MOZ_ESR} ]] ; then - SLOT="0/esr" -else - SLOT="0/stable" -fi - -KEYWORDS="-* amd64" -LICENSE="MPL-2.0 GPL-2 LGPL-2.1" -IUSE="selinux wayland" - -RESTRICT="strip" - -BDEPEND="app-arch/unzip" -RDEPEND="${DEPEND} - || ( - media-libs/libpulse - media-sound/apulse - ) - >=app-accessibility/at-spi2-core-2.46.0:2 - >=dev-libs/glib-2.26:2 - media-libs/alsa-lib - media-libs/fontconfig - >=media-libs/freetype-2.4.10 - sys-apps/dbus - virtual/freedesktop-icon-theme - >=x11-libs/cairo-1.10[X] - x11-libs/gdk-pixbuf:2 - >=x11-libs/gtk+-3.11:3[X,wayland?] - x11-libs/libX11 - x11-libs/libXcomposite - x11-libs/libXcursor - x11-libs/libXdamage - x11-libs/libXext - x11-libs/libXfixes - x11-libs/libXi - x11-libs/libXrandr - x11-libs/libXrender - x11-libs/libxcb - >=x11-libs/pango-1.22.0 - selinux? ( sec-policy/selinux-thunderbird ) -" - -QA_PREBUILT="opt/${MOZ_PN}/*" - -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 es-MX 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_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 -} - -src_unpack() { - local _lp_dir="${WORKDIR}/language_packs" - local _src_file - - mkdir "${S}" || die - - if [[ ! -d "${_lp_dir}" ]] ; then - mkdir "${_lp_dir}" || die - fi - - for _src_file in ${A} ; do - if [[ ${_src_file} == *.xpi ]]; then - cp "${DISTDIR}/${_src_file}" "${_lp_dir}" || die "Failed to copy '${_src_file}' to '${_lp_dir}'!" - else - MY_SRC_FILE=${_src_file} - fi - done -} - -src_install() { - # Set MOZILLA_FIVE_HOME - local MOZILLA_FIVE_HOME="/opt/${MOZ_PN}" - - dodir /opt - pushd "${ED}"/opt &>/dev/null || die - unpack "${MY_SRC_FILE}" - popd &>/dev/null || die - - pax-mark m \ - "${ED}${MOZILLA_FIVE_HOME}"/${MOZ_PN} \ - "${ED}${MOZILLA_FIVE_HOME}"/${MOZ_PN}-bin - - # Install policy (currently only used to disable application updates) - insinto "${MOZILLA_FIVE_HOME}/distribution" - 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-r1.js gentoo-prefs.js - - local GENTOO_PREFS="${ED}${PREFS_DIR}/gentoo-prefs.js" - - # 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="${ED}/${MOZILLA_FIVE_HOME}/chrome/icons/default" - - 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^} (bin)" - local desktop_file="${FILESDIR}/icon/${PN}-r3.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 - - if [[ -n ${MOZ_ESR} ]] ; then - local wmclass="thunderbird-esr" - else - local wmclass="thunderbird" - fi - - cp "${desktop_file}" "${WORKDIR}/${PN}.desktop-template" || die - - # Add apulse support through our wrapper shell launcher, patchelf-method broken since 119.0. - # See bgo#916230, bgo#941873 - local apulselib= - if has_version -r media-sound/apulse[-sdk] ; then - apulselib="${EPREFIX}/usr/$(get_libdir)/apulse" - ewarn "media-sound/apulse with -sdk use flag detected!" - ewarn "Thunderbird-bin will be installed with a wrapper, that attempts to load" - ewarn "apulse instead of pipewire/pulseadio. This may lead to sound issues." - ewarn "Please either enable sdk use flag for apulse, or remove apulse" - ewarn "completely and re-install thunderbird-bin to utilize pipewire/pulseaudio instead." - fi - - sed -i \ - -e "s:@NAME@:${app_name}:" \ - -e "s:@EXEC@:${exec_command}:" \ - -e "s:@ICON@:${icon}:" \ - -e "s:@CLASS@:${wmclass}:" \ - "${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@:${EPREFIX}${MOZILLA_FIVE_HOME}:" \ - -e "s:@APULSELIB_DIR@:${apulselib}:" \ - -e "s:@DEFAULT_WAYLAND@:${use_wayland}:" \ - "${ED}/usr/bin/${PN}" \ - || die -} - -pkg_postinst() { - xdg_pkg_postinst - - optfeature_header "Optional programs for extra features:" - optfeature "fallback mouse cursor theme e.g. on WMs" gnome-base/gsettings-desktop-schemas - optfeature "ffmpeg-based audio/video codec support, required for HTML5 video rendering" media-video/ffmpeg - optfeature "encrypted chat support" net-libs/libotr - optfeature "desktop notifications" x11-libs/libnotify -} diff --git a/mail-client/thunderbird-bin/thunderbird-bin-146.0.ebuild b/mail-client/thunderbird-bin/thunderbird-bin-146.0.ebuild deleted file mode 100644 index 125912201b84..000000000000 --- a/mail-client/thunderbird-bin/thunderbird-bin-146.0.ebuild +++ /dev/null @@ -1,284 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -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 desktop optfeature pax-utils xdg - -MOZ_SRC_BASE_URI="https://archive.mozilla.org/pub/${MOZ_PN}/releases/${MOZ_PV}" - -SRC_URI="amd64? ( ${MOZ_SRC_BASE_URI}/linux-x86_64/en-US/${MOZ_P}.tar.xz -> ${PN}_x86_64-${PV}.tar.xz )" - -DESCRIPTION="Thunderbird Mail Client" -HOMEPAGE="https://www.thunderbird.net/" - -if [[ -n ${MOZ_ESR} ]] ; then - SLOT="0/esr" -else - SLOT="0/stable" -fi - -KEYWORDS="-* amd64" -LICENSE="MPL-2.0 GPL-2 LGPL-2.1" -IUSE="selinux wayland" - -RESTRICT="strip" - -BDEPEND="app-arch/unzip" -RDEPEND="${DEPEND} - || ( - media-libs/libpulse - media-sound/apulse - ) - >=app-accessibility/at-spi2-core-2.46.0:2 - >=dev-libs/glib-2.26:2 - media-libs/alsa-lib - media-libs/fontconfig - >=media-libs/freetype-2.4.10 - sys-apps/dbus - virtual/freedesktop-icon-theme - >=x11-libs/cairo-1.10[X] - x11-libs/gdk-pixbuf:2 - >=x11-libs/gtk+-3.11:3[X,wayland?] - x11-libs/libX11 - x11-libs/libXcomposite - x11-libs/libXcursor - x11-libs/libXdamage - x11-libs/libXext - x11-libs/libXfixes - x11-libs/libXi - x11-libs/libXrandr - x11-libs/libXrender - x11-libs/libxcb - >=x11-libs/pango-1.22.0 - selinux? ( sec-policy/selinux-thunderbird ) -" - -QA_PREBUILT="opt/${MOZ_PN}/*" - -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 es-MX 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_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 -} - -src_unpack() { - local _lp_dir="${WORKDIR}/language_packs" - local _src_file - - mkdir "${S}" || die - - if [[ ! -d "${_lp_dir}" ]] ; then - mkdir "${_lp_dir}" || die - fi - - for _src_file in ${A} ; do - if [[ ${_src_file} == *.xpi ]]; then - cp "${DISTDIR}/${_src_file}" "${_lp_dir}" || die "Failed to copy '${_src_file}' to '${_lp_dir}'!" - else - MY_SRC_FILE=${_src_file} - fi - done -} - -src_install() { - # Set MOZILLA_FIVE_HOME - local MOZILLA_FIVE_HOME="/opt/${MOZ_PN}" - - dodir /opt - pushd "${ED}"/opt &>/dev/null || die - unpack "${MY_SRC_FILE}" - popd &>/dev/null || die - - pax-mark m \ - "${ED}${MOZILLA_FIVE_HOME}"/${MOZ_PN} \ - "${ED}${MOZILLA_FIVE_HOME}"/${MOZ_PN}-bin - - # Install policy (currently only used to disable application updates) - insinto "${MOZILLA_FIVE_HOME}/distribution" - 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-r1.js gentoo-prefs.js - - local GENTOO_PREFS="${ED}${PREFS_DIR}/gentoo-prefs.js" - - # 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="${ED}/${MOZILLA_FIVE_HOME}/chrome/icons/default" - - 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^} (bin)" - local desktop_file="${FILESDIR}/icon/${PN}-r3.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 - - if [[ -n ${MOZ_ESR} ]] ; then - local wmclass="thunderbird-esr" - else - local wmclass="thunderbird" - fi - - cp "${desktop_file}" "${WORKDIR}/${PN}.desktop-template" || die - - # Add apulse support through our wrapper shell launcher, patchelf-method broken since 119.0. - # See bgo#916230, bgo#941873 - local apulselib= - if has_version -r media-sound/apulse[-sdk] ; then - apulselib="${EPREFIX}/usr/$(get_libdir)/apulse" - ewarn "media-sound/apulse with -sdk use flag detected!" - ewarn "Thunderbird-bin will be installed with a wrapper, that attempts to load" - ewarn "apulse instead of pipewire/pulseadio. This may lead to sound issues." - ewarn "Please either enable sdk use flag for apulse, or remove apulse" - ewarn "completely and re-install thunderbird-bin to utilize pipewire/pulseaudio instead." - fi - - sed -i \ - -e "s:@NAME@:${app_name}:" \ - -e "s:@EXEC@:${exec_command}:" \ - -e "s:@ICON@:${icon}:" \ - -e "s:@CLASS@:${wmclass}:" \ - "${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@:${EPREFIX}${MOZILLA_FIVE_HOME}:" \ - -e "s:@APULSELIB_DIR@:${apulselib}:" \ - -e "s:@DEFAULT_WAYLAND@:${use_wayland}:" \ - "${ED}/usr/bin/${PN}" \ - || die -} - -pkg_postinst() { - xdg_pkg_postinst - - optfeature_header "Optional programs for extra features:" - optfeature "fallback mouse cursor theme e.g. on WMs" gnome-base/gsettings-desktop-schemas - optfeature "ffmpeg-based audio/video codec support, required for HTML5 video rendering" media-video/ffmpeg - optfeature "encrypted chat support" net-libs/libotr - optfeature "desktop notifications" x11-libs/libnotify -} diff --git a/mail-client/thunderbird-bin/thunderbird-bin-147.0.1.ebuild b/mail-client/thunderbird-bin/thunderbird-bin-147.0.2.ebuild index 7cfbc3990be5..7cfbc3990be5 100644 --- a/mail-client/thunderbird-bin/thunderbird-bin-147.0.1.ebuild +++ b/mail-client/thunderbird-bin/thunderbird-bin-147.0.2.ebuild diff --git a/mail-client/thunderbird-bin/thunderbird-bin-147.0.ebuild b/mail-client/thunderbird-bin/thunderbird-bin-147.0.ebuild deleted file mode 100644 index 7cfbc3990be5..000000000000 --- a/mail-client/thunderbird-bin/thunderbird-bin-147.0.ebuild +++ /dev/null @@ -1,284 +0,0 @@ -# Copyright 1999-2026 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -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 desktop optfeature pax-utils xdg - -MOZ_SRC_BASE_URI="https://archive.mozilla.org/pub/${MOZ_PN}/releases/${MOZ_PV}" - -SRC_URI="amd64? ( ${MOZ_SRC_BASE_URI}/linux-x86_64/en-US/${MOZ_P}.tar.xz -> ${PN}_x86_64-${PV}.tar.xz )" - -DESCRIPTION="Thunderbird Mail Client" -HOMEPAGE="https://www.thunderbird.net/" - -if [[ -n ${MOZ_ESR} ]] ; then - SLOT="0/esr" -else - SLOT="0/stable" -fi - -KEYWORDS="-* amd64" -LICENSE="MPL-2.0 GPL-2 LGPL-2.1" -IUSE="selinux wayland" - -RESTRICT="strip" - -BDEPEND="app-arch/unzip" -RDEPEND="${DEPEND} - || ( - media-libs/libpulse - media-sound/apulse - ) - >=app-accessibility/at-spi2-core-2.46.0:2 - >=dev-libs/glib-2.26:2 - media-libs/alsa-lib - media-libs/fontconfig - >=media-libs/freetype-2.4.10 - sys-apps/dbus - virtual/freedesktop-icon-theme - >=x11-libs/cairo-1.10[X] - x11-libs/gdk-pixbuf:2 - >=x11-libs/gtk+-3.11:3[X,wayland?] - x11-libs/libX11 - x11-libs/libXcomposite - x11-libs/libXcursor - x11-libs/libXdamage - x11-libs/libXext - x11-libs/libXfixes - x11-libs/libXi - x11-libs/libXrandr - x11-libs/libXrender - x11-libs/libxcb - >=x11-libs/pango-1.22.0 - selinux? ( sec-policy/selinux-thunderbird ) -" - -QA_PREBUILT="opt/${MOZ_PN}/*" - -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 es-MX 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_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 -} - -src_unpack() { - local _lp_dir="${WORKDIR}/language_packs" - local _src_file - - mkdir "${S}" || die - - if [[ ! -d "${_lp_dir}" ]] ; then - mkdir "${_lp_dir}" || die - fi - - for _src_file in ${A} ; do - if [[ ${_src_file} == *.xpi ]]; then - cp "${DISTDIR}/${_src_file}" "${_lp_dir}" || die "Failed to copy '${_src_file}' to '${_lp_dir}'!" - else - MY_SRC_FILE=${_src_file} - fi - done -} - -src_install() { - # Set MOZILLA_FIVE_HOME - local MOZILLA_FIVE_HOME="/opt/${MOZ_PN}" - - dodir /opt - pushd "${ED}"/opt &>/dev/null || die - unpack "${MY_SRC_FILE}" - popd &>/dev/null || die - - pax-mark m \ - "${ED}${MOZILLA_FIVE_HOME}"/${MOZ_PN} \ - "${ED}${MOZILLA_FIVE_HOME}"/${MOZ_PN}-bin - - # Install policy (currently only used to disable application updates) - insinto "${MOZILLA_FIVE_HOME}/distribution" - 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-r1.js gentoo-prefs.js - - local GENTOO_PREFS="${ED}${PREFS_DIR}/gentoo-prefs.js" - - # 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="${ED}/${MOZILLA_FIVE_HOME}/chrome/icons/default" - - 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^} (bin)" - local desktop_file="${FILESDIR}/icon/${PN}-r3.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 - - if [[ -n ${MOZ_ESR} ]] ; then - local wmclass="thunderbird-esr" - else - local wmclass="thunderbird" - fi - - cp "${desktop_file}" "${WORKDIR}/${PN}.desktop-template" || die - - # Add apulse support through our wrapper shell launcher, patchelf-method broken since 119.0. - # See bgo#916230, bgo#941873 - local apulselib= - if has_version -r media-sound/apulse[-sdk] ; then - apulselib="${EPREFIX}/usr/$(get_libdir)/apulse" - ewarn "media-sound/apulse with -sdk use flag detected!" - ewarn "Thunderbird-bin will be installed with a wrapper, that attempts to load" - ewarn "apulse instead of pipewire/pulseadio. This may lead to sound issues." - ewarn "Please either enable sdk use flag for apulse, or remove apulse" - ewarn "completely and re-install thunderbird-bin to utilize pipewire/pulseaudio instead." - fi - - sed -i \ - -e "s:@NAME@:${app_name}:" \ - -e "s:@EXEC@:${exec_command}:" \ - -e "s:@ICON@:${icon}:" \ - -e "s:@CLASS@:${wmclass}:" \ - "${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@:${EPREFIX}${MOZILLA_FIVE_HOME}:" \ - -e "s:@APULSELIB_DIR@:${apulselib}:" \ - -e "s:@DEFAULT_WAYLAND@:${use_wayland}:" \ - "${ED}/usr/bin/${PN}" \ - || die -} - -pkg_postinst() { - xdg_pkg_postinst - - optfeature_header "Optional programs for extra features:" - optfeature "fallback mouse cursor theme e.g. on WMs" gnome-base/gsettings-desktop-schemas - optfeature "ffmpeg-based audio/video codec support, required for HTML5 video rendering" media-video/ffmpeg - optfeature "encrypted chat support" net-libs/libotr - optfeature "desktop notifications" x11-libs/libnotify -} diff --git a/mail-client/thunderbird/Manifest b/mail-client/thunderbird/Manifest index e5d93ba44857..906f933e395b 100644 --- a/mail-client/thunderbird/Manifest +++ b/mail-client/thunderbird/Manifest @@ -1,461 +1,133 @@ DIST firefox-139-loong-patches-02.tar.xz 3096 BLAKE2B 2e9c0f3dac780c808a13f70fe3808df9976898360b55113def97bf3594893166e0647c70ebc389b2d14fa2c2453fc1dd68aba20d92178670ef97d70c34205e1c SHA512 e1244007290e2e15d14cf519e3ade6a4da06abe41c416de60569a11396609661cb62fb5b592e763cc079406699dc33d6a34851f71068f4d09bdf34021b035a59 -DIST firefox-140esr-patches-04.tar.xz 124424 BLAKE2B 89fd2cedb67a9d82c339fed01b79c9c4b3f58051b68764121f982d4eba04d979c9d16238a7599fbab4f9d3965253f3ec4886f2da590b05116bc6ea0ee027e935 SHA512 b8c268fd5118007490edb7ef99f90148af4fa88ec7cdec03d028630476c85862e896b1ad3a6964215835f6f442aa71df96d6dd9aab632802773792bced8dc17b DIST firefox-140esr-patches-05.tar.xz 124432 BLAKE2B 9281214dcf3da5d2e288112a99dc1fbee44ee93c4b83e30d73e8383805bd9c8ad9b1918d11351398cd963fdc30ec3cb50d7f6b5c9905d7c1303d21fdef440fbe SHA512 70551bb7eea2a50bbd30418438a78a8ace07467fe852b7655c24373c651f816df89fceeb98b6fa6c7d95944b0c5deef76b89b3e742795a8ac04259f02bd25c10 -DIST firefox-146-patches-01.tar.xz 10568 BLAKE2B 643ed4298d7ab2251ae1f813473a7b461aa386dfb72984e46201b22b6cb0f69f28e92b44a4783dda32a81b4b0dacbe8b47a25b9232481ecd79a19550e74e4812 SHA512 9e2474eedda1c2644ddcb0f9fd2d90ede764469337eab1267d3d4dbe8e3487bb519106449acf1da9798050d61a51e96a882f365e4587f88747161f6418203e4e -DIST firefox-147-patches-01t.tar.xz 47372 BLAKE2B 27c8ec917b10b3ad0ab035cf98b0578acff26a627360ae4d74bcbaf1c8e1775a4d7fd4f0175787cb8f0abec71c0f9e23db18ececa890c387869c1cfe4964ccdb SHA512 9cc23c92b442205314c044dff704ea33cc3f22d43a88d4c2f4bb0d2e21b89488c6b9935195339031729573c722493403ac845cbaddbbcf0a927e7d506f21b67c DIST firefox-147-patches-02t.tar.xz 47564 BLAKE2B 44c18affb9539278d6e8259bb1c39ca03e2f09f4a29d3051ab1aec3f34c1e5f7dc134fdc2878dbd0c3bcb9373e3d792fd93252e77692e7cfa6aa96a9a1d0bfa0 SHA512 a47bb9967734914f7005846ff1c47600aac4ea217c7bc65f8f6e9501aced696a3666f59c600942be674f22e611112836b1f29ad17504fb78e21dcff0dc10ac62 -DIST thunderbird-140.6.0esr-af.xpi 316217 BLAKE2B c7238abeeca8275eeafa982c35d46816de5c0c0751f037f6acfc07833077c521a752946b56b1c3b92e756212be2105b8203b4172da6cfffb66f47d1f34f2aee7 SHA512 f7ae8f8ba1e12e85a6cade91d0520ef957f1ea4b8da086805aec9c5e2d22b0d3667b5437bd5a9177c9a7e4e4759e083e23ac4b6473a3858d98465073540d2148 -DIST thunderbird-140.6.0esr-ar.xpi 436191 BLAKE2B 6a00d9f3b2a2985058dee6065c320b66d37a187f48be4d6ba7f970382a2ab564d12d1bb4babd2692572c7f1e7cb320e8d03e510814e295bb9c00a7eea1ab076e SHA512 38c52544ff236113c57a1722e2767a2838a371bc93c2b028d0cc52e188bf407d35e99d37584d3c15fee465975e5f8d0c2489d987220e7016a9436f50f21bb903 -DIST thunderbird-140.6.0esr-ast.xpi 340597 BLAKE2B 2e7eea3d13f0e84650f425d5ec8a4705ad78416f095726db60fd0f2cbfc0947e9b3b02439db7c7dae310f8fa8a92f63f24b2a47287f60f03b886e8124bc97510 SHA512 c479cf7a42b8698b520a6bd29490000d47c8be24d37b49b1344d797a2d80fabe9a42676403fa210cfd12d676695fbf90e09325b4ded1ad69f05fc68f1b4fd255 -DIST thunderbird-140.6.0esr-be.xpi 520643 BLAKE2B b8f0b7bf7bd42a8b55347520ade526f4261977d5e5c768fe356b33452c283b95264445513f73317a967cd374fad5f9492f5f098dd081078477af75ade24dddbc SHA512 c26aefb2d8d48127239ee4ea4f777ce5fc8ba27655e44ac90328191b1c1b6e33c804bad636e0e6e781f52286354a1f6513d4c343e19599dc240f0a8a357e1906 -DIST thunderbird-140.6.0esr-bg.xpi 536115 BLAKE2B f6018cd6c6acb9a8c8af4406c2a7e6451f3c64b2e96e5d3ca1e32f9b12656ea37050cf9a9471bb8d45fdc74c8c4d71585defe171239090dce7cc432325264c26 SHA512 cdfd405e480bfe53ac3cfb43fdae85b06c3810824964eb29dfb0e95719a3a68c6ee2fdad983903fdc3970dcac1864c69fbc64e4d81a29d4fb5cb8efcb88abba7 -DIST thunderbird-140.6.0esr-br.xpi 402747 BLAKE2B 56b53654f52dd69104f813b0022d97c1ab9a66caf23741ecce87ee8a158b75808218300ee49db3d658387e6a85506ac19c2a73590a888142df4607e51c158431 SHA512 dbbc22a5deeb9d191b10cfe19caa69ecad94d462560741a3d2a7816926cb442fcc39786ca9188c3b7cf0aa4eb11917119ef71b393c6eaacda06db84bd7f8b76a -DIST thunderbird-140.6.0esr-ca.xpi 440583 BLAKE2B 19df0e5b6dd7b3554122328469cbd75dce2be6f12d1fd24ed60c2c464208d962a026ab03f802f6d075c99388b277e295fb15e52834b95fe647b77accd3ff4f8a SHA512 ef1318aa8d46a36e13a9eb4411eb63bd59cdecb74ddf00355e504667fad312a545e70bd6ef0127088939c2a5aeae91dcb567c608b108bedcdf8ca253514d65da -DIST thunderbird-140.6.0esr-cak.xpi 418015 BLAKE2B 8cf3d40db61d0d2179799b2e20708ee4b5a0c497fab1bbac615671af4dbdbc031c272445237bf3f4dd8af93aabba9066d8101f3a78aa2f0ad7b56cba3bffa704 SHA512 86bad9fa12199a658916154ada0d19c616e9baf01a603303ebbef5a17dbae3ffdc16cb1e8c39e220f4f0a1deda83b019743729439f3c4d34da3ddd5dd2c886a0 -DIST thunderbird-140.6.0esr-cs.xpi 519495 BLAKE2B 076527c919fa0c7ed14be3d53a3fced3aed451c9a771acc64476dbeff55e10caf257c9f8a243190152adf816baa216f1d75feeac71d976f4c2221a1cc907b6e5 SHA512 5272aa222ae8669e8f811eec9eb9dd1befd7ed52af14d22e172eb56700440c849b6ee2aff2fc8ce28ef4bac6878ee2d2d538019398cb9e0c96dc2505028ff43d -DIST thunderbird-140.6.0esr-cy.xpi 487641 BLAKE2B d48c1eb5835f5285acacf2016b0d9eba5fb3d48eb605d08175253ec2d5d8dc0cd1f2a56af37d5b72a2469b4c5e526cfd17ba83f2087304bfa1d1084b38243e05 SHA512 0eefc2e1af001faf772831436bae8b875878f10b6cb98600ab0db26eff1acf33809bb0a3565d5f0048201989c10719d1a9b3957eac1d026a5d6ab3de78592882 -DIST thunderbird-140.6.0esr-da.xpi 476637 BLAKE2B 0074d59af15661175dac0c418a1176e98ea3df86d54fffeb8985b267100f712ffd6efff94191a5abe1441c361bfe36d76b91df1fa7e2b4dfe5fbd221c7c4cb07 SHA512 e4f29c9f4df8d79076c0f64b251a120e9f244ab81b5fc8bfbf9b621ce05127bb9f16e5c7a247a40098e876e81dd6960464f2bdfbf7ceecac4b1abd232af9866e -DIST thunderbird-140.6.0esr-de.xpi 505061 BLAKE2B 08d01a7aff58b4bb35512399f59c634d87934687bf237ecbc383826e2113e4bd8cc44258a69be7ae74d9f15799eec27ebfae928a6d3a0c200972ce555d612b7b SHA512 f3d21197935c89937482687272e96d7552baafed9ea940bc1a7cdd6d28ed81d9479a9baa056c47ddbbf75e7e49509b63411869af9f5781c79b1d393d82392e94 -DIST thunderbird-140.6.0esr-dsb.xpi 517902 BLAKE2B 01fca0ae71bbe34ac6c42ba1aad79f866c980f19f2047b0b4b40ad9a25dcb1dc2de03e95d1731b4b7c3b5d18fc952b8d896b27a2ff873e9971f0525fcb49a954 SHA512 acf8247566c83a6506585c476b9d6138992f088cb9ed51f122acb2eb56ed3234a9b63085c30ffa9aafad9186556f74078e849394271922f4cdc04c444e3e836f -DIST thunderbird-140.6.0esr-el.xpi 609075 BLAKE2B 78c24ab8d8a2ec402dfbd37d5e4d4ad47d1adfd2d3fb2aead0ba61b69cebd45fe02358d2c864396f9e1765a68ae0eb99bc7ddb5782ff609472c2023dc7e376cc SHA512 70f6486acf0c148daed93acec3f28e5e2fabf31f6b1854549cdb978e7c36c132ac7d8a8e6d6688a2ed616728e1066cc63a72fac3d725af13e18ef8bbe4bfe009 -DIST thunderbird-140.6.0esr-en-CA.xpi 451442 BLAKE2B fb41500ceea1e1e8ac3b210f97ac57306b8e3cb77f6adfdab661570aea85651569c73ef85a449d4a53e1e821c6f4e6533fc32031aadfb10d5b0a9e8fbcfe4e78 SHA512 51cd61d87b61347e39250153cf874e7713e67f9c0f75470968defed14e039fa05b838e03c04fa9a678b3042df65d355ed2859432b50abdce8fcc231de4d1d2bf -DIST thunderbird-140.6.0esr-en-GB.xpi 452065 BLAKE2B 9acd79cff437c69d57e1a1804a6402ddf62580aa1498a12135995805f3aed1dcdbece2c91dfc8c17a66659842b81b2061affad7dab24baaf233a1362743436b2 SHA512 d8cd8953c8af3aaf857fbd3856c4f66fba5e2d85b87e1583501f177c4ce5f736ea75ac42a9b634c148225b40768b36672706b3f4128689ce663640adcaf4d867 -DIST thunderbird-140.6.0esr-es-AR.xpi 495265 BLAKE2B e0e22a64bd2ba0d581ad4b7bca50f7b1ea20ee496955b4f7d8bd34bc6c6be444a812177c3cc3704c4b20509be4cac7c8a1b30230df28f969e0ea8c4c2e06130a SHA512 7711b9bbee0688b512433b9e2e44104a1e401628a204e85cf2f282dd9e29394f5ec8dc310ca068a279b520303b04d98e92702a73394e873eff9307d6012ce682 -DIST thunderbird-140.6.0esr-es-ES.xpi 497279 BLAKE2B 4178fc26c469246c39f92b273a55e4e94c50bcf1f770ed392fb826b19bf413d58b89b9060fe9f756d967a368e4ade83d99eb7add8ba84baa62eb150db51163ec SHA512 49dc394e1651a396b8c5d0bad705035557041bb6245266403cb98cab8b6902fb0714df031f689de755128e2859a729d93fd70e0dec2451d91064ce8a2d5de65c -DIST thunderbird-140.6.0esr-es-MX.xpi 490405 BLAKE2B c3d63e824cc435aa313c07d9a173201175e67a75c996ffc96d82a68cf70c6a4d7916d15fe96c8048a602f713895c02439953587bd7c001ba29f00fdd87637729 SHA512 7fd5a9fae190f086e5aacb540da5b662d99adee08efe10101e45669d6541852a7f4312915e70e1592cba244d57b4c318f5f826c2b0a4053ef4588feedc2fcff4 -DIST thunderbird-140.6.0esr-et.xpi 443606 BLAKE2B 0226ca55046dc3f9302dce76b4a170c0c34e854726baf23ae822ab645f119a40c6a02143e9170ca02a77a8153601f1b598d23d32eb5eef16514d9a999eb7484f SHA512 ccb8baffb881469abbfcb535a3881d1a2cdb37cf59dadcc578e5552c20983afc277adf709c0192cddfa5453c4b36dc164a3c04f787a291262b4edd8a19b9ee5a -DIST thunderbird-140.6.0esr-eu.xpi 473741 BLAKE2B ab3c25abc4405fca4c271a9df7021ac06f51cbc46504fa8c029e45ce8cd93021f366c7f34ef04a63470cdd498811cfcd9391476600946078502649edd2d5385f SHA512 3ad121483988335a196ead2af83747e8ba1724df71459ad64020e0bb6c80796eb82364cae8965bbc2c23f65ea6afe625441412303ffd330144f928a6ef7b38cc -DIST thunderbird-140.6.0esr-fi.xpi 474613 BLAKE2B 432c41aad84ef09812e40bd7718370aabcde937ea2b287a9befb52fcd787675ee98c7468d5b8241c21415ca61be591757950a8fe5f87dad7b1494fccfc6a86bb SHA512 2f495d974db0e35f583e3176c5d4f5cedaac0e90b74b2b8accf6d48def1b3bb63fc0697f6732ec0e79cb7ab6d755e29588ac3adddd84417152907ab404b8b6ab -DIST thunderbird-140.6.0esr-fr.xpi 508256 BLAKE2B 3dabc65e4e20daa54fefd9c55663c166966add55828cfadbca0a7d3a71056fcc547331add965dc4779ba76d50818ed7d835dd9603f53744ac7d7ef7a881bd32d SHA512 3a9730651ffc98e85a9caa23ce39596327d4fdbc748e0f6002ffabaff956c9c03c65ad3995bca190aa5438803c8758a51ff443048965abfbe378fe7207039bed -DIST thunderbird-140.6.0esr-fy-NL.xpi 490669 BLAKE2B 6fb464dbe65b1aaa0e8f3dcb7c0afd0b207ff4c89bfaf60153ecb0c74990620b3404dc7189fc14c085436e960d9e71ba6a2b26937b106740a2d040e7e7ea5687 SHA512 95d5e50a1c876e52fb98070293cfb53972290cc2861e97b75cd8aeec5ebea711e90994f4ae83687967dc7548f8417a53af4dfb04bf718de69c3b22b50090ad7c -DIST thunderbird-140.6.0esr-ga-IE.xpi 376738 BLAKE2B d135395de569dd8ba52691222640e6c50c1f116821f8d2c2e2d8f0c40d0b4013caa9abf691cfdb64adac03b28dda2f30f548d2c622117485c6df1f915f4de2bc SHA512 067376719408caded8a422db50eba211d124bd5f4ad9aaacf426dc1144ecbe038269640dd7fc00ea15f43f6744a9fb6c7cf92d6afdc610c3b9824f912832be07 -DIST thunderbird-140.6.0esr-gd.xpi 461955 BLAKE2B e041d900d02d011b06fa4486ad4c6015bcf7c5053504ee5e83a387e973c8608b7f16776bd00112692450880d19406e9f70b64e514b030bece42eb6b1ec7944d7 SHA512 86b855480621e59cb384c8c0df8b46a6072e40a273eb7f6dd55c447dd486e2459d19f8eb72a75a5f73a716a8c03316a63cd6284152b3e176f3cec4916d5acb77 -DIST thunderbird-140.6.0esr-gl.xpi 486669 BLAKE2B 97d08356c141a3bf4824ec3b84683c569562d637952b6cc4e48d2501370cbce2f203622c34ded2180411fe22ab2f4a1a26d73ed909da901967eba800c412c611 SHA512 6aed957d95c19223bc13cd9a7c6037a937d6a438f1cd442d8db3757d9d62625cb9f66d52a14d10c14f6d93a5473f4f60ab8a7add91919cea7500b851f0efaf6c -DIST thunderbird-140.6.0esr-he.xpi 441607 BLAKE2B 1d741cf23780344ad479c79f1e729d1485a218e0baef8762ac721b332ea2cb0fd062aabab8e89ef96ad5ddb81fe5d8a5ef6a0ae325d7ae4f07644c76511e136b SHA512 8679b0244abb6b657f0738c1f90c0cebb71788a2d7f8caa1c5f2d18fe5d7009698aa4f3250b7b5817174c5412ed1c20a6cc95f1775c023081b3fe20929e7ca8e -DIST thunderbird-140.6.0esr-hr.xpi 464031 BLAKE2B 25c330462c1efa04b533787352ef9534588c55b2045fe8d590a5837b79a1d509cd00473b0bdd2c70ffb1c9cefdaee7d8fcb9aad3f46f899140f853ff00755a70 SHA512 7c0ee5be513c1244bb55cd07b258d1e5e376aa5cbd4bf323df8e8d3078ce10b26c776d7bec6837875ad44254e32559a0f58ba5a5c40e3ff270f5f613775c3771 -DIST thunderbird-140.6.0esr-hsb.xpi 514943 BLAKE2B 37438b879f059e229ec4360288835e8c0b5d19e0e2db9dd96d12bfdd746ca8118fd1540c3b858c0bd4829ad573c1eec31c751d275e4c66cb986b69041b9d2313 SHA512 48715da7f4e940cea3ed13da82f393202ae35d73aa76a275307daf6798f314fe2186bdd9dc0ea46778d86368c05c0b7d935cdd61f96aa2ef57738bd619718bc8 -DIST thunderbird-140.6.0esr-hu.xpi 517536 BLAKE2B b53a14f253638c1dba138ad22c7cf5799870fd74a3444582586e7979636289388a8735009ce6dcd75b4c354921c3ef5625b931b34b8b753fb952059e5a16aef7 SHA512 81ccbfd044bf434c5443813a3fcbfdc0ba27e2ec7e0422a98c0a3d768151da0fdd091dcc83c59b1599b4f91c4a12a8721cab8890b2c90b986a378dea9d42e3d2 -DIST thunderbird-140.6.0esr-id.xpi 464963 BLAKE2B c52119b3303d1eff075770d1d2d02e21cdc20c0d9aad3726038aa9d5f2d20099bc5972dd837d8b5f5495c2852e0efa8bafc9cd7d567f39fead7fc861b6ab5e10 SHA512 e2f65a7bc0d1d00bf1bf7d3e4ae0c2ec398f997054f3eb3965cda44f68e1a1999b2f25288c5d890831ac1ad54711a47e0260b1985fd8f6b5db403af97707282f -DIST thunderbird-140.6.0esr-is.xpi 482735 BLAKE2B c8899f10a03513d69d24aaaacf555712e6d06368d8d10a2ac330e3dd28adfade5ef47ad5e885ad7d6bf665d510f223ffce8dc5acbae02f70480e4b2ad68cdeb8 SHA512 f59cdc203ab55621cbb2193e04b1193d086b2ad4440bb07453ef5e8dcb12231c5bcab62d27e24d2bc0be1e9dfb5f35835a06246b742627d8f1af7f7a869187f8 -DIST thunderbird-140.6.0esr-it.xpi 488525 BLAKE2B 0f0ac397f3d59c2803047ba950ed7bf9bf7b28c368eb1c116ef4cc68f1d926a5aa09829ccbaaf28bae6ed1b31e5e4a5796b66bcecf27b2792d7269e78e2b73b5 SHA512 5a48e4200e9045e3d846b0a408f8beb92af27077ad4d57d20949d78d4b1ec8df4c1f5b4a1fce316ea98c8a4b9ffe9f85fcb6e4d89db63c3077624dd7461c7832 -DIST thunderbird-140.6.0esr-ja.xpi 539339 BLAKE2B 8e873e560d74a1e5d8ddc2e33ead0899f3c9235caea6546327c1051531696d268559eb0018b607e6a392738d94d80ff8f1dba113899239f46430667b532377df SHA512 b67c93c7656e9a9426c2676b21ba6fdbfb8dd0b14f779f8c2365bf1466960b12068db90090ab4b363a162019e458d0ff56ce96a81daa9001e837a51163fb8035 -DIST thunderbird-140.6.0esr-ka.xpi 551190 BLAKE2B 17cd3976ffe29f0ea816f9b2ddfdf31936b597355ab7c519df89c8ce2963c088a976fc995023204d69a0ba097dbce3c4552d4aa06937809d7eb40930a76a78ba SHA512 22fe98ea549af63cbee2548550519946b18ba60cb3849340d2eb0398b4523247d8e24bcbff96078469e31c48254a1b9342f4c0576a8d5b396638a9b20680e9ea -DIST thunderbird-140.6.0esr-kab.xpi 470184 BLAKE2B add5b7a181155687f487ee0dbb0f541ebaab310e57114b2a7e7517cb6a9e37f37dc56a90a1d8184826ca670fe68dd2f36dafbdf87b56a7df38dc5158a35d887b SHA512 ad696fb61b9fd970aab0e78e04730503ad55bafc6cba223584ea1f2f3dfcb0a9f063123fba239fae4585d5f8d4a3ec0efa565f098c1b41b1e2acf339f96843e3 -DIST thunderbird-140.6.0esr-kk.xpi 573876 BLAKE2B 994a11a7a138290cf0deb9364351d1173623751f72405c638a285bccebd01c40a5d19770eda95f495d7900176f33f8dd51706947fddebcd377e4b8e315fee525 SHA512 e439ca07892702767e23d53dab84bb1604a094c85b3217d34be971a88aee60d8b9b6c1c630f30dff2072dd170711dae5fdc0a178bb183794c9b8df2ed418d7d8 -DIST thunderbird-140.6.0esr-ko.xpi 514489 BLAKE2B e10eb62ed5649605e65597451a6075f4f8a1bde7065de6207a04da8eefb4be54fe7d1ac8b0806faa2220f4e94759c87f361430a9b53d9d46c90fb18549dc4f8e SHA512 dfd6cde12f3f13e9d031bf05e62bb54349555ab1bc7c95b6ce9bf75256935e4a019ea89223a409fd627d0c57fe1b1da4f520bed67fd02f9943eea501bdc34ecf -DIST thunderbird-140.6.0esr-lt.xpi 441852 BLAKE2B 4d796ae1d3b43a6b5f100c2cb784a16a1f747ec4b7313d74bdd3a83e7d9f9662e4dc03c9e3d30fe42621383b682bb6c944c01f67aeed2230f0d15bfaaa211023 SHA512 7cc78ff05005008e2b4a9677bdd5ac97b8f6f3fff94659a82730fe3e910f1c9135e011af903a5c9254ff4995ecb7119c55441b475fd38333c28390688499927a -DIST thunderbird-140.6.0esr-lv.xpi 392814 BLAKE2B 059979b84a05462579991bd5c2989541f2b3ee7918a6a0750f297cc78359d9fe2ddf804c48ef280844f41fe1e9325f294d3a4e7e4a15a56ac09cddbaf2d8562a SHA512 c6782faf23a3c4b8d32ceb8ee49cb0d8f166daf9d7e326fb9c4feff5308c583cbd89ab575a28dc226f1aa04234c31d2d2309b2ebf874f3a65e18362502e47b03 -DIST thunderbird-140.6.0esr-ms.xpi 352173 BLAKE2B 89697ff96a0d7b0dfdc60a8a64113421cb9dd312dfcc02d3d50505317938f34cf09dd03afa599a6f232f4454b4d277b591a5e709a69af392342ec4de33f1ff95 SHA512 32c2f9c779ef29d67178488236139c3ecf00416063e1a3cfdfa84a66e39ced57b5f8222fcf7e40efe3240a57b05562687288ab7c88f18d5dc52318533c84483c -DIST thunderbird-140.6.0esr-nb-NO.xpi 447974 BLAKE2B d45e1636628d003a55c05494a11fe5caef8657bfcfeabf2b4443e2502051d1b084494ccfb756d50d4954fdae712d2b0498b046109ac72faaf1fae15c20200c48 SHA512 a0ee9e33472e664e83ef8cb671aab81b2898b45dbef8f7de4ad4d126dedfb87b7266ed481606ce62253b924eb95efd4ed9f5b67a7d509927d50030760ede6f58 -DIST thunderbird-140.6.0esr-nl.xpi 482130 BLAKE2B 201b6e5657fcf715a3aace8c6143931a2361ef3eb9df3cd6208a1c7d90e24913c707f1a587ccba8bcac7ddacbbbbf8a4e3936449e5817dfb5fe1cfd9169c6413 SHA512 533a410a0f87a2bb608166145f0daf2c672d0d9df38a5a9ecc9ad4f76e56b9099d424d692cbf773d166cefb70d59681b3ffd05d0a3687457c094ba366a34ec37 -DIST thunderbird-140.6.0esr-nn-NO.xpi 469410 BLAKE2B a93c7512c80e9dceb29d077229c64c8b8331a74e33e6e5f145f5ef691201ef340272607a570a841d0186807da8f999efd9bd0798870b1385efd584f4a63393a9 SHA512 89888e10da9afd1fa8211f7447536af97942f533c17199c4c42976003b107c09aebf7e9b14d332f65fb864bed22fc4e66a04395063a2bf4c66f7408f3a7c95cc -DIST thunderbird-140.6.0esr-pa-IN.xpi 435421 BLAKE2B 8389844249acb88ac902893ea9b6e83858e4e857096bdde91817601fde19824d383f846cebfa3d24b35001c1056a9a1eb0e9c65c6bc814c69739148eb09ff3e5 SHA512 867a3c5db1547d60fbc7b8e9fe7faccb79effa228cdfc8ea0268ae2b70c7c37a0e823e48c292c71368ea5652f1d1616ca3f76d802f3d416e7df1c153731a95e4 -DIST thunderbird-140.6.0esr-pl.xpi 515046 BLAKE2B f3a8ef8a0e883677e5e6053b81def1f361d8a99622deb21f07c57f938367a8ef965bd712b095e93d710ac471f0c01f10f18be3072e09c42794ff0413808907b6 SHA512 c77217aab9bbf1039bdaf7b69bea5639bc564075c1db32158497b0f0a85a8240bba3a59dc8ce4fc18ee3dd51c0e280e2a02f2db6583f16332dcf501e9524bcbe -DIST thunderbird-140.6.0esr-pt-BR.xpi 489972 BLAKE2B cbbd7e88a45e1e8e5a7231baf000200cc2695f908100789dfe21e62c48090d3237cb96d0bcc5823c82064328828a73dba5e25c08695314ffd2817f62730c5496 SHA512 16a4e36c351e11c2a50b31bf4699ed754a30e34678a6195e0a98b8b8a05746386e29b38b919a0ea880abd1a7f602f840456aaf454ded73e5dcd5468df6660434 -DIST thunderbird-140.6.0esr-pt-PT.xpi 486390 BLAKE2B d20dac01e9808af5ba65a08cbd6502e4dcab0e75dc2e28b126266218a0388e45cc7ee1bf7de87139644fb8c21529cb3696ebc6c48855a463b93171ea753e371c SHA512 07d0b878605fee1a8b7e6e65cae15cef2e57a79a0c9f02a61512897f5ff433f784855add3b20e7b65e11128ad56a86a25de920d39724b1c4c4872b45fd899a2e -DIST thunderbird-140.6.0esr-rm.xpi 487373 BLAKE2B f8a0fd05caa410b569a51c44c7accb43aa91abea577141ca29bebb814d92cb176f214b73f58cd7ca30c0846ce6dec1b476c53d5a0d7653b2fe0b1db908b28642 SHA512 4c092cdd64564b8abc5943624c899d314d249e34335083e9f8f28cded02ec3ed74820fc3355b37425271ac1abc48fe91b9727fa9583c710bd0573adfbc14baa0 -DIST thunderbird-140.6.0esr-ro.xpi 451873 BLAKE2B ff8ba34bd3e7cc964b1e1c741f8955f2faf338c7e838e7ff402598b0e951c5faeed303b610a7ece6eb3b76e1fc66266028a390e1aa24e21f5bcbc4128a390bd4 SHA512 b405a435f7dcdaa5b042d7970f7267da98d1fe191f9b89f3d91d6352b2490e4235fc220e9c8ba948516fc20888d33e76d2038d51206bab85971b21843a6708b5 -DIST thunderbird-140.6.0esr-ru.xpi 593181 BLAKE2B 70d4f0c8a050ea968680f2428b7ce76da66c6eb43c595da23d7a98e30471bd10c174b25afd6820c1b9ba25f4edf9cdf240754156eaaaf2a7ebd6dd3f5ad54840 SHA512 7cf8c1df843aa4246f73d8b9714e92df0f0d6d37b2aa6410beb7a298ff400862a9ddf6f01bb3d7a9bd4697c2907059f1e0636c9ebbbca791a4ec17a6cc3a171e -DIST thunderbird-140.6.0esr-sk.xpi 519337 BLAKE2B 7f84db783034b32f6a882a6ab3855d71bdaf130d4fac6d13e6cdbaa741ee94156614a624c3b23a41a3520bd69f7a39e70937f042f71abffc7a5ab1931500864b SHA512 199fdd78110d0bb73f8d7e1036dd65dc019cec1f24101ca5d2488041ecec146c06f80bf81f3c73fd1851f0c8e39dd4805f38b6a005be7b6b3d01dd4065a69783 -DIST thunderbird-140.6.0esr-sl.xpi 485954 BLAKE2B 027ae372451d65100e19a70acb25a2e5109011d63b2d4ed00a072283eb867de8130b030a7d6aca81c9056e22539b4309f363908aa3b81dbbfe529e3a7e5be213 SHA512 d10b2b9ed208a5f787fffb6ad89d603a4fbcc148103742f5e2f92e00d0c34ce12ec3adb26900231fd1ad13cf6c8f667ab386b36cb03a48f70fea3f69d18d94db -DIST thunderbird-140.6.0esr-sq.xpi 505906 BLAKE2B cba18e31d6768ed573fbb2408681319e2530cbfa0c0255796e28895f28efbe9e656dd22a1362f77b3753ef0fd95b01ccab57af60a63c62376e6de6c1295fc762 SHA512 43266ee3be189232e501791eacea3ddddad4a53ca6dffb310112e933144915a5b6d985ee380b9bbef519f75636e0a60ada214c7e490abdffccf7b206b0426cd1 -DIST thunderbird-140.6.0esr-sr.xpi 495986 BLAKE2B ee497e75f58dca799d92fb286c3f262b57d19c6be1e38dd1e951a00acde4e66939c8c1b64143b0f4f39b8b9cb72bdea23701ed0b8741d1b591d796c4e8a7c924 SHA512 de6a25c080b913f019439efde5341f61dcf65ea63c986443634cb2061428c735089324fe33f6ea8b3e3fc7060efcdde42316d710d7e26ea715648ef3b6e537c5 -DIST thunderbird-140.6.0esr-sv-SE.xpi 484416 BLAKE2B 3f4a2227e25c40144d138cdd42c40f14d75c80e7fa783e6d1b7f8bde84effe6b2d06d9ce2b79ad4c02d3eb3a0ae1ba30b96fb3756386e19b03349e0a2879be32 SHA512 ab2c2180d3c7ad076eee14908b8184f163ab60c762b5e808ef0d447fab73f77f6dec07ef2c4503c72973c04fadbea4258bd576f98b1fb905f85874c6e6612d78 -DIST thunderbird-140.6.0esr-th.xpi 565611 BLAKE2B aa1df5e8c51c5581e3dbc1f6685e762961bd43343dadef4edcbd8f51017bd2be248ce6e6b75e1f885a9c4172a518404358973595964e6cf205d415b18ff67248 SHA512 ac07ca14386d8e41c167d0116597ad8505872a614505c0cb63312f5399c0de1031ca39a4d5ffda9914cc6e1ce2073ffb751af8e9238ac24493a3f82e8ae50d31 -DIST thunderbird-140.6.0esr-tr.xpi 495575 BLAKE2B 046c3a2bdd751f3684566348b9deea18981d7ae1ddf6fa212cb97b2d5d1171d7a111f74dac8ea15b9fd0ebd6ac8c31e258a086f2004a3f87fb2b10d66dc6992e SHA512 3e1d605b3ca14f06250f3b45c5ce5b1fd6badcd2b5ba26bcdb4febb0c898f66c3e09ad8a8c7818712faeaf8774d4bf794775c632989c77909c50e3671832850f -DIST thunderbird-140.6.0esr-uk.xpi 582127 BLAKE2B 503de93fb6db402af8bbf652d5d583727e40db4e6d3bfb14c14412d158ba1860129c096e3b9b7cb21cd422dfd40f6f5db6bf3366f3358221e8a549caac7521f1 SHA512 0fb636018417e91147dcf387681453f20b554afe23445dd63a923d295f8131bbabed33ece87121efeed3b2be42f368791d9aed9a2aa517db6244cd03e2ccdc3b -DIST thunderbird-140.6.0esr-uz.xpi 355262 BLAKE2B 643dfb68ff2e284ce81f237fd22873736f3f870484ba1f62577cde1e6df9b5a725b72b3b8152cb5c222a6cd46b2a06d0835815da85f261ab94e70c91b4cb6a3e SHA512 371b9437637549dab2b853796dbd69952fa27ff3e1504ce4310848bac49e51c7423ccb5d37c86ad984860927726f12f494cd2252da6d8cd1f0fd9ccd510bd392 -DIST thunderbird-140.6.0esr-vi.xpi 518884 BLAKE2B 47f3212e30dee2618eb656f7be8e927782c8373d1b529810dd442eb6c13c2ad42b1fc4dda4389bac33bfca6b4f931c576c5c8278cf98ca37404fb43535d58f49 SHA512 815c0f065c60d57c750f7c64e80968fdf33abed80032e6fcd27c7ea16836bd2e829827cb10b0813d36732631c35b22d92e8617afc4f8fda126493f54c3f67654 -DIST thunderbird-140.6.0esr-zh-CN.xpi 507816 BLAKE2B 5e12d7bd198298d123696cf4c2d2548c9fe79380ae0051fb1adabb174d02f51fb12fac379d11e7a6ca5f6fd95d49ae1c1bb8bb510274091b69c0f067966c7bb3 SHA512 6112a797abfb744e351abc5d3f1a37c1cd7b19942484e2a39853ac941421772d2f7deb8bb1594f62f387e1cf1a2097062c9185488ef4c3f69323f0388df9c64d -DIST thunderbird-140.6.0esr-zh-TW.xpi 511176 BLAKE2B 556e5c8543cd750da47a7111a1362da6579480b5927a11c6c619c7b463b0baaa3875dbb8244163c0a089327b413fd66035841a802a1d568afe2160e64df96103 SHA512 ba84f99cb3bb79beb2444585e2f3d55fa7e86d41233a866f4c513cba2104918a5f71e69b11ef23e3b55dea3eaaa2a4136137aa8be56528b4a85299db00e2d643 -DIST thunderbird-140.6.0esr.source.tar.xz 750981904 BLAKE2B 84a34cef3e30e65223220474de251e8075754bade9cfd1499de2f713bec4fdac6b29ce3c60d5297a0186e330ba04b80ff55c6c4ba362484a335b8a16cf0e0001 SHA512 817a807381fa0b5e5e2c3f961931855788649ed596b1c6773ec5b0d6715e90df137ab0f755408a9137b5573169c2e2040bf6a01c4ecdb9a8b010e6c43dbb6381 -DIST thunderbird-140.7.0esr-af.xpi 316217 BLAKE2B 1bab34792c1141e8bd0b68b6fee1233324a73325313588aa6fc2f354018023406a56b4861d32d4ba8c4b2746e2a967e1ca5ac4e4f12cb5e2d011df3257eb6cc4 SHA512 53bf5ce8d3c64a6b98899b0bde9f922d1bda700ad804590731e90a4d6b2005564b6ad8a1a59b5a5d27536c9f169ee3d227d5cf36201d11552b0529d7cef38ff2 -DIST thunderbird-140.7.0esr-ar.xpi 436195 BLAKE2B 739449bbd9a02acf10916ac7a032a1ae9b7282d8807ef7215813ecd4a210d73613f730428c995a56d06ddd2b570d649c0bd2cec038a7fb5ffcef4020d8862f76 SHA512 d84b652ccf46f2e31440f61da38b89960cef13ec8c8de4f7840c59d8455ac39788e342586a27d5ebcf5782e00ba4b746e1a9382d24c1493392ea64e03c473990 -DIST thunderbird-140.7.0esr-ast.xpi 340598 BLAKE2B d58a644610dc7672e017dea504fb88a175439d5f40143c734a033244f8a557706038da2aa1ab2296df3eda15f3cd88d330d357d51c7ec26e23bca97dbf12802c SHA512 e589c927db9f4a13697a7d4d04afe1114acc4c6b09831b063f5fde1d0afbedbb4f9f1df1d3432585d244de4ef7cc1258a6c421b230170e591fa4f6f0beaad068 -DIST thunderbird-140.7.0esr-be.xpi 521573 BLAKE2B 9711122cb3123be19a60e78f4037fb500bfe3a66c2d064b878ceba23a8c64c50a9d2da9a25941d1b7eb68c884682b283ae5fc2761b4719fa7ae5dd1390355e83 SHA512 39a076ef6dbb97bbf4b7d30ed8a9d20c84527ce8dddc555a9d80273f902ac73d8a2dc1f9f3659de46f9869a5e87f95e7c6c3f35aef11c6a0bbafafdaf2482f0f -DIST thunderbird-140.7.0esr-bg.xpi 539805 BLAKE2B fd2620c7bbea9ad41f9591aa0010a1ee9ac535bad1fc3c2161e5fded8ad2ca0f57b252244df5da608cb0cc5b1c6db1e1d695f5cded846e082eeac6a771f6675d SHA512 7e95fc50eeeda647a2a3e6d34286c1e486e2f88b2ff2843d8c54358068975853fcbec33274f89f3ad03a110e2707f68d031afbe4b848f2979fb8680861944cef -DIST thunderbird-140.7.0esr-br.xpi 402746 BLAKE2B c80cc649d3503d5848747ffe996eefbce6465dd6c0365e6c20fbb0a8e3909321372d7791506c6e5155b4a90b3930d4ac9a3948f7f1002f278bfa98c5c183b267 SHA512 b03241b765d59eca6773bc93cff287e8f5ff1b1172d7e2311c8d8823809a8172f0751dae1f2c0b5d59139895039efdf7284a7a2c44aac91c408f4946ed58f958 -DIST thunderbird-140.7.0esr-ca.xpi 440587 BLAKE2B e87a794da3cf2999321d6d3338763a58b53334c055be8b29d98581459d13686b46cd1c7b1ab723ba9aca5cfa833f2f5b656a669adb09cb77f7af8b755ab43d47 SHA512 ce837cd15bc8bf9f059679098789466586b442bda1a90a1becc5ec3ad3781a0b186e06f4c1ec43b886b094a144943817a63113eebbf183715ddad9dcc282182c -DIST thunderbird-140.7.0esr-cak.xpi 418021 BLAKE2B 2cda5836b2ebd02f27c72a415abd9a37b57fcecd03bcb9061d0ca88f71e25ca969c00654e072ece9e27c5bce87e1ea0e11896ace5927f7507bf97e14f1a0689a SHA512 2a16b93fb35e266631a33754eab163b357d35280e76ca90aac4731f00481f3650f5e7299358ce1cb0ab3a2714275561c6f4430cd041846c79375853cffa5d73c -DIST thunderbird-140.7.0esr-cs.xpi 519507 BLAKE2B 8b17a8a49aed09b5bf6c035e47a41ff4690a9dc3c4c76d2731ddadc59f75d2f6bbe58d7d5bf9779765544a95810cda5d28ad8c2f3b2c62d30713b0a8d26e17e0 SHA512 5286c4886b58ed1bebc1ccbd3d1ec261e73f95a0ae383ea1b299ea8e970d5beaecb044521eafa47dfc2e314994de6c0ddf2a1cef3971477d41c48b65d38ae738 -DIST thunderbird-140.7.0esr-cy.xpi 487650 BLAKE2B a8c618890e095f3d2193a04e4ae2b000ec0b6fb43eab643ae835db172f92390f8fb1e87b681c078472f1ffc8bef027a488ca3918d2729d161c593fc79b12bfd1 SHA512 520a1de323a4912d66360dc0066eccd7fb2fa0096066cba387a604019cfb3f29f1eb6859609c7030a88981efaefa46418dc2fc2f3006c23f06701875fe3ea86d -DIST thunderbird-140.7.0esr-da.xpi 476623 BLAKE2B 3124d4ff6982a27acd3d0dd43a10363918b2a5d6cde89b08a1e2657659d32aa5a95e259ba494a8e3f99cc67f7cdfd14680c7f188e07fa9840146bba8f9034fc2 SHA512 de8c2f1e714fd091288ffc49af664c3cce60d1ca29535c9bb3316e6cf309922d85435dd4f39cf0d080f5511001c35ef423d5e4cda8231cc303d90f54339c6746 -DIST thunderbird-140.7.0esr-de.xpi 504707 BLAKE2B d490e74958b2609e799b13b5e957e798b3b379fd3ec8992ba93ce3488923264f674d8aa4912d2038dc3f22a015f40b6b1900ed3fdfe76567f53eab18cec92f5a SHA512 faecbc104d75162ea5af8909ed1f4c2ed25c869d9a17fe3d9cd5737dd1aace796cd4ddfedf9ca8c31b9d9ede1af34b5e0c9f6ea9551abfcc0a6e69f6f90c7162 -DIST thunderbird-140.7.0esr-dsb.xpi 517898 BLAKE2B 671921323fde1c42a4be3ab02758ec7cc37b4be4439397cd8b2ac8dddbea4f8d64708c9a5582e2d1090f7b5a1edb24d6c0ec1574849a206bd0c4bea22bf5d153 SHA512 0db854158e7e05dddb81a45172a5514b00b8eb8995505dcaf74fa5d47b20d96d336fe2a464b3ec8fcd0723834cf955f0893ca446bf88e45f1747e74ec09ee1c8 -DIST thunderbird-140.7.0esr-el.xpi 609028 BLAKE2B 7888f8eb246619c594a584cbddbe4f545661ec9c22aee11b8eb01dc3c0967b773f75dca7970cbf6214abf4d939a191a99d9df9fb2cdaa243e19634566cd19f01 SHA512 3e18a9a2e4f0c1fa63ff1f146c17baad152a06d1223be480f6c8890ecda4c94ea99317f562c265a387b65fc3e70272b5a5793a7b8c11eaa0bc6b9346ad84c300 -DIST thunderbird-140.7.0esr-en-CA.xpi 452238 BLAKE2B d647134e95b1ed708b9eb3a3d0b12497bbe12d4d6d3185e58885f62653a24b9fe74db7bd6a388fb3f6b08fc9fd8809e3e9bbdd3d18b2502cdf10804aa80aa585 SHA512 ae1dc889ea7787eb92e402d7922886f4cbcd37c764c10a34d32792b43aabdfedb0ad7696475546942bcc28d52f6498cc681d8ffa3e6e1c45360fd97f137bd152 -DIST thunderbird-140.7.0esr-en-GB.xpi 452066 BLAKE2B 8579fc546973131897bd3a2ee7903396958e8513638dbacabc2044fc6017a722aa1b9c943726039942869deb432e9cd1cbb985ce104ac832840162875b82c729 SHA512 7dfa49cd52f7e15abdfd1c4b6b2a2a97131ff4a1381e850db94f07bc45911aaa22ffae970f664622fba74e31bab1f88116964f630a1eabc608bdddf803ba3578 -DIST thunderbird-140.7.0esr-es-AR.xpi 495269 BLAKE2B 84801e05768757c12b63457e444e0a5cfdc12253a9ed60381e99b09040221ec4e66b44398bce3b66f7fcbb20ea522861aa911d9b4816db44a584c06f4f33d9cc SHA512 db31ab9693e6c6edd50345484670f9760bed05e7f65666ffc80837c38a9f30c5e9260fc013fc2e035d9dce3f36fa1ca4e5459c1d5c9cd888cf81f24035cb3a5e -DIST thunderbird-140.7.0esr-es-ES.xpi 497284 BLAKE2B 02264d2c8db2ca45530f24ce2a3c89456f44fac16ee6a440d30444c3185c86ba4466808f02c9b86e8b7cbe7671748646d302e5b730a95c8ef8b5036219bd1924 SHA512 1855c788084decc2815f0f7c7062808474af89f196da1ea04a0e3e2a0488f414b1bbab309bb74d9b2678b30d38fbfa060e1159924e74985a7c2d346dea481c3f -DIST thunderbird-140.7.0esr-es-MX.xpi 490409 BLAKE2B 18941dfc21f9c0ed628d16ff964a36ed2d07e37af1448409406471c8ec9fadad7a57a1cfc093c8a5e55d93d5227aaea9334aee3d523f4780a0f471c31f97a92d SHA512 f9a2b19f0843efd7a4fbc22c33eec3b276bfdcb7eb79890f4b0441a38155b0d51d2939b0b0bb8b61c073fd8e53245f5b5ca6c58276acffbcaffe964f3f273709 -DIST thunderbird-140.7.0esr-et.xpi 443617 BLAKE2B 1cdcacabd71f7db34db3b906feaf97ea8e70031c44eb150197a7bdb26a2d5097921b9578d79b2881a40f8f4633e1f33d679e4cc107d85b3488227045d55ea011 SHA512 1df3fd8511693fe518f33620a71ad783df4b3912960d031f79eb9a648d629b83a7957fb18b28bc30a63d499a36a05c71b9e5a6d0913237eab27ebb0b5aa21b9e -DIST thunderbird-140.7.0esr-eu.xpi 473922 BLAKE2B ca47960f00579e33e233c941cf38688ffa301d2c1b04a373bab111fc25095ca1b6115eaa82274609ceafcb86467fff44b42e4cf013d202e47fdc7fcf02bf0772 SHA512 6943dd9e4ae434fa72a7bc47fa8283584754ed3fd2014788e92d6f6ca23f18965cbc30555cddf493c3b4f4d25afd64a19e211719ffc294191e1e9005c6fe6884 -DIST thunderbird-140.7.0esr-fi.xpi 475608 BLAKE2B 656000ba978593d0c12da5aec9fa5bd430aa6fb75bf707dfad92cf9cd315c8625f91330b7df68609ea329891d76e6c3bb8b1104d77525b4cb4eb741dca1cb516 SHA512 4fd5759def6485b334aafc195bf258810efa89b62de92b9112c0c0a23790fbaa7c63ff857fe6f6eeab3fb39ac9c98150f3490cd25da63fc2768de0a6afc2ff9c -DIST thunderbird-140.7.0esr-fr.xpi 508319 BLAKE2B 94179c49c5a3ef2cba67fcc2f2785a3229060b907be6475efff57a94741aedae2fbcc5074e85a2f2d30719a056cc9f8ce1a66e7e49ba74485e47f915f7b510e2 SHA512 a7bba0ab8f2553fc8507af91a08b9b4ec71259f6387e0d8b95c72dc76f9f4c5cc42feb7b0f7a9f77bb2bd0915aad212da0201cc27723ba727b3e2da10cdd93dc -DIST thunderbird-140.7.0esr-fy-NL.xpi 490684 BLAKE2B c3f5dc31f8e2f42551103c54386c81f3f770d44495e5da31b4494e502b4c9c526853f907bb9c7b1dcd270d09c3cec5a3ff321a49780e93c76409f99119124d3a SHA512 7e0622efdacc3a44be1907c1af222f92c6252016a005cf28b8b3043505491ad20d5cb18d7cff41d64e59bc135e4e3a44395c94af68c689622e57b7b6ed7598d9 -DIST thunderbird-140.7.0esr-ga-IE.xpi 376744 BLAKE2B 2ef00c30f77d51f972de691258f995d9370cbbe51e1d619156cbaf958df96b024a7cc2dc36df3511c6983ded3e20cc32bc65675621ee0677da4f98ceac8eefcb SHA512 eb4bc171a6ca7758144990afd846764ab2b4710b56f973b405493e6ba9dc03d9c62b7b685b3bb472881191ab3f6bd5f6f932c38359be6d4a3acf25424ae3aea6 -DIST thunderbird-140.7.0esr-gd.xpi 461957 BLAKE2B 04be864f94da1faaa083eacecc04533ae74f7daad23be490bdfd120680d1f5b71992231d5df7758988f471f1feddae6755a633b4ab082c55c0046c1b730d8f9c SHA512 033aaf0c9f4b27445a41b296e3d5cddad254c123678060c3078004d281f152234df797c547ad2c171393e98e9da2a6172a5be480ec112eb79562dc82ea6cb5cd -DIST thunderbird-140.7.0esr-gl.xpi 489345 BLAKE2B 928d367de83098c8e06b0f20fe3a9bdea8adb5d2600ee18bacd97de924768671da318f0ab90291f134f2a15c85570dc654ac73d6518e268cc7f6b9238a2c2d6d SHA512 ac91c7f664ff437cc5d24c1bef7d969687ab3894f9acfd18bfa1485ce5096b35790299f0ff7bb4803762f3cbe0e05c96e7de7833afe3c1fe94ac9133f4651a9c -DIST thunderbird-140.7.0esr-he.xpi 443587 BLAKE2B 203ee7e80cc9c84b0823fb82fb13c9f95dfdfbbcc72a3bf0bf2ddec66dff750b078ac5590cb3f13dd1a1a66dc19b687e7163c4a0d1967ce47ed78f8bbcceaa79 SHA512 fa6134c4651b46aa0e2771e233927263af78d5af10f389afb5dcf22e3a431d09d5f4461c8ffeeb008650fa0eacec0f2d5ad3e7b0b125bf2372ef07cef4ab0bee -DIST thunderbird-140.7.0esr-hr.xpi 470679 BLAKE2B 2a3e9ac577d689ab2df1aee320b1c91185fc7cbc6afbd18135848b1ade7ec0b9b2dd9825c67d034eab097c249e32d2f196f235b4b20cad5695f147155ce37520 SHA512 e5acf440fb04b4fc4abfdf978ef4d9378682a50a0c9e8e5258692d244ffb6830d09f0617619902ce66bbaad1b76a67b07ed34e269906d979691843e1451d3a92 -DIST thunderbird-140.7.0esr-hsb.xpi 514933 BLAKE2B 7b212fe7fd4b2b82b0def0f0b502a360583ffbc19315116ecc480df38259914d4a6932d886441a061fed059608517014bfd5a606ea4e9067914a8164a7d3a864 SHA512 af0e9c78d397f05f02dffed4b306711aac6d67624ffe0dbb410c40cdfcc64c7bc2be2fdf0da38882f64daa29a9916580c8ac7eb180b6523dd40794443dffd876 -DIST thunderbird-140.7.0esr-hu.xpi 517543 BLAKE2B aca1adea84788eba292ba805e049e1cc90fdb5b69c306f69d02083e3091d9b5c0a4bc6a164fde34f153a3beedf1723472e7092af69daaee28d24713e881e90d4 SHA512 3c144c1b52df6fe12d0d999e3444bcbda3d0d82cb5ecfc2d44754a0d61996c38eceb51e00a74d3ffad1a802797a394d75f1dbcb6f341b88c4211b8185c12657d -DIST thunderbird-140.7.0esr-id.xpi 467003 BLAKE2B 9804bdb367a0655ef4c7b2af5a139bbe6f750c39bde880c2fa919300271dc73ebd09685e0a62a6ab2a590effb7171bc1fff01fe728a9c6bd18e3562e5a95f3fe SHA512 07486610c8cca121bb9f2951a0e504cbf8f5607e051bd45538c110b49b55c293de53151a83d7a0c390ad87cc02ac342ab2f04fed8d5f9cfa3c99e1d07924ca7b -DIST thunderbird-140.7.0esr-is.xpi 482738 BLAKE2B d83974b657f1fb79ac460c2b398ff2bca91a3bc6f0e877f07f9170805136250e6344d8b590898da7f1c6dce2b1528a19c9a9730d9d8f8405fcf8121225f15ac5 SHA512 3a1a24c4c8ccb274ac021e1e9d13ff29376b56223c59222f2c1cefb15ec6c869c1cb378213d18d18ae76bb2d31e42a6b1fcafd5ab85f32954d468db47bf58c27 -DIST thunderbird-140.7.0esr-it.xpi 488502 BLAKE2B 708a4e48847f42a680f2255fec2e41c15c0057e684551c4054193a765ebc1813057e6e6b13b308f38f765504945f6b100ab8fa3283f0540e9bf8a47e3fd90b0d SHA512 40f37086dc205cff4ef416b2c508f1ca0509e4338e1ae2821d3a73f72a52c112f5aa8f1677b3a344af66c9db3202c55f241393e49a8ed771d9a1490a89679745 -DIST thunderbird-140.7.0esr-ja.xpi 539196 BLAKE2B 8abd0dfaffec329b320d77cebd051b56ce155813acd8aac38785b24e39074a4325d2fcd2a0d8b841f42c32859f910b61d4c53c2cab5b7370c087e2e36eeda057 SHA512 2689a336e9b23938437e056393572729eddbb66a27f4382a29c00ff67e52a946789a6871680febc39411e8f4a166e480feda0d53a9918197155b9285732228ea -DIST thunderbird-140.7.0esr-ka.xpi 554773 BLAKE2B f6fd9c342b22c0634e2afb4bf2b20f5944f0135b39c0de7688aba00dc2ebf5007b4263556fdf227f20688a162e70e29b1bf28f03a94ac3f36ef7733e109ee171 SHA512 3f3d2c84fcf034fd9f3b0207eb7cc10292bfbf0dc5f827edff1afbebccb48a5515d57c0671392e0349eb806aed8464e03173dfe28b9e85ceccf5b2c5a388f114 -DIST thunderbird-140.7.0esr-kab.xpi 470496 BLAKE2B 641cee56a4de74e5abfbe405939f45acfbe3d1a3ac6cf08257e51bf04865c7c67e149c4e358e229ed490d26f6a62a4131b1ed93e9908a5af772c385475421ef9 SHA512 721eca97125221138800301ca6a704f62170dcacb1d0083fb3c35ee520a29488008a508ac0b92363c80d44e9c71900fb8b1d3a1be3b1766d08bf36e0cca57ae0 -DIST thunderbird-140.7.0esr-kk.xpi 573879 BLAKE2B 2d3b1cf2b6709146ecc583227d63189de743392de9eeb64457ffb2c33063c85e89774fb35ea3e80eb25b89a3c2d376360259b3fdf434b396030cc4f04fd9e7a3 SHA512 555ee46b1863d41371cb36756e880d274fe5f8b24076517f87fa0c4ba0aa0dd576f4cb4af5f8f620d04ee50e078d25ea08d71a5288fac4e482331f36efaf246f -DIST thunderbird-140.7.0esr-ko.xpi 515590 BLAKE2B 9cf7149aafbe88d6bc4fe5bb4c393af42fcc2841d80e420f9f9417cfea165bdcc9a6644c3fcb3a2d44fe38f8e76d65ab786ebcd8000c7dc5721904ddba816bb1 SHA512 111a2ff206210273b08a684f85385c6708f58d9e65afaa7026bd91e730eaff95d1d73f09e35ad9db1da3ae782e43d3b2f4eeb49d608e584c93621d1158906517 -DIST thunderbird-140.7.0esr-lt.xpi 453435 BLAKE2B 65aed1dbd638e672c847917b97a66710e7f48d465ad1907a7a5154f50c6b95b00c0b7bec22d64e0ac889ab7a382d1bba4a97ee9c1c2222223d5db0f38bcf2565 SHA512 94e9b8deef3e52ff7f52150d26912cb3be8b20f5e36e263178fd9ff6d438d23a50d8457a6bd4240a6351ec1cf6544d513452bfccf69b1a4ea85fc003dfa5710e -DIST thunderbird-140.7.0esr-lv.xpi 392812 BLAKE2B 3167abfbd60f97067c2144de3961d1c130df253d296f99c4056a8ee7e9ee6fe6e1b7b2f1615bcfc57ad85cc50b980c238dfed8f50ce465981013f14fc6d5634c SHA512 23306b78b3616fe8d18a01b8c83753b0af9c8909bc7c005e4094fb078bbec4f370714e4f4e0d3ba1d99e6b10942f03804a4f6b3553e330ea19b7aafd045501b5 -DIST thunderbird-140.7.0esr-ms.xpi 352179 BLAKE2B 762b0db883f6d754757b1bf14d1fa740a1b97ccb2fcf7d582af0e3a0364a65d26e23afffb6520acee70dcfbfe374f8c4b7c935f2b1f343dfcc453fcfbe93d0d0 SHA512 fc35ecc717d4da73e13f5bc7da5d5a5d3c83be5091f9567b1e9236530c1d3ea9092d5ac62e3790755ebbb041470afe86c3aa9b41548cd1aa92c40ed4a39295d5 -DIST thunderbird-140.7.0esr-nb-NO.xpi 476137 BLAKE2B 9fb43bbced14dd0e5f2647418ed25668ba262d777537e47885caae7c343747a1dfe3d3d55ddb60add43d8e4a2870b96a26f8652a128a1f36ccd73c2a7574fac3 SHA512 de2edc2eb0688dc5bc596e614c3c0ff77ee8d504fe37fe615dca67e2686d6c739dd91332ccdb389bea6bb1d753414ec75cea082a9f003b9e0de6eb1524d794ad -DIST thunderbird-140.7.0esr-nl.xpi 482123 BLAKE2B 248eb897d4decbd7483b19b4ef3c4e7a7aba45c85d13ead8103bb00b3ea46ae2938f716f81622c4bcb2792375d605dfac16922e9a3e9e63c5fda3996877c088e SHA512 a5c698c60af3dd2b54c3e546fa13e3e2fd86d1b51fe2859b2fa477bff7af2f799512c13626411be3d0d4190ba0310cd4c37aa13433efaa7ee122674f60931756 -DIST thunderbird-140.7.0esr-nn-NO.xpi 479759 BLAKE2B ab403f47fe91fcdd1da114fc2eea9e74a19c008fc403aa52953ec7b233a8bb01db31f5c98d570f633234b861d89114b2bfad77b92642759c8f109f926e439f79 SHA512 2a2fc6e469a74073933a20fa948c46420df4bd21f98152bab5735aaf986116236929bad51655c245402144e6839e5357710f993922188e6e865f83a5d2d77fb3 -DIST thunderbird-140.7.0esr-pa-IN.xpi 435423 BLAKE2B 153488423c18256c15bfc46ffdedc7a17b781dda92b9433249bbcd8f0a88c604a227337d6a135aa29ec749d8786db1017c14f02be2ae9f2a677d7bebb339c9ac SHA512 844d05d4c96e11c62414bf8bc02152dad276546c20534778f11fa9ca5404449442d1cc0ff9967b69e58fba06a1e4a87895873c4f2915343db811e9abb9153819 -DIST thunderbird-140.7.0esr-pl.xpi 515611 BLAKE2B cd5e7cebb533b7531b2df6b4c63b4be2a5556d9b0d45b8a4fe19c80a10ee164d2ac6e4380fe248102036eb385fa965bb3317f9a57eeb276af14b4064200314a8 SHA512 480cfb23dd1975858810e045c32c2c4bec0ea02cbf083d6bc61aa77c8fb6a78ee15d4215f63eb41d3f812825e430b9ef320de0c5b8c3f5e6e5d48b661c8ab5e0 -DIST thunderbird-140.7.0esr-pt-BR.xpi 490163 BLAKE2B bdc75e95ff3512eb8a26645e387d6df4e65b465ce9d0213cf7b0e141c42ed38b7cca6ee3c382dcc96735a65c4ff64d0b8559aa917b8c4d5d0229b6d042af2b4c SHA512 272bb936cd4f4319455707ac5d19a05cadd973ef7e36b7455850c529eb6f08041fa320c7cd29848452706784b204562ce7431a265446a6e252f8d8357b3820eb -DIST thunderbird-140.7.0esr-pt-PT.xpi 492523 BLAKE2B b5b64cca56f1825d2fc9d3f61e417a6bfa61b5e785b8cae87865b0db4a1922aa44dab813ecedb510c5b4cb24a68b4d796dda83bf567f3dcabf3df797218fe1f7 SHA512 ab34adc7baf97ea696b75777b1873ed18f0c4664f74b181c59a101fb1c4528d14303fa6478784c73c28c9b521154e33d65de36d01d9614b9f0cc7310534bae80 -DIST thunderbird-140.7.0esr-rm.xpi 487882 BLAKE2B 4d8bf4e85f69581070d2266ee795787f94973504a4fa88d8a940dfa9c30e6d63a712fc188ee01d3a661bbc213b68569d2e2379fddfe81808179f81612cc74d72 SHA512 511c2e680424b9b2cd3b44a23fd5eb84fe4c7a05b2f66e1d429d1961b43d67ba2b1629c3b62ff007365b9990f67d8c7137c05096ece21704dd0b6e901b2c167e -DIST thunderbird-140.7.0esr-ro.xpi 501094 BLAKE2B d6fc15f62d9f91ac17fd01a47c20d23debcbc907d58310ee6b866ca3b27872b0c1a56d77eeae51558d3955378d1ada107589cf0bcc4a260dd906acbdb380485c SHA512 78964900f66c2395d907a6e836da59574264a81da85d1e52b3fd17aa7de11adb4e9deb2305d52b50ba2738c6bdeb6aaacaf46d7d18f7cecf26cc0ebe128f2e40 -DIST thunderbird-140.7.0esr-ru.xpi 593283 BLAKE2B 532a082aa3a57f3f3073e1ed21fb53b40613e0551fbc29462a51ad73e14b76a9c299de3cbe4618b807ac06d97fe48406493ec2cbe911181e9f86aa941b871bc2 SHA512 1bb67458295e3ec7fc01a818dec02b83d47a3081f9de55d0a5ba9351265c40142499458aebef28cf83e2e784a291aa9610833915ee38cab3601fb0541586d0bb -DIST thunderbird-140.7.0esr-sk.xpi 519388 BLAKE2B d37bc1194e578d57b8d55f745127cccdc13a0d478fba1e3531af7b12d134728f1e85713761af76f2e4a1d8d43702fbfc687f3b51296c23d9facfdeb734baa0b1 SHA512 8949bbc24d442ce7115cc3b71a4cb0dd6279635ac182c5968c9aaa19c4da1051e963f9a54f2c48eac19b5804c9007d61ecba52d878896e298130a1fc671aaafd -DIST thunderbird-140.7.0esr-sl.xpi 485960 BLAKE2B 87b033a5ec71a357eb3135eecd8911ea00d4a4993262000cf418b2e2582c291914ba43fc3d04d7e6e4d477a92fe0082a76dc50d063aa191536178afa0afc3500 SHA512 0ef0df604bf7adc9e904c9434b0eeab32eaf8f2bab4ee69beb18311899b56a4bebf1b0c77608e8954b76c1a8faacf9935fe78be2c596ae634e38b3f5850682b7 -DIST thunderbird-140.7.0esr-sq.xpi 506267 BLAKE2B c4505a7ac872f841de5b0c36d96e77beb9510cf797344ed02578c7367b11adc82fd78846befa9aed93c36f5890f6c7e3a8922a70a7614219afdeef19c7555939 SHA512 b15eadeacdbc4dc880da3cd42546cb5813aa121bedd6f88c101005a17424b5c38c7d1b424ba4b6e8a156b9fa459149f679ac957ef2da1a1353726177ca704fda -DIST thunderbird-140.7.0esr-sr.xpi 495991 BLAKE2B d7d55b2597ec6946835d18725057ff07a76552cd6f8d5a6c8f5aa051fed409b59fefb7d46c5baccb006b7cbb8429df3c54bf2e7cd17aae53e03e2962623596d8 SHA512 121d170da94dcda4e6e1f43b695288d6b1be4de8714eda75f43620b7415fe53aff8ea9653c2219dabd82cfc201e27f13ae57f6cc7100a3ef3409de7d9da17e37 -DIST thunderbird-140.7.0esr-sv-SE.xpi 484419 BLAKE2B a2a967bba29703a53d222b1b39ec5ecd088e9aae1d36b82403c4da86e7c56516dd4f0b193accf227bd2c8987c018e7685eaca07e33becc5fb7a042451a38826b SHA512 bbf56ac2a1a10326dc2e230d632fc795d15727aa0821ef8f37c1b165c0c47a8622f8eb62e81d416fc0546a1dfe4e5f82d5a1089cbebe570e05ba3852d0e0d156 -DIST thunderbird-140.7.0esr-th.xpi 567946 BLAKE2B 059b92042f2cebbf5859238489ef5326953b6e7e635e36cd7f5b7f8231cbf0fb032fd401a7ef82648d39f22e96066b8163875b09a1c7e3d4179255644302f00e SHA512 790ce1a0df233b7319f3a2216a0c02e2fd2ce219e17839b30cde11a0ea0b0b629472d7fe80ec13486d38f39b6af47d31a7c764bc8f785b570ee6588f1552b339 -DIST thunderbird-140.7.0esr-tr.xpi 496181 BLAKE2B d8ca6e9e0e0262f9674be693b7f64a4942eb080a452e25d26d5fcf6fd655d8fa009d54d4a8d07674a815fc46d86dea8f93a4cc4a02606bab30e7f3f1b0b8ba86 SHA512 162b624118ffeb9522cd2073ab61416218343ce61097214e219f992964d8c5cdc4a6ac8ef4f168933321326dcc67ee0530974377f35995f478a77d4676e7655d -DIST thunderbird-140.7.0esr-uk.xpi 582152 BLAKE2B 938a7ba9a10d7c26fbd4a2c95db232b6235be836f73ead0d155a42fb9f55cb110a697c3c57704283d0cdfd680886b048fafe2f80b705e9786220a5557200c1a5 SHA512 674523fe9c0d7a666cddee2aba36242ca9475b058d38194b509f9538d2b23e829590f531adc814138dbac12d19044ba1506d67ddb1df8bdc51334aac21805dba -DIST thunderbird-140.7.0esr-uz.xpi 355267 BLAKE2B 9ca9c6f9b750229f6dbb02e5e7c7c9479341546d204fd0135c48356afdd8fd67aa916bb420d726aa5f80a1b5f9f64016dbb15ff3cd1fb8a0c40b418f4f530038 SHA512 1f940a3f213e5634cbeaa50cf934837b6bc7ede4d71a8d59aa5627c5f3baf971181cd2004fd5d73add17c8cdd7ec733e092b5d8e858232af41bf24af23eaac8e -DIST thunderbird-140.7.0esr-vi.xpi 518883 BLAKE2B c033750671e3f59e30e101b61cdae919f97752d25fdbf53e4b8802b66895c41e85d1f13dcee62c13a32e9a5dd6b0cdd3d97d3a723547b077529eb791eacbfb8e SHA512 76d5808117a390050da376b5c685d629f15ebef01d7b118188ee409c8f0103341974328d0f2b0652ce7d5f0699b2edad13443b41131ede1f7b0cc52cb54e0323 -DIST thunderbird-140.7.0esr-zh-CN.xpi 507837 BLAKE2B 3dcc0d32bff319a36737ca0d9c8b285bf7da0f4f9c7fcd2748223a2ee04ab5070069ba44b29498f0a4e94fd11db54d746175556a4cf5c7d346034d07adb075f0 SHA512 495ae611f6b5ab1c291d2b53af3afeb0cacc4c1200a386fed3e478bf92ea4269e3c366a2166896ff9b933ab8f4d6628d3f99c2925781e0dda5f923a2c29e7179 -DIST thunderbird-140.7.0esr-zh-TW.xpi 511430 BLAKE2B 18e36fbaedc0e54ce0316fd506e4ecc9dae755988cd22440b08eb1794f4cc01ee3eaae298cee21f5e14ff0167f15b91f496f82cff5cce56cc188bf9935064e79 SHA512 095ad671e67c8249db9943592933443aefb21c76145a1fb15b2b8166402f79fba5319026f3c5d98f88361bfecf268370838c587b69a62a28888836039b65dc59 -DIST thunderbird-140.7.0esr.source.tar.xz 757376992 BLAKE2B 83a659c88e2f2e3054fc87c98a7a0f6723b4aff0713ee6b8c7fd87c4fcd3a9e59331807fe335d719dec48b8b585c36c63ec9349afbc46d7b4131c738b140dc12 SHA512 92746d87ca2d5a59082c25aa3c3a816e5bf24ae3e095f8ec478a60c5cd890faea392ff98b5b510cc9a89b155240dce9d06c7ddd0f17f564722acc65105fb6cd2 -DIST thunderbird-140.7.1esr-af.xpi 316218 BLAKE2B 842ffb57dceca2faecf8e4029f990a57857ecb943e76dab696459d27b829c1496cbf74e270a5feef81cef653f19595a4d662d6e30bd49f77267c77f0b2ec1450 SHA512 0237605a47088257e9fb978841123a20449f52d489972f3bc76189f6f0dae24844f165cf1f6b5dda0a99e6d1a4359f1c1a3aa694d628f0297edce6d3381a2609 -DIST thunderbird-140.7.1esr-ar.xpi 436197 BLAKE2B c76de7e15ae2f00f0a70c11bd6e5562075d58cedcfed28c02e162d1adae5e1f44ba8b335d66f2c29fbfa43871b4ffdc9b39b154fd35c9cf838283d458e850b30 SHA512 53db36903662d0fedcc48246b89c2deb96c3f0a0abd777d1eea378f4ac216fe70da7d27adc39cd3a84301b0af0f362352144fcb9884e4251091ac5a160093e6f -DIST thunderbird-140.7.1esr-ast.xpi 340598 BLAKE2B 34d0e2074a337e73207aba79649104779937932fc5ccf4ff76abac24091bcfd40d6241e445c85685d9cf50d8be4b1f8b2c9dd889507a8fb76c8904f1670976c8 SHA512 2947b77ea5812334370344d6e2ebde602fe32ffb031bc08838086de2481fe23d08b4fa2fe7118a5fe38b8563317363a65ceec850d92bd2707c5cd3f04fd4c7b7 -DIST thunderbird-140.7.1esr-be.xpi 521574 BLAKE2B 065a9acc7f56058c338f1b87b645a4877100d9cdae4e0ab23af4dcb7faa95808e9cbc01bc7c26e0116032a044d8a0158c6ab0a27b9f4c4b1ff732957fbcbb62b SHA512 e8d6b843b9e38a68f1bbfa170121fbe808750d06d598138e6532fb984ecda933726ae874575590b7b7ae1ec0d30186464f2bed865ee96e6e662fc33068a935d8 -DIST thunderbird-140.7.1esr-bg.xpi 539806 BLAKE2B 79901297f40b2aa2fb00849de7958ee193818e164831642d7533d169cf69f16a346c2f9e8979cdf69742d5ebaed480e68e1daa844bb71eef8d62f8dbee7329ff SHA512 1c184737caca156ecb329b73a4c13d6d94a01a3817a69037ad1d0278b842c53301e34a0847cd5f1c6fb546e48f9fc850f88a294143c5c4e8767c6edf625b2e86 -DIST thunderbird-140.7.1esr-br.xpi 402746 BLAKE2B ab06242ec04f83a42848345957c44394233d209fb0a8b325c2a37151df876cf8460a5d0aa6514b7fffe61ed1fb9d8fe21716aae1ed86b0f071d6a3b988e4bb9f SHA512 359ad81f6f004a5093416b6ac384e3b357f67259bef02aafb6e9c630848f22a79f18ba48f50d5e9c7ac1aad8f1b12a7d7b54ef91769d42cc5eabf941eb2fc8d3 -DIST thunderbird-140.7.1esr-ca.xpi 440586 BLAKE2B c5a27936f323ea60a1d3e123c55406c8d66929f2e5951491a6ef8c853b991f4d255f015a566580decfe2ceaf6b5ad43afc737ee80b7af6bb0b0b80f40200a74e SHA512 06f5da1167ab3a8ccddcad2d21b8f81b9997f2e8dae89d3ed8c6fbcb667214dd2434c73347af35cf84272dd6798cec8f7f8fbbb0e57891feb50aec07b9104b70 -DIST thunderbird-140.7.1esr-cak.xpi 418022 BLAKE2B 1a746d1abe2ed5600935ae2a0b0383853530bc0819a7ef09126906d20995d61ba2d5a471768e64825dea68054d9e6ab8fba95b6cdf0ca601021205c529cd0ae2 SHA512 1d6d26297bd726dfbd92a8f6f5a90975ba93a931e348b51dd584a2ac43bce2709cf2f2f50de55b0a9df9120c9f00571a591dae1ffc3be78eef783254fb5e9799 -DIST thunderbird-140.7.1esr-cs.xpi 519507 BLAKE2B 76ec0d7ff72f9d0f1a00c13b046e4f2b80d9b91e0fc36634bcd1960763143cef01d3996a5368ed2444f1708156ff8299afeca2baf5f123a283f61cf4082c80e2 SHA512 a6e342d41fd0966b6c5c7c617060f2ab84fce83d6d44f4ab87870c880bc71afb237edca1dfa2d1ddff1f6479a93f4f32d447c942c9455491a06cb38fed95b0c4 -DIST thunderbird-140.7.1esr-cy.xpi 487650 BLAKE2B a756176f7336f9ab1ed5ebb20b851c75c39cfac0a733a79011e9c4e2e4732af2c94e4ddbf0e9960b0bd0e1f2d14b179f66b5ed8ea6e9db7a19fcb9cb00d8d0f5 SHA512 34dd65a3354de15fdc79d9faea0012af4850e9562f2a5373d5861634075b2a5fec35eb29231fa34de594fbae03872fd1372b240defe7d62677ae48f285f9ffb9 -DIST thunderbird-140.7.1esr-da.xpi 476623 BLAKE2B 713e99ba782ac68110a89c52dd55c076873ba995fdca82ace149aa6cfff31c5725f4be337238bfb8cc3e1955e263c3f086c915a269ef74dd8cd11d0ec42f2344 SHA512 901da0fea0121141557c27d0eed9f977e9ca30e7fd6aeb5e596c9b54ed60bc46721017fe1af2e3b662d2f734c4dfeb6d859ff052b8074a4892cd2f6d0d4bb9b1 -DIST thunderbird-140.7.1esr-de.xpi 504707 BLAKE2B 930debecde06b5a1105274a4c6ff30e44c2fa8d6cac8487d11ab0548db27eb7e36216eedcd0cc438ae1a00a16ba2319765866e1cc9a3f3baa7130024bfdfa7f3 SHA512 bf9c66d6be635e0c9dc8f226e35e39a3734a1f09084628d1b93d0ee384bef21eb6f5fd31e3fc4f94a29f298624cc3cfcfdadc7d4f4d6f981297f59b30b78019c -DIST thunderbird-140.7.1esr-dsb.xpi 517896 BLAKE2B 688b2f65aafa6936a59025590336a0644d40f187f6d1f2ad9edb24e85a05a55c1f3b80b70aef4a0bf072ce6268c8eeaac9c2ed8b803c74bfb24e736a97155a86 SHA512 fce79c0da3d1a19be375cecdbb7b841f7dad61000cd4de39026037b976df5c7a62bdfbafcc4472765de461e3ff2cd421474fdbf9c4e9f18173ce876673a2d3ea -DIST thunderbird-140.7.1esr-el.xpi 609031 BLAKE2B c8b36b53cc3e09e0767704b711286cd76ee151589e933d800d17e5f925b892d8759037a922b77973ee8371bb0900a524e4e1c563579902da8969b8f7b0e68489 SHA512 3ba28a9bb767002e65a77fc238105df4a9f88bbd7f78ba16fa8868a37ec7395a1be4f21f8964317f01ed262409c6f4b33ad3311c344746f58d2d68af334006e2 -DIST thunderbird-140.7.1esr-en-CA.xpi 452240 BLAKE2B 0272290aba2abf89b4635f090d93e517845a6edced387840acd4c1e4f561776c14bbdb9a2145ef47e799750c3f3bd130332548880582ca7c01bc67fd0178e406 SHA512 e99490eef0ee000c595d251ea0197065c94406a699830981d7c38c6a3b724ab8e49d8a859c8199cdde92311897b4ba9de6cdcb4cb163a72b46c1d835faf3ce36 -DIST thunderbird-140.7.1esr-en-GB.xpi 452068 BLAKE2B f93ff81a0de82e824683568822cca1450b578f02a1738ae2bbed3e1e16184056b131007999fdbdb458e26a7830a473bc463b411b69e398dbd8906087203fade5 SHA512 d0e84a698cb764c57738da43e99993add6d14573545c5dd0bc2f42384d78f5e4321f477db7f5843c6795d8acc0b0a2b885a12ceb5f52650f5a60b5ed98719042 -DIST thunderbird-140.7.1esr-es-AR.xpi 495268 BLAKE2B ae75f109a6e2afd19c769a8fd33e6a4e4a88efd23c3c6f899994d8187a09f1a2338afc72dc229b6fa22de01892efb8f0fa1aeaa7f1dad223cfa783601dc553fe SHA512 34a50c3354c2f25065a66daf03d8d9592bb096977fe7b51b6ca844a75e0bdb24d0177a0048827f200c9386a7e0acbc92f0b0f898943d52a3570264dc9696798f -DIST thunderbird-140.7.1esr-es-ES.xpi 497285 BLAKE2B 1dcc57c72a951fd457a0ea6d80be2dccb61f2b53eebce836c1fe3465ccee06132536e4fafe6f933beed2629d038c1b6b601db5fb32d5a5b75f152d546a35da89 SHA512 31baaa613d79faf2b592883b7fdd4db0a14e6cdb12ab255faa001dc821ffb2a12be7ffe796bea6409dfde59a5aff43b749b4ccf26b83e025a4931fdd44de0b06 -DIST thunderbird-140.7.1esr-es-MX.xpi 490411 BLAKE2B 5368ca3b31fee038ee6eefdff711b9fc0d8690e4377d89c0afd3f7c2b871f33a09c904d9c5b482c8394fd15ad43ec6b81120572d28ec5812b133ce241cc665fe SHA512 a9ccd7e4eb8901eaa556ce9427226d2c861baf2f14b8d7d30c6caf9dad0a9d12ae2571f826af5de58b94464e972b2eb240ed62906b67763d0c823657ed0372f3 -DIST thunderbird-140.7.1esr-et.xpi 443619 BLAKE2B fedc14ad8e46dbde85a296fa5951ae5626a6acb6609220f72d6ff73cadc0cd94ba4bad66251feada063c955bfa534fd006602151b0e595ccea67e47437ecb210 SHA512 09651981d1746142f3b1dafca4ec8b5e6ad94eff8c15bc8153478e946d9d0270b7304e69371aeeee61b8d426d8144a7430e80898fa64a85fb70849fb565c7147 -DIST thunderbird-140.7.1esr-eu.xpi 473924 BLAKE2B 859d50d56c933cfa9dcb90e991800be09652a666deb4dd84e7da44b59b37999c91ce78ace3852e84f5f27922f8ff5c23e58a593dfd7f11a11f23b6a959cb635e SHA512 094d65fde40205fe6c3d78f86e0a5a253ac32cdb01801a09ec7ded0a60504d424d33045779ea2db36d1d25fade754ab6679fb2d2af996b353e327df915d14885 -DIST thunderbird-140.7.1esr-fi.xpi 475611 BLAKE2B d5a91b869f310ef901e6ae0986eb63a05f7b3ac84cd587dc1025c7185f7ef5866abfa806daab42ad65212f3872bb3e10999881331e661bc3129945cddb747bbb SHA512 370c9e1ed89428fca369c15636f513c8473a5f60db99de93e2777cccb59c0a2ab8bdad5c694557db021841181b514c5e1e4b009dabf09b9746833ceb3fc6f4da -DIST thunderbird-140.7.1esr-fr.xpi 508319 BLAKE2B 8a4451311f65890f9513efa1bb65f115d2001c6471aecd32a400ee54dfff380a6277360f2851fb3affbc242c2579773d38b320989db8b35cfe2dd97166a87fae SHA512 78fcd20d2bd97e1934ee90e470dd084177cb5f209c5eeee2077ea2e5f1e20a048eb2d32d736e8185dc556cc868287dbff3547c874733343a7da1730eb645ac1d -DIST thunderbird-140.7.1esr-fy-NL.xpi 490685 BLAKE2B f0ce1d9506b5880ef63979c214f2aae3f83a85b2d191725507feb8293f57b76c05c540cc56d8f0022676b6757dd161124f58d8341288ccf220f685d20c9e7a3c SHA512 dd291454552b2adb703f8f780e806488883a4bc0be44275f975e93d69b33f36ad288faa3c8d27dee00002ccb49f16dcaced47916996f9c7173d25dced205c595 -DIST thunderbird-140.7.1esr-ga-IE.xpi 376747 BLAKE2B 748db7083f64fe1b2da62d49f951308cd5acf429d33a07cb8d1e27f8a8e6deb7f9bf8fab0e804c8a0c4d350038c9fc5e5a8714d14b6c4bd2146458f39b552588 SHA512 2083a46a03b8b015e46047c10ca9ae998de597c05dff8ed48a85f4e94e8c4897c1975ab5cad764f5e58b22cf230ad0eeb67c2629dd09fecac440bd1913059cd6 -DIST thunderbird-140.7.1esr-gd.xpi 461960 BLAKE2B 5bee2ab73e9eb0f2e0f5114088d0191472070ce80c6653a43e4ad6d6f701eb160a19329aedf0b6ce36f69499e02b548a8a435826d160d151a2c7510ecbe4e669 SHA512 32879ede0324f88329b195e7cd058306e8b5712065d64314939761f4fd923eb3829bd754a3e23ebaa4c2170f15206e8fb387a8478fa2e2f48d2a4f3682acd586 -DIST thunderbird-140.7.1esr-gl.xpi 489346 BLAKE2B 311443c2acbb5f889642ca88877574866632890698a660760d56437f5e2714cc36f2b6351fedf7f3a83eded5b763603f6d29be84328b631da664aa9b085d82fd SHA512 eb8f9d87d096941c182203f207607dd3d417999b63947f38c16f13e4f32bd86fb39f9e333299704eb2266465fbe7f82b1caead225e4457cdf55e7168c0801270 -DIST thunderbird-140.7.1esr-he.xpi 443587 BLAKE2B cea8bbe4af910a89b9726e52e3aec3d3d9266eab04348f19d102e72c43eb8e27ca2d8d3cf35354ede7272e75c3d6e6b3777b3d9f214ae78018b0749b95973035 SHA512 eb6b1b045785e7930c5d97d59bb027ec0e5f1b1ae05ddabc0761a608d8fafb3579e3b09395646ad8c864fb2dab4afe82295e4136d9edbe59736083c4d94f4fe6 -DIST thunderbird-140.7.1esr-hr.xpi 470679 BLAKE2B 42e67534130b5e37382465f52ab1371e19b242dab323e5c64888cd0afaadd9fd221c0ed7d8fceb9e56a99cd3eaa24645daeb67709e3d9913f315e29fd60ed929 SHA512 31ba46b9edc9f5598c5b77497ee870324fdcc7fbfbc04b279736d3001da15b64ff1a7d572c7c1d229a8c988b26342ecf98f5fe50063022753f36cdb683a325cf -DIST thunderbird-140.7.1esr-hsb.xpi 514933 BLAKE2B 442de05229125bb5004cd7d39e5f8a3392c6dbe4f4298d27181fb1f15d87dbae65fb2fcdb7df30d53278b05b440a2f1e27d8c8b8a5929f4feef3e58fe2bfea1c SHA512 bd70ecf6a9b0b5edad6e4957cb0253fede949c91ea875587454fb06525f5bdaef8e573e8daf35b9cc3ef8b5a9d1dedb643115d7ed746b7f933e11bfb50c50ff1 -DIST thunderbird-140.7.1esr-hu.xpi 517545 BLAKE2B d6531e37225594ddf459aeb040bc37e01010aa8ef9e715d75d30142e5ea582a5612b5d687e66e4d7b060ed9333ea9d0697adf981e561f01d3a79beaae2f4ceff SHA512 e7b51d04bf78bf6ace4cb5294b36c73f951db1eb552bf44b85b58ba7da4a76c1f6b9687ff9ce0c27506ac3dd76fec6eaaf575d9226bfcd0ca0b7c9da7861a481 -DIST thunderbird-140.7.1esr-id.xpi 467001 BLAKE2B 8c26c04c4e05fade83f49261f2a9670bb04e354a036d032b483ce79950191c2a740355dcd97769c57827a38977abe8da963f73b3af57a06256f0c0fd7559d2a8 SHA512 180724765f0360e2223a058191bdc43b14f09eeb47d83318bbb8220cfed0a37a70b44d432a9fed047fb8b170e4a59f137f255f22eeb81252deb28627f5690b11 -DIST thunderbird-140.7.1esr-is.xpi 482738 BLAKE2B 316f7e437f98528dd43b1f3cc373027360950818771d2aa072ef91a67daf054ec7039b11c62fb99f62d3f781587b06ed886f8a55b19ac5219c48b07ab40f5d1e SHA512 ef20b36c5ed21387746b5d50afaca0c035b401673083728e19090dd78d1c471f3bb6223f1609b863abcc96542d004e4edbe2be681c61153647226e6d0842dd01 -DIST thunderbird-140.7.1esr-it.xpi 488504 BLAKE2B 1a928e185f6cf5253f16c9b145d61685fc4fc9aa098f8946710235dea57f73e2041282e40bed01e0705770b41c2efe2dd74b42ac8cb2d442a3c5005e312b7199 SHA512 e692076dcbd84a7b97fe0204226eb7eb5f3995c9515f0f7cd19aff1ffefdba3e20cfb468a4eb3dd6358c9e0c75811b3c59d3be26556ea36de9f0b2db3f6a515b -DIST thunderbird-140.7.1esr-ja.xpi 539194 BLAKE2B bd80f8ac079af6972d0c79ce7d728ca867ffa9a4259261949e8452a353586c7da5ce281cf78a3b92367ea47a6f8dafc4a2c7e4ce64d27f9b6e80086c2fc7f52a SHA512 1a00ddfb2c12162e88133bf84b5c390cff9027d62d9186c4393c73170910b533b8660737b25e0e122e0d484adce21e4f9b99d456ba57620f9fa6b09e49a904b3 -DIST thunderbird-140.7.1esr-ka.xpi 554772 BLAKE2B 2637ce859b531931a09aa234510a4c3419480e3ae3775d5bd5d058c95b62753883abedfb234e2e30a7d32bd6b4a970409fe55de999e346f1d2ea1fa6e9610024 SHA512 830ba7eba2bfd29b6a04ed98c8a5b0f38f4e27e2bd39d20a0a0ebe95132fe0611859802617d040a391ff0369df7b49ea637f53063735d4cf8cacb54086c8ef9e -DIST thunderbird-140.7.1esr-kab.xpi 470497 BLAKE2B 34ab5c361a8be1646216c175de154e88618380028c1d07ae282d0362c645c3de19a6d03e8bc8a4edef24286b8fbb7f01b8e24908503b0f4c729c89991f0a7420 SHA512 2aec3abf6a89a2f30f0b7783fcd872dcd4201e337d144556f919526ade080f0380bd3e07e4dbbfaaecec331ecf901ed20dca8f76de870dc75ae0657e09737338 -DIST thunderbird-140.7.1esr-kk.xpi 573880 BLAKE2B 19713afcf2ef1b6f04b92a83039cb0c5608c903cbed06ad4cff67599b29cd7078ffa417ed144c7fe844d63867d58baf3115e842d7861fbff70dd52da3dd6f494 SHA512 e32315e637f81e215a3b188d2e718733440846cc635b87aefba6f1b7b7c33a161f331636e40d751712198c5db87fcd2a18f9e7a2724f04a5995ac0e920b6af2c -DIST thunderbird-140.7.1esr-ko.xpi 515591 BLAKE2B fe470ead6691992a40fe3e2dc39f65555e080da0190cd57b46d9510f1fb618cfe426fd37c2230c394438007774a5a2bb40273bf091199a32301cd5fed231fc5c SHA512 fc1127ab2c17477f03dda57885388477cd4a2aad3de9db4f5030b0cb840acafd2d65d6280c39711727d83a42c4b05bede0d13ffaef856ec2cf09eeb481cf2ee8 -DIST thunderbird-140.7.1esr-lt.xpi 453436 BLAKE2B 94037a9358fc93e6949dbd7ab0c92aa63c3b8de6c64e0db8a3a21255f29bfd2c5bebafe441ac083975a0036ab85e5a70d908d52b7f2417ce6d0f603e17fd12af SHA512 818b4be948c950d84ae99d4c96a4a75845165030a06529ef382cb1d471e9ffc2326dffa9126e10d1124e91d9d1e3e3700b4014984c1ffa9ef9abfc2e393bd584 -DIST thunderbird-140.7.1esr-lv.xpi 392816 BLAKE2B 432c5ffc09d62152402e8df06b596c1a5b56d3c9bdf1462dc0237c8d133e433281d713551aa22b01a4efc48661576d6a9b8ec644dccd091faffc933e90a0e2be SHA512 40d2f7e5a74540b6037cf37b5de17b5e0a917d2b93d3405a6b5aa1a073f8ab51a888f2dce306710eb887e54a02c16bc3fd8733fabe75f0e8d017738d71a2cad8 -DIST thunderbird-140.7.1esr-ms.xpi 352181 BLAKE2B fd78a990a23c81d9060cd181173e693a336dad0e00c23ea059e6be4517b0e5a022d9006d164d1e31b22877fed292256c419204c14dca134ba341e94dc2c1b102 SHA512 4362aba6a7f0eb5d24d080385ccd167641a42f26893483fbf1ce995e34dcf6bb16221d54ff29e67c47b22625005d9c46d28d5613634923725bf55c3d6f7af756 -DIST thunderbird-140.7.1esr-nb-NO.xpi 476137 BLAKE2B 267fb95e778949769a8796707ca648e685173ef0859fa66e79fe6fab83cd0758c4cba62c8d7d72a0c280144b64a63cab65b543a142dcbfcc340dae2098fc9752 SHA512 33643b016fe14c657e6baa9f9e0091ee59d9955ddabd879a5f1ea9fe86e5872104122005522d1fecb22dc986e1040212ee78f81d404524616f0b23d26dd2c5c5 -DIST thunderbird-140.7.1esr-nl.xpi 482123 BLAKE2B 2614ae08b9df9a70fdef04fc22fe4687668efc86ab637a84b8353b9f0d89d8e0914b8973655748561bfd22429ff1594ffc93ee57b05a272b4c553d32ea42a984 SHA512 61aa51037bccf5fadc721ca924d6784c1c3873e67dad6d23c1a6e550e3bc461c776b206b169d99e76910e8622b53e74729a0dfcfaeca41a231cd70370a799cc0 -DIST thunderbird-140.7.1esr-nn-NO.xpi 479759 BLAKE2B 55af94516c4cfdb463ffbb4866469308fcfe73896a6116c9d232e73b6e00f9a31f17035441c720943b6ec49cbd15884d8c8da2844f9f9d4fbcb6c7ce8edf7a6f SHA512 796762e0031abf93a7018498edf662bcfc5c267c488aad36306f00d2ad68d783148729ffc0c538f5fc0b26798d7acdf12297d34da286df03161c020c0b87ba91 -DIST thunderbird-140.7.1esr-pa-IN.xpi 435423 BLAKE2B 288582f88933be8e97d0dc454bad7a097d34b2aa50ad131559f403db328ed1b0fca44c0c3efce2c748d41b5ad2b3b1362f26b89211b9900c28d133ce01ce8f0c SHA512 a5a4edf82346ebb42356d24df85b3154c62df0990e58646f87326681a3c89aadce4cf1328907662151ed2402915434185bd4104242e4ab8cf4025ca70f00bf51 -DIST thunderbird-140.7.1esr-pl.xpi 515613 BLAKE2B 524ccacfa8e6300bb50d30eac9099f7b431beea81ba90a3493e0c294d38eb252cb10b6abca7023e2c159799d62ed5e35eb82dedfc8c4cfc98f8f38683e643a3f SHA512 3ce5211099c61f8cfb54c737c900ea29093b943ddd7fb57f7fbef1b0ccd53c406cf8ea33092888242e571d55fa9ec76ffd103418a37d762573402231625b1b78 -DIST thunderbird-140.7.1esr-pt-BR.xpi 490163 BLAKE2B ea02e320f2e115848208771cafefa4e6b127645ffdb3efd0dbb89fa69c3dc43bc9defaf4253b708a9d8a8f0be381c9b949ddb7452631a9cca5948f5e66041bd2 SHA512 8d24759af63db8e4d7fe35e100f780bf3c5ea3f0ebf093b1d9e9f27f536891fd21e56105a36f3b6a375588250a96afe21440be923dd2cb35cc0fd512270169db -DIST thunderbird-140.7.1esr-pt-PT.xpi 492525 BLAKE2B cb1b9a2186705c5e6056c8bb45b7360aad3fe75b48a998e78bf4d516457f4e5ae7a2907e22f7c9c071a7f4c1abf5325ab6dc270e3a65bbe9737c345cc089cb9e SHA512 28b23077b9fde3767f184174665446953188b46966dd0712e83ca9557e8eefde9e0390f1d8b5126d8dd9e6c804d7f345f8b640ee6dee5a475ce342d5db863b70 -DIST thunderbird-140.7.1esr-rm.xpi 487884 BLAKE2B 4273b2c316b0064172b2a7808363a71186561d2f9e7f9659437446d556b42589ee47ca2645e5fedcc74cc47ebe1a5fcf3e94a7fae7c342745424e4988c8d1a5e SHA512 9d020415fc60c5ba7cfae76a9d742041afed7ac04806a957f45517f4d0b0d1a4956070a90f078a64749669561e007ca94cbd0a15bca50b3ed9ee48497c48c14d -DIST thunderbird-140.7.1esr-ro.xpi 501093 BLAKE2B 00096fc20373c5a468f035cac35b1943e15be6b34141ebf5104cf462354e3c0a9d439deaf3412f6b1d1e23493424a88a9ca5b290216b2feacff4632e89839fea SHA512 ff39e041f95739df4db6b10b595d6195ef600ab752ea57696570b40a5ccc4c20be69b829e1cf34bf6cb85cd4d4cd5e140f5b55408727c5d6be5cdad82ece1bc9 -DIST thunderbird-140.7.1esr-ru.xpi 593284 BLAKE2B 22d638dce75638b0202d2baba36462ed171ae99ce95b560eeec0ce45ca0479140924c61dc330e22ea73b6e88aa15ce8b9e6236e670f5575bd630d038f6f8d394 SHA512 b1d2b573311b7733b39b3edb112f8a2d67bdeb7c19eaeb252d01dd7910e6e73bf01e953ecd8ec2f395043e3a69cea9f07624053d04901f0b3b89447c431735dd -DIST thunderbird-140.7.1esr-sk.xpi 519388 BLAKE2B 56846eef79500cd665fa90b6dadb6e2e22708fb6d671307a1983a3d5cd263682741d6136a36cad68a16d8c60332ff980fa11e3c76ffbf7c803eb065dc03edb9e SHA512 80ca9351edb51522106ac98fb9a8fbfd4d358aa4cffce9d9cd2c4ffe5c2ad62751a89a30943cbb51c19cb4143a3d11f70c0fe876093372facdb5e47d6d35296a -DIST thunderbird-140.7.1esr-sl.xpi 485960 BLAKE2B 79614ca391859477c280cce3605093b9a6521e90bd6a84b607316399ec99c025b2896aa1ae3e979907900996ffc5138f2dc232fa6be7c9644b936b7d8d70f143 SHA512 ead48a32a3c6c6d76f8a6447fac483baadbf11deec9f5008e8c28c01665235b373badf12868757f0084f9a992bcea950d39d0a631601773dcedefabe084751e7 -DIST thunderbird-140.7.1esr-sq.xpi 506267 BLAKE2B 66aa95a370b78cf39430d7de9dc09e0f7bd2e5bd6c3cef8cb955e4fd44d2142e2a476e8205b922e79e559fd88c78a735803caa9855fa1afdb82343f24b486e11 SHA512 c9994ffe66bb55e05026ea7cbe5ce99ec7373045f5443cd0b3289055044e74cf41ffde2a7619cc980be98f2e6b6733d95297a3ff8261eb371c3fa5defa933735 -DIST thunderbird-140.7.1esr-sr.xpi 495990 BLAKE2B 498d3d69802a474693d09407e1c12d6be42edb27f180a872ce8d00a14712a1b9abaf025a794e4c27bdea281bbf0662e06810c170e834b067154b374bb6c96c50 SHA512 4c79da087e43eeb3c5eea8995b6a89cd6425c439729c5e387b03d91621b3558e046c375b30a131f76050b49abb1574414b14de319dceff4f2b6a0e90ae5ba725 -DIST thunderbird-140.7.1esr-sv-SE.xpi 484419 BLAKE2B ecc20de54fc564d3653751189a3fcb65ab102f24be815485bd813a713b4ceff83b995d7524e309ef5c4eb885540086ec5f9fb06e51a47f9e66b99e04e6e7dc83 SHA512 3f0c760aff6ee86770393bc6acc638b435b8aa440558182fb34fd00a36487c5584fa9e9638e00e3e533f4729cd26f379a629c8fc491083c3652387c86c29238b -DIST thunderbird-140.7.1esr-th.xpi 567947 BLAKE2B 5a5b2e1dad99fc2be33b21d69631cbf9492640aa241ed045da7c9c2876696db42d7b910318006b9d3669cbae39f8b89226a65bba186429d5e169319aa7df48d9 SHA512 956be0d0e77daf27004cd534ea1023cc6ffbb9293020a9954ea8c9b2e3ad5e7e487a66b1f672c8214b2a7a8e0e22b1a5bd1f10516cca34009021db82dae6cd01 -DIST thunderbird-140.7.1esr-tr.xpi 496182 BLAKE2B 246a72e9995159fcc0fd00c73faefd503b8531eaa2f5f6097d44736e4591eb6f1a7fee5facb196506f8d487d58318c7c0f6f085b3f707fd43d8c36941fc41f6e SHA512 3101fd0b741ad2c798a6e83d73486b284ed25856728c704e920a350d9d3c68bc0b9257cce8975f829b1dcd698455904d5c33c83d0f3d8dac04f188596d20f710 -DIST thunderbird-140.7.1esr-uk.xpi 582152 BLAKE2B 288c751d0c5be0f38ebc5f4232b8dab141fa78d9f57ce1b936a73def19c4647dd83de5d9a4dc4c844650aac022470f60028a8a3d3b121530e2ab39bb5a0f5066 SHA512 c9c41aa20848d0d73668336737f2286755b66a7b09649f105c819377466bad01de992b712a7f2df2b122dfc931d259610fad9be387b623ae91a2cd8598522c77 -DIST thunderbird-140.7.1esr-uz.xpi 355267 BLAKE2B 93bb15bd61705ab9898cb41e0c841f44aa1a80c7ca4d0fbea4f531b47b35cfb5d3aead1fbd60b8f0dd743bda8dd60aee749a1b43e937baea3c73306d1f3d9b97 SHA512 4e748b9d359c874351fc1be7688c5170014bb359a6b9ddc6f0a6e27d12be215b9628ee3e6d3e5723b3ba4b7803e4f167c3dcc12209e602f5c9767c37e7f85695 -DIST thunderbird-140.7.1esr-vi.xpi 518884 BLAKE2B 626280769bafcdf9ec0a25ddcee15ac74ace71e0b6232fafb3efe1a6a5ba94c01b9bba7b42683f34fe090056908384fa91dfdbec0038f041a84de472514ba2d7 SHA512 e5dc3b65d0729b82f29c67b05b4e5c35b05c9bd221eaf207c8050097cb5a61f36f6e6b7f004683354520eecf7e77732b4467acecb0454fa5602c0f268c02aafa -DIST thunderbird-140.7.1esr-zh-CN.xpi 507840 BLAKE2B 44a04f6586695c9e098073d1f5f74ca766eb5bcee72063392ebe55e7ceb069eafe6502dc7e683d51bf2a500a770c4ae1bf6a75eec31ab2d7d536ef939b5b72ca SHA512 ca0fa3abed86be1ab6edab2e5431668dbac332143521cbeaa7ca5edfc561a46bcf1e238f76778f62916c9a68b7523ed279e2bb925565ae0bb671cdaf63a21bb2 -DIST thunderbird-140.7.1esr-zh-TW.xpi 511431 BLAKE2B fc9043dd3e6598d31a32aa1890c1eaad03358ed34b80fe3452274f41e839b5b084b524a04f1768e8229993675a26411e36388baaf4925d8b9f854e1ca2084af1 SHA512 814ce81f00b74ea8c7ddc26b0afa35a3a45516cb7ed6715b36d2aaee6da415dc3dd2d4dcdf2e5e857d6889c0b56bebc9808e54a558384a9a628d209374c3fb65 -DIST thunderbird-140.7.1esr.source.tar.xz 754997380 BLAKE2B c7cef462046d0e6e30ab389437202683fad0487c545b1cff9c4c4eadcbf2b8945c2809a99311b282e3307eb50a765788adfffff20663287b9be61bcc8054937b SHA512 2d0f61758b0428eb4eb8294c58d914e03842c9ad7685cd2eec26c723cc1491634f90fc9fcf5ad6d3f13738e141e96c692cd8ff1599869346e3247a0cae2349f4 -DIST thunderbird-146.0-af.xpi 312102 BLAKE2B 1002d405b855ab92e382ac171d078a8cfb1d40c502d71865906c1a29e1d3e5bc3b5dd5dd3a623f769dd8617872361808a64aff7731e9ba476a2fa6fde2e3628f SHA512 21a4f2c6241d9252cad85b8a5a2111afb749dfb791abaa1f505ac433e4575247e7b1f3a47663f717e8c791f3c084b43bbb52312dd75787d7b0badbe243ff56b7 -DIST thunderbird-146.0-ar.xpi 433915 BLAKE2B 0fabb128da8e4685f489a928c38437bdb668a0c7d1c15b94c68718fc1df26303a5cf02d0d722b5ecc74b9a1521ca394941235647b8e6469825f3f13e3b57d6d1 SHA512 27e9fffe05fc2e52b902cf52399847d6f313dfb6cf7326e4a5ed8cdde55cf87694f39ceae38d5c7b680ede2b3bb1b5d7685df0e8751dcd8497ea0abea4451159 -DIST thunderbird-146.0-ast.xpi 336128 BLAKE2B 92491e55d73bcb204a23aa283d3b16d43fa0038bb24c6fcb0308d2c1d2d3017802995ff14a617eb9c5d5869943afc31ba1c96aa06eac2dff3989e9e41c2c9a7b SHA512 f74087a0cebf61e8dd5fc86d31ad1c9786cde50f312f40664e247a478e7a1f4ddbe547af529e1ca58cffa21e711b4ec6d61903af62d306394e490e9353486b5b -DIST thunderbird-146.0-be.xpi 521690 BLAKE2B dda1c10cee0b3a5e730b95db97381ee9c75e803694e3298ed4454893e3b68b47f780a7e76dfee0b7dedd8b3805c78f82fa1bd4992f88ad5962ea79c35ce5fae2 SHA512 f9ed3b7bfb4132debb512a39d625fa2e229ecfd8eda2ae2217d6acc1f7732cb9c5397b6793ca6140db772261e91dc85654edb80cbb6f6f1980b99d32e3c1c19b -DIST thunderbird-146.0-bg.xpi 542825 BLAKE2B 5f858dcec2985814ed2cf79eee8e1dbf30db9f52571fbbd3f373de27f0cbd215429fb573ee57f911ad74c60452f535d4873c375e137b8332a0ae8270f75a3e04 SHA512 d9dd3e044d4a76617e67128fbb4aceeeb41a7e4b45b63e4f837f5931ee10152cdb16c15059a0326c6a99ebe8043f870d5fa5029754c0ef67232f6696cfbebc07 -DIST thunderbird-146.0-br.xpi 400962 BLAKE2B 1ef8a29fd5c2b67dfce57112cbf32dc5b9a34a89849d4e4f7a58813cb116ede439c2023b11fbeaa08cfe169c9c4ee78e1b8016c705385515437e5012cb8c8a67 SHA512 bec10af90a6690252c1e1b8d7f44cd3184854038bd6184739ce56ec14b4995cddad8a6e7cf7eabe533ddf8c95e530a3118f782d1399aab955e15f48dbdf90839 -DIST thunderbird-146.0-ca.xpi 438173 BLAKE2B cd6058fc10e1cee3f6a41b505456b4c430d0e6e5cd68aee928dfad07cb9fb8e014cb3bb45239482d9718a2d38820c6d5898bea26337298af8ea468488f9561d9 SHA512 7434ff610ff8bd9f7c6196a89e870644b21d21b95f01c85594d2c8e9949491734f4d54fd19f7fb55022485d7cd3b802a1a3ffc94edf230f2a3c9dcbe75c4337e -DIST thunderbird-146.0-cak.xpi 414590 BLAKE2B b466b6591943f29fb2005deee82edae79983e15d8f44f020811cb29ee48ed955f00da058b1f36236413a52b07070336a1c3400e620c681c2726010f2dce5e448 SHA512 70c53a5b0df279936c1cd06f38f3091f45b46d4c1b3eea6cdb6c40ba75c69e8db3271ae0cacd7409facd424b64c90d4aa5efc1b970848005e05fa981b3f1ecd9 -DIST thunderbird-146.0-cs.xpi 526516 BLAKE2B 0e5d78d7392d30ec41a44b7ae12a57238a96c6ea2cc95df0267979cf4e138fd2f05b72fc43b558f7d3f0288fdc8d5ebca7eab54d439354e17d24b0b7b219982e SHA512 948b359cc7fad2e15b9cc2efc2cf61f265fb9c82b22d936557a23ff356d2d69ef5464bd69ddfced832126f391f7f97017bbe81236aec531b54fbf201a2c706a8 -DIST thunderbird-146.0-cy.xpi 494121 BLAKE2B 1d87589ca9c9ccc18c76f0fd708af430c052fd80961710dff8bc32a6843ae817bdf3d676f0fa323afbf9631f0c4a1c36f6086cd164cad705cfbe3b50a75e04ea SHA512 120e242690bbe84373990772524e1c2757ded8a98ddd48872ba26dfcab3a6793c9dafd46186e2374835c22ef851e9d96edbd2f14fa5ec72b6480e701333cb984 -DIST thunderbird-146.0-da.xpi 482468 BLAKE2B f50c1ca770825ea606e7d03d03551efaac25c7669e375719a1e032ef6674b9bedc38238224688ce2ebfa80ae4f4d8f13f8c5173ad2c9b3ba2a7de3c3302bcc35 SHA512 c9945c1eeed2e436ac7965c8541b45f71c6902a26a2abf28132487c490b8e01d050064d7a1563188baf91fd2047b3dc9af697f9bdd62312adb379a4962dee564 -DIST thunderbird-146.0-de.xpi 511098 BLAKE2B 38468eef0972ac7e2448ac79d72278557615482f4c0dc6b302247ab03ce5e3ffd711fa303bb2a1122b2b63a44dd676ae00350983b6807bfe76b95a7368e9f1d3 SHA512 5adc0b33d0a1a821a28e1aa4f49c40c373b0631a888f2591cac128107e357a6dc2b4549249c30a43653e1f32bb2dd4446f28292241d4368e37ffe4e53b19f683 -DIST thunderbird-146.0-dsb.xpi 524185 BLAKE2B 8727d61bb157baf2a5efaf60f8787e8b6969995193a65688b82d646b1f5d836966d9ed81c9a80e0bb5fd46e4c442e234856d579f4869599fc92cbb69a323886d SHA512 11be83881b9db84cae559e23e58ea7f7be74a768646feb496b6d85a1485ce637e918b9cb48657e1e3d37ccd2eeb1abc9eca3ca6f176dd7155dfdc0722c9fd619 -DIST thunderbird-146.0-el.xpi 615879 BLAKE2B 1f54f9a1e82415c22c25f500437cffcb63a2c759283c3fa5525c14ff17cb66d046d8c6f6221939501fd0e9d5dd75b62d44fcd641e9e43d96deebc1cc60d76110 SHA512 d59c43880c480fd3a13ef670bbc31debb499e24f93d08d345d42dc20b8ba1f76a5d0169a4630e2a9ded0ae713b306c36710fcdf0e97be841aebcf97b3a24fa60 -DIST thunderbird-146.0-en-CA.xpi 457745 BLAKE2B f82ab368e48b2369feedd9aaa31fb261e9a77a3e66314e760a58b30ff76d31a07f88b6ed60a681923c5053afdee80c7a9834cbc2fd6cfcf854a65413cb8bba69 SHA512 149ba6d2654f24fec835eba3c45880a590b8293796a988b0c04e40401261b167337637d80f7253d10923aeebca1fabff8815ff4404b952330c375cc5ac037643 -DIST thunderbird-146.0-en-GB.xpi 457595 BLAKE2B b83ce023e0d94c3d8a0e22f87053c72a1dfefda7a7f73fae00d4ca925652d8abbfa0530f0f3e7aa540a1088d23b87448636cd8165b3f5aa20d9198b3d020a768 SHA512 a7a6ec041d9e733d3b8184d92b70c34d7900a974612e3c394eac837720ccca12bd6f3b6d0d6c03904f215c7163d319d12b1ea1c391b64e3c3354f07312c3bbef -DIST thunderbird-146.0-es-AR.xpi 501279 BLAKE2B e82be8627811e903427b840f84d858fbe3702d4a06a79ca7817a7e3c048c17faa260d1e2d9fcfbb4ac06bccde625a6f79d1711c5e68e9188613cecfbb2384281 SHA512 972570e0cbcc6878672a84b321ef6e983c7ff5f1a1506cb78274e04b4cd5802f52d6fffefe1abdc399795df3299c86866ee06574198b0af0ecea79dc2e7a0b72 -DIST thunderbird-146.0-es-ES.xpi 503404 BLAKE2B d81408db4d3839c38b1004a48f6770af527042a428cb4088a6cdfe56d55ddee407da85dede404bd6684447ea6fc9eb938ebaae6e8cbd41e2a033983fa723c9a1 SHA512 ccdf469b374e94dbe41a99224502552d6a6ad1bd1188d9597afa60ca4c4a3c59d22edfe698edea7d79ea65d1cc58f834d8d173439528bd5ae355be4166de3aa3 -DIST thunderbird-146.0-es-MX.xpi 489583 BLAKE2B dc27c406043e5d55f9547abc4977712d358834c783032d22345ff5f2042fc56910ca636c88072615ef21b22e253b50d346121fc809eca2cffedb15323a4b51e9 SHA512 3979018f7a1e35ca66974b3ed908fbbf013f0ecc6ab9228ef7376c5a7cb92bc6d583360f62ab3fedd0e12375a014512f86abc6468d79ee379a2f7242a6ed66a4 -DIST thunderbird-146.0-et.xpi 441172 BLAKE2B 1caeaeb4778c24dbb64aa820f3d4386f349f5511daad6acd321bb658eec3616c5a08b4f0e50dc5d57ea2ac9c07f5d16308be78f476bc0c1c34204c1bbd07307b SHA512 1d23564521da241d5eeb72f215577e8f2ea8ca427d71a74891543c4aec00676a9def0f2fd994baf60066ba4a184ed65695b937089d3ab1ea8e5b5ad2cccdc74a -DIST thunderbird-146.0-eu.xpi 475559 BLAKE2B 02a4e5a104378161a366befd0942bf8ada329a30b6a46571819b668b695f51a64c1381366f730be9c94e682700409898a9939bac9ddfda1cbb3d82fa087a6e98 SHA512 c36b15cde4baeee6f50f1f273f5a801e23078dd7aeab142d155c94b287f53270148a1ec7ae6ec903a3bbc14637acae20d93e8900f14a5549a70a6c05c4b5b7c2 -DIST thunderbird-146.0-fi.xpi 478477 BLAKE2B 38ac61c59f7c931391ac175249252dbbb2778ee3d47ce1be6ef77d55776b04cc6fd1aab104fa19b49e4149480d43ad1fa4dab008fa229471439e3a139f171c98 SHA512 3fc6d16a6772605fbf8ce5b613fe26ab36682cb6dd0188a7738e84d9ef0749e0ea9cdd17535aa42eabaf456da04e737f8e81e3f60ec47db55e93677193534eeb -DIST thunderbird-146.0-fr.xpi 514482 BLAKE2B 96cf3f57d6eca0e2e508a7a2b36cdc836b29f62b791ff24a8da690a410fbfa045df2867ed894ffe31cb8c97a5f4fb386c0eb88056c313fa255534fe443cd0984 SHA512 24168737698f52075a42d8a5b6647913e53620993da80e3c292670c9e8d8e629692d85154980fc16064859602e02ddc9de39fd7e3691deebaf2d2d8693ebab5a -DIST thunderbird-146.0-fy-NL.xpi 496787 BLAKE2B 1c89befc44262843ea65186b21c24bf57af0a035726ef552349793235c2c596a23346a6f165e2959cff4ef77ca15b7b325f6aad7f06bb0983002b06f095ab8b1 SHA512 4cad0a5755425fe04df34e957a07188464e1b028faaca51be11c0157a21316506394ab5669a0b92e6c57e9fce7f879ff73773b64e665ff842858699f930fe1b9 -DIST thunderbird-146.0-ga-IE.xpi 374084 BLAKE2B fad967b7c40888bf2c9926857977a0520ca382f0c032a180e55238e4b7f4100130d663cf47811356070e85261fcc1bb710e7f27ffa8bf2cff4eac5e192b48108 SHA512 a0b230ce073681ea7bce0a2266fa7ec76d5ebed8d7f239299d653989ac903e15991ed0b0fa5c365641d8c73258e5fde63642393c1ca96a37bb64a2a0d587940a -DIST thunderbird-146.0-gd.xpi 459531 BLAKE2B d785a62adc934e35f7cd063dd6ed65e755234a8ddb341d7d4ef287349dcd0418f7ffb9e9cb209e29daedf1079c93c0fabd378610391db71db933f44c258440b5 SHA512 8711bbcd28bb6f8c46b2535ae1a412ca1092711abb7125f5d1faf88ea73b07d79f17583a30ac7392357ba77814e37827f3abc1f539499a5fbe4c8bc2f4a36b33 -DIST thunderbird-146.0-gl.xpi 488846 BLAKE2B b089c22a54ea5a6a55995e99bc2eb33281d405e7a1b9914b54c1c8777c91ec936a9504e895eeb945dbaadd10e292701dddfba1551aa429738d297469d46a6106 SHA512 d58a782cf0a40050c4b6760df3e5e7f77f54a02020f09ca7facebc50c5aaea57758dd07822c0ab41abec34575929048d68f1a2f61f730b362ad792720b0911f6 -DIST thunderbird-146.0-he.xpi 441788 BLAKE2B e1dc67ecc0492b4ab5e0648dbb467ac3f13c0ed9051f0c6571bab70f50c5a971f3d4525fc78d2e5cdcba7cfc93ecabecdd177fe3e5894ea608d04acd456aefe4 SHA512 442cfb7a896c3e6e63459a87fbdf6e48f0e3a8ad6f5f48e07cb559643c511666e664a69a6f20fa61c5008890f0726af018fc35fb49674c4ee49ac55d7d2e3a39 -DIST thunderbird-146.0-hr.xpi 468249 BLAKE2B 775312eda877a5ffa5d430035ca3a65ebf754b69a93964be2673a523825fcd2048aff3dd0b300c19bf7104a72112ce5990cb09e3679e2fe2b7383858fd21449f SHA512 0f865d88ba6bcdcc72a5a7cdfb421d09fee70f6c229b749728b1070a82b79aa3f796529f0e41c411f5b40de4ef11b75938a19376b09ecf0ae1e35be73ded62fa -DIST thunderbird-146.0-hsb.xpi 521215 BLAKE2B 3fb6a77281197b79bf7ff918322d12362995b3a7c1dda88d266154cafc5ee574f02104e0a4edc3b8bf4715b96c9a4152a4869b8d836d15ab724e642f716d7529 SHA512 46c308ebd1fe6a5bc2a689ddec023459f841d0f39a7a965f407abfefd71e97a4ff5c14b504f8ae7564ca27f48b5333d80903e960f0894b2ca9326c1991ae450f -DIST thunderbird-146.0-hu.xpi 523851 BLAKE2B f495198422087174df82ae556dc88338a3d0fc5bce61debecb072025443c33f6b294412ea33f8561cd8f475bde87b9da3d52c6be84e6196889fb29d8b4f057c6 SHA512 95d784546ec7c03545452399fa63708f94bbd05cd70edd64407350100c4bd8818bc67c0171fdfb46733e19b96d3b688fdcb10ba3a76467c675afde301edc03bf -DIST thunderbird-146.0-id.xpi 468898 BLAKE2B f884d5816230621c67a812c654e43f5f8b4001fbbaffa9e784b68e96ec8e78ed996fb565167568b4afd3935c9340f5c8fbe64a4dd2caf3747b37eacd7d63effc SHA512 4929804fb207e119da915d54a62eaceba92a6dda57c2a85b98ac0b53999a9522aac26deecb29feb15d6bb14f6e2c0e38a2332812e6eb4a1b13bb79ba294e0385 -DIST thunderbird-146.0-is.xpi 485555 BLAKE2B 6817706fdcd18742b54f8c81309c0d27cf4d6a87972c71029ef323326e428a49f1c0342921226fe6fd4c8847a79ae1f98a6c421e756b2a10701f8020341d0683 SHA512 2c5cdaa64bd509678d9b81add8ab449a21b621d4f24f68af94796d1e0d3fab8cdad0a09e5e1aca9370167f21625e3dbb35784010190c2f5495971e77dfe6a8b2 -DIST thunderbird-146.0-it.xpi 494395 BLAKE2B a4022d716300f1fafb6478432149e9ebf91e8a57225eed6814e9f40d09fb533aa8256a5ed6c684cf1a5301513484f76e85d6c9296d7bf2fb69589661f4c60070 SHA512 71de334874e21e808eb3d01b148d43c9a5811b47da1ca06ace1e494c67f9a2b6be9a8ffd987683fa3568e50b5106bd4eea2e354acd8c78fb1fb986160b11a65b -DIST thunderbird-146.0-ja.xpi 545489 BLAKE2B 7dc2a0400e8fee18481510d4a9a69cf143004d98f6700cdde102b7bbc681306aed511c31687a00e9639eb17bde7ca61a39a0ebae1ed5cbec3ff5c706f57136ea SHA512 0e7bc9079e634335f9e83fa2bec386988700c578d99c7640c9dbbe3db8b3c29c6d862c34e2943849282d4679bab47c96f63f0e4ee6be7976dfa501ccd6b5f034 -DIST thunderbird-146.0-ka.xpi 561846 BLAKE2B c4963d9bdbdafb811b94f0565b555364b2819930cf997f61134da6c1fb98b2633cf98d390f3ea4ebcc8807d6df483f0988f6480e8bb116b44252729180fbff88 SHA512 62b69bd732cf155cac1b341e480617190a60fa16a3aeae367391a25eff46f7fc61e551438892b83d0fe611f7f8b6d58a62d55ee244a67eecd64a70145e54ae25 -DIST thunderbird-146.0-kab.xpi 468985 BLAKE2B 60fb5471ddbd362f9bf33a6b07f5698d542f60290a9cf1269517f42081d0839f409ea24c0b729a831cb28fe08df12e69d9a4846a858172144ded40433569ceaf SHA512 13d5a63f7bdccd7a6ff21ddd4c205bb9b5d03605b488c9bff24527b755a1b2ca585904e4684fa1a6609b257cd5e050ffc911361e0f961760541b8d9bd74b5035 -DIST thunderbird-146.0-kk.xpi 576169 BLAKE2B c67e1d3eaac4108572be97936e7b230caf81221751e60010225372eac7f05ebeee4dba3146e2c89caaaa8f1b61dfeeee9a39f2f44483a2d252ff5637b2e25336 SHA512 c76440d80c9f2be0495c920aee74bc32f090b29fa601ba39ce5cddcef8f7f3d00c48d850742f001cd61cc1ba547b25d3b581c6916e6ea9a747db0a0ee61759a3 -DIST thunderbird-146.0-ko.xpi 518737 BLAKE2B 69ec590996276b70bcc107458177f7fb746dbf463a558d7c29412bd4e795cf2dce6507cb575837144f235b9928f572c865f4de668a99460296255b4f3e799e11 SHA512 dea7ac1babd96e9ffac3b48224205ae0d1ed7de9bca2bb5f5c23dd71c5b9c8e92e6386ee3fb85229caeb0f5df8c55a532617870aaecd344d258a671be50e34df -DIST thunderbird-146.0-lt.xpi 450964 BLAKE2B a908e00102c8d75eee606bb407245bc3f706da44d3de60e7f048fee1dc0204fc57ba17159bf2ad1441dbe96875d162c8801afcb2f17f579532dc17e5ac466c2f SHA512 75d227c9b8ef28ddf60327fc3f780ff78471bbf69afaf64e1b1d3beb62e53c9c38c593fff1b21f58f422561f53753d2557c600029265e92ee81f586aac59499b -DIST thunderbird-146.0-lv.xpi 388650 BLAKE2B 149e4fccd157fdbeeab0dfd834855a1cb7c50039e6867b4a04cab4e888be860402ce7ebb7d6b52251b07a6531c9893bc3e2bc6468701c869d271bf0fbb03cc69 SHA512 1f38c84b1f681c9e54740ea598943838b1d0d4f02dfca7c07d0ccc3c6cda0e2d9f899533935b677d2428e0e61ef047367ced7b9c4b4b0c64cf6010ce189afca2 -DIST thunderbird-146.0-ms.xpi 350379 BLAKE2B 9414ba94407b2d490c0c9b224886193db5ee5512271e8bdf45ff7e3927a99f0a7577fe1d524b34cc30bc7e0d74a32079e0ad58346e3df3cda745dd41e90fc2cf SHA512 32624fedb6db92dc8133aa2a98ea165df04d027703162adc19a1f129a3fd462f48379c6d22acfee1debe13d6fb65e49938b3254111a1415641d3641267ec77de -DIST thunderbird-146.0-nb-NO.xpi 481933 BLAKE2B 4f997248c3b12cea701be6b9f083e74e8de27c3cbf830b032e28a92be7e32caec408fe05bc50054368f521f55845a8760f6934fb68d5ff2cee6ba2e0847550fa SHA512 5eeb876d1ae2450a2661db0bd1c09a7f68b2aa45f37249b14fc428a78d5a9d3d18be4d8d07e3828fa8064921d71fc90dc6491391b913e1cc1efccfd65382d1ce -DIST thunderbird-146.0-nl.xpi 488028 BLAKE2B cf2fa5a9bd3c64ddadb564c1d6d7f0708588686943d46a59b839f5564f5f6d89181fcb713cca226b0e7af46f1167dbd9124a9bbea8d908737f381c743523438f SHA512 9df97caabee51de3f9683d67efb1d1233019df9eacf8d27047fceca3300c83369632e12d26b136d365685c0f659238fbb75cd568fa1f1009538b52d844abe2ef -DIST thunderbird-146.0-nn-NO.xpi 484388 BLAKE2B fa3fb53c6fe2cf31597a64f733c1af9cf50cab23e9352548be533715f0bf7aca50fde6da2875758f854a8ea23518e1e969d8bf51d001c2b10cca1d2218e0ac2c SHA512 222a5af2caf9b684182d322f76e20f4259195a77c7784a6396323842fb56d0ca1f006deff6b111b200dee9c0d802ee047c2ff4b822e068af85a2e144850a250b -DIST thunderbird-146.0-pa-IN.xpi 433835 BLAKE2B 30c69e73778d0ca677437305b8594bb2dfc5cb1c55eecdc9a0e2beaf066f2e1be8e56b4ec24cfddf484c85384af0f076729872c7825d842f5c367b42600ab951 SHA512 a88d26a4403af04d2430c9112e1240b7ce6d6ab211d9bee61ad76214a01f24cdbc7ae60411e483683d1332eadd0376698a7c61c735fa3b9ea0271dc0eeae95cb -DIST thunderbird-146.0-pl.xpi 521914 BLAKE2B 15dde376aa8c17aa4182460dd2caba08871db76421276a89486a4f5c30f694462eef0db208ec80c25590a29e71502ab9aa74b5b9741e6c09c2c6960077191e72 SHA512 8d09092eb6c108aa92c8ad7912024b42f3df9603ec9ef57e1e7488a2990e58823d30a82cdd0d187764f27e6e81cedfe8bd9a2ac988d4d0458bf25fe1e70db9c6 -DIST thunderbird-146.0-pt-BR.xpi 496157 BLAKE2B dec8ab681ba3082ade0bea45c04e9bfc1b37049da2f9ae70559f8e6ca70b4e7d26c7f815b656964477fc332a156e2a929d71dea416898e977bf3d4b8e5c4f6a1 SHA512 6e45eb1e6194c6eef26f34f1760dc89c248776f2f61e7093925222568d1784c1927a4f038ed036aa30d0b3181d5324048c8693df6b5082ab35a34b46a7bbe1d1 -DIST thunderbird-146.0-pt-PT.xpi 485443 BLAKE2B ec8054119bcdf7a23fa9250fe2e4b831448e3495752a1ec7163e2bea9f11d3fd95b35dbd05d2c186e3b829322d94e96304edaa9651c2c7d16c43ea4738adfe4d SHA512 826ba15c1ee44981b3ebea8d470b39c409330a66c62eb6060c1a8fef57c1df5a1c12018ad62579a4dd0d4334ea77cc535cce2d819bdc404746123e038ab5a3ef -DIST thunderbird-146.0-rm.xpi 487493 BLAKE2B 6ccdb724adb02ecbd6cfee7c6d0f310273a62bd2f4ab8ed63e8d900b78b1600c114b6ee83af4f02c9fd15c48834617aeae957da6fc53bec621bab293fcd77464 SHA512 288be0b19a29402762c98b3392b4be7fb346df4fe238f8b0b29177fd56c6367e6d96d0994ac49f5672c2fe8297e27e70f907c83d679f61e003876a6738d96684 -DIST thunderbird-146.0-ro.xpi 492284 BLAKE2B ee73a894ccd15e0b317ed25c82cb5824e3fde9758d1b0640120879cb763913ff66b364bb62ce084d1229cf561b16a083d3ccd35236d24459aa008f27ac70bd06 SHA512 bceeb7059c7384471c580f3f441017ff1268da20484efdc3de91c1499d62c0f15a7a2460ded0f06007af0c5985e91490803fac3ff79cd6e14cdb398b10c4f5bb -DIST thunderbird-146.0-ru.xpi 600245 BLAKE2B 679a982582d37332d5cb5597ea3b791dff2c21f915b4bdeab78068b03155bf70a8367e01f62cb8c9ef01d6cc4776af9c0c3fba2e4ba78f57bdc7424d99d8d19b SHA512 a9e7c75d8a1ab7ae7ebcf59b2be11595b7fd01b186fab89827d2888d2777bd366f8c7a193bab559ad58eeaf9b4ba379a93de4996711ed4297ea172966cdc78ec -DIST thunderbird-146.0-sk.xpi 526271 BLAKE2B a48a12411049e787b61de43159b1b0a45aa6531179bc8cdce107475cbf8bb3e178cbaabca73c9ec5e499f183355fc9d928d1e8d4b7331984a7294c96a1f30f66 SHA512 407ceb692673904f470cbb587c3adc6062238e861f4026b5cb2cb486629fa335a8835be7680160db49e4d5006849281fb88622bf9499f6eeb3c3ba9b2ee435c6 -DIST thunderbird-146.0-sl.xpi 490002 BLAKE2B e0ea093db73855e2665a770ab342b8eee2bbe34f3dce042727782d9f94c5773eaff3e76014f7351f48beca768a8ea1faae5c83ca4bc8dbef500b5aa6b122cd1d SHA512 a540f8569a9a938b14f777e2fb0924abf7ef8c4ae6f90842b9ad8bffff1d0fa5c3f9f8b56c52575361680bd0698c435165e770cccbf907b45cffa86b6ba747aa -DIST thunderbird-146.0-sq.xpi 512099 BLAKE2B 1568648b3ff8802ed61ca667065a7f591071e860b8e7dac565fb15544b7e56b0a98a66b84d0d882e92a2cf21d84376473972587353d23fe1f3f7d91b2a5b683d SHA512 13f63dfa30cdf8cfc13e85562c7dec4a85ece5c593cc7b55104054d18ea1b814c43c8ceee68fd4a5008ecae8c9a3364e96deb8a02f7a22471104c06a468b69da -DIST thunderbird-146.0-sr.xpi 492958 BLAKE2B 09ebb268a3fc25c8130f3dc70c326acecf6c5a48daa6ab08256f6cb2048028e77b1e32eb20ec9bbbc947ad67004422b152a1329f3dc2ad258156d1059651f8e7 SHA512 1577c73f02b8e345e553409f7e239356a0defd03bb3789fad5107ec0e8d00d8dd2357f064bc6c91b285d7d1b305fb6c986ea037516f0166d26bcd2979dbf6b38 -DIST thunderbird-146.0-sv-SE.xpi 490314 BLAKE2B f861897d7d7bdc18b38b6feae3af7b8405c251c852ed56da391595971ca1e5204b12b1a0cc279337e14ab60f99b7c8064f67b55feed1de7630469dbd88b86f80 SHA512 49ac2f76faf96981962f70e99d2097cb7c53b3134b331609b6a476a11614162f19c3093c8c200ce0cd66cb94c3c8a806ec7a996c9a8999b2ee47b375c574dc96 -DIST thunderbird-146.0-th.xpi 567513 BLAKE2B b6e46b86e73af8786e6cf66de5a043af4fe39ae6f1ac79e5fa32281a6d782141da08bad0752830fad0a607e54a9f636761058c83233ea599b6f1004c1ddc2f3b SHA512 4119fd1b04d1f8e51cca0d03e36e9ac70185698b6bba659724a709055171856e04bb468dcbc09a0374479d904917e32fe53fbb7a869dd90109c650a8d1703ff2 -DIST thunderbird-146.0-tr.xpi 501719 BLAKE2B 73a04fe8b20123bf6502f2748cf4f70b69abe6e08f940782abfbf6b4d0c66c4e232b06b3ba1d9245f8429c491d6e4ffa32aab41173c7800c1659cf95454e7a7b SHA512 b8c47a25c277e18491a242192bf681448247294febabc54c7cc9739b9e63a97bdbe257cf5e42e5596c279b4e729c6fe1f5373705ac5b2e268eb67b1cd2143182 -DIST thunderbird-146.0-uk.xpi 579201 BLAKE2B 1bcacf7a2b7db6628aef3ab061847eff150c1a218a3bd197583e7d07d5643b34d732058db3af92095f19444aaf022ae517b363724fca4fa56a887190e32e9844 SHA512 4e9d1f77d2642e05417a3c8a8f626033253e3978ca57bcdb3ba7cd693b95276f446436a5e4f9c043f79fd1ad25c1b4fe8f28e71c84f02349f26768d43cfcd256 -DIST thunderbird-146.0-uz.xpi 352670 BLAKE2B 235ef09c9e8b607991758468983dfc98bfb8bd190295fa77c53599dacc2877cd6fbff98c0946b577b6a52568203fdcc71537f2aa806c36294c6cddf03b4a7eff SHA512 1d7e5709ef101ac7c086dd53e6bfc1d902414a96bdc77e7b45d36a1764a50d62d4c060f1955456379d56c4182f264904b780682d7e6a0ae02569b3537daf03c7 -DIST thunderbird-146.0-vi.xpi 524684 BLAKE2B 0ac58c75fb3630984477b8a2f71a3e028e07174f19a52c701deb62ff1ce9d90da52f2b2395c8f847f0d05d3fdabe6bca62e66a033afa0e450626f6f453ab7afa SHA512 0b983752312b83c7c6bab36ecdb744502483501fe72e05311a16fdaac6d946c1df1c8b61e9ab77a70045a18bc6657251e36deb3d0c6d28b92fb1f465f477e138 -DIST thunderbird-146.0-zh-CN.xpi 513420 BLAKE2B 96925ae9b65a7a6d366cb77b6e8cb8a9b1a0c6ef1ffbae6fa01f66cf7881e441ccf1b24c8657397fb85fdf4590cac8217a8c0147e931353bc97c6505590ffcea SHA512 53f521826c2f9a391ef800ed6e76a65ceb3f3e5e80a7e06741db2322db80572728ea657ec9dd5ad865a5ffc93075a8a1bf096ca37d272b77d8ee8872035b3dd4 -DIST thunderbird-146.0-zh-TW.xpi 517241 BLAKE2B dcddb768702ac5f62604370840aaa5d24264e50213eab9021615e56a709953903a2597e96f28aef8d0833fdaaf616e008160b19906ec70e63d4d0d77c003c880 SHA512 2e2c08e229c7fe8e19bf694dc5870da6c3cb74e3e3355d5df9b620f0d91fbd09ec348e084f46a7ef52c0a483c47c4451f66470d099419726d4f61bf807cc3c88 -DIST thunderbird-146.0.1-af.xpi 312106 BLAKE2B 67b39b9d237d0d699e612de41d0c98e95419b3733750cbb991107d5a802213a44ac9893398f5b9918bcfc42870292ce80c375cf98c6ce14117ad521ec4fe78f7 SHA512 c46c6850d8be131a79d0cd513487e4b12f01c91fc36dac58e55b488031018d5d212e70c3193896ed6770af2ac5744eedf8a3ef0b873048c4026a587e92a40dfb -DIST thunderbird-146.0.1-ar.xpi 433917 BLAKE2B 7d920780b545a2912412e067a5d59ffae5ebf326c882723649443b4b181cf9338d852062e8751dc4e65586705b101aa7b13c46cd82e87dacf877579d08f42193 SHA512 b61661f4aa47d658b454602f16a3f4fae5874f75e5973c39f969c5e06ebcdba413b2c7c1185c27582d933d9c1361ff994a529e682131d3ccb4dea424e8551f1f -DIST thunderbird-146.0.1-ast.xpi 336131 BLAKE2B 68db66b551cea594d159b24a43db686fb2090f8be45d937af36e0cf673a022e54823a52ce2a6249989aed713333515c26387a8f61f24e789b84a96b7c901468a SHA512 3dba11b0997ae5892b969f54e418d3b9e0f4f4c32d894a43a477578c0849ce87c4b51d0c0d3a3b1213472fd81aa057d048a789b5bddff7fbcad2e9b5fc4d8fd1 -DIST thunderbird-146.0.1-be.xpi 521693 BLAKE2B af9525d3f72de92708a27514570957b44220ecbd36d19b6814892ea662c4a1c1c29bd8d29d32f86180efcfb965ff50cdfbee587c77da5b7ab63f357376d02f39 SHA512 b08d3c71f22f8e74cf3c2cfb7866f54848967a6876f15a94351d2a6222f9149bee7f96d2b7570a0309a6529d4b4797bf1f879b914e6d8140ad38f30e2d107ca2 -DIST thunderbird-146.0.1-bg.xpi 542826 BLAKE2B 9164ef4b139fbf9743cdb76273f4f5004254811bd23cb795b6ba986c7ee21b6fa7ff764c0e326e834440b5a0e0dc173fcaf88f0afecc93ae575046ac776b5aed SHA512 2f476544a17a67ee7457b934684957d97810d42af6ae012f96b057efc4f83b0964a1e4055e22b4104d198317e52b99a27a374753675018ae34db87a25af63e1d -DIST thunderbird-146.0.1-br.xpi 400964 BLAKE2B 59ffcc7f138d67172b1d52f5f5ee11cb900ab9550e226f95b6de1ab2de0e6c837e9442392b45edb10dfb796ec42612ed0f0c277d99765812d5629f52d52e3bb5 SHA512 b366073b6d1cf6f6ff18726aa50e2610d1269df7fbbb057414d368c4e2182d9e72be104b40e6948063b4e2f619cf7e42de88e7bbe5c570756339c587b59d5728 -DIST thunderbird-146.0.1-ca.xpi 438175 BLAKE2B 19fcb0153f04978bf8fc72f2bd16fc61e606f12a115bac2e1eee5b100ce73c2f64f610c07280d2e07a1d9bb3f249597bb4c0d147531baed969a76109d7888f8c SHA512 bde2ed3a487974b278ad8ca3e9fbf7ec654e1b371cb903a72e08080c32ad2f2165dbf75f92be112a3fcdf84f4233e6b912349156712b641b2d1c7e26e75782be -DIST thunderbird-146.0.1-cak.xpi 414593 BLAKE2B e8938b7512dc84622385525e8db00edbf3e377350af03d493def2abce689df4eaee4946dc751b3b5702a8f8bef053c965c7114b419a82311357afd599349f3b3 SHA512 021e712ad73331b32dda5a3ecb28d961211c7259659317fbb002e6cb7006f08686f089a281421caa3ac899ca7be6ab3162d426df5a66270876d089f24b7d527e -DIST thunderbird-146.0.1-cs.xpi 526519 BLAKE2B abfc27997a86939539069c3db3dafa0848c575d08e7f2ff4e2b35d75955cc7f4d9dda07fbf93f69ee2c1c284997d4192eea1e5ea384df6ce4bca20e34ca93d1d SHA512 92c5b76f720f5091cbc14725e8211f4690a5291dea1d5b816efce56e2ee4ee2b3c50f05f47db896567cc036f9f2480cfc298c13c37a13a450148bc6f3b662df0 -DIST thunderbird-146.0.1-cy.xpi 494123 BLAKE2B ca18f09b0a794cc3e36fc08cab86a9570f81e9231663dd409fb23928a4e3d9c80e2677cc9eeb288c486576983d2451e337f802585eb67be03ad1ea93054b9565 SHA512 8f3b72cfaca48e739c61843a63068a815baa97083844d6ab44a40e770491fb0dae7b6fbf439364e25e4335324e5d7c85350c32cfde14a138ff278813da26281a -DIST thunderbird-146.0.1-da.xpi 482470 BLAKE2B 9ae07f4ccf0dab18b9f03f83265caf8a055aa4d21dd43d526806b0b8629085bc530f612c6cd010d1923480d8e2788bfe1846b6e036b9cf3b799de684d14b8953 SHA512 8daad513580c45e22c1ae21ebacb240324e45d96601d075b8556c790c8f9ecd14aa265e442262b2b30f05e92820b467b385d4d37805c8927d7b1138ce7465ff1 -DIST thunderbird-146.0.1-de.xpi 511100 BLAKE2B 58dfb7516acfd9c86bbff913b2372728aaf96f42d195bc7ede097a28ee48852cc36c5be78afcf5007c73cb128a6f50fc257d903fce09979eebfa98df1d892909 SHA512 05251288811c0336d2a04635f64e5b2a5fd274c33e23cbd5d44957bb3e33e04527e38b97974b0f0e75f62c16ed4015573b2c79753f276bd74181be84b5c4cf59 -DIST thunderbird-146.0.1-dsb.xpi 524189 BLAKE2B 8aa868c2658096e25a292cb2b753180d3120a914c24b02e92bf8aef16595d495c7102384314b886ee99c89d096b0427bc585df8cf68d4f1916c729beb0a90e56 SHA512 199cd18ff9ca35e32361d2816b79a15f2f1a257905211dd6c7883f0edb66aaf46a804b59670dce455fc2352431fb59b6c6654b227335d1f5f841a50a972e5c10 -DIST thunderbird-146.0.1-el.xpi 615880 BLAKE2B bf851154718a98316d52fe16916d11c2a92b0f49e28212ba5cc94c24f3367952aeb038a7b1b1e6e6a26379fe59b9e7831494b5a29e9cb212ea9757c08cb189f3 SHA512 b985768dde161defbc50b22db4b0a29343683130d435d42f50b10372b872b997ead8d1ed4b0070b6896ce0fe2eae29dbcc5667c7a5e4777c5f1f9c6ff4176b8d -DIST thunderbird-146.0.1-en-CA.xpi 457748 BLAKE2B 1ba6c6fb33bd70f4c8e9163e993de8d715199e6e39999cda436f120ebf359b40754ef8873cc5e8ca4d6a69d2840ef1349889d8b8ebcdfeab35a3c8ec66292f5f SHA512 5bd01b3f9859817358b29ace468746acc586bbc8e98e4bb6c820f93ec61cc859b83f2d178be29dbd6f46a1e6823f1ae4810c9e47b5d2a05f1e89de0ac86a2fdf -DIST thunderbird-146.0.1-en-GB.xpi 457597 BLAKE2B 514332c7e11d8a5ad899daf90123e90987f3bcbfcc692f1e4a820b2f3649be20244ce5a659d68bfcc1e8401476df16408aca6287a4bbd8182e83639123dc8a16 SHA512 2bb42534cf1d8eda09b512799590f96b2adfe5c8873aa951fc699f57e15fc24e5d90dc154920b363753dd6fe8c433877a3c19bdb53021aedec6c336f0ebbfbc2 -DIST thunderbird-146.0.1-es-AR.xpi 501280 BLAKE2B abf72f1ce2176112193304d92977c38867ee8eb44d9c062b7e0185135bcfe5645e2fd21046331f95a5738d3ccab4e955cb0b4d279ba5f933ae1c0cb809c187fe SHA512 6aa553211f28b160e5de12de9e864361e28c33309c5eb72f84e9bb10b21dea53b49af170daa4e7706806634eb467f96a371c44da4dbee59f6bf5e41d1f8b6fcb -DIST thunderbird-146.0.1-es-ES.xpi 503406 BLAKE2B 01d5e73bdfd0f373cec90352ecd26f7a94ee8741b56f27502633665c448aba41dab6400b42c044795c01745a649264dfd2183b74497ba243cbb9268e41e7c740 SHA512 d8f17936ec6d8214e48369b98a9c432c061756c4a5c72a4e9b4c3c6d0fea90e0c5cfcbef0d69444ae851f97d2603f4d3d81e962599213f9bef6226b2bc56173b -DIST thunderbird-146.0.1-es-MX.xpi 489584 BLAKE2B 15d9df75ab0c1123c8866c61442377871ed578b52a8d42ad23f67247318e2b8c56e21544cbb1b72dddb36e950198f9e890ed5569e11d3ae5b60acda83017c4bf SHA512 a770c3c1d011f5a07de66fefeaa653993ef940b2af377045ffcd92f6792f43968b85edb769e5d8c2593374e0332dba957a294a648da356a52e2c33a3fa410984 -DIST thunderbird-146.0.1-et.xpi 441174 BLAKE2B deaf83d00a18d2eb5cdc82a7b7794661c6cc9aff90e8573743c9c9fcc6d9fb9fca14407e07807b368f0229a3dded1542c7ea6aed1e5f7ba0e2b3f327a6f52176 SHA512 99d993abfdda10a26636d4f43d9fdf16bd95fa737213da0e4d5efbd779ae0941a429e74930e146c3dc9c091aec253cf9ce2ca05b35caba14d45c13982ee60053 -DIST thunderbird-146.0.1-eu.xpi 475562 BLAKE2B b66731c70c4239faa8e61a6fd606db00a687d8ead7468f403f9983852d83fd41c0f0d1671870c5fae2999dbaaeaebb9a66c0443f2a932f1f950b52689618a317 SHA512 5dcf3e3d4be256b344ba9f35f39e117bd638149e7139bc2baf2ef8b83ddc64eb54991ae0ba94ed2d78a7c50be7135514135d38bd1af40d24598c382993f46549 -DIST thunderbird-146.0.1-fi.xpi 478478 BLAKE2B 1360bbb40762f8c4b809a667373aad75ebb6a7288dbe2cd047412be2c7ce8e4cb428b307f3c8d9418ba4793e63bfa07ca9eed9098040a64bad07791345559f27 SHA512 a51cdc9db2f61ce247a433fd7b45233e4623416e6e708cea3dbc34211da1cbe938354cadff72e18a494c1e8a102809d6fffd38bbdff83ae24d9f1620d0496f13 -DIST thunderbird-146.0.1-fr.xpi 514484 BLAKE2B a7467991a52cb190d4d57c0af47a74b15b4b28697ec941f1ac1d14b549e5801e7f87621490605eb5f7b611e3fa73ec29be4e6f0a6af1d9eb60373ccaf310338b SHA512 e0b9078568f7432dd64f21c1956854135dbf4562eb8682afb4e01ca658aab6fe7fc283a8fd5358336cf1bd3271e6f9d869b6bb45830fd5ebcccd3e30b154eebf -DIST thunderbird-146.0.1-fy-NL.xpi 496788 BLAKE2B 3a1c2fcc9a31c0a844fb8f843972f192f8b3c32a8290d98c696457849c7adfe9bd519ac9d615e6f24069da54efeaef666e435f9d856946f9daefacd74046be82 SHA512 878d208ac4c3da12f9ed523a57944aaa970d58943cccd28a3bca421d20d961364c91191bd99a845bfe58fb0f952a3cc6826dbd5ead317d0fbb4c52483c9bcf3a -DIST thunderbird-146.0.1-ga-IE.xpi 374085 BLAKE2B 9b49fc0b686985687965dab17b1221992b59fbca5d5ee54e55ee0859204058e9bb56825fd49fcc95a6d8864c438fcc4bf9aad8e5022c0998bfcce7ed6933dc7d SHA512 d81ce0ef82a0680f8754a68c3241b4df9c832c8bb1967d8d2fac7dfd25289d95327f409f93afd3e20061aaea43480a6d70a19b741ce937b20242ee3f597ed4b1 -DIST thunderbird-146.0.1-gd.xpi 459532 BLAKE2B 778889231201beb03bd712d9f17e7718d2484721f4fd1522ae561629ae32a16ef3d7be00a2e2aa16b78e19dd82a0f4468fcd2396020aea14c3fa81833e99e407 SHA512 b512ac4d909d983649f50ec93523695b58e355155a4f0f9bbcf3dc0bd66493c22ff86b2007d11a4276500953a742c900322674775e1ba8c2a7816c9455e5a879 -DIST thunderbird-146.0.1-gl.xpi 488848 BLAKE2B 23e9d116c8a1c2e07833928abbf74d296f3c9b4f5cae418953072fd1fcec1f77f9df25e7248ac78800fd5549d4f528552d178f089290b1594f8a78fbdc439640 SHA512 f95dc333f74ae9eaa14ca60d44626da3b8675e5528698f55ecf1b081a0a3a0aa2c3ac59c9947b2c18fe7e2418803575aee65ff14a1c8c2a2347245cf19b52c11 -DIST thunderbird-146.0.1-he.xpi 441791 BLAKE2B ab92cafadbfc0b7b3504e72a8e1ffb6d3df9070a37a7d49032a2580d25e98b85639f543c4436e98923c5c3f798b1a00a3bfba73c93f30bb68c6d5875d291399b SHA512 eedd28456357c461f3933d5b6abd610ea25eff54c279b02b98f72f59e81ac87d0b0b0e74848da708370751382396f5ae19e65640e2286d6d66c47811312e110a -DIST thunderbird-146.0.1-hr.xpi 468251 BLAKE2B 00a05331ada75eaef8e5471372021d4743468e7e05a0ee32ff85665451cdf0e6ab8058851c444c120ef415967870e00670428fc3b82caea26fb9d67b08443ab4 SHA512 a4b40911a2033bb5e3d211855e57bd5134774edc35db00d435b1f55dbe8ba6ab158133d180cdc3ab6c5acdbc606c64a84a93f5da2bf57a47b045447e2fe95a78 -DIST thunderbird-146.0.1-hsb.xpi 521217 BLAKE2B 68117cc7d9d9007b95e3d634cb2c8ccaa045d22355a5d8a9e0da8a58f51137a0e68bf5063abc214d6fd06f2036b2d061556cf26834472ccfa7c0c11e779c8e55 SHA512 42cdbe2a656cb9ac7a9c99b225cc7a62a621a02292a153ba711b0ea5876f006c226033ff8ad0bd54440faefa98b5da482c4d6917bf2d9ac6bd76369ed73c24b8 -DIST thunderbird-146.0.1-hu.xpi 523855 BLAKE2B 45dbcd41bcf438d0a69ba54df746310935f563c11fcf2246962087b31a9797e7e2e64a7885093d548435b89d2a8c7e8c78524265d2b40d1d282fb2d4968696c8 SHA512 fabb9063d508907043f0188c805942ad387425f35a2d6722c91dfd007a9b8459dba52dd1e8c8e9410bd4cb7dfc03b589d92a08a796eb1e29aa03d2a44bfa7c02 -DIST thunderbird-146.0.1-id.xpi 468899 BLAKE2B d390077a55c0e367449e3bf6a8a6c06dcb21acdcaba1c57a95c2a3288f00b2f4cd2f68835a556a3a9fc16240d594612445b897d4dcf1f3ba3d3165838d781ff8 SHA512 02fb21e73811c9ed7eaa21f4ccaae27ace2829025256c99f8cfff74901e068f2f5ef15682cc7795d40c4f5e76c3911e31aba6a5fa52a683562c5ecb0f9847806 -DIST thunderbird-146.0.1-is.xpi 485559 BLAKE2B c47b2fbcb1ddede88f57c119eb983e6417966562d8a8da9a49fb65f5d429a0861219f1ed9a8635576d86e59de64ba78cc4ba2c1be9b2830c1333d9242d938c42 SHA512 1f09555496e17d4e56bc24d9ab062aed79f6537e41d237b1a055a0df3005a2faf215448c35ba28188d5f9f32326378b9793296f90b115c82edb258a1ce847268 -DIST thunderbird-146.0.1-it.xpi 494397 BLAKE2B e2eb6f34fb522ca9de6e779790bb18459af21b34d71949746f80a520404358d8a9f8def0afa5a3c9ae8aa576273443b91e8c104c8644cf53cf725c7da053da73 SHA512 91a88d3c867f05af14108ff21ab4127a5f4a2cb6c50267fcbfaf4f82ac14185175572a5b5e6a8dbd63eb373153785c1cbee3adeec5dffefc7e7e2c2b8d387e5f -DIST thunderbird-146.0.1-ja.xpi 545491 BLAKE2B f63e318611debef6e87ebb302b89ca6333665b2ac4ca4d2e41055bc1c17320c62eb06cb158886adcbc5a345a01d78bd77a9838dff74f7946c2e002e4254f9e9b SHA512 e45729e6bf985e4dcd5bef36637e40e4e239700cc0f4ee3bddfab5da718924a02429f4997271d34fcb9d9ad4e232985804d6a57b65097321b380555ace78d99e -DIST thunderbird-146.0.1-ka.xpi 561847 BLAKE2B a1d64936a1dee83ffae8478769e541f27942d6dc1c45ef442bfe8cffa6f4ee2e0100c83d466816f4ba62934e9a00fc4b4a420492434cd72a938e58d49ca628dc SHA512 0569397b80b67b6ce32e8d468c3da28f7145c899e90a0659e4a3e1b2a6d07e816f5de8bb4cbe928bf9aec8401706c1c18b455f2aeb67fe591ff79ebed26b3d65 -DIST thunderbird-146.0.1-kab.xpi 468988 BLAKE2B f33bed798572a978901c1b550055e4f4678af51aca536bf02780410f169665764fe40bae7058fc49dc113ec9ca6bc48773f7c6db1632ec93c29373823ba5ebbf SHA512 645a4e250242c3e9f79700fc58087a4d268d6d1ccb096a86a883ed838a6de3f6b648ed1c4500d1860105e0c83c8d0197b13169b08578feabe6c440a7fa4537e3 -DIST thunderbird-146.0.1-kk.xpi 576172 BLAKE2B 0dd7ac284db76e590b52fec5793bb194681999d2ee1be3c106485f3068791d3b9eb6fe86a6eb95bc8e26dc1b2463c91715cc2516f538d74dd0efc115214191dc SHA512 9778f8658a1ec85a045079b88dff13874841d9ca37644c8751af4c2cdda1eb116653dd86c0f52adfa3730c4fcad501bee7d8ade025c2b6f201cee7adbcd79059 -DIST thunderbird-146.0.1-ko.xpi 518739 BLAKE2B accc435fad96caa9fe90fae93f8d4b33c4ff8656be6bd5021af4da4786dde0a15b815f9ba01890e145c238c78554c45b9c35cda8c8aea58b984cf7f98ad2b4d7 SHA512 ee0235c0e136d33c41edd8fe53df0db5d6401c1623ac6c6d56cbd28d3dc9133d3acbb0ca62a6ca245c93e90589cd644deecfda0a81e4b234c049450925ace46c -DIST thunderbird-146.0.1-lt.xpi 450966 BLAKE2B 85edb0a76a9bf4e89dfe17cc639c53da7b30a422b0779dfecbef73c6f3c311f4bd4acfe5b74aa51c24813d921144b380d92698dc86b75816561c785662bbcef5 SHA512 ee2dc422783789a4b06571b600fb8d880f3ca6064a6c82394d8d926992240b7b44b6072437f41ec9adde7517bbf3e6ef62d44f7d0ae851af0ef8a5126698e4de -DIST thunderbird-146.0.1-lv.xpi 388652 BLAKE2B f0b047e0674dc5e9fb75df71e76d94bda236310b79e7f52c1542676e298796ffe3f44ce5a0a13dd59942e60b5533da12c8f96931f9ca3e7c77c285a5b1f19034 SHA512 b050f16effcb7f22bb95bd7a922aa421a6cb053c2f587bc19790eb90540f1f23562906f27d942b7a0528f894f522655006a9c4aae69019ba4e77d40c06b21224 -DIST thunderbird-146.0.1-ms.xpi 350381 BLAKE2B d4ef7cb08c0f7b9331044bbe47827019e205bc11c64973624d4979cfa97879168542c959fc073f35243a0a956e0f6cc7d578eb31e59c19ae3a0abcb3e2c7508d SHA512 3124f7aa57a91cc759a9a2b48dc216246d18ce5b698b3bcd6c1ced9f304e5f5f50ad7e3706819bbe7c9fd47f838b16262d7069f754f7572e46d61b4b7a73499e -DIST thunderbird-146.0.1-nb-NO.xpi 481934 BLAKE2B a9c1859b639775c78764718764b8bc2c03de5a149616ea5432fff57bc45c59ed30332b6862d0c1e65ff3b02d28660288dd252e8bbdbf641426b6de3fc370ac25 SHA512 0d6bf553807fb038e0b7496f2d70e44ee67914eafa5824364f188ca00b4169a6e2457f79f97be2f7495a59acaffb140704c559c57826077198bf356ea17cd5f0 -DIST thunderbird-146.0.1-nl.xpi 488032 BLAKE2B 01b2cf7b5feaceef7c4ab4cc0bbe0a69a5ed22cc0ed51ac100d13e28d7552427099cde8440a0d550189547ad8b8c836026c91461864caf12ac244e0abb40d43d SHA512 78f06fcf9ac5a12eef7cc6bfc877e303656dff1d4b86590202097cb34006bfe27e131408648d7b0d9573815071951b9af22994c89e916dbbc2352a0a14adebed -DIST thunderbird-146.0.1-nn-NO.xpi 484390 BLAKE2B c2baef77928a1374f88130846eba6adff07ebd46a30ae0833e3fe5d415d28767440ba45f4b2dc3788aec18c405d17e084e971094e104d61ff449e73d9e22412b SHA512 134a0463797e841a506bce38dec2d378375fb97be7a0f2ca02b6d098f035608a1004ea266e8221cdf07cadb55fcc5ba9ff49dcfece325fab232aa1fdf1d6f694 -DIST thunderbird-146.0.1-pa-IN.xpi 433836 BLAKE2B 718b9a13aeeacb9fee5f45337340a7f5215cd2a8b0889bf5254f82ae2de2fe7611d45d748595d7e838a960ada41604fddc5a91563aa5e2e1d3147201f067322b SHA512 c7bf2e232a2f55ea1b29a5e3f4e59deaa71e119e213a9d91a24edc94ede856c18c2d7a925f2136b59c5ea044f1fe23c64371b0b24d4ad245fa16919b9261634c -DIST thunderbird-146.0.1-pl.xpi 521917 BLAKE2B 4ef7e91367e90aabf1084eabfdf9a4fcb446581f2c91a2ff2318c83c1ab120d8484bc1d6f92be7e6a318fe6d4326a782d3141f836a7adc4c4b1b86a40b96911e SHA512 cdabe227d034c9708b859cee7ffbe247d0b0ef8a18831c3c55dfdf71a097709b4140a9d9d52778efa4747c2590be71b28e7d1e105214e083f14f1275c9219280 -DIST thunderbird-146.0.1-pt-BR.xpi 496159 BLAKE2B ecc4bfeff6f0440f0aacbd51a0b6ba6b7881bf9157059904c9157c15206d0fcbd352eb5d8428e94decf1fcf4aa9ba002d27b50733494265ebeefb12726af752f SHA512 dda43b878a085097581205eba42600479d52f5b1a0c12c46301a24ae1515029478c4171e3db3db7a17d8977cad879f04d66b7ed67927d98d2ff91718de539019 -DIST thunderbird-146.0.1-pt-PT.xpi 485445 BLAKE2B 7ab27252bc61951ccdcbd70eec41a1932ca36c917c49d268884a1187e2782614fc921f389dd9ef7ef8cf62c6acdd42dff3a307012aa21b81fcf999c9328dc544 SHA512 d408295e9571a4cc498a63f85958e80e22143c12e9040d6ede9383744fbccda27ce3ff81d5cc275eb0fa391fffaa7f661b4eb0082fcf1c0abb3b2cbfc4400377 -DIST thunderbird-146.0.1-rm.xpi 487494 BLAKE2B b59c2723f0d6a701fb055c6e22e08ac8a6d1225d96cb50ab481266ebbaafb524d92ad9b71258b549f48a42708b5937d9e8ea0320350fa3c4287c201f1c7f07e3 SHA512 4689589db4e5308fa8b73d54f2b89d93237bef1845aedeaf4470a42f300c7e3a2d1a7968b0fcd2f4f0dacf38a6960de0cb5f463a8f52490d609907888f209c85 -DIST thunderbird-146.0.1-ro.xpi 492286 BLAKE2B a9c3755e8c40e271995609ae8fb50eafb302650c01e6d69028c33538e312850d1ca3b7734d208939295c3a4bf803a17398a5948cd57456d3594536360b019d59 SHA512 5a8db67efa5011c8b0af61a8b4a5436b1d1c166086667565f89ddf199a32a02b6c58fc50ed1c86bb4797f7e45a5caae45dba4212cf4d35a0eb54f5c5eff311d8 -DIST thunderbird-146.0.1-ru.xpi 600248 BLAKE2B 43483fa61c005ba7e1631a629b647eaf4accfbd66f31310dfb28440b801a6fd96b38012e7b2d7956fffb4e38a6f5345583305887c0e57ae2f816ff00aca02bc9 SHA512 6157f07f42e7b92788f685e52bd6418e4344dd399c3a63255831c6f8962f33d62a016201bc7da57f97a2c81030d83392847985579a030522a1265e38601e2573 -DIST thunderbird-146.0.1-sk.xpi 526272 BLAKE2B 33a329a49e0a2f3394d4ac827217887a0bddd5ce05f5d21b18677a194902884ec37f44e84bf9063f21eda1df04e9d5f1e0390df2fbd67f89add8976577901d72 SHA512 bf8464c9c009f837bd6746932567af06513c22e0c11305621f4b90f8b16a553c8001d478258b08ce12ae4435926f770792f973aa769c8273529a33b7318af401 -DIST thunderbird-146.0.1-sl.xpi 490004 BLAKE2B 3d50b3d83d68958acde3c0f7a5bc7529a1d0b1a054ecf1f4f7ce998717fa724d65b370bb83e5727279ef5f75f6ecf5349d8fcad689123e251274c64e8956abf3 SHA512 6cd39e46325917e0049d402e94011b4843d51b51ee33a8c09661f2a1ede9ca75d63499682f2a781545a31f968bc977e96e9c53d976c1d86fb3c65c3f8e7427aa -DIST thunderbird-146.0.1-sq.xpi 512104 BLAKE2B 02c359f7ad155b27edf9fbd590ae823c489e66330436f52af24f279a7253e927bef2c80c2c00553d324ad2edeb039530a7187424a92e88e5daef4287c0c9a7fa SHA512 f69351026f782c0eb5be19c2639f4ac5ad55d6f4bb9853299b157866893fcedbc7e8bb26bf247bd1bf776a8413bb847059e51e3875db97b5aec13246c3ca8f77 -DIST thunderbird-146.0.1-sr.xpi 492962 BLAKE2B 7314b6dce2c6147b81b60bc8ff78e300a20dad528adcd499528789a2af85dbe90a00b6de94c9be1a5a34cb0092f947181dd04ae4a5cf44d8ce3023d3c2f2f492 SHA512 d23fc374b4f6ca08ce3af35cb5c2ebbc4776de61777f7a74716fd9f93bcc7948a578c6b91daeaf9452c2a5a7f6b4d5718b06e221e4ed61010de3260cfc4d5008 -DIST thunderbird-146.0.1-sv-SE.xpi 490314 BLAKE2B 023026f02eddaf4cb439b6cbf79ea4e05e0451dfbcf441e1d1c21e7bdcef8c0ef1610493afe8b87b95785b80980d79de305c3b81e2fbb14fb3d3a663676313c1 SHA512 b2b7a48d8f8959b570c0d1f175999bae8598af06c5ce431dd92b1297893c871b52e28760fc53ff20f0c75975277cbeb51fe27c1444dbcdeb0d51a57a10e91b9f -DIST thunderbird-146.0.1-th.xpi 567514 BLAKE2B b81605a793bb5e36af65d9c197313e0438041865d400f1ec71911812a325c634c449cfed38980f064edca65748ab90ae114244474ed6d9f0a8ca642f2b5258db SHA512 8759921e9667764520740e8b627e52bcb347570c3ac3de368eb9d6c50071518d799d9183d0248e3c04b3c50118d2e3391bd03d0f05c853b61e6d8ff7b1cce8ed -DIST thunderbird-146.0.1-tr.xpi 501720 BLAKE2B 88238c654191bb430a872c1ff55bc1a7719fd94b33b4c8a5b84ca4a7dd2d47cd8050bb187be67a97d54cc3ebce6a97c40cb2d813f30dce95d73a8eaed6cee35b SHA512 f7e9e2d537d341fd2b79351cf039285d6b49838ad779de76e2c9e7d4e2cee994415db483e68cd012489bd6361067d5e86fce1cda52eb45d18e86d8b48c6ff42e -DIST thunderbird-146.0.1-uk.xpi 579203 BLAKE2B 8c577263ae25fbb8d2fa9f29f7a9c97399e7b50294e7fb8aaef5b869623b0bf75e459b46d8ec0a55620b802f6fd19e0029ed15a5346de9d27f2f6dd0c2873173 SHA512 558da39b0fb21b2ac5876c8ee5581b8b08b57aa5c8161853dd16163dc2f627a9ef5a35d6766fed7f00f8bc2b2191ea8ef52e6080953d16fc6a82207fb06fba04 -DIST thunderbird-146.0.1-uz.xpi 352669 BLAKE2B 7ed6e43a207f3d55802a3ee26a44c3b3b77a77a1fd3ae4d97bf9e197f9338c9b69635ce753e262af1ac5f9765458a6b01e52f0003fb044a910e95461508a187c SHA512 04048b5810fb22d3699ca09f70a5c7be3068093a01785dca60165857e72288e5fd1ac1c0821353658d7219204bdab648a67173b576c7cd32043a82c4eb483400 -DIST thunderbird-146.0.1-vi.xpi 524687 BLAKE2B 1c9554c217392b27ce16dbed960e1f39d0e12abe0e39ac8296080ba039ce7ea75a5eacbf0db673bb6b53f9ede242500fbc304bdf4541565b21b68f1b742ed924 SHA512 7a298d4a816bf2a8ede4ac299c7c2e800ddfa0726aa88f42fbe089461bb71202eff0d2b170dbbc79dc161b467b547c0c282bac3e6797e8eef561c4cdb5a34ec9 -DIST thunderbird-146.0.1-zh-CN.xpi 513421 BLAKE2B e74df18e649754cf5f72eb241836c64603257d8ec4219887c1eb5778636fb7b4ac46806538ef09336bae1eadfd780520301892665c96748e1a75bc60f06e67f8 SHA512 9bd0b24efdc7015a93bf523de39435d4f116ba114674ba97677c0d047e32b89e0d028dd263e2ee5e1283666bcf99a5bdd59a1cc1e76a3f802f3958dd020833e2 -DIST thunderbird-146.0.1-zh-TW.xpi 517243 BLAKE2B 1c52bcf03653370927fcc82bb3664a079468d352071d4bf69105b2a05164633584740e7b61717a6017bb78d0f90b2fae977f1bcf14bab6dd82ccb676696c3cbd SHA512 051c8b0a55b8639c080e84a30f31fe09418e9fa877f3e659fa7c67e47ceced474dbb217b7b31af6d10cbf426a190439f747b1437875d8f54c6291f15c730654c -DIST thunderbird-146.0.1.source.tar.xz 781793608 BLAKE2B 4b3851dfd699c8652e65e96a64dc1659babcfa727c2931fc1392acccfc3fb7f555a69cfa152d37a538eacddc5230a2fc67fe2f91cb697e30c564e9da9593e71a SHA512 8a3b2de246c7c597574fce596836c7ef7b24bd21573feb15c308003f34b82335ad865aa0f81b24d1669c8023c0448c0e273a63019aab13356b023c2e8adc2c47 -DIST thunderbird-146.0.source.tar.xz 775218464 BLAKE2B f45051ae82cf1b5c163619a28e8a356e4a32f86695d1a5f49f3137818dc13a3fa615dcf586484a8ac35d845c709cc9d1c194b4f8e8f5ebb8224958a9487b9d7a SHA512 b135ba414f08e2867466e652c6bc5d2b9c60e047fe27e855e7373ab67940d7da8c6028b8467b0b449f6c87f13662375220b70a05570a87eb230e21ab5ed5a186 -DIST thunderbird-147.0-af.xpi 312140 BLAKE2B a64fe3fcf2fbd31b611b8ac256c583f00dfe22570625d67ea9d09262a43d9f606027c0d48cec432b87c4375635c574158b71d81c732324345863894da6cc3caf SHA512 f7359dd68984f2904270912703e6d14bece1af9cd100a8d0d886069951b99bed221247d3ab4edd6a8a90250bccc0ba28d7c33dcf47088cefe7b394187998463a -DIST thunderbird-147.0-ar.xpi 434056 BLAKE2B 89fd64ed7d762c3968abede40a87f86dd7534e7889c69573bb1090aae2c6f3a59a1abc844b495364f6a631b2a4e79cffe307b7edd74308c5bd980934d2f510ec SHA512 fb2f52b76f9630eb7f9373dd4bf1339daa0e9909e3f2f171596c3345eaeec992f547062b346ce0705980f8c79d3a3d37262dd960d55afaf1d9c53078ad74ef4f -DIST thunderbird-147.0-ast.xpi 336204 BLAKE2B b32e09d2bc3ef5cf0c156f107bb808f23a682b353323c4402c9a7d74a1843a18408bb3d64517048b765830494fbdf1609d52a67577c37bfa2b987bfb00ae6d50 SHA512 bc864cedc8d4a259fdaf6ff254369eff2ce9589a29102c3050d69e52c8013cf971a02030f07c2b55c66fdf35467f818aa06534736ba456de2ca3ab7e40678159 -DIST thunderbird-147.0-be.xpi 522285 BLAKE2B 7a106f1c40b11cd550c18adf075a937812c8c23750284bb9155e408f08c2b5e90002fe8bf64255def2088dea9983e623d2d1d209ebc06526fff6f68b955240e7 SHA512 3b09e50ca58282dbd53c7c31ce6fa0c2ccc1d89ebdefe8a91168416655896c5fb70177ba4a4826b7559cb78afa652134287a8f3218d853a2c78720cb8d4d5c8c -DIST thunderbird-147.0-bg.xpi 543152 BLAKE2B 3e1f0e39a8eda767a490f7b1ef3085f6e2b8d351e673a7aee457a8a3bfdae95035ca48b5fd2c1ecd0cf244e7f86ac7e97be4a59140340ed442af6de04df31870 SHA512 1592dad0cad77f4d8710b95ba0282c6698168528e60643946dc517ae4e98c8e3fb0c12e19daf6a89fbb04885ada208b6e05881baed4d38a6435c0ae76ed82c17 -DIST thunderbird-147.0-br.xpi 401079 BLAKE2B 2946c7a3a02c2d3b7e1efa520c9ab714d83c65bd827d48c06301bb181124b44d85ee7a9ad083a4aa996f63709d7642d9058ac693075abdd4cdc317327ad85af3 SHA512 01b55b163283a6b756cbbf56c632e7d4b9efac96f9c0716be7022ed101edbf316f32727dede4045b86d6e56985d6848dd3158d30498bf40bac4861c9654f3087 -DIST thunderbird-147.0-ca.xpi 438291 BLAKE2B 0b41b81e5fb101b75950a91eecabd297d75c556daed6826e7298d30262b29da2ee943456e751891d82f60fdba78c35b3f90d56530e8be5f2f2e244df27f38ad3 SHA512 5064010337f94bc37c2bcdfad68110da4de96e6a2eb120ff05ead3a6472866ac0e70169e0432f1786ef3e5a19aab1d61b6aaa2ca186399781704ad670b768f72 -DIST thunderbird-147.0-cak.xpi 414737 BLAKE2B 356ac1ae367b0f04ee6bee36ab0a9a4f3665f079ffda3ef2aee0a5be45728a4d03ed32afc45253a9adabf7950a22223e466e46fd579ecc6167cd6b78338cecd3 SHA512 a963014e75db9564fb08b9783992fe87209a5741989e00d94d470cbdb644de303455cd37b7c033ea9116ce6799e4bc19d78df81b1fbcaea8df09e3e12702b1aa -DIST thunderbird-147.0-cs.xpi 527262 BLAKE2B 197292fd5b5d89ae1670efb5ded93102430e08f78d92f4fad3e4e052b503ca423057680fd50aeb1a8cc967eedde488fe2ed543599158db69291cbae51bd021e1 SHA512 b1f8cf66e0b02d0baef6c8411fadf5e01f24bbf301e3c636218903580e176aa29f5a10e8282f18811b0ed463e5dfda93f750c03b2161d4e0501f2e0599718b7d -DIST thunderbird-147.0-cy.xpi 494798 BLAKE2B dca6c2ab08eb5f6d797c6fe8ff8763ffbae5ad4debb244953344576da4e2e8ab41041e3b5f64c555ce65217a1e30c4bcdc0d280a4e85677a4f30543fcfd0b4c8 SHA512 4731e26941aa57de5cb94038092a1893ddebb17577a5db211050842d1a84e6cd1ee8bb0ba1dc21ad69229b39c0b4f8541add35680bc615a09f060471adcbe6da -DIST thunderbird-147.0-da.xpi 483074 BLAKE2B e34fd2018b16329982734f747d1afedcf27c9941509c882d0aa89e1630a29f3884cb440c8d7467cd25fe1961eda122b77819dd2d9de54814dbefb7de1f0d4905 SHA512 11061235549e50ce3dea252f77b65e235664df2c157c2564ef3aeb7ee9ebfb2e946d866b669c386920da08de7a232dc067ac52b836c8040802eec116f316d914 -DIST thunderbird-147.0-de.xpi 511735 BLAKE2B 0db9bf46be7b712ecc722d288f118b1c1a6d8dfa7c2eae98b6d8a42f6956cdaba34f887227b57ce705957a5341ca13a1d785af7d3e23089a439f3dcfa5d9227a SHA512 3832710e1fb64cf6b64800a0be5ce91484f01ab75848dc4551f3ea650c5aa8fe6370ea81291adb2fc39acb283674f7fe0793236a035b6ec9f557f2d2e66fd575 -DIST thunderbird-147.0-dsb.xpi 524692 BLAKE2B 68e75dac56ae280ab1d9b6d0860ff97f7e4fdcb86975881277a66ad9ab56c581447be82b53266245f58a15416800d1274618fedbb4f00fb0caec6e8f0046a801 SHA512 c1b1209147cca59cb6180754046d916d199089b70cfdfe7cfcc807fdba0a215d03474f546f88c53811a6d74a0f56e7401f5d5c265e4ac7d83a3fe92900336452 -DIST thunderbird-147.0-el.xpi 616559 BLAKE2B a074f2d6af52f7118d19615fd35f609408e77a37c11752c32a9c4a6c0f9bea71d89c264983927c3dab8f4a036ef741381d8ea613a421dd90bdca8506ef28020b SHA512 e41bc367e5c33fdf312f82365dd2df1a7d30be758886b6760e6bbb5e3f4ea1bb8597f066d2a26d4358dfadc24d06c0899984bf993fb442c45c978ba1a7edf6d9 -DIST thunderbird-147.0-en-CA.xpi 458144 BLAKE2B 9f362599c8be3f54618e2a143eb123c1037880ef8054ad127099ea723d5beac0b93d558b1dc2d8a7c15839ced5725ad25221a1686eb9d553828cba35ca8aae45 SHA512 c62b1ea8b9f2e8af2f4c80e84dc8e45c568bb2d6ed4b8a67f5d50454f419f531b2a4a310056d8a9b5852af5c195948d5509b8db040b2b3a41f8652ec56af0d52 -DIST thunderbird-147.0-en-GB.xpi 458132 BLAKE2B d9dffef5860b967705ed20090d9c0feddb4f240f289bd9cc57704888bcc8b7c12fde78656a92ad333900476958606eb68467b6d8be217490d943f15ebad33fdd SHA512 86f33f37426c1ef165bc3f6525b189433ac458fb758dfa7c26269a42cf331feb541dd378e4ba8117c9b0f0f644772c2089f92f62c29535a1823d53f42983e099 -DIST thunderbird-147.0-es-AR.xpi 501883 BLAKE2B b51ea52a55baa9e6f30d3b4249e485b5b539e79854d2cfe3c6544bc99cfc8683db2fbef209c96f3ab0494f8676e8a0bd69f791b066b7e6087e4e4273b8bb607e SHA512 6991d84918c3af88731fccb06a61673b5d0d59f7d576a9b796637a2ed59ec0119b4d93f44e6b5bc3914e198e96786232a14b46f6a262e43b7cf4a96c180eae70 -DIST thunderbird-147.0-es-ES.xpi 504070 BLAKE2B 883e4812a380add89a372793c59089ff33256447771483e7dc67a3cff128e5e5c90faf229ca2479c340b30ebcc6622bbd7c80a64ade5f6113588010845ad79c1 SHA512 1cf4b197cf9ef55cd50722c6c268798240aa85806a2aa8c142b1152964edf35a81e1b3fcb455e6ae0142a251ebdfac1afc44f6ec9ca9ae5b1a8da68f659ee1e3 -DIST thunderbird-147.0-es-MX.xpi 489658 BLAKE2B c4fc7ce564df24640842cbdfbccef51c46ad175a10f116c742ee2eaa76f2e4090468d0c28318b899ab1bbc248460a7520b4b76b2baea4cec47dd54e5dccdd45f SHA512 911a54e3b32b1e714900a89a4359c9a3963717df4bd66ae53611949584b2c9f507862175a4921b9ebd2168b10cea44ca54a1ba2df90b55d87c4eb637dada5e1a -DIST thunderbird-147.0-et.xpi 441295 BLAKE2B 8acfc9620249098b1c7b55c83bd499cf50ec955eeaadd6bd20b706296570a86b7ec87ed3219081cd65d1bf422c3230e7a8a64420cacc8e0aa811965d8fc7c814 SHA512 2b1767d27867bbc478cedc84254571bba831b27ee2a357f29f627d34b92eb6fde05f2c522b8fc8ddbacf5e0845fff9ac79dc86f917e38db10453a9814e43e975 -DIST thunderbird-147.0-eu.xpi 479688 BLAKE2B 03e250cdb3e648d800b2a2025c7ab4466dcc0a6a300180da7507ff66767abfcde87d11c749a7e0bddcdd5237050e8ec7b58d3ec0a551acbd8d7152d2901adbac SHA512 75ac5528e436f5bcf99cbd54dc287329cece5947e203ab6e110363b2847db883a1fe1b55c4064bd9bfbdb55ba7bd5619835e59d596bf8cba80beb105057807c7 -DIST thunderbird-147.0-fi.xpi 479304 BLAKE2B cb78c64c4dc9b5266e07f7947a5c90f22c4d7a9731adb9e68ddd4023443a6bed1087a8ff58eabb842e7dc9584fb1badcd8558e52b4229b6c39ddf7daff951dd2 SHA512 b84e14db13a2d99155c2c96299605b2617b5ffa88f064818b8ee48ae9b33c6c521b22236ee7a56127567a1efa42629354ddd56fc5aced9ba3c0664e86019aa07 -DIST thunderbird-147.0-fr.xpi 515109 BLAKE2B c62ba33caebad184507936f7171b36a8b97c37c2251c765a151e7bf7ca551782fc4cec7d431656583aff119e1e5a04da13cc23af579c08d8e799a645899c412e SHA512 05fcf576a949551e781e6ccb7669c7ab39a5114697ffd5241837535ae234590b2fad32f8de83c579aa07a54297be021a8d3b501a7bb51d041f67c44ca10f94a8 -DIST thunderbird-147.0-fy-NL.xpi 497416 BLAKE2B a0f3e15975ea21b3edd1ffe41014271aa822eaa0ddf2f65649989461a2c61b077e849e607943202d11c443dc0ce47f2a73abd5ee6be4fb2944d2d8d309d78d28 SHA512 1bf07ce6f51463be30cd4cfeb955e7f291dc804adde1707484a77fc0f523bb95edf0a5d467bdeffb3b6766d96aef4f01dd960469c679a616c7f12d5c26a5b0ee -DIST thunderbird-147.0-ga-IE.xpi 374258 BLAKE2B 7c742b9eb22f854a86d5e99643f61efa836119c8714c72e40f2ef1cb3fae272d29cf6cf8c8e2a24c64c7d27e89688fd9c597467316845c2e750f8ba99954feb7 SHA512 be74cd06b0577b8cdb59714f1ae8d31e12d626eba8b4817cb6ab3677f80d42c4c3cc0af7028e4730fc778fd7184a3b9f5a30e0f537406b078093d792675f1693 -DIST thunderbird-147.0-gd.xpi 459623 BLAKE2B 019d7ea6d43fa76cfadd2e7504bf1a5605a9757ec3c04a77ad76d9a502f887f75d1659107b8423a9db84f211ec97014b617ad0f31dabca3006067f420e67bd28 SHA512 9ca7bd5d622f6a1c262b3262b689647a0dc3960580fe129c988aa702e5681c22a90b517c6f3f8daa8fd8147e1c5e640ad2c7a84be1f1735d75893e7a88708c0f -DIST thunderbird-147.0-gl.xpi 488945 BLAKE2B ce2c39dbefd9914a1d11c92f3480423a0dc8846eb91883297a639f0ceb6d0feb552c24b434ced08ffcd906358d644dcede3958ca73b96d1e7476023b85e051cd SHA512 5c3a04d93823f85ec4338c59c95ef889afa31b84454d126881e0cd03bb87f0bcf36080021a8e5cfc63e2d751cbad6b524b8775171953d225a495c229322fbabf -DIST thunderbird-147.0-he.xpi 444177 BLAKE2B b1c23dda6ec08f04dc0897a8877302c08c2438cbfa330c6786b5dce016cb9eee9d96a78719d2845c3de1aa949bbfd8894e6d335795fc4b92ccd88c652650291a SHA512 326330d36db2f8e9ed1253afe58cdf8f6c285b364b561681a2b6fbb827882c673ac68716457e62297b555ea9e45eb3455341d6667c73e8cf172144ad160da640 -DIST thunderbird-147.0-hr.xpi 476173 BLAKE2B 2555894b164acf3579423d47a5fa4519eda8af073a90e351c6f5b91fbf681f6b8b5e56e458d4e22e34066d74f40287867fa9bbe955d3ccb61d4a31c4dc36e153 SHA512 cac0f1119e4655a3d77a12e0df069a93956a32b9754e5b656936f1b9ff745cf220b19de2e0738a045f5a91c84fb3f0dad4d6cc3a523d2734995e7b5c8d9852e2 -DIST thunderbird-147.0-hsb.xpi 521893 BLAKE2B b2a910561055bec22efbe54e17682047fc6b41563b7ccf75f355696e4c3f14fc8e40c114712d908df8b2509ec6a4799a3965de9d0b9fd7460b8f7bc3293c6131 SHA512 2ed90fb10adce40435bbbfc2fd7fb1b8adfc6d67f17f91304a8122f4297723659566caefd8f4409650e3a00df1b65124ce32d58c464950ed753f661e167374d5 -DIST thunderbird-147.0-hu.xpi 524503 BLAKE2B ff9fbe96184ff3c9192748baf036a130e393c87499e58f42c74a852f81a29df9b261b09ac29194509fbf9f79c90e40da12fb410f69fc58bd0fdb55bd066edeb7 SHA512 f89a5a5b1176e379ee0d26192da89af4ad10c5d0546927c99cafea90f8cded97155cfad7961bcaff4012c82d07ba144c4e7032b3dd483220fbc5b1c0e2a6674d -DIST thunderbird-147.0-id.xpi 471094 BLAKE2B 1b72e2bcd71e6c955f8b7a09057f124aab58765cca1f358fb27f3baa2e406f9175cbf9b1dbc76cd64bce05b0dac8c770f0f1753d158d5549242c3f1054430d3a SHA512 fbba284be7023a3176f8cd22f551accd298b5277cd059e9fa254f08e4c95a0834ec310d90c98299cd3baec64f5f70f68c8f15277ad6c086abe3a463fc5f006c4 -DIST thunderbird-147.0-is.xpi 485923 BLAKE2B 5ea1827665f3599d2a84e8771049f15e2a262df0474929d57d015e8b91cb48d3bb6cd0a80b1152e69bf2ee446815c4ae83f6588046989aae2b85d4195d05d80f SHA512 939e3381116be23b1f2a8882d6bbab741d83f2fd3530018196b68c3067b70439ce37d0ee9743e0fdf3bea991110ec27065a20d47b2f4066ec2b6c857c019752f -DIST thunderbird-147.0-it.xpi 494991 BLAKE2B ddb58a24098cccd4a2f08c0bb6f020cd9574342c73af78e058a7fee0b95993afb9a432dfe3316a55b08071a9fa0f8534f9cf1ba5d0f7d52e77637d171c928f15 SHA512 ce7500f812dc71257496968923fa4cec89bd439eec0a35d31348053d80f1c29a9bfd006d9a9bc14f1aba01734e4b7b738fe856ce7cfd07f5a75be82d4ce6b6e0 -DIST thunderbird-147.0-ja.xpi 546207 BLAKE2B 2052a202f302db415e944bf416657b6a55c768f03ab496e7f7c7b06cc184615c70bb6d7009b3c1b8bf0161d386cde86680d5248c9a696e523aa6c59b32b808fb SHA512 7c6c886588708edd4604669e98f40aab2e74dd5113c900cdbe5f9c19ab6613ea617720d2b49983d584e6aaa836889bee19a8cb7af4d6f92d865549dcfcbbcbc0 -DIST thunderbird-147.0-ka.xpi 562232 BLAKE2B eff8a25638ca2ceaa4d5901752fc5cb755a8fe5fcaf7ac3c5f19bb0378d48561a9238543562028684ddbc45c2ce756e94738ea2d2c413e196e5857dbeadd1cc5 SHA512 9d017e9da60085ecd783190f242f21f7ec91d26eda7e510ee2fc5d1e823f9f8345ab9738a902d47137f3acd8e88ad42521552dccd0d97f797c377200cc5d8eaf -DIST thunderbird-147.0-kab.xpi 469114 BLAKE2B 4d319c965d186d9b05798fd997fa323f3c6abf670c9f3e6365806c6d1105204cf272faecac36be2109ce81e18fc3a44421e1ab45da59f28a8ae25c7da411d1cb SHA512 c4a0bd30a079aa404fb33aa65b8ccff540d5680be07c8879c1d4e15a52322661f1de49e4fdf65770a154d1127321788a0d4b8a336d9a06f049052b5599d67762 -DIST thunderbird-147.0-kk.xpi 586395 BLAKE2B d780a739045ca938b241e0196397fd1ea53ded8f5ed7dbd05493aeea7003f3075766ce56d2a87568370dec89c54ccdea794b10633e1eafa364b472aaa07610d8 SHA512 965606eafd607499e06599fe6c8af2f829265c863e0fc6731f6cbddc147acdac46528b2aae3cec48a957849454e62442f07a4416b7996a4a932c7917a5e31e3f -DIST thunderbird-147.0-ko.xpi 519363 BLAKE2B 09cbe32a52db325a7502068c14143e0d0cd010c83f2c404ab32123f8f76c93c89377c97e9a10ca46f1d089884c378697775568ad27b17fb2845bd81604906dd9 SHA512 187dc9a21d8953d5303ed8d1e10fe5bd66c2f9ef2da86f5a6ef0e9da0ed6e98a19565e53d93810aaafacdf73148630d3f1a3f64ef33a733ed41434b77063fb48 -DIST thunderbird-147.0-lt.xpi 451108 BLAKE2B 9897c94d83f5d379be2241e2709398dbcbe4d19b06eddaef5274304bc98f9cb00d29695bb4fc3f33c226d260104a206b65b9a943084f88b6a2ee7ae60c5dcb2c SHA512 2094e2d441e89a2f94e92a7409c0895a0e6b5efff5ebce22e4363597e4bb3ea5c658e88d8326eb7014a48c9cf2c88f434a3b002dd93cce4d6abdc6aaf5f3f4db -DIST thunderbird-147.0-lv.xpi 388699 BLAKE2B 5fd2608f2fbda9e173396a397fbff3c4f8f8c87bf7c7684fc2748a54d92d534f1ef79befcec33f3a8356eefc5063f6225a6b0269601510aca80a64067071181c SHA512 c2987f8ace62ae004d293bd71c9f966de3551e25079d8708eb85030a97c43f0cbdd81c3b6b5db0a773a8d7960a22e991bda585762f99f69b439ad3fb53274239 -DIST thunderbird-147.0-ms.xpi 350559 BLAKE2B 7460075146ff8d756e9d6075e9598a319e90f838344368eddebf2e03c90fb5ded9fb05ec81288bd939ab17ec0c6d54b80f529fb274723b881ac383ac7cc1ed94 SHA512 db8674c4fc7bfa27c56afaa60c0d1cc9c4ff9ba00c7725937a42db5a5e60860630b556a0de4397c5c3cdf092a1db8ea39d2451a17e9a219c6c7f9bf2c51e9f51 -DIST thunderbird-147.0-nb-NO.xpi 482518 BLAKE2B c45c7ec2b0fd94833d41a2e7793a66c74aed18951739ddd9cac39437958d2f734521943ff2a710f4f1ae12db30c9ff77f0ea94b2e8735df10b2f6ef3865a419c SHA512 c648da3b98e8b5fc24723b409fb903c6c0f5dc2c289402e08b732ca3e2200f69c4a12fcab042361cf2fd70ea18c548635b2f20bd0598296d539480ebc92bb0b8 -DIST thunderbird-147.0-nl.xpi 488672 BLAKE2B f077e7a0b4ff8629614f93c037ff690861f3005c2157136e6effbdfc7856ac82ea23251f78941a2634753ec171fdaddbfc0ec2d7b469f5c834ada51a94580020 SHA512 53a40d050497d38ff64adee5968d1047f9a5aff6609e7beba1268a06e060218bc30e02510542eba9f1bf67dc2a28d48aa0988b008619bb105139e07976b1e196 -DIST thunderbird-147.0-nn-NO.xpi 486396 BLAKE2B 6d47b4fe540823869a9888c66e4b6f6bfb50326da51cd915deacbbbd4e66931b3f4b012482c5a7ae0e347d4940b820b9b113c0d179a4778825d31f36420c3e75 SHA512 134dc18ad67d333a907bb9d2284525437caff9f7d43d89eac48d3fbe70585bfcd919e2b659fb097f53b9579ee4962596059065c4eb9981c0e330cc6a88f4b390 -DIST thunderbird-147.0-pa-IN.xpi 435804 BLAKE2B 6ebfa855b05343eecbb342134c2d70ae8027863c93fc1bb9e9c314c00a58a87fe58ed08b516bf075c4b7b26bd26b151e5fbfa5f9d40184773b79dd33afa648b5 SHA512 88381153750e18a9b616da045134b0d6560c977107c92e13d34936bcaeaee1a2cc2f3e3948f57668ff0e3a1015993ca2ec53ea0ea7eea35cb46ae13feb7b5dcd -DIST thunderbird-147.0-pl.xpi 522617 BLAKE2B d094a6fc93cb9a50763f9617fad7975b3a144b820676275434b5815e7c5c03b53ad4a98f8c2111423fd17d1e63673da991bc68c4dbdb56641284f05f26eb396e SHA512 587ad1046866dbf386aab9856ea895bcf764de95f51515c0fa153a53d16914a0ce57c52483dc6321329c74b3dac7509c3e1f715c6a61c6fee4bb907214681bfe -DIST thunderbird-147.0-pt-BR.xpi 496743 BLAKE2B edfba08ff55ee99862267e1b1023fdc104f0d8e4cb223293ea636d4184950bb391ed6c35ae390a08f9d26b868b3fb7c4a273e3833b94d360f03d034171c71db3 SHA512 c6c696d674444fc84bb624bde2cf120dcd04c8a6abd99736d876718d58ff28a19cfc1a85fe47a1367d0f2d2ff62fcfb91c7cfeac695cf1a41e5a3124aec654de -DIST thunderbird-147.0-pt-PT.xpi 486033 BLAKE2B c109ac5fab4745495d74042e9015030d6d456ff165fe008803612632a807ea10da303a97d49dce6be4878d893aa1204d2a55ddde9be01c4f947200e2f1699411 SHA512 9da557bf6f328bde0c0c9d995e5f8b742f4b05476af5755c4e0e1a684ee95dbab829857db80825f58086378aa6e2f5644f709cf1ad3e0647c15072cd8044f39a -DIST thunderbird-147.0-rm.xpi 487589 BLAKE2B 0dbbe83f8505eef928fa2ba2656105b89860da3dbc5a05abc16865b59e078795c50202711222d1b2727275394edb192f1bde306867848e433679ba5e3e872ba4 SHA512 3f54031a8d96ba6b6daf920c2374b0f91a863bd4554d84d9da618b0d2ae9f5fd5f9268d9b9c367d2f6ab5e7b711fd9bb893913ca3e72c86c6d0e7a9e88ed3e05 -DIST thunderbird-147.0-ro.xpi 507922 BLAKE2B a95cb9791f23bbc3fabd928fc30c430359200ac7e9537dd50d7b8417ed33472c9fa58892a3bdd66288bcbc6e11303fda2162074f6f3a33f31edfa0f5566c1ec2 SHA512 0ac7eff98cccdfcf14fc108e042a77b328273427ed45fdb103cfe58e085adbd95e9ce89fc42de85e36220da040b19fcbc5fa00e95a9820c57c15a5b3a171428f -DIST thunderbird-147.0-ru.xpi 601166 BLAKE2B ec64890a47a9f506ccf11fc962df9cb537d201dc614f7cda2a4d666c2cf612a623f0b080ade5d545742cbc1804e6da4c1827d3a7cb4f9338f22b1f93ce9e2b90 SHA512 5f42c9d0fad32dbfb69c7207c686b42e3423a2c46e6d4b835241fccbd63788c5388bcf184b4e42d0255c00563d132fa42b9244a848596bb27a67024ed7750e3e -DIST thunderbird-147.0-sk.xpi 527054 BLAKE2B 36550bb5d023730a12739211b2565a8470283cb272cc9bd684489d86caefb625897bb652396f3604d9818a81cf8779ef1810296667411ad0a7fe6faca6388c53 SHA512 5e180f80fbd51b31dfce74a83ab9966fd166ceef951b3548396ad84666ae26d3608fbe328ca54e85fd88500250d2d925c23788fcd817c5b4d9adecd90b520962 -DIST thunderbird-147.0-sl.xpi 491182 BLAKE2B 911865534dc61d77e1ea2e15a7fd8c2052d97056d51bcd26bba12f55915a7f3dcf8b1b742ea603f40b51b1976a84df7a615026f0b1f0656096bd11fccdc1ee25 SHA512 4b408e8fcc2ecedb2899e3e85af6421dfd49d97ab16d27d09d32814331104aba1fc8c7c9f50bf73ec7400948dfd0ebcbeff64061f1840757856b5427c54dfd3b -DIST thunderbird-147.0-sq.xpi 513075 BLAKE2B 9c9c99708a9c8307ee08431bedacb118c3a2db2bde4d40ab62c8829df4a94f5df2929138e31b32e08a8f49a7a0422f62c8e20e2b3bfd194340f3b0e5428069e6 SHA512 8ce8d3304f6892ce3f602a3c6a9c84d65c0fb182c11f642f2de833bc5e011cdd4e66690203f49e294d3416dbe6b9d77c3419bbe312dab9480636411c28020997 -DIST thunderbird-147.0-sr.xpi 493074 BLAKE2B f71b759a53091504864b386d01e36b086d09f9f190da77824fa14f6649cad693b30f759a176db06d768e36c4bc7c78aba28c9a27d3ee7c12aff053547d0f9568 SHA512 e880c659c92fda08f6d08bbf95dd1cb4e8b25f61365ca2ed708c453b2636611d3302a7fb3199fe44e71be61c0332c60c40edc06dae681d88060b2af21de92db4 -DIST thunderbird-147.0-sv-SE.xpi 490952 BLAKE2B 2cde2214614d50952eeee5318fae9562d1c6e943d1a76708c4ad17600bebe2f3818a6a5c53799da3d895ae9885275206ecfb60261d4b2efa324d5c1b5f7b4336 SHA512 44f17e018befb5be77591e43acd21cee4d2c949aed41bc7c6f7922140f9f25f9935c71e98f2fa2ff02d7da622ff7aff26a221a5e6e70e5667b86ac5c30aabbe3 -DIST thunderbird-147.0-th.xpi 568261 BLAKE2B f16c84e1d76bfc8de98f2b5835bf87c7be324772729ad17f4ad75e442b12b99669b8622aa174f4e12ed1ead852c90bf40a12da8b322bda7029a1e98d60eecb0d SHA512 72cf87fa0013773410d0325552d0f2da894d1564efb247b54342ce69175d21911d64372046d05ad5555cf4c0b9a6f5ecb68b2c964d38ea2bc4a982703aeb5acd -DIST thunderbird-147.0-tr.xpi 502700 BLAKE2B 8848acfdd2db909cdd20699e913f41f0be41d2750d7fdd3969fa9594b6bb0a724c886eaec629fc5b3f3d081608449542a549c2204f0800d98314d138737c1a04 SHA512 566bf38d754e420c33dc1fc48a107c39c07a5d5060bca76786a32d644af69b7ae04dca65d2e467e41152e2030fad075b4104c3b20b149d54534bc00fdb4d8528 -DIST thunderbird-147.0-uk.xpi 581403 BLAKE2B 708adf126b197ac2ad4a4c5205c6129ab508f776278711fb79e680621244737066cec860d9d7354e5b35a63d87bf94f2cd1b6fa61673fe61344edf499e7d18f1 SHA512 961d9d051a96f781d3ba5f86bdd7332ab0cb5129f867c46c653b18fcc91a4175ebbfc8eadd76e7ec1d978a9c41b603d8db19806985710061e86535e748f26d91 -DIST thunderbird-147.0-uz.xpi 352853 BLAKE2B 265b41778f264cba71aed0ab0edf29aa8163a3507a0590a66068309edd5e670feac3532c1ab0c96c404a77e1d7bc06649591c12f02d0fbb133611cc91c4d4021 SHA512 74a025576405bd9f0ce4ad9af30cda8fe28826fa64cbf01d002af4335046443d455d42c53765fadb64dabffaf12971edd8ff979ac1c68c9dd087a146f0b737a4 -DIST thunderbird-147.0-vi.xpi 525244 BLAKE2B 69c041687feeb5667d7020da7527ce18bd47c612a2183cefd9278134db19ad4c86b9a7d24bdab125b3b9cb02b11bea19ea212c4a9eaa468a3059bb2be8ca033b SHA512 2a3cf8aa906c5b2cd3b40ebdf28531fab361d2a1d219d995d8c41c38cdb93a8d0e5e4c0dbb0fa93217f8392248eef25695502abd8c635f4afd1b08a6d3a9687b -DIST thunderbird-147.0-zh-CN.xpi 514161 BLAKE2B 619857edf1cfc6277eb8b51e92db033676c1fd51abbb98950d8175b2077028fca5db1c6be03be9cadebf3bbba4d85bff43b824ada70cd4490b80da59fbbae7f9 SHA512 f26fb76ab74540e0347c282c25932356d1e1d0fb47d6cbcb8928110d3714b9f8eb2f1e09cd8d5958c81aae46246bf8600051428cf5c635b23d56ea4bacd6d641 -DIST thunderbird-147.0-zh-TW.xpi 517868 BLAKE2B 3d89c8b0931a0cc5adde833ad8fb0ba2c0651e317ae0633160bd9af259ddaafc4c39fdfeab985775b0075df5082d74285d48bf5692a6f0db6daf9d49b9cfe9d3 SHA512 fdd6f43f5467aec5c5e290c2088f63d42b88d31f138fece1d5893ef4bec9d9cc54339cf240f04fda9c6b033a5a47c39f09a4ac99dc2389daee1c28617aa233a4 -DIST thunderbird-147.0.1-af.xpi 312141 BLAKE2B 29861527fa9e7011d14111004c23b73b77619b1a3af79f46a7c3aa7a9a39fdc89cdd0e93160ea83845610f3056141e358c5631b9439241faba7ea5708e6f15b7 SHA512 e45a16852624a7b1dcfe67deb4443fb06fd1378bc4452bf40a8d46518ddf2c06cc20cf2dad0dbdcb4e6c35e58d36cf619c7e4c6cade57d4dcff7ce115f315418 -DIST thunderbird-147.0.1-ar.xpi 434056 BLAKE2B 36498d77b7c64a47c4015497f72d3c9dbd4bb1075eeac06b20ae3bbff1b827b7a9e4befcdf60e158a424e0d06e15ef0eaee26bea869642f6bae01b0f65c502fd SHA512 0fe0a1d2725d36b3af02af2a56e53a4757ca9d7694bba4c289a0e0d2ccd16471ecc912b04cca4a6bc0df9945bfd8110a1f2fc8b66f8a9ed5103397aab636f68f -DIST thunderbird-147.0.1-ast.xpi 336206 BLAKE2B df2cf8b3c3b3006a08b192767cee74e76e8147c58cdebf0982adca9b18b7c4e3a410cfccf10d4fda941650023da04f1cc371ed17d46f144e324e50e495df5b56 SHA512 d5cb30946bf0b273f5f5351ec6a1915fb815c5f1ede255d3b83f3b64d2d43b9c77cfcdb87f41444da517d56fbd44cf954474e235a5decc8ebd36e147b004a50d -DIST thunderbird-147.0.1-be.xpi 522340 BLAKE2B aeceae1ec9b35aebb76a0c6188a4918f05c6f9dbdd908eb90c0e647d8ab462c6473e6951d939e22e4fd193a105bd6d256ad08833d96670b63a620bbbb5591064 SHA512 c198537700f1eb85fde44f90a8774eca953886435f22854586c09c6de025ec4ea248b487b396ffda6e190d44c98ad1cad2067aab2aabc356f8719f01979ff6ec -DIST thunderbird-147.0.1-bg.xpi 543153 BLAKE2B 03d294ff7be72282e9ae0f719d551dfe682bfaf6337b531be07a1b94c40abaca46f8bc13a70efee0b9944b383e27bec9bc26c307007df316ee53c96aa0ab3692 SHA512 eecb9857baf746ff089259e692e8b800f7b680a6e5a3da119fc0ff95a01596f31fc83fbb3939a4cd9115a6956dbdb9ba365e59c19d3b7c790dda2e2371a100f2 -DIST thunderbird-147.0.1-br.xpi 401078 BLAKE2B ce7a831010a991ee3cf9d86367bbad6b3ea6aa9d0cfe1c9b97b87e4d94f1e25d7e30a1eb3289e786d8b8ff81ab0103b8b33b3c5bf672da2e248166286e83da36 SHA512 7cb261ca5cc6af78bf351ca28a8fc9c622100cc7aef2f1b556d021ce31b52485f855d5b6f93647309366ab46750913b9ff86a07cbe465d9cc6d8e8b899aed9ad -DIST thunderbird-147.0.1-ca.xpi 438291 BLAKE2B 09968dc0bd5047ded547b50b4d49f7bf40cfbad999624ec2079ee55cab15fdebc615cd849f32a7e9b620b2bcd8af77ab474e7e9232454adbde4c5ab96c05a4a0 SHA512 333b194954d2cd40b9e5db174f289fe34f33ea68dfffd04c5d83b87587ce007a00899e2e4e68006ffda738ea31ae71971f6d204b411fac528cf94dd0b54437f7 -DIST thunderbird-147.0.1-cak.xpi 414739 BLAKE2B 904b7703c64a9711ebce9a8a2b391d87f711499a72ed46f25d050e3298be71d2426b4d45ceb5f5ed8d52e6a88584b1e24d8b17cdc07abe790d239f2401f12b7a SHA512 b47ac00dd83fa1f8b4ef60350d9b8c295be746e875a962cead2df741fbceac59d5d25dbb2c5766157f0eadc0543cc7bc7c5f55052e52ce119ad0cde73a083f42 -DIST thunderbird-147.0.1-cs.xpi 527274 BLAKE2B 6b791cecc049b28c9fd26833a8dc3f46ab0e1a108126712eda6414a6613d34d883c01fafde46b2cd2e209e8ab070432d2faab5be2d6ee49bf83046374695ebf0 SHA512 b8460fbc241191a0a5d8d7d5b5764e0af6d7db1ff6cb941b107f1054f3f72747cfc9c3d049971f7176df201864826864692b8daa48aa75fa0b88fc488b5fea8b -DIST thunderbird-147.0.1-cy.xpi 494802 BLAKE2B f2d09f139120fb3ad66a0619d8f99b57894b96079fb36b67602a8ae881126abc21d19dd0c886c44fbf5044276db203e9b1f7eb58adea9833d52bfcdf139ecded SHA512 625fe23a3429b665b44db62792bd22f41be06009de1d992559f320a5cb42f33f72b5d26719c0d5d98ccb37630ad916609cee3b12e318b1072a00a8b5fb632936 -DIST thunderbird-147.0.1-da.xpi 483074 BLAKE2B 03d53f6fecfbc562be1e9c7cc16f46095acc368ff0d68c28812fef01acbdb1425ce67d8f1d4d9162bffdadc110bcf83fea18677561f01402c1ea4f78894ded50 SHA512 ba92b24f755250e39c81b5284fbfa4667df9990071a3211675a8a1049779959f15277a14fae7ed7ea5b60ffec17fe1c46a4aeff188cf46592e31f3e93cd1c4a1 -DIST thunderbird-147.0.1-de.xpi 511734 BLAKE2B 9903dccbdef32394b59c63f09d99fc3666e0533097f88c76d2ddfe30001eb9728db591f56faa5a75371d141782a37027e57891ac664619370cb0ca5386236b0c SHA512 493e7d452475f57100c617d8deee8c8767045542ef20d27bcfdd9fac3b6f2655b2d40a00625e24de1d021a16137e1082913eed4d103cad76d7e643e4d7aac024 -DIST thunderbird-147.0.1-dsb.xpi 524708 BLAKE2B ac9463fcd8a0c262f1831f81fb117812d01c724481767522a083c4d5e024c626fbdb1fd395b98a12a4858e1d4664787e77cf236cbcfb0187d512e91996a55ed1 SHA512 46f9224ef1461fa80e0d1cb9eeffdd812fbc2120571d6fdfe3725e01499aac106bc99f1fe6651f24b82f793b407c80f585a92ce8ba0de00dbe4ec45b858ffed8 -DIST thunderbird-147.0.1-el.xpi 616560 BLAKE2B 8035fd438901e30376a4926ab39184e1f118a8e4a6a935f2d2e0b1a92b41cf2e344a23d31c75a0e55c3b76a1009d6578781024091bc794a4b74860cd99b37938 SHA512 fa98947c183614053818625c9b037d88bba2810eed526b6b155f786f2c3ffa34a55a266a02f5bd07ff4c5d634d0a9135032f51b8e1bf108f9efd8857d368d38d -DIST thunderbird-147.0.1-en-CA.xpi 458185 BLAKE2B eddbaaa0e351d190644443df93203cd97ab320287adc562db14247af83beb6b3445f58379226d349e00b9484e6c326d87a984b4a4cedd46b731fd03e2fb08e89 SHA512 378a564c5d9912f18cce349ab7bc49c7c542a88805e42479b75de4cfc059e27d7a83974f5625efd8d3e4d044b152e9c0392e3cddf22df12cf34d29b8e9b97e45 -DIST thunderbird-147.0.1-en-GB.xpi 458133 BLAKE2B 4e3fbdcbc2a9430347fb0026c632a171ec59ea9f014ecc3d428e753188ab6b329d6217748e0f2d91842eee713f2287c9b9cfc3268a046156814f73d3297292e5 SHA512 24324294270545c4bc73d5fda13da56aba477f484a89acb12e88c432fc83da5419490d9acd5b2de711241f351438dc4bd17bb86084b7d92031590dbb9e229cd1 -DIST thunderbird-147.0.1-es-AR.xpi 501884 BLAKE2B 97a804d20fe5ab060b5a7be34714110af28d1ee13c700db281feb5788812962e7780148ff58b401149a35d369e7b8f37108c3adce34c7c9bbdb10ca1b63398a7 SHA512 ab9429973806b319a1feda5146aab711430e7d1a031d449aaa0fc62ec2ede34ec4213a256342f2feda48c2154c2ce22173aa5653293f0792bd521c3fede59eee -DIST thunderbird-147.0.1-es-ES.xpi 504071 BLAKE2B 18eeaa2e267e6e35f9665532282ec8f9d6190ada59efbf239ab37938409800aec2235d3d0ed2d1a9d22e3b04a226bb5b01680b76285fc6352d9f2a2245b8713f SHA512 28ab554a6ad079fef681f4d596be2f93d1e1c2fbcce639413a446c6bf4897fc65299bad8d3982a1b89bd97c13979661d1c0dd5c32634e48f49d7e41d893033c3 -DIST thunderbird-147.0.1-es-MX.xpi 489659 BLAKE2B 80ae9b9361af6248270f264cf9ce864abeedd8378926f28a65da35c0031252342f86418d8d85255b025374282a916534c3556d96ea37f04b0c5cd5d3153f0f85 SHA512 67fb1d4026578c4ee0c595093957a6eb7fb4cd8b42f4972ddb895d28426c1a3c27e19de37adeb5399d33e14bbe187c05ada7a663dbf27fb7f19b033ef492272f -DIST thunderbird-147.0.1-et.xpi 441296 BLAKE2B 6324e81fcbca2d9741e48c8167a1e8eda34a6ffa0134cbb42a83c1b1565b8c47bfafdbc53b09f28f4110fad9980e03c5dae760811a5ea845ed1af9efcf8a9581 SHA512 d722f16eb34ef6b6febf251fd281f9b77c054d53b9c5446e7e2cff20ed7ea8671dbd1345fe26d71f4de287974270b87563eda62fafe923a8f0685f2a99f99bfa -DIST thunderbird-147.0.1-eu.xpi 480260 BLAKE2B 768dbff6846330f68287553914c2f664a0e6a2271e2bef29d22b3ad51a1195ed5a1ad51b7fc483af9376c7d6e992da0f3a614eabba5076b4770bae0fddf01197 SHA512 4f453d5995154c59f17505134aacfd850b2ca3bdeb09150c7c0fe8c555b006d4295a610062dc8d443acacd8a9facac30f6a86e95853455713d9910c1ed239d35 -DIST thunderbird-147.0.1-fi.xpi 479305 BLAKE2B 105c1975e5535c9618dadbe584f839f3f77180f5478a74011782bf536279d12f3033d5192a3e648ed0e127d98a45fb37631bc152cd0b8e87956837b601796fd7 SHA512 0dc441d7f52bd597df76dd8a1849811b58963c1d18e37ae2b8b4d0b6d5e5c576509464d9df87ecf1d8452f8bb50689144b3ff771d00060f77e41b2a343bd0cee -DIST thunderbird-147.0.1-fr.xpi 515110 BLAKE2B 379026d8ef4510af0c1ec29575f2ad51b59d2d932aa406e301a40006ff27d40834ef1101304d062464f987b0e3a3fc6952be3768811e3cf616dc2bd962ed61a7 SHA512 0df3645609cf81f46bd68d4fdef3fdb55536afce87da2dc4531abfcf62ddb61c7ee213c32b520dae9a1ef677c71a05c52b7749b0793d643b4f610207510f514c -DIST thunderbird-147.0.1-fy-NL.xpi 497416 BLAKE2B e31291cf1716d9a8c684f711570f369d3addef7abeac05c6d4e2daa2a39c6cf072a099de0e4335aa1a35a5fa8f8e0691aa0199865113e1ae4711c578595515f2 SHA512 503777754c28bf14b4239a41af4add07d3dd8e7ede431363ebd3a825c35a686d82964cc469f1f44cdefe8f2c82ef3dc77d98debaa6c6f4496ebd1ae18677a81f -DIST thunderbird-147.0.1-ga-IE.xpi 374259 BLAKE2B 96df93726e4431e140656fb555050eec581baf5298df575d62291fa36625c6440ef4846d80e2e9c461ba9ee1350051ec425c1358ef9611517986946df8547bc3 SHA512 7726e5d78309c296691ac95f3180da038decb971c21f30fa4f13f9a8868608933013df378504ad01be4bb3213af0d1dddaa9103e67f2667646e867462e4aa11c -DIST thunderbird-147.0.1-gd.xpi 459623 BLAKE2B a301fab450e076adbcb9e730e4e9012a9eb257cc71390de4bd54d54d377239fd40cf7e0806d4400a699704f370714993c3a691af0028e09a3e51f5f60e0794da SHA512 1cf26f2681a728e9c636f7c19be96468e05a8a4aa332273e775e1f6f3d4cee15f3e0679c73d81be51f561a47ab74421f9a57f6f842e11d806f2be5b25eb9c480 -DIST thunderbird-147.0.1-gl.xpi 488946 BLAKE2B dd6e46ad48fe1e859c29f36e6ecbd2a7d3c20ddb82189e97f7a554247f915c33161cc5aab0eef19c6171dfbd4e7ab59afb42728b6ad037511530db04d61c17db SHA512 a83cc7cc44a78f9233d4e738ff19b609dc3e3f0eafaa39b1306f829d08b28f6ca01db38dcaa30475010bba147bb95dee32882a0c1fe5fa5c57a8b945f29e3842 -DIST thunderbird-147.0.1-he.xpi 444170 BLAKE2B 062fdf8fc44fa2d24b6a611024be66400c5d586dfb7b2e94ff2af21d22fc245fa2e7c98902c4fd59a523f54dfd6ae9bf226c06a77ecf4007a33dcee693e882ed SHA512 8e2f77fc7f7d974f6f1cbcbb27927aea826f9deaf29ff74391345a22a33f8281556d42f18d2485ec9b7c70b8046ac933d5e3fcfc5be824f5ecc128032ef18d89 -DIST thunderbird-147.0.1-hr.xpi 476345 BLAKE2B e2242d0092e3113c534baf805cd4633bb056930c55fdc43e1bfde27e70875e4ba51dd2ff8c23a309010af340b241ee6e466b70a8e481b653d3788fcdadc4024a SHA512 5a0a072a4e30b355c816f5d3647da1b12e97e740cfb490a88074e8563407cd1bc720e2933c3d1683a9e4d306bc8ec0bb50b1f229f5600dcb1a9bd8e29dbccdd0 -DIST thunderbird-147.0.1-hsb.xpi 521894 BLAKE2B e1e7dc54e7d654bf26ec346b08ea145c41ac0982fd325f760e14506939606b3a3b6072e28f6b2f5802f43de056bbf5583ff9e5c90774a766e67327ee3f3769d2 SHA512 4c7b264ef5f65734875aa8305748e7e0df00882908e9dd056b7499812632b737069132c1909fc8a925ad8d459a27af901ff69a29a4836ad44c1e78b5232fc647 -DIST thunderbird-147.0.1-hu.xpi 524548 BLAKE2B 9f1cc1049a00b4fe2503f327d44bad008bd320472dac24235f48dd62de44c9248ab5e4f172f622fe1e01d43bbb7609191c63f422fa1c7f6f88873e59e86af4c1 SHA512 ac425687ef3f4e7aa8ae23f50addea91914cf15e009c58d81e99c27686cc312972b758deabe9c08600dbed6293c9499beb143e2b514a2002e96af5e7dbcb3acd -DIST thunderbird-147.0.1-id.xpi 471096 BLAKE2B 6687d920aefbecde8811d331076b71dfc8d501f86711d31cdc36c05a9f350da238405ffff886751859bc2fd5b3c4810eeb1126c0416cdc9901d8bc279cb223c1 SHA512 b8d2445b57bc30adb201d422cb5c6ebab10272c1a0b1c9fad36004aad5b76b24b3f2800d692b4787c05f97947b5f14aae75df8850d8008eb58758c425fb72f63 -DIST thunderbird-147.0.1-is.xpi 485923 BLAKE2B 5aed1a4dfe3fe999213709c88a4b3928ab2c8706061c39721fda31306758e1dfc6c14fab050b39728553d7f898582256490d905e3559d080a16166a3341a8d49 SHA512 94b10e73fc77fe1b041366fca001cd8f7464c13e26977fc843a3c05dc53c6e87255a23549bd8e91ff5f30d47b6735ac02e8045f3fe4c3d4dfa980de7940cad1d -DIST thunderbird-147.0.1-it.xpi 494991 BLAKE2B deec3a5a4ccd1932cc24d776f6f2c4afc35b3feec3d4a9137bb98cc12a66720475ff111866e92fa2dd68d54cd07d71123ac649749e424a7e47633ccd27e46f9c SHA512 5c56de29c49b0197f78d0cd6dbf58d12c103f6dd5ac1797b1a7274515093461a6703fc97343feedce5c30ddf619fde4e8ef8e152e86c1e710e18bd4d4699c77e -DIST thunderbird-147.0.1-ja.xpi 546208 BLAKE2B a41e3a09abc98561545da92fd491964d654d47d7e9ec921ebf6de38d061a02fe65222c3a09ef589d4aa0fe625ee67759bb2a22790af91d57a4c9710e0ddc83ce SHA512 3bf8177280c8fda36f5b328cf95ae38ffd1950c6433f37c5c576ab688c6c6864b8440ed667e2bee81067dc2786720b01a535f2072af57b22d46274dc9f1c8048 -DIST thunderbird-147.0.1-ka.xpi 562231 BLAKE2B 612948d625cd6133886ba644e41a8e7bca5fbb8111ece404c326519487e431f75c11de2b20df5f04093ea4e56e9e0744055a3d2ccec93c4ec859f54123b7e26b SHA512 5a1779aa034a05a1a5050721473ebfbe73c76dddbaf9b084937cbbe26259ecd5bbf39a24d8ea8ede3a3ccb96038bb3ae970f414254d652364642d17e7dacb86a -DIST thunderbird-147.0.1-kab.xpi 469115 BLAKE2B c46a45e15b894059e1fa9b9a72f6631a2333fa4a5e405a21f972b5ffe8fbf0f3e0e646954ddfda1574ee89912dd5fe4be13bf00fc95c1de96d907f4b4c5634e6 SHA512 c76af17482069f68982bc809696b4f430a54d0436a92e58d993e37086e7790617ddde26bc8d2a708dbc76e6e3dd710b577a20be5f2ee42d570c87e4fca367d5c -DIST thunderbird-147.0.1-kk.xpi 586397 BLAKE2B cb618e066883751aa2d63a6aee5c9f62ca0cc58da0d4efac889def97a5cdbf7d883994ac5d89638cfefcabc85b4932ed1aba4bf0fb3f8b5b2173728cfe3a8e88 SHA512 9493cf0375fe51abc22c752e68dbc2d6dedb6de10e8a15f7eb6cfde99afbf1a78b4c8f4809b3b03b9ec85b76c6e05ee3e10e944f8b8ca9ebdc50e7566c60c766 -DIST thunderbird-147.0.1-ko.xpi 519363 BLAKE2B 2ed965fae55aabb42e87796af56e550910889da5a57e6a36f10a846063e424b917033819bc8855805ff524b994e8051625de9d7891ed1d6b4843924ff9ffb887 SHA512 36bbac618f7b604bf95222dae72d19b8acf3a2892b6ec5bd85f0cae6ba0d5b0600fe1a101e9264a1937105e950d9b8b5f4d17c515bfd92098305084bcb92a0fa -DIST thunderbird-147.0.1-lt.xpi 451110 BLAKE2B e9a806556cdc42bbd2620c629d9e47099b0e608bb7e0809782c4dbae5ad93cb96389c26cf21a0f7d268029a402314bc3d6a52f862b7837bf4c91531bd44e1f07 SHA512 816a76744908ecd650776d9e389e406090ed5a6011424beb4606f003f410c6da3f2922ccd1af0fca6ab83a3ad2a235ed4f3da31f23c3155ae4e73992c065ffe6 -DIST thunderbird-147.0.1-lv.xpi 388699 BLAKE2B 87299a4e3e4fddf1a548284831ccff7233763936282ec6b7f27f0b9418cc3d7c9ee172e3b9f1c246fd74bcbafc8a9669247bb8007b71e07fe52f9932f6b4d101 SHA512 47f9b4b885a0ca4641f52f520f38d230eae9df651f2da1a69743bf6e04da8fe010f5f555c175eec3636d5acfb7f5e4f49d39c448768ea27a6c734cf315833943 -DIST thunderbird-147.0.1-ms.xpi 350561 BLAKE2B 4f27a545b920afbd73045bcda8c453af20e82f7a4abcefe90a8518755f85cef7836a772c3505307f47929f001f93a6a5f4ca5b888a31b6fa74e37a56ea339794 SHA512 1d295af49e3ee8cf88e758e9466d175a96424e5ad89e5eebc5189adddfd41ec1d8c626bc2b8b2a9af723282cf6c10575eb903b8bec6ff458a55f741439095a9d -DIST thunderbird-147.0.1-nb-NO.xpi 482518 BLAKE2B 4fd352550ceb1350b62a0da3ae8da5c9c34007f42b5b3bad290de07734c40e30e5f9a6bf3c74f197756dd21e1f6bfcef3160ae675a189ae17a6498282fb73aba SHA512 06e5b898078d73d08f6509e222247e2bf78b1cbde03092f49ed65322b6b231cb743befaeddfe6a793e6fc617662c3b9f7813d8b8c903fe1eea41998cfe01b715 -DIST thunderbird-147.0.1-nl.xpi 488673 BLAKE2B 87c00c72d7ad580f876c90b55c6cd569f4fc92678227ef2b355075d61bab3973147978d89b5d686e0b082a12007b8f7b3e9ee492197c01b9460d72a7ec499c3d SHA512 abacc92d38a40046f6a6970927ca756ba530d632d6b929e6552c955dc1a982c0bac344d5f1f9b5e5e99d75f94f7d6ddc643dc52baf13c0406c1b7c8008b16ac3 -DIST thunderbird-147.0.1-nn-NO.xpi 486396 BLAKE2B 62bbc2823f4644eed44533cfffce3a73e668fc034eb50fd65a68224ef84b1d2205aba5e8dae16e6a0085adbd066e2af96f5ee34cfad6ffba20e7135f9d7376d2 SHA512 a07c0d3810c63207eae34f89ff95552c01302c97cd5ca9a6c070c8a3e92df2796168669d5835e6be82456f6395041cb6646dc4ac9688e72afc1da17497ab18ba -DIST thunderbird-147.0.1-pa-IN.xpi 435804 BLAKE2B e0f04c283cea8d834b9dd9d5612fbc17de481e1e9095695737af9788e973599ecdcb7673a5d60aafb17c832a5e7990c5052f72f1a36f28902abacb37d6600700 SHA512 d7cb75f561388db9be322c904fb9e69ae020ae9adf798bcd93e741f76d4cd4ac6dad92d37b10c01f900339faac5387968d176a2c4b505fd5405134f371134271 -DIST thunderbird-147.0.1-pl.xpi 522619 BLAKE2B b06d058b2a196f8bec989441950a97c4552f98cc90baab18364bcb2c49e66924309272f061b8c1bee921621a9f0f7c3cb91b1ed3868097a0247b91abf6baa30f SHA512 ab418d5bb2978101da235b8e5bf1c5b427894e1fa624e3373e5e9fc407700b328d93af5a3fdf7c20cd3458a5ecf934985b2321ba4a5cb83116c766194dd14796 -DIST thunderbird-147.0.1-pt-BR.xpi 496744 BLAKE2B 5f12b88b144674eeedb19c916e4710f75f4810cc18010841876656bcfa59d9baaf0ba6d8705d2700fa8694d4155f8ce1e7a1bd0b3eaaa1101b2956fe226d4ed8 SHA512 06753cea1f48f64efc6fdb7080ea459e44a1d904a71bc5971644c89ab857a08744773222505a91d0d75a3fd431890fff1fec96cd856722cce1c608c5c7d35f62 -DIST thunderbird-147.0.1-pt-PT.xpi 486346 BLAKE2B 4c210396b3f4cfce16c01c0b028ce466012dc8010fba9fb6172a979871ab9505fa16f8b1f2a7561d6930eff30aac60db25d993fca32d0ab206bd52a6dbe217b6 SHA512 4d4b3a5a72a10ee764b09dad03f40df00cb024d77bcf69eac52e062d1a5e488012fab472ebe8799f86417b1ba103e41bd8b491c25c48f9bba6c89bbfe8c03fd8 -DIST thunderbird-147.0.1-rm.xpi 487590 BLAKE2B 1bb2aacd9ec0aa0b23d29141abbe38c5a6593e173716c70b4c88135bec6761579fe8a454d1be03e5205fa631addb6c2279150a10c7d52665c99d7d7d6ae6a8dd SHA512 26298e79c2daa2e6a512e46e1611dfd9a0107a727247d89e4f6705c9df84ac67cd7cd87781101096a7dd3c95d2c87ef57c52c4bfff6a5187f459bc658a30d893 -DIST thunderbird-147.0.1-ro.xpi 507924 BLAKE2B 3929b8342007b703ae19a093ef0403490c2ed22e779ecd63f7c1a5c6b3fa01f2a3d51836952c6a9f92bf5f8db5d5dea7a2cdb2aa5512ea15cdfde11ce81b42ff SHA512 e20b93496b2e057a96b035adfc64b89e1c014a2939eacc84c6d1b30c6cc384cab05027324ade76c8dede5e4eb524664089a0ab54033c32f3dd0bc2ba70cae6d6 -DIST thunderbird-147.0.1-ru.xpi 601170 BLAKE2B 645fee737afaa29e9af35bc91266b7f1b952385accf1366789813fa5903de9dde39827e2c8097a613329858d3248f5f691414e3a3d05327f599d4534fd6bf98e SHA512 d46c1c224fbb32bc2cb3917e9a7af819534f7a0aa9cc757faccfa55f304469f792c94fed0a88bcb37b5616f1de76045e303d91852f7213c1a82ac98470d5fd61 -DIST thunderbird-147.0.1-sk.xpi 527055 BLAKE2B b8092ca289de4cdaef41d68b6395c792e3d79948700f0019a1f9df3bb0b08dde5a84281c607ee45e3c532c917386c832a7f9a4768b019c3a3da7f2665d4c2cfd SHA512 61e6b41b652ad50b9b34e600247806db10dab117a403398e6f3ee384891711a43ca84fdcda68c4b40ef9e05dd2fca47ecb20c504b825436669cbd8a07a74680f -DIST thunderbird-147.0.1-sl.xpi 491183 BLAKE2B a46f5f81f118d666248a359575edc183aabd9429b4f96f7e32da1bea1106dab0dedfbe68a99b73639cecd628ca8bf97b8277da7660b7176d8f0a43cefc19828c SHA512 369f5f30ccf21c7122a5aed6841fa14b0d9dc962d5bed6ec52c411b4036fa28f58e6bb6da5596b4e9f9e9b485e71ec38700f681c8105482a678438395d16554a -DIST thunderbird-147.0.1-sq.xpi 513078 BLAKE2B dddc1a45dededb0d61284dae37e307d741c3bd7cc1b881cd3999a39efb3d13764b8f95cb3f552cd7d17b163abefe499c85c25a5a39b78d56ad1d81103601bb7b SHA512 7ce6dcb645d5b3386bb3003c27954744081fafce32551d81b7ec764d5c55fb4eaf097221cbb8b43996f4cdaa8b24532a10124fdb285e56f0aafc74ca4db428a5 -DIST thunderbird-147.0.1-sr.xpi 493074 BLAKE2B 16ff9744fd397c030cacd6267491e8853e641c0a392094d8171da415e6155a2124661423328cf601daa39d19eb7422cfdb9576061a3ca93aa7a7f98dd32882f7 SHA512 ee11cb29eb3c34de105ecee3fffd983c8a251172df718ae5984e3aa27d1224f9fa3771f288a9f090959f8cbfa717ec437ff58263bb2d7a9054eb0d034d3150b2 -DIST thunderbird-147.0.1-sv-SE.xpi 490952 BLAKE2B 927b8993c45842974a60d8799b18ba8b1f92ebac26f92f7176223e0999c7782416523c8a4c761caf54d480b55f9398c5aad14597ffef5247cdaa7a77570fd547 SHA512 29ecee273f7f4ac31b6b3a8b737024b698bc6aed35f38ed8e5c2336ca690fa486b8a841f9b843d8427ee85edf8129850fa87040a40f9c4c144e364f861a691ae -DIST thunderbird-147.0.1-th.xpi 568262 BLAKE2B 8836e391c3e320b6f1d8727277167b647444f1e25af630cc4859192c5d23d0526c6001a7b03946785d869f4e3d5e01010ddddb09636e38107d3be9218d23a081 SHA512 e47a0681cf78300c54607ad4c5a004547649538c2a8f83d71fc4dcad889a6f8a4534b6b0616521bbf668b9e3a2c0e8602c00be6d19801ad6eac04024dfa82915 -DIST thunderbird-147.0.1-tr.xpi 502703 BLAKE2B a2c2b99ec7dfd66b6d176b183fbc1db3571ffa26deedef7b4d97fec1a18c56af944e1b7a6cd51bb427b12c21b096c282cd5a658721a557851948772eebb15bd8 SHA512 ae61258c25bae2c4e6d4c22465a1039e6cb044584ef03c98f04629514e7917c6580f68b6054d5df8497b7147fa40a5b6497b74ea4a447ad4b090ff178cb560b7 -DIST thunderbird-147.0.1-uk.xpi 581933 BLAKE2B 3409ece349f408d6b3234f7390691ede04a67fa855e5225fc7b75f030be328ea397428802c892953ef70481665b82e2e5c9961189c371030939eb569a87449c9 SHA512 67780ded3aeeb61e1f7757a46587067b5ad1a100380f9812a3c6603470ea69a5804c932d37ceb71c613b5540a9a22e41b34396d0b080a45a5fb52c2f13e475b6 -DIST thunderbird-147.0.1-uz.xpi 352854 BLAKE2B 2d3c7dbe4709c34ed8bd939e582a631a1d38aeb6edf9c0b2e418f281c868d37b239ffbf9404d785b0271e161bdddcf55d0e57ce36e5da190e9e381ca1afc8590 SHA512 0f765c9cca883f57559a42c0716a962b9be3461378f64a4c128ee5efbc99b357510ed3c0c047c88832a3b1c586cbced634a8af1832cb3fb6742f0c527350d105 -DIST thunderbird-147.0.1-vi.xpi 525246 BLAKE2B 6d6bccac26064f5e2d80694c9064e2e0fd75b805c48cfff67b6373b99a6cb32ad89b82b971d8ff2e164801077f2f5144d1bbaa25ea0c87059cf46100501abebf SHA512 b965f4d4cfe6716816becf55f7a74faa0108729bedacc97e0ddf9b37a58e62056c9695c2b27ce543bc6bf80f801ce3a394f48d8ae75c322d31fd519ceb83e9a1 -DIST thunderbird-147.0.1-zh-CN.xpi 514162 BLAKE2B da588c5cf6b81b93b7bde3f67877d44c619a0223c9dd357af6d6fd87381642b855164e16f63ab6761c77f5d17e048238b29db8330bd0e0552bd4787f2fcca06d SHA512 7ffe5e15bffc097904afcc2152589dc27d96b3e81e88ffcb72a2b4056fd21ee1afc926e26792aeac9fcc3190696f30e65b80668c98cb9b492ebcc1337e511be6 -DIST thunderbird-147.0.1-zh-TW.xpi 517870 BLAKE2B 2e4afa7f9619b53de13cf4737411b25beefc15b0adca128077a1a5728400bb9b0dc3a0522dc44231642a942c662ad75e5fe9b441e195ca09261a30d863d97290 SHA512 24925956e15289e924a9cb9f3d4a433d3b49794faabfca918af4bb630e5f799e0acc4b30ee43a0828237bb747383edc7721ca418c3b293c1aee93ace41c0f6d3 -DIST thunderbird-147.0.1.source.tar.xz 781853284 BLAKE2B 22993efa57b297b202e2dd0971361ff06e1a41b3a11a018494efeb509268496dd55545201276e5caf71eaffb2401c19f09f2a1a5465eb98b7edd296ff2e6d5b3 SHA512 bae9adbcb1d45a7644e4d699215a3da85b612b9d99516bdf12f84482f1a6f89153ec4d5ab6dd8bcf69dc512cb50080db4630a5bb52525f22213c7af92b4b77d7 -DIST thunderbird-147.0.source.tar.xz 780223936 BLAKE2B 59fe7ef910e65dfa5b2e7ad5308123df86b854c336fac47c2e8e96ab4d40c04ac28561084796a8c33d7c9159d2186abacb8362cbc6c12440b5965ee3c6fab5cc SHA512 d04a135f23572123d5cca41c2611704aa06cb81e0226c89c267dc527f59fb0d9d5d8b8a49cd126626c2fd934624c9d2420ae71dd10a912b3011f3342fbaf7511 +DIST thunderbird-140.7.2esr-af.xpi 316218 BLAKE2B e05621d27f36d4044b3b0cd354aeb5696ef8b8db4c7698f36c69d5c5272efa8be15dfe7fcf55a8e19d7e7bb5c17934d71745a3c73e74194892b85e38cc98678e SHA512 cbd5df4b393925697d1757f52d5c7b9361f2b03d2ed02d577840fddf78209b6167bda37a7720ef5f52e6cf5c6e5d178f93de6935f4f9c9c202b5756ce89fd43a +DIST thunderbird-140.7.2esr-ar.xpi 436197 BLAKE2B adbb1c4206437757b413b9796177c4855746bc5279466dc7c401787d498557965ada0d8dd66e6151c97cefbb1285d0bb8244a28881548cf2c2a98cf954f06eeb SHA512 b6d92d0584cfe71bc7c0f5504df5892b30bf5f4d1d32fd29e747274b12c60fc82a775a52f4e8e1ad8bd11819082eb8aca84c06247dccbb9c4347ee173fb958d0 +DIST thunderbird-140.7.2esr-ast.xpi 340599 BLAKE2B 353abac80f13b027f469565236b5726c88426f098ede69ce01b4175c5e1f7e2a8e35c8d906563f2a099ac0bc3f606b154af45436290b006405dd0126ddefbfcd SHA512 2933cd5605c21e7b5c4bc0a22582adcb331988809277e00c47e7cf1f83a2b69cc6535a934b0e33ad56b5076cc5998360cfe71db5a087425fcbb7a7ac1245a541 +DIST thunderbird-140.7.2esr-be.xpi 521573 BLAKE2B f315c5cbcafc1aefeff2c2f2c7ac93c5531a8e5c1fbbf8902c614076989620cd2f20426021d2b8eb90752ae1646e78c2c82cf1e9cbe60987bdde6c6ac4ff4c23 SHA512 6f954730eb553b89f2f94488db95dd91b4331dbb098729205bd51c93a82f8801c5b288bf4a34accece51d682d48153b5e5862e884a927c87a511030b7dcde11a +DIST thunderbird-140.7.2esr-bg.xpi 539806 BLAKE2B 3ef5b0b077f9a9e9005681b466a5ba4f4177b33632bdf6d43a3765ccf6cdaac1cc67a9675931bdc78dffcb6425ab431254917ddc1fd67f3ca4bab98dae928b04 SHA512 709e9a4c5a8ca68dcc6c4306bac61c577b339ee68a5805c7f9f0c0658cd00e32acdfc54e9ccf36903aac7e9f9907eea536c198e5189f7b74bfcc1fd5233843a1 +DIST thunderbird-140.7.2esr-br.xpi 402748 BLAKE2B 0e30f7d551652e495cfa9cb4753f0054b3435721a64bf23cc3af7bad4951f38c559d34f7b1f1df8aa3ec791c266e14159225676e1ac9bade84471080f9761c87 SHA512 1f2cffd259986f898ef381ef4c5c5243bff89d7d26fa438fcafd85e8ae31fe7fb17e2016f6d6922ffd98974f2890794aec25c57dbaf1b1a73a1fbe0a88891adc +DIST thunderbird-140.7.2esr-ca.xpi 440589 BLAKE2B 19404fc8002b6bdbef649ce485f4438929d397f21257f5e01a353fb4677143350be8dfc8bdc6579215cd254513109c2fcb711d4e9b717ed3a8dd4c637a818986 SHA512 4055fc02ecc65ae89dc680615010e42d1c48770a2a496771671b769f80dd801e466161c33fc57b45706f2e3a7dad6610c05625a3fb38fc00d9e98b658107d68d +DIST thunderbird-140.7.2esr-cak.xpi 418022 BLAKE2B 7672326dfecff5a24356b71e95408d93d0741fc33c1b144e44c7d214e6a1f6efa0f84049f5c2d2c70905a6224daf1a21af24a5258f00e451034a06a2bf1fe12c SHA512 17abcfe498c7a0855873e9db0ba29f7b93447bdbbd5a94787c23e7cb120fb4b04e6d1301b83b33b129d01a954067bbc7b994c4e52c1b1eacafb8c576c26baa92 +DIST thunderbird-140.7.2esr-cs.xpi 519508 BLAKE2B 02f4e5942f011941e2707b31360db8f93ea1b4e87a483ab3efca89170f57f5a5216d1c5af123144bb4c0a2a766ddeeccabaa963aec5bba41aa1fbf1a11f26083 SHA512 2d0e2de980e0abab78e1437fd62f409aef51ffc2d95c99326c79d888c4d12797a32da9a366288c1e63a2ce3420b5842cb6bd9ab05ee037e005a93cdc931bcbab +DIST thunderbird-140.7.2esr-cy.xpi 487651 BLAKE2B 17195203921d89dbd4aba4b75a24e975c76251bafefda672a6f425876d09867a414b3cee3c0426baf93a9b557f7f3262fda2907d3463bf2c0797fab0faf79abc SHA512 b936b47361ddbcc056d0db3902a06cda02d51554d0b54ce0ef601f6f8b34323284271e6c9697078b16f5c9ed750b105dc932a7686826362b640bf6fcf801c768 +DIST thunderbird-140.7.2esr-da.xpi 476624 BLAKE2B 71f2d66e5017b2c5f0f667bfb93cfa90db1278d34e25c1764ba43de87a9110bb5d3556793d90f8d818012edacb27e4163af5298e1666857b490bba508126b70a SHA512 7b74a1d644e26759410fd6151d5792ccf9dfdb9d738d0f3ca1fe991270e2635d90787f5b7b94a4fc92fcfbf09c73dadfcc9605619f8e01e521cba9bff0fe32c5 +DIST thunderbird-140.7.2esr-de.xpi 504708 BLAKE2B 87b56371c3325f0382665ec3f64c47de8368de248e66e3b7f43d95287228509767d2d29930094d46742e024ebfec909bbebcc9090e743171aeab21af5a8cbf42 SHA512 adb65bec6dc68c6dda42c16e1840379fb111af208fd8304212ff9c323180302ef84f014de0e743e25c8330f7d1c924f6e69e6a21b327ff4be807f8e587d9ae0a +DIST thunderbird-140.7.2esr-dsb.xpi 517899 BLAKE2B 03d49adf21e5a52edfe6a54eecb9d00c557e58be48ff8974ba261468fce4bdc3950e5cf068f5cce150bf1bcc512abed00dc8c1fa3fa2e4f22c9fe2855a8dc03e SHA512 380766e9c259eeb2eefd87df524b2dc692a46b026f5ba672128393ea7a72806bc1227f5034d4e6c460feda81686d6f7e1deb600a8b21b9f4903fa52443c6f9b6 +DIST thunderbird-140.7.2esr-el.xpi 609031 BLAKE2B b154bdc7d9df6b1c8c30b25ec353088d0822218f7898e058a607e920bad743ea27dcc6f76416a71c7775c4470b98f17800fbae9b5001caa51abe8ceea7e2a7f4 SHA512 95deab65e08bf2dd5872cd9c568d0038cb6cc469e4a0a3cf422d869fc5a1d5cacbd827751e9b85d3de0eb74d31dffa90024c6520a1585615e73514c79e8b29d6 +DIST thunderbird-140.7.2esr-en-CA.xpi 452240 BLAKE2B 64e35ec4ce0bc9132dbad7a9792b783730af9b4ba5a8f8fbaf3e2ad6b997ccd3de139e2f5bf94748c831d71fd2fe7a85dc0058086035a5e984b3aedb586a4f10 SHA512 89218e980b2d28b2904e0ef5f20b9fed81b99e2311286243fed91483479c3240d49114e35ceba20e9151a3771d9c4a1b36e0d7ad491b783b2d0726b9a10da8d1 +DIST thunderbird-140.7.2esr-en-GB.xpi 452068 BLAKE2B 4a7c28c4005a12002bd89f37258e9fe41fa2e0c28c564201aeda76637c899f1b4f655fa5b888e65ebc97a029936d842e2be7aaff05954c91cfc01ae99f544511 SHA512 c4bdee11f09862543d1c3e4a3319abb06faed0608529d90e8884e547a40f8a1f999d128a5b6c99a6c9e9aed8e9f799e6f21c0224bda54d8e15cf3a6bb17c87b7 +DIST thunderbird-140.7.2esr-es-AR.xpi 495269 BLAKE2B 485a60062536e35248aa8e3b1a576fb3747b9eef8d9e167799aa37bc9110c7b0dc9a1039dd153f7fd68c9d334673c2c3d3d969adbc1f3c99747cc22190d4b3f6 SHA512 1fb15630c73e39cf103e3b2e2ef9837b4c1cc861b1fd4d15bfc342d5c0d7b2f84e085b6c72456a09385b2db63f28575f9e7122c5a3ac8ae8a878bb849c04cce1 +DIST thunderbird-140.7.2esr-es-ES.xpi 497284 BLAKE2B f274d212516fce96b839f71330c3400c7f7adac46f1bc146daf869fe51927d192d7c6cbfae1e652cd44bd6d66b539959c7e749290ce1636610649548f731e995 SHA512 09b2009e54ab6d572eb6e68aa1c7567404108b68d96562fc011b320ce168a3c73762e24a65c1da66fecce44df9ebed71009ac4db24e1f0150325a34c6a3a49e1 +DIST thunderbird-140.7.2esr-es-MX.xpi 490411 BLAKE2B 29f78fb94380f40565d9a182e3139b7a1d60e291417ff07bfca6a90dd8e43ca913697f6cd1913b09a6c472b7e1326dd75b851048da5f66d938848835ea6f8849 SHA512 618fcad9a3ec9d43559e5e9f41ffdc39465bbb0bcd923f2cdf83727f38adbda2d1cac321a9998466a83c50049b3433596059746f3ce84ab04e135fa14d455436 +DIST thunderbird-140.7.2esr-et.xpi 443619 BLAKE2B 4021668d7d6a0f0e71af989d3d6f9359d209c09d252b2599cbb9b781913ca6117cf5fcda1f7c7106a1d367c8c76403b5b2fac046d96a5a9ab749e338308b5c08 SHA512 0331064662e4fe89fd94b6db309e048788433ae7156cd544a3130dc7df8e813a94e9be68e5de7beaa61028ec831dca769d5bcc5bcabc31ee38541ece7ec088de +DIST thunderbird-140.7.2esr-eu.xpi 473924 BLAKE2B dfc02118883051b3feaadb048da18cfc2abad688b695553cc0e359e7b929b4bbb983b2e278022184c9b2f50b3758bf24b48623523a0061d753372a369a52b24e SHA512 aa7c603458abe3b06278e91ac017ca8cf803e97994b3abe72538ce46b8fba6cf67182950eba1821f2a30143a4af5973a93744d1256efb9f1f677de311624f4eb +DIST thunderbird-140.7.2esr-fi.xpi 475611 BLAKE2B 216cae4f701776a9b2857aa1375e76118d68a969a01c7331371b364c9bebc315a32d1e114c71e0f6e9677c727eca4c3779583e830cccfbbb7f72ebb6ba564945 SHA512 df9a187d1c3e5d98d0db20232143f9c21aba90965c0ccce0aa8545aedda97c3ad659c069d3933d061cee8a75bcb51be907139bda0bf8bdebc702ed799de0d1c1 +DIST thunderbird-140.7.2esr-fr.xpi 508320 BLAKE2B e12b3300300c414b1f1898a50d1332c1adac68e1378160b34b3396471ffdea59643962764b98b06bac14055c28de247230637470dc6b7440f63e999ca65f1c4d SHA512 348b6e38507dbe75609ce8bcae175c31460c997c482694621fdfc5367eba9fdece9d3423fc1de5ce39bce842cb7a5e15fd44808c737401199ac494f91ca1fc7d +DIST thunderbird-140.7.2esr-fy-NL.xpi 490685 BLAKE2B 14e4326d28945ecc280b3c673aa0cc5e82798a4e18ff25d691f095bcd22ea78aa0d0187bf16aa4c933537bef9d55c79dace74c1f1aa8161be4d9c07e5ca60234 SHA512 539abfeb06a85aa67dc938418229f884661ee84c9c27a292b60aa01452cbaf690aab6514560b5e428724c656b4f411e305d25268d2ca0fc2af346998d79a7d95 +DIST thunderbird-140.7.2esr-ga-IE.xpi 376745 BLAKE2B 992f923b45ac2fdee9223ba66d605383879e6ccd56db47efc6875c2924478e8c5f2c40f200477055c1f5aebd390beb288d5ea96a738c7f21137794068cc784e6 SHA512 5d6452a0f10f120fd59cace797c1fdb85cf8653afd3bccb93584e1bfa42bad9d9ffee8a50abd1467b8634408452c5aff4f99b4b243a583ff9623574e38c5c803 +DIST thunderbird-140.7.2esr-gd.xpi 461960 BLAKE2B ee7ff999c3d5ce93f63473c612835b996e70cd03079351ec0c06a3e2abbe4c1c2c3faba91dbbd17f5733ee82515991dd97a4c5e8f38088b0300309261f78abfc SHA512 6778f815a7ef9fe474e636c3ba1aae7ad85bdfe9789299ed49b014a0c95de940cf79d87e3d7aa52b7065829200365cccdc6daf63d115aefa3ace464cec936eb6 +DIST thunderbird-140.7.2esr-gl.xpi 489346 BLAKE2B 0494e57845163da66d59f2242f0394d9ea137e9c2a2f14922bd7acc1a29e0a4f9744839bc167e57b0e01b82f463657059f4aa22e3b348458236e253265c92d5e SHA512 e9aaa1c57a07dff346d773ea31725e382f2523e85be8b77f9a5b348b2e2c5a5f3704cc55b7cc292454a619e65af5e8f098443ab54c610023574ad45a5e94a085 +DIST thunderbird-140.7.2esr-he.xpi 443588 BLAKE2B 6a79cb62924482c16838596e625364c64f4dd893339ab3d6ad4dfa726b1fc0369e17930462798b9372ba4c36f0619d7c7acc9ce79ef5c0f9142326d9fa67e199 SHA512 fb16a81420b3aec51780d395ff35d152f339b0b58c02043bf23cfb76b69f86c706737ef4ac593c78e9ebc4b0809a385d77547478aa06c1c49494b5c3a753f23f +DIST thunderbird-140.7.2esr-hr.xpi 470680 BLAKE2B ce75cc413c66c20dab4d4ef0b401fee4f3246c44d5cb885484cbe8641f7439ea2630211e9a10bc5ea44c7be7803b2893af6b2e2347573180b16bc01ca3063c1d SHA512 2a1bf39406ff877f56eed2bbe69d8720cd0b880916eaf4f1ced411fe4ba07873c1c3d2d0992522e21576823fdf24b5459c7a54291f25d7641c99524719b1dd0f +DIST thunderbird-140.7.2esr-hsb.xpi 514934 BLAKE2B e1166a9e42672df050e3b7437bfdc85fee8c4d2804de99e790c8ca91c4bfee8bb44a235cc40d73ad3654276c82ef1a21699b3aa69cf9874a430bb077d55f6bad SHA512 7e83a4fdb3f2391cd2992196f369fb696bcb0ccdff13efb2e2ed774f68610d884e9923a4d3d5d7e00d2209a6ac9f5df246ff7d41a7d9e9dd1a5fe41005bdee67 +DIST thunderbird-140.7.2esr-hu.xpi 517545 BLAKE2B de9a7328f82be0c0b8ed0248c04b4f95101bfdc0c8542f996ef071b582fa6b3eaae030a78c8b075b075676b9ce43be914b8669a5c62a520473aadd986636eb9f SHA512 a1bd82a477ec6e6e0a6ebad714e92a762dd1229491adf5c217d44424745195d90b973e473ec01c63746dbcdfbcfe9fdb8669afaf0a381026407a61f3da855e78 +DIST thunderbird-140.7.2esr-id.xpi 467002 BLAKE2B cb3c320c62f5df3d8e3ed5caba411723f5e17fc0f0c0deca9cbe7581de914c4973c9b36b13d2d6135c56d3c4a76e9fd31e7008d16efc562a42797ba4efc45e08 SHA512 8d3b29b175d5795ec95926f1c72190cb879fe78a28b92ba2bb9e50cda5ed4e2d5e6af05680ad44e5c2e9cfc652c49dda3a3c5c3912914f339f0b8197b972296e +DIST thunderbird-140.7.2esr-is.xpi 482738 BLAKE2B 7d5a108071bd69b6b957e939211f22842d78510069fe2b30e80960080a32c6e456eb842ff919b8ad39e26debe1a0592cd3c31e64df2b15bb73c19b1046c4d46f SHA512 5390ff269e0a2ea735baa6367a8fa748217fa1e0f7b398ab764919db79ca280f19cd079e8fe636b3c25bd0a3e6cdd8882dccc1066ae383e049a6675e6c8b1c99 +DIST thunderbird-140.7.2esr-it.xpi 488504 BLAKE2B c53597c8e36a692e7417344eaa977a87103c2f69f442c94fa9b9d110edcafdc76d211ba9bc06f40696246306d7d744c22aff3043f4238b1957f039463974c9b8 SHA512 2b7a35f670ce706fa517b77e0d42ef355b144aadbed44f59f83cc63831bd42d8cac09a84dfcb782abfd8e4349724fd28f98d7efbd224076a04782facacda9ad2 +DIST thunderbird-140.7.2esr-ja.xpi 539194 BLAKE2B be4bc34bfe12aa81aa6962e1810f9fbf387b188c4a4d1914a6aa4966f33a874b724d0b536f612301a7972574efe2f78bf196ba1a6630ef957631f2b5a368eaa3 SHA512 d51a3b1499c17cbf365ec3fcfffa96824bc989fde6773c1fa564d21b7a4ebc73f825353dbccc515a353338d0a085f0204cdfe4611d95e03c5d7c564b11439549 +DIST thunderbird-140.7.2esr-ka.xpi 554772 BLAKE2B 0624c1c9012593c59a811b60478a40b6102bd5431c8517764b2ed2192e48220f04a6176c8a27efd4966fc77bbfd0e52fc977227efb72a9bfc4cd8efee63fc58a SHA512 67d8da0e9314cf7e737b2c78f893ebc58ac0ec567938431ec6da21cbc9a3ac6fb0f181ea408f032c9c28e55fe143138dc20583d5891a50979e021846be74ae9d +DIST thunderbird-140.7.2esr-kab.xpi 470498 BLAKE2B cc4c35bb809b340fc2772f5f5a1f00f64dbe66ef05a98a644a9bceb966c550ad1f4be73d8712a393b24b48cc112d00946a35478e0c7df3effa700528a33a8513 SHA512 f64ba37f7b9bcf3a3446be7f0c4cb2a3b827f40639327e5aefaa55acdbca371c00dfcc88cf62d42bac34be5e9a3aefaa1a56335061b9504d09ba9442e2f9d821 +DIST thunderbird-140.7.2esr-kk.xpi 573880 BLAKE2B 7dbfbaa3d117b2208b811623d8b635c8bac168d6e81198a8f215af21159703750d8bcc6f63fb2dbfc2027e49c2ab31af3537cbda243550080c445c2c7f2bf9d5 SHA512 a1dc0ad47de514f9064a1154634598a97ab030c432d7f8a7d1c5ef318607a1b5de703a18ab70282f6c3ad3180ad18705f5323067efa5b409b6bc1d3def802c30 +DIST thunderbird-140.7.2esr-ko.xpi 515592 BLAKE2B ae6973d98f2ab8de1c7ef7cf598f07d563ace81eb6a9821e69a38b2eb0ad9d6c7717693ff90f53956b1c985e3a819a0c0ca0680d58d651545dfc0218453266dd SHA512 415857e3410da0240df3ba8c0a12f0d1db6313772c6ece32d2ee25536f8d87fed6264b3c94a69fe3f3139b4637892ecb8f2c3851d4baa029e6b35841f8b621b6 +DIST thunderbird-140.7.2esr-lt.xpi 453436 BLAKE2B d1ebb2b2efa7ee9e2d38cc34a5121b7ea82e6aa92d85149523cd2828272acc3a8738f07f757ea550826093fdf66b3b24cecc7c4caa9185779b4617c83fb01d56 SHA512 d5c724b3ff065867bd2cee2cc138b65c957d6c1928bb4f48aa0e75adbf64b8a6583201e543f1dd9114141be1fd205df09a05c1c6ebe01b1e8592fc35ad25ddfd +DIST thunderbird-140.7.2esr-lv.xpi 392816 BLAKE2B c9695851a953a59e9a48d405b9647b10e741ccd15b1c9afdffc32c938207c4cbc68e06a49c5678851d8892627e0c8e875c1aa3185dde6e2509deceed5f9548a9 SHA512 c2109c51253c8550c7c9a377b4414d03d2001dfce6724b5e7fdb870211e38c3713de78fbb385e2a0b5c452215853610d296609678e82a5cb47799e717fecd234 +DIST thunderbird-140.7.2esr-ms.xpi 352180 BLAKE2B d684caa0302c7e271d5e99d6aa15a7071a7aaa745a2b0f4489ae672ffaa899dbbbadc5171b31de923cb133b07fcc141e8f63a1f9f94041363930f33bef4e9db4 SHA512 8deb706e338e02db4fc96f7295e4eeed54f98e3878466873b2c3f09d04a860eab9e04f80eec150185fc502a48747bbebbd726a49edc0b4d3697ec20eba82b568 +DIST thunderbird-140.7.2esr-nb-NO.xpi 476138 BLAKE2B 31d964b97a0347ca4a12bdc3665a1c6eb5a38b519fb78eb9bc221c781f315b7c65d8a3c227febf8a2af59b2580dc49a355e39edcf68f0ab8876e327db85902ea SHA512 c1963c64facbc3a36116e18d11d15041f5241b11e376b65f271cf86ea943082f35a17956921e3903ecf378c62bbb0991c1e47af598b243bd8d20b0f72f9955d9 +DIST thunderbird-140.7.2esr-nl.xpi 482125 BLAKE2B d9f970def570161c71f6d8350919f48597393a5aad38636180c5e95baaf633ddd5c61f4dab2d9f21909ed7f4532c9175b73ba1b971e5e6bdafafb2c9e901b8a9 SHA512 a497b1db1aa47d28018436a46623e167374b08acd61e5a4b8df1cb20f59454397d576dc459665b0aaba249feb486466de55b95efa4ceb9e8e62eb7fcb63737b4 +DIST thunderbird-140.7.2esr-nn-NO.xpi 479758 BLAKE2B a56bf6e2553225b8a58da9a71154d060c27f3dbe24e0b8299ca545b8d918e55ef42366154c6d15f688579057f033f0a9cfe29cd6b6940ff413f67c357b3d5032 SHA512 09a29d08dae02bb8d3cd7f6c3b1bd24e5d336618636fc53d16b32320fc315d3f8028f2d62c9715b5e8ec22b624141b65a3d7b797ec793d58b79de9b0d8d5c099 +DIST thunderbird-140.7.2esr-pa-IN.xpi 435424 BLAKE2B 8a004c0f7226319df3801520f5fdaca910dcc8dc2287cbf2370c90aaf95b9fd827c99eb085f5b9703bbc32715c0cfafee48fa2cb29a900ad35f3ee1f4d46bff4 SHA512 74696abe255c237b56674e8484328e625b1c993427e6da08864845f2d60660d3e7e3a46c6c6e8bb35fc74f17ceb669a2723b98b03457d6f5f14230f649dacad8 +DIST thunderbird-140.7.2esr-pl.xpi 515613 BLAKE2B a513362a381498880ed66398e11b81ea1fe90f708937da62a1f69ca3b95f6ec8293091290005fce47c25a2da81176500f71982520525c78a5d976c1f1d14ac38 SHA512 bd1db13e861a4b0312fed6c9ea0605048c4bdcb7f4e8cbb1a1b35f5ac7b16c4b2b58c040931ecc3be704ae44aa0e0aa431316a9b3a1746de2833855155c81593 +DIST thunderbird-140.7.2esr-pt-BR.xpi 490165 BLAKE2B ffb7c68f69fcc2488f99ba8057bf5cf27d22d2720b3730ea99a33e5c5a0e466ecb7ac92da0f7543f6317c24040b82942b219985925fbc2c5b6cf45b9a1a795a7 SHA512 b8532b116850d51dd3c9bed73e7f8b3511ee3b30574a370216e0a2f7ff40c1299b76d63cd607938188ee00d70695825f75bb688e30ad8ea0b0ef0ed9e9c4db91 +DIST thunderbird-140.7.2esr-pt-PT.xpi 492525 BLAKE2B 711957ceb267efb860abc47d524755db899897d7e09314ab70753055aea78a23b3c8ebc70b028ea299009f90e4c8831bc3d346faf2d780dc31051fab3aef3fb8 SHA512 ea7bfaf056d804202021f752f5577e3c32a46eacf8169018e291e6f9e5f22bf8b823e8ee7d1ce906b99b802fe1afdc05d14fc3084cc109a6b4f7406cd83ba64b +DIST thunderbird-140.7.2esr-rm.xpi 487883 BLAKE2B 4ee4c754d40ac5b4c0dad6c1e7ef491f5d26248dabb4f488616fba43c45cb90177a4e190b1851989221a3526c035abb0f18b885f6928d275ce561442c650c352 SHA512 051f7fc3d91295d7e24659d719ea0e67d010b53b3118597fae60742f36ff40089e70903613347a9b641b9d69b6b9a34654cd9588f851a0aa4f7a2674334d41f3 +DIST thunderbird-140.7.2esr-ro.xpi 501094 BLAKE2B 0c9a5230d9a96f660ec425d96347b174f9250bc3740b262e4329a1aa011b9340aadee72836f064447a3dd12eb98a8e7d1c351b4de2ce612d70646fa25e5d600a SHA512 2c83593e57ae01fb804ea6b4a201dfff9c486236e9ef21da5ec9db4a037c9e0eb3659b2834468241d78d533f1cd08a74a643429024db391c071737ee6ab0f133 +DIST thunderbird-140.7.2esr-ru.xpi 593285 BLAKE2B 8a35f179ae7d7bf4f16f41ef4f542ada9da921105ad3a14af0788259d640770529ca7e8c3d188190ae4c025c70a17e2a6ab8ab485f0010bd949e8a41af40057d SHA512 a56335103eb94f48917e34a903a2eda8988815e79c9a8d8ed977151e3e5d9b1f0ba169598483090bc80f07771416fed0cf2c6a6a95d3cce09e37c1cbc7ff176a +DIST thunderbird-140.7.2esr-sk.xpi 519389 BLAKE2B 857e50f064bedd5237ca6f116294b1851b974b28fd68fda36856c3b2ebdbac38caccb651e6353f2df97d9639913b5d25b382c1c4b604fb73259548c1e7f80680 SHA512 413f77b88b1fd7ce14c6cc84c12dea2fe2bb75da16a80b5ce9acc12c0a3107fb37fabba37f2efe451d1f9631dea41533dd365cbfac74eec9d60335a85bc7f657 +DIST thunderbird-140.7.2esr-sl.xpi 485961 BLAKE2B d15151b40e7b4341663d1bec2caa2ec331d280ed4f38599309129d330a6012a588ae68b3dfcf381137147494d288cf521ca27052c02389b92e9254ba9a8b162f SHA512 b75d4936e4b397d6f132a6474040e1b9e1db597fe522028f50f08331e3dd4e67cc8bca30578dc3b65a0aad51b602001c4cf9c02a9a46282acbe41197e733331e +DIST thunderbird-140.7.2esr-sq.xpi 506268 BLAKE2B 488cd4e89f2948c1e6fccc3abb00bac5532975b35e201795e89673eae183a171d319bd3dca0d834dfa77e596a2184f2102b51b30e8642cf68f528ed555940b4e SHA512 6f4049b39310af2d33b5b85f8c2bed4e3fb562b044951324d569a4fe663aafc5209089f31b2dfa075a4800aee2df79d902dbd3c43c729ff79c17d297b82c0c2c +DIST thunderbird-140.7.2esr-sr.xpi 495992 BLAKE2B 955dea82680c7ff505496a8bde7110e38d95e8c5ccd35f48f870fde9b97e0e1c3d5b3b7d646796a4c83f29e1724ecf5d299118451d753da150f37ef2a5eebb9b SHA512 fc13368b3df8884678b2788d17da90394b6ac4625726abeab49169aab78a6b2ce3ffe6ff7bc5af0e26093e686bcd467ef89bc43e59323053860893207bb9adb3 +DIST thunderbird-140.7.2esr-sv-SE.xpi 484419 BLAKE2B 4509b7effda6fc9d4ebf978704b2f50f68a94b3d52d6b55e24074af69f1b31c763941d9476897ddc9a0ce202ed88a91860c725caf2a173458767928cc2b065ab SHA512 810a81848615f90877dc2e1b5b3f65d1a5d9c14ba676711bc9e34a709e1c8f7e98e590d3daf2ae88035de20ab19ea162eb100edd99025431f3f8a9e652a6e35e +DIST thunderbird-140.7.2esr-th.xpi 567947 BLAKE2B fc8da94032f6ea87b2ea3878ea5d248cc6b9055d27d1993f093d0416e43c8957ed5e4a20a6e1a1e40c46ae1d5cdc3c57af0a0ad1bcc550cb786eab8696fd6e36 SHA512 6b214a4b2e3d78002c3fada93a6be6cc7e49febe935bce4955cbfaa1ba004ffdf6d64a017541603a1e0456f965fdd3dc3ea53c52b642e96136baf161f9463fa4 +DIST thunderbird-140.7.2esr-tr.xpi 496182 BLAKE2B 8db58aac1548e334499a4ba57fc71fad733db9b92409e974dcf5a5d1cbb08db11b1c276eaf0ca0cd55f695fff611c5b86511c530d52403ee29cefe36443c8a1e SHA512 c18b44d233846cc96d431c1ba1a45da36847bf6823be294fee386f65e68a27296cd5c0c6a227376af3da483967d72aec928a4d81b5370171d783e77f712e29d2 +DIST thunderbird-140.7.2esr-uk.xpi 582152 BLAKE2B 1040091655eae1bdc6da2b1cd83784b33d446eb64c8b9e05a3594cd61886d2b5d7f143a82ef85edf1d38c95bc2155c26ff0bd67f893b8c477d50c1aeaae6318c SHA512 30c55a9f09f5c9cdd5315d553a296323aa917711a0fff3534d909f63c77f4bfb6e34e909f513442c166fba130d1927ffa92707d2bfe00cd69d2b8ccf432aefa6 +DIST thunderbird-140.7.2esr-uz.xpi 355268 BLAKE2B a54904e6dfb6b14f956de5bac4dab49894221ae64779841977c3ce1113eb853e55e331df18d63cdf5975a2227533a59bc9b1093dba56ac4eb3140ce39c23c9da SHA512 d22273157fe8268a69f46d581d2e47d2eb9961ac72a0cf531ea1c68beb5858732e860e984616a0e3467b251c9311860c9a8c51027d97035f43e0c5eef1fca79a +DIST thunderbird-140.7.2esr-vi.xpi 518884 BLAKE2B 046abbb23a4f0ecb23a693b1842efa57635a839cbf897dc0aaf86ec672a111c1abe07fee7a090da5a93f6091e62a4af5ac89458ea70ac2a1746e334b1a2b5f38 SHA512 0fbe36f05127e6ba8630e7cd7e821fe7e153310acef3b3483cb6e2527070618f40bedb920a19416b2e7db902cbdf1fd7fb55ea0d8135794b80e1ba40c1d3bf2f +DIST thunderbird-140.7.2esr-zh-CN.xpi 507839 BLAKE2B 7a32d22632c722f2a9f268e2650a4751918d59515673389dad23c0c4ab02ff12b559987cf74f96f7b3f4f0a50346002beb50e1ae8d8b29c4de7ada64fc558e50 SHA512 f5d197567092fd05479f9c0af42d0ed92e6ecccc2885577082e800163baee9262257c95d2a15a528ea90157e8410fa5c2e76e507c41515b8e720e0df677cf28b +DIST thunderbird-140.7.2esr-zh-TW.xpi 511432 BLAKE2B 43764d979777ee1beeb4a4a00caabbb21b314533899818b92268f48b239007826a3cb454a0e81a6fc2b9479bb9e8c2203b5442b8fec578f7abfd4c97a8e16232 SHA512 4ef6688bb2393508a34dd569af2569d4f9faffca92bae5e2bec0978d576a8a9b7733620467115aa42a5767f77ae0ee06b1d55775256fb4324a0d0a62b82eb2cf +DIST thunderbird-140.7.2esr.source.tar.xz 758933224 BLAKE2B 880918c63e4c6750d8dcfc0f3f1cf9628c58c99392552809319a635c3581987b916a186776a85398b038a25769c65a3a8ca71d307c0b509090893106840f2edc SHA512 513bcaa496f987d0f3906aeb6fe3ea651331470646b0c58479c91bb2c8eb52e389bc8aa646437a03b611ab78bda1df7252545960ffe38086d1fc462e65421819 +DIST thunderbird-147.0.2-af.xpi 312139 BLAKE2B 8cfe583bd0e55686d3a77517318aaa46d2b4038cc7eeee9480c96e775a5eeda6dc3c97736210763930fd9ca28896dab0100a770e1b4213381a26d2866a1270d5 SHA512 bf7a22ad64e2fd2479411f14f1e8f81330a200db87e5d7e3eb4475ffc001fe0ac51515aa9c50172d974f53ef2210a3fcc2493755bf642cfb6aa9106ccb9d4c59 +DIST thunderbird-147.0.2-ar.xpi 434055 BLAKE2B b8d9a4cfa2c13c1a940e14cff780a52cc4db60a9b856ccdf2348e90a07785fc6eec4ac9c399aaa14f6f29e7d8046d4ff8f9693327dbf5843a80bfe1ec8d0a031 SHA512 e1f24efa472c31693ba4dd9de7ce81eaadad6759a8699a235b32ec73fbe05a86a20b0c4043b82ee74ad5ea5dee63481da0c59fc1eaa76595a80049732b3fa2c9 +DIST thunderbird-147.0.2-ast.xpi 336206 BLAKE2B 4a72da9cb6087969f2ddca2a060db6f7e0b6ecc5e3508f49ffb566fa260045ea527f3d938e33c68551abe29b8c779fce50346f415f1b1eef8d5ec539dde957a9 SHA512 c6857c61c1ab2bf72c55ba6f967e53eb0b5a2af524f2c4eece806ca689ac6f451a49e2978a3b268d46f669d4205527532cb75de8abb78386b8c160831d25db8b +DIST thunderbird-147.0.2-be.xpi 522338 BLAKE2B 66492ebcd93a5b83559842082a3e69ccab70ada620e1946590e7a140d01dd22b98be68e79d6da200b0053571ae583072d7fb659f733f34b0509581f413e3c4b8 SHA512 39bc3e1c0809199eda25661c59e1f209c53a94ccbbfa6696ba782c4c53f49efda618b37b67bec082e9fd17b14cede274d244aa2562b0f45f9abf9759ba426c40 +DIST thunderbird-147.0.2-bg.xpi 543151 BLAKE2B e7e1ed93f68799cc1d2edd204eeb5f20ce1838901a386582cedd6095b297f744a345d0eb2b2e132e7d3bc2418491a80cdea630344ca7149776421aed87b42267 SHA512 46f4ab404b5292df867c6ed4097d15e344afff4fa2df1d636a688182d809efc12b7cdd720dd8f36b96476f6d4bf432803a7a4c063e17dbf3a6c6837901d2d81d +DIST thunderbird-147.0.2-br.xpi 401078 BLAKE2B df389d8509fe46c46b14c0eadb50dd1eb006c1d03674750c339d73f6a688102968a13da3c721d54cb41f5d072d9376dbb664cae9bc7fc4ba7957df553ae93ed2 SHA512 8cf28876f123642c1696ab0bbfa5c3cd3ff7676664b4e49af225ae473649241b6ffcbf3e41433e7e7d2c4d9f572396c0237410e53445d53923b9f70a9874f3ce +DIST thunderbird-147.0.2-ca.xpi 438291 BLAKE2B 9238ff89742e585fec4f12c096da10f72b2a9ed3a812a5303228adf19f00fa527e5322f3be3d4cd61bf46d8fafdb8ff0ed66bbe2abc6c1a6f09a11e628eacabb SHA512 8747fe482da70b31d429e5126b092da89e88a2779e1cff5ac07a235bd3a56b2395908e728ebc6a7357086402755efb23ebd2c02abda8a39a0a53bcf0a817e989 +DIST thunderbird-147.0.2-cak.xpi 414736 BLAKE2B ddf173db5c463ba63b78462419a91e8a9afd61feabd0916d27563a08d02b00ad333bf1c8c392b363e4fcef4419bab61bdec97bc5b7dec7528e5ff63a1bb84d2b SHA512 e57f08b59eef03be05f3fcb57a7533ac5b20d9c8a6266d694cb04e7507eed6a45aa29f8135b20b662ddc6417f95bcf0beee1679c465592f0d1739a9bb3f0d638 +DIST thunderbird-147.0.2-cs.xpi 527273 BLAKE2B 1e132ccf32d140bbcccec40dee21dae47ce2558cbf526c7439d6a6e5ae85767dcb0b35b2b23241bb3b3cecc167ab85b3a72f5e5ba5c1a2e67cf3fe0bee6af0c8 SHA512 af21abe2b0956ad7c60448ffa2116ec4dcbcdb0eb6912babe941582c8cc61843421833932cc62d70788b07796077c51d51a86f7fa7d0f38d25ceeb0291d3a0f3 +DIST thunderbird-147.0.2-cy.xpi 494799 BLAKE2B 12ea8248e4199c2a8e541a262d702541852b0d15966dfbb465459a878f6446d9661801ce1b7499cf8c578cf636884138a480ce9fd3705dc2af21f6125b33cc8f SHA512 4d98b28a1eba63887cfcbcc7d1946c35c418274f05c19cae676fe850e751e5d2408d2ec137f5533280dc32c469283729a3477d161da34ea83cffc991dc6b35ce +DIST thunderbird-147.0.2-da.xpi 483073 BLAKE2B 04e3d3080f777650864f95244bb6b4564e891a7bd533cc1d8624186da914ade1f76878063d4631b5615c4ab2373abf54d4166382610580c7715ac6cf95d61495 SHA512 67dfb5d6c14db201d82a28c6489e1b1c57d1f0c0cb1a6691ddaf149d73fad7491a9526d42a637f11ec15dceb69d9a6cda912047c46c667a9b1c148437345a2b1 +DIST thunderbird-147.0.2-de.xpi 511734 BLAKE2B f7eea184611d61bd53c6810da55429fe87090d0addff3952f4fb4aeab8d6504dc9798b4dcd3c5e1903fec963729782ad04ac2d10f26221be7837fe5ec8a0f8b6 SHA512 2da3a09103413ed15ca368606cc20f69c35aa808ea6ffbe31541d1ffe7cc3e8d2a66b96da57cf593a9603772909ff6e536eaac997349a4d6b0b2d21433e73ebb +DIST thunderbird-147.0.2-dsb.xpi 524707 BLAKE2B bfb74e548cfab32658825063e520d50a4299dce4e8eedae83b913696a928e8dcfaa298f7b5ff4586f240cd09953f2471fb3cbbdb365f109581ab40261adfb8c3 SHA512 92707bda9fdd92ffa5521d1bd170d1169680493a66e9e4b061cf60d2528a8da817f5fe47f7b94aff1dcf7240d6e2bba7cf983a6b4fbffbe0fe8e96b0f47c2fc3 +DIST thunderbird-147.0.2-el.xpi 616560 BLAKE2B f3830c1d3a0868bbd95d0d9bbf730dcc555992777dca935d25aa0192cd1aa96d522b1d3824ff983db9936f68d3cea5f039ba3ff93a93865ad596608402bcd232 SHA512 5ca22ee6ea593d606c36710d73f226aaa405cf7adf339137f7bf30e135e9b7d0843679797c816722d190308f67bea9487834237c16427955a00bd38b05787092 +DIST thunderbird-147.0.2-en-CA.xpi 458186 BLAKE2B 293ec0c6aeb3e87abb28f035bdeab1af1b9afc9feed98533e0862cc2d1a85aa44b8284529f02362f1124730d17f5b60f8ee666cd253d941e76ffa822f68ffeba SHA512 fb7d6bcf3b1bad87cd4a3fbea8afe63ef25baca38ba0097efd2043a646bfd372199769b4d4da0694dcdf55c2595d9a3d02adc0e4011b7252c95ecb6c4f56cb41 +DIST thunderbird-147.0.2-en-GB.xpi 458132 BLAKE2B 52818eaac1892053577e74c2b9341ed2b0b25c76eb6e276542d232042fe2a1aeeff2db8f6e6c9bbb518d3528c9de06e65f879d6c98f052e4739714f7b64836d1 SHA512 e1f9e965c1d584d767b0e3193e29331342f9c503f15e097e45399d74173a1c827230364c12e33085ffb0dfe360028e36ff2f6d01a08f21d75867fc04b8600190 +DIST thunderbird-147.0.2-es-AR.xpi 501883 BLAKE2B 8f7d99418dac64dbbebe14da59ffe0cdbbc6ec15b051ee56bbc6d595eb7f9e72e91bf99a195ecd2b64135d5e0a8b96637c81a21e53e0a9cfedf82042972c0fca SHA512 4d284107a5c73f9ca54fe98025c41d1153758a1d27d70d52d7bcf2f4a2c3bb5ee0cfe2d50d9d901ab9899852d82c1ac58362c2a9a3488be0a57626930c60f581 +DIST thunderbird-147.0.2-es-ES.xpi 504070 BLAKE2B 7a6892e5accda7278854aefde031d03f6749472e9839ddf830c23413a82a556d388c9aee1b70858e76857fa96ffcaf28886846d17289fc9eb3d17b6a208daa97 SHA512 2c3e21d2b696fa7399028847881e409711e5f4c65ad1ae11035cf6e09d17e7acdfed978df719a6caf3b4d745f590834b4b83880bf238298810a642c40f218818 +DIST thunderbird-147.0.2-es-MX.xpi 489657 BLAKE2B 2f0647c79503b001e94ad4c92ded26a01fac409e1c36e5246e6fad432438c0faef89c8e2872b80855ef9e13ab5f7d4e82ce37d9045de51e688d8d5cbff3d10d5 SHA512 6c233497ccf170e814c70aca69a064e50add4fa1e315849d4534b7248657d13e2c9b330b6aeca2d830c63a810c9228ef256130a138a0d18dbf6aaf0e47437e9f +DIST thunderbird-147.0.2-et.xpi 441295 BLAKE2B 23a27437e5e583b1594bb806b35150511dd71d70147160a555f9e9bbd0dc1a8f7b2d46d104d312b9d143b1d3a98f43f9cf042c77c06a24184f2537957b7cdb10 SHA512 975d794fcdceb3cd08494a9fc88c45a670c6593bc2145449132e557e9594660a318e556d2a152c4014cf4dd23ea1566c86f2542215130afbee953eef8930835e +DIST thunderbird-147.0.2-eu.xpi 480259 BLAKE2B 506e05ebc06fd3bbbe0c544ebfa124151a75e305f517481e92da53aa51f9d38d3ae4d8f6cb093c26973207114f6f8648cd334cd582793579ab9292ea682f6676 SHA512 e0bf75433aec8cbc1fd2d498d752aad140220d71db18498a92fa562a58aafee454a7aa93321d70c07c04c030b1a921ea27fb6fa7f0ee648fead43a260ad181e3 +DIST thunderbird-147.0.2-fi.xpi 479304 BLAKE2B 64bf0dd75ad5af57d1833ead39d90fb7b2bb85c4e360f01131508fb79c6d296292358b5c79ce5a6891931649441cfb577354f81ee49b89015691ee8004f68004 SHA512 38db6dcd696a3e44fbac91b1636148ed4851c1e1bd68166208249f2aa9388073efb6c58437244461516c9e66ac7d248c690e999b4bf426246f5b9446362ee941 +DIST thunderbird-147.0.2-fr.xpi 515109 BLAKE2B a973e20caabbc589f01242929515bea16331f67cbb090dcc7e62263e337a8ee7a7112683f73abb28f2e9032151e35b1d31d45c7cdfdd835c514579e0622705c5 SHA512 697f923cacd6ff63a7f232f853293595b6b869da73dd95f2c2df40531dd12c73cf09ce43f63513ab81cd590013bfe959dd3f33b95ada6003ddf1671b1a422203 +DIST thunderbird-147.0.2-fy-NL.xpi 497415 BLAKE2B 10a92d01f2dd34df254848ceb5785a3e14489a3145556e2298ef6ef07bf53a002156097395c3b2475a13d18c1fc0d71ced96068799606dcbc9140a9dd588bc1b SHA512 db84a14f898d43dc75d8513f6133e5b650930227f0f656d4e9b22b4de0ae1345fe035d1ba57eb915b342b310b646b0d4df4c70e8c2eefe6c961e8a365ee1ca75 +DIST thunderbird-147.0.2-ga-IE.xpi 374259 BLAKE2B 89f3421a31f570ec526f3642f2e31459dc10eff3fa8fbbd1a6c6775a32708f71616ee39b78ac7b83be0e06c402720a6251256f01b3e414360b687d71a452251d SHA512 76f57812d1af3965af11d138151cd908119dea0ae2edf982b619e4806408c53bed068ba6deef9d37a742230f5ce5c5b3bb296bb281ef347775268bbd023a28a3 +DIST thunderbird-147.0.2-gd.xpi 459621 BLAKE2B e847644e40a6b20127487deac4a3513cb4442c9fa6bfff2c03262767a0eb2eae5efa8a736daf66b7a8841d302231592f23c15002622811ad10bb17c1532417ba SHA512 3b4275bb4142fe245de596b31a2b379ac3632f964e3482e649ed2f8bab0f2838aae5cb605627e43db59415665ed14228d92c44f2a72c4384ab949792717dc347 +DIST thunderbird-147.0.2-gl.xpi 488945 BLAKE2B dc9e010950081ae7e26e0662fddfac912c000e293d653a1c74f1e76ee3bcc7d4fbae7919e7bd0a75e3fe385d10cc62cf32a0fd7d127e47e98befbb67fef235ec SHA512 e04ab4384ca944e4f7dd1634c71fd264c909625bf3d44025c172e13f305cbb0ea22d09c25682ddc1e9671b6e1c15261fbdac1e73e9f8318171caf20f3bea5b61 +DIST thunderbird-147.0.2-he.xpi 444168 BLAKE2B 781aa81145fb67330081ef0606afb9a7a452780c88370e55e41482b67f331169ad1a92a3d2b159657c801344e1b99f3390efcbcb05b73e3955d2b9912f68ab3e SHA512 a7fd857bd502e6d925bf5de0bda403f85af2324b01eb7a6f9b6fa935ced4859c0377e69ec76452efc579abac817993a2fd29dee78da01d764d3f104bea515e2c +DIST thunderbird-147.0.2-hr.xpi 476344 BLAKE2B 14cf77aaf01c7ae8bcaee10e394caef56b22fc46ada054b3da90d26a256852062af101a5d93e5299b4fe9cabda922f3d2fa21a5dd9e2040c8c32eca75c1c441c SHA512 222460fc4d637f327745768276a6875e93ac48e2a0055ca86a0a98131a4a40b47914cf105f71756d78e558b8ea0c3904ffe9298f3b61da01ad021a38cb7d908a +DIST thunderbird-147.0.2-hsb.xpi 521891 BLAKE2B 302c01c9cee582cd40d4938eca96366d5014a325e71510c05130d3ea447f7a74fdcdf5f399d7dbc243dfe34f0f494e1e0328123a40fbb29b5806e3d92dd3249f SHA512 624ee85674e517bdcb6ed39f570c852cb1c209a0ba4dbd99cb7f1583e00b9ab0bf692fefa19a04a89be88b8b61a2c306927de9f2cdc1774f9c4a4b3f68a995f2 +DIST thunderbird-147.0.2-hu.xpi 524547 BLAKE2B c716e996f736a9e87e361959e0d39c2b97c92c94d60a3b7d525a0c33e58e5164a5e0a96bc35b2c5e82eb67a5d47fefe9d8c1a22aea2e734bf504a4d111d69deb SHA512 b43fb08f307c5323f021b5d03ca1778c7b4b869c991ac4f9c832839d478dcc595b8bf8ef35086a633ad3f79496d3e12ef61d3d22e9818b62c0a18cd2cd817d3a +DIST thunderbird-147.0.2-id.xpi 471093 BLAKE2B db07616871873a44e8045bdb2ea06012583f79be07dc26ba7355a4657b82195b6447cf7ea742788e4cb8d8ffa45e7753e9fdaf228d42ac80e96ceb7b6011a784 SHA512 ee3f42e591665a9b78812cc96bcbb69d63edca381fe11a90edb57ec563e9aed377289f2ae7a2113bd5f5454fe59cdd27138e8732449b842a2a70e24669d3daf7 +DIST thunderbird-147.0.2-is.xpi 485923 BLAKE2B 1fc80fdb2996f28b431f90b9406ee639f49bc8a6bc0cff2fbde7df7b4c26541495238885c1f9e09731e3e8014500996f5a666345f73b74d25365f7095d7f4882 SHA512 e083308c41ea8715a0d008c6bf40d168da5439e86f6e072786e2ad2e2e7348daf45561c0917fe3ee3bea94372d8829e65b0386c695ce5cbad315ad0b7535cdee +DIST thunderbird-147.0.2-it.xpi 494991 BLAKE2B 0fe021b123c4ebd10a32b362cb8ff771f4f907c9f2669e2c7a63a71129896c2461d56d892cc4fae43c9520b2d183d138f27833dc897db44f5d58c4d4a9b06072 SHA512 fd7c496c33036f185b343c5b08947bbb9d6125f92a00b782b6a1fb0d6f3bf02b5fac7fee51f4ea296e0ff0cf06f717c7c71d9e34c2f2884f85a0dd70d49c9c75 +DIST thunderbird-147.0.2-ja.xpi 546207 BLAKE2B c25aca97e1c640eb57dc4eb4232a3217cc4643df6eba2de5c6030e90cc1b71098dbac08a37580fe61f09844e77681642a9920c9afed18018ec7dc889a29fd385 SHA512 c930037f7d473d8887bbea3d0fe313e6236dfda8e26e082f5dbb38e35d9f912b33c9fb02aee61c8e7e1017bcbe086d03bdde98c07184f5e3971259428dacd867 +DIST thunderbird-147.0.2-ka.xpi 562231 BLAKE2B 605afb85548789d8a514a2c721ccb80087182da76fd03c6c9216f569764abf1ccce35b3c552a21680845bf3856eb93e438a7720c0e244549c67566fa35536f91 SHA512 6596570e7e586bb9f90899c1b4d3734d1223619b159c697c364f0d8a4b8ef2fb8dbe47999ae0f3de5a1c8beabd264aff57f19fc52422d83e99441f292ba9fe68 +DIST thunderbird-147.0.2-kab.xpi 469114 BLAKE2B c7e690d5b5f33800ed1caff9827229624a2131ca3a45e9a1f73c1e71a9c71ae7351f154600dded4fe7dd676f69f67a0b80945f0f79a2951823995ee7d3b132d0 SHA512 8f28ab1ea9c22f68f74a7ea61f7b0133e749d10ae9d34bc475888dbe484ab4171167af932a7f3f73978211c7a196b691da2c4b4a115b7e4c8774ccd0ecdae135 +DIST thunderbird-147.0.2-kk.xpi 586396 BLAKE2B bcafd62cb61eb173efb7cbe4c36b2187cb5d53b39971a74ff28eefccefd9e9e97d4d8f73d5d234d36b1c4f1caf8f744a93341843e94dc4f45a3773a755cfe08e SHA512 9bfc30b88a05c6364b2bc4291953a2663af0484c0fca25f2ee3e748124238798e5ca3cf4f198e7bb41bdad81eb11affd900520b99be80bca7afe5c0f2e9e10f8 +DIST thunderbird-147.0.2-ko.xpi 519362 BLAKE2B a12d9a1b80260b6f564238e209b91a5e4238ffc0045b2217984c15d175fbfe90e0f8985e7f9a7b48c4a9b45d6faca4260403e26ca60da445ea42f9f272841815 SHA512 da0e172febe2824627ca948a150811c7d5ea1770672546e9bbb8a31d8b3790fa9cc1cc685de279f70a15093abfffe4abd15de7d1c96d18bf8ec9488497a8ab07 +DIST thunderbird-147.0.2-lt.xpi 451107 BLAKE2B 0f706096ec4d81fe7eb2e38e3f2ec23c0466e690b4360d7cf5282ccbf141deab8c15c5c2f1eb7424dd577d74d8e6940b1a8e5bdcca9d027d652103237a0085ef SHA512 246d148faaf8570d79f6ae5ffa89b8644b3e9ada28493a29e3598582b5defa02aa3e14d0dbb5e7eea0af2d80d1ece2e997d8c0cdff5ff613882d4ed56cf28023 +DIST thunderbird-147.0.2-lv.xpi 388697 BLAKE2B 60a2eab275021322b2866b7e00a7094f34a6e02159499a3433a18f9201b68c9366f46cd379111b182ad06400fa91bd2e821d3e40e5520fad80d29df9197df7e9 SHA512 0b31dcc81d20712cf537e8c7c606a74ab57fe8d1aa64adc3cb3d89df7fbeaa916e7c8d6bcd0684e8a403f52195111de506e94e67ac9609c224ef56ebd98e8166 +DIST thunderbird-147.0.2-ms.xpi 350561 BLAKE2B 42322ac1333c01a9caad4122c4391917514647a9809f4cf97cb9cab664130e5a3d43d0cee72275cf7564cb9cb2022def3c71632518ac12be6a95ab8411203ebb SHA512 ff33e0a159ef708f7a2fd571bb3f812f29db1beb0f9a01e1714c77fa1b5ed483c5b437023a4632db33bbc1ef7702d8e264fd79b784293e28fc420e5d5f60c8b5 +DIST thunderbird-147.0.2-nb-NO.xpi 482518 BLAKE2B 5cbc87bb524bb5a87fd25b9c0c275a1fc0ab63fad6142d0d2b4c1ac44acc0144a6805179b55c64590195b5a1047febacf77de036da33a94111086c3cbb3e29c6 SHA512 1d865536acf4bef5c1f3dace3514555a284cce1a4ca41044938cba802608770ddda3e05e9cf5e2dfff603bbc99389e3b065390a94d27f2558e91f6838dc14ca0 +DIST thunderbird-147.0.2-nl.xpi 488672 BLAKE2B 10a46f3113bb0231e636a1ccbf6861d101e3493c518628748bb9f8985d83ed8489b071356edcc8da7b656e1e79c58527da77da13c400d928730bcd066f96b108 SHA512 98d837b8a0c827d4a21f44f28dd95529d8a4767530e32645f3185eb40b3a76735fd3e1d49b6f4e1fe3a8e7dd18f9d872cad35e9b91671bc316ab666069b59a97 +DIST thunderbird-147.0.2-nn-NO.xpi 486396 BLAKE2B fbfb5bb1734b657dca1787c80df26aa97eb023972cdacca2ff4f18eb64eb6d3f7cd5bf4fa3adee8a10d48e934c0546fdfa53e27d0461919636f0637aa7a10805 SHA512 a5b639d8e4b36c74299773ee13f2052ae5c3e3903fde07164c012425627f017fed80980bd0b00b109224ac7263289f2fde95325fb45d4eb540ff4a6ee8622c28 +DIST thunderbird-147.0.2-pa-IN.xpi 435803 BLAKE2B 28dcf95f1e6642577dde1a82c51953ab9d02b09a8264a4183145ab7628c910f117809c0a2e1db02297c908145eacc627c362a5eefc5855eff9771673c6b01597 SHA512 775c58d746853ec71ba4438e1c21f8b63842e6a48a2d1b3a019589b1793af5a76b7007bc87ad8fdf3f5da380ffd1594e71f07547673a16ecffb8229f24401d28 +DIST thunderbird-147.0.2-pl.xpi 522618 BLAKE2B 6112dd1d430f04c7d2f54a050936015befe616ffc582ba643e8d44605c444160a287f623a9dac1f5b319b8b00e2a41e76a4292b15fe8e9fda152d447cb0ec6b4 SHA512 f5f513a38c41fe263ac8d46a17ad6b0e02a60d155e9be565687c65de4dc49acc1ba681b815f8642001f042b0a6887dd28187e7ef4990e9e4e9c9ca55f8722a5e +DIST thunderbird-147.0.2-pt-BR.xpi 496742 BLAKE2B e7a3f39a032331adb1e1fe46d2b62b817b54712dc91d706fd5220c1379f75537a9cb5745121651d24f1877267740c41dc37a35e2fc0b784521407fa18b09d9d0 SHA512 2237552b42413a1acc670aa12a2297ca637374ec2daa39197dcfd6b9b4e6ae884db429cbce9a3acf4d6285152fd7921269af956c2fd71038741172d34ab97fc8 +DIST thunderbird-147.0.2-pt-PT.xpi 486345 BLAKE2B b1bbf166fb6d28402c4cce8aea2d95dd9ffb234305b6685b46d49517ca0d623b84ced590e99aea9f917b5e5a28176f5d369af0dd6fe348210b9d0e4f75095c44 SHA512 770b05db55143ca77523f87e48fa423d6c367f86172091bf0a3375f05faa589055f0c7d529afccff80a2e1a857466b2afb7fca6d9151810659ddb0cd3c7345e5 +DIST thunderbird-147.0.2-rm.xpi 487588 BLAKE2B 80d4891358ab0312b28ea18f3504989291e5cd02380e3d9b1cd5a4305b13454ae58102e004485b1c087a2ccb901a488a9d92c703eeee0552f028c49928226da1 SHA512 960a0dd9ccf9fe95de281e45e1a8d1cba8e5d9919f0b033790be4eee53940a245e046b6c61f2196d441dee4c7f8e1c52a525b4338b4c4106e8381f97fb1d54f4 +DIST thunderbird-147.0.2-ro.xpi 507922 BLAKE2B 0c5c77a30c26b65a637cdffdbd54143a184f2245b5878e8950f7142120ad140f79f69297ecc3113f08cfb2b60f6dbab9bda959b36ccc3b70dc45a4b16b0c5f40 SHA512 a431ad1e5a30bdb6883c9d639c8c07f9ed5cc45a13b07a886adbfe9f0879de410f43eed9675d133c8c14259fc70da37fbb880b8e11a8d0c0c8458944e81b7e89 +DIST thunderbird-147.0.2-ru.xpi 601167 BLAKE2B 1264438b3c78618d0047899927c0fe69c0c76577beaf9d7923cae195a21d3e5ef3e6aff580fad8eaaade8c252f7463a67aabd2daa68610f0156adc8665bd0faf SHA512 2eaff7cc4c627ddf5d39a296b14063240418504ce1b268f80bdacd1a1928d978d53bf85a7eb3df5fd12a9e0624f0cfa153010fa9c1775e6f53e1a60a6320432a +DIST thunderbird-147.0.2-sk.xpi 527055 BLAKE2B 671625e90fd722f4d1fac776fe12aa1049ae6bac6e69e282dc5b7809cb658881fbba50fce7bd6f45aa0dbede0d2caef1aec8639376f093d912bd0a49d51b7d6b SHA512 5f16590c0403f87be4270296f041f6531f35511bc9b1c27eb1c7c77ba4602fda6ff26ababd19b15e088d37dbb46e9a1be098f3cc6c09ff5c144d534b2bf1bb69 +DIST thunderbird-147.0.2-sl.xpi 491183 BLAKE2B 9b60dad49d6128e4b9650d0eec63d629e8ce7c88e4a3a9d6b31b9cd00f5289c65637c42ba2c222a54e9648f213a7f4f81cf6cb07cdc9f8b7a7d244a126d75355 SHA512 9e9a46de5ce25b0debcce347d8be831f79b50eb835ebae8c6ada07659eef81d1a5c1e738a547d78518e4d23bed8096d81d55d06a2c24799303d553b044315102 +DIST thunderbird-147.0.2-sq.xpi 513074 BLAKE2B 9be58eb19c9fa7985dca4403ef19235a97f79c77ae8fbbcc2addd693e30b6cd7a0f44b6993e6d650f80902dd6f2bb33f7a38daf19c81b0ee7767fc69d38d84af SHA512 e3e6ec8f80ae0969bcf2708c5728ce84ad4d36c2accef5ccaca18e547cfa76350aeb964ae8286b9950dc7ee3d718c4de62c533180234db420bfa8adae0de5150 +DIST thunderbird-147.0.2-sr.xpi 493073 BLAKE2B 85a32420c5863035c08d9b8e7ac24c7c8b9d11b76387df703da0a35c3f584803bcc3db1130f40e397524b771625fb28f0d7e61796aeae4f56a60293a3ae2d30b SHA512 16d48f6423c9141b0cdaa8780ec9b7edb028c85f81e689ed9a342fc19f996bbcfffdac510a940076aa7b9b2f76f8ca6ab11d9f00c13fc70f46330e6a32ae60d4 +DIST thunderbird-147.0.2-sv-SE.xpi 490953 BLAKE2B 29b510192e7c76ebe7fb05ebacbfa58eb5f9faaa1df413a9cc189ed8a234a18e3737a1762e75936defead7bfc6ede7e092106c1dc46b0ba2efd3b7482c3d65e5 SHA512 dd020b761b76d5013fb666e3c01000ed8240122ac851bd75d6ded0106f33a0c2fa8afddeca6624368f9e471696612e517e20d1521b9f39cc29039fb393307c59 +DIST thunderbird-147.0.2-th.xpi 568261 BLAKE2B cc61a5c2101adc5d504d18ef0df5a9efd02dddfe7683a0c60a4f5fcc7e57cf6720547abe7c486be495e6bbc7d97b21690086ad692b09f28ece4d6266833ca1e7 SHA512 dfacd4622df44ab65065dd7a97dc23f468b3d9f657b6b7fc33f70fd47aefb0ae067f6ab9f626faa3bd445a49ad5aebb7d82608e3be407bbd548de756cb75b085 +DIST thunderbird-147.0.2-tr.xpi 502702 BLAKE2B d51b4316b9e1c6b45a4a1c78eae08856984c899354bcea0e0c67fa381e32a4890d989101720dc7ba34a3cd86d35e01602af74f6b586c8fde5695a090d3aaff71 SHA512 cc7dd90fd4cb2fae9ba75ec82bf694f7281a231a8f02916a23ce9127052e9a3719c11b17a792eb965a57479854dacdb04bb1dd285c39242a19ac33e114165859 +DIST thunderbird-147.0.2-uk.xpi 581931 BLAKE2B 8d07182cd393cf640b85c2547e5ccda950580f0e2094d7217d6887b55541738c885a7cdc4a02d31a8e77167c01012a0ac9c381f1431eb076f4a610c8b02467eb SHA512 cac62812d27143bdab1431bd846d4ac8e1b062e8aaf03d5bf3d652e8c4701e4cf3710eb26960cf4c2f8500ac5695a52abbbd34c5be522026bd7428f5a933f374 +DIST thunderbird-147.0.2-uz.xpi 352854 BLAKE2B 8f6f8f4331b83d1ecfd4325431cf4d09c1022a3a9dac3b3db2d6efe3f41a388de7490c40de48224d0f8c2f829e9a8a6e46b91847b4557767283fc801521659b0 SHA512 147ec42fd9fa70bdae5792497c63341b7d01f2cc3c55f01fd931ed136a7fd9a4144986717b213fd7a005269aa49596b140b4feff4ba6c9a03fc23a8271bf91ec +DIST thunderbird-147.0.2-vi.xpi 525245 BLAKE2B 5fe5f7d6b125d72789c593679ea264cca5defba481b80c276786415a257507f385ddf404cf03f3856477013e32e47fa16b1372d0482263f3f1fc66034a4aac1a SHA512 9487e8babedd829a9741aa836e9dd471451d73dbecefc70351f85cc53f2318a85f7f8fd1c3d9ebbfe52e73b302c25f0a2b18a130a4340c800617b38a0bc8af36 +DIST thunderbird-147.0.2-zh-CN.xpi 514162 BLAKE2B 96b946a52aa1babda7f05fa8e3d83aa56211373c97373d4586a4075af72cf6a9d623220a4ae44463291cf3ff320d32f96d000715550f190ebe6f19d8e4219296 SHA512 a369cd0f74acdb481e6491c6ae227577a0c13b5079eee0c9ebac030208f8db08f6a1679f6fbb3436d06802ee9a90c8e486a76cd52617111f6a34b8eec596d0a1 +DIST thunderbird-147.0.2-zh-TW.xpi 517870 BLAKE2B cde71845b27d99dcd75c3fefae6f4b7223095520340db2ea84c78368cd7ea28eca205ba29a36a0f964f58ad6d480f7da964a78600d404d010ec95ef689c2d04b SHA512 4a46bb590881ff16ff22b3e9725e937ae65de3c90f2d737df94277a8acd4089f79b4047a40b085e9ff6c4e491906e36bfb2ddf9c5e1be70e96eb082d4473ac62 +DIST thunderbird-147.0.2.source.tar.xz 786893164 BLAKE2B 316f52a3feabe705a85f3e3e4c63829ff8f95bd39b6169d326258e8e3f2df2d4abf0bcaac3e3f6b53808e8a413865fdc6c01f1cc4ade3dd0c1d535e74bf8e985 SHA512 4fe6d0389e8bc6078b3d4db79d1f8547666950de4a5a72e49ba24d5b60cb531908b88efa9f3dd32e154ee917a8b80786389ce9b1186b6c45fb0717d4e180e537 diff --git a/mail-client/thunderbird/thunderbird-140.6.0.ebuild b/mail-client/thunderbird/thunderbird-140.6.0.ebuild deleted file mode 100644 index 1dd3db6b1b3b..000000000000 --- a/mail-client/thunderbird/thunderbird-140.6.0.ebuild +++ /dev/null @@ -1,1156 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -FIREFOX_PATCHSET="firefox-140esr-patches-04.tar.xz" -FIREFOX_LOONG_PATCHSET="firefox-139-loong-patches-02.tar.xz" - -LLVM_COMPAT=( 19 20 21 ) - -PYTHON_COMPAT=( python3_{11..14} ) -PYTHON_REQ_USE="ncurses,sqlite,ssl" - -RUST_MIN_VER="1.82.0" -RUST_NEEDS_LLVM=1 - -WANT_AUTOCONF="2.1" - -VIRTUALX_REQUIRED="manual" - -# Thunderbird will have separate release and esr channels, matching Firefox's rapid and esr. -MOZ_ESR=yes - -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 check-reqs desktop eapi9-ver flag-o-matic gnome2-utils linux-info llvm-r1 \ - multiprocessing optfeature pax-utils python-any-r1 rust toolchain-funcs virtualx xdg - -DESCRIPTION="Thunderbird Mail Client" -HOMEPAGE="https://www.thunderbird.net/" - -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/mozilla/patchsets/${FIREFOX_PATCHSET} -) - -SRC_URI="${MOZ_SRC_BASE_URI}/source/${MOZ_P}.source.tar.xz -> ${MOZ_P_DISTFILES}.source.tar.xz - ${PATCH_URIS[@]} - loong? ( - https://dev.gentoo.org/~xen0n/distfiles/www-client/${MOZ_PN}/${FIREFOX_LOONG_PATCHSET} - )" -S="${WORKDIR}/${PN}-${PV%_*}" - -if [[ -n ${MOZ_ESR} ]] ; then - SLOT="0/esr" -else - SLOT="0/stable" -fi - -LICENSE="MPL-2.0 GPL-2 LGPL-2.1" -KEYWORDS="amd64 arm64 ~loong ~ppc64 ~x86" - -IUSE="+clang debug eme-free hardened hwaccel jack libproxy pgo pulseaudio selinux sndio" -IUSE+=" +system-av1 +system-harfbuzz +system-icu +system-jpeg +system-libevent +system-libvpx" -IUSE+=" system-pipewire system-png +system-webp wayland wifi +X" - -# Thunderbird-only USE flags. -IUSE+=" +system-librnp" - -REQUIRED_USE="|| ( X wayland ) - debug? ( !system-av1 )" - -TB_ONLY_DEPEND="selinux? ( sec-policy/selinux-thunderbird ) - !system-librnp? ( dev-libs/jsoncpp ) - system-librnp? ( >=dev-util/librnp-0.17.1 )" -BDEPEND="${PYTHON_DEPS} - $(llvm_gen_dep ' - llvm-core/clang:${LLVM_SLOT} - llvm-core/llvm:${LLVM_SLOT} - clang? ( - llvm-core/lld:${LLVM_SLOT} - pgo? ( llvm-runtimes/compiler-rt-sanitizers:${LLVM_SLOT}[profile] ) - ) - ') - app-alternatives/awk - app-arch/unzip - app-arch/zip - >=dev-util/cbindgen-0.27.0 - net-libs/nodejs - virtual/pkgconfig - amd64? ( >=dev-lang/nasm-2.14 ) - x86? ( >=dev-lang/nasm-2.14 ) - pgo? ( - X? ( - sys-devel/gettext - x11-base/xorg-server[xvfb] - x11-apps/xhost - ) - !X? ( - gui-wm/tinywl - x11-misc/xkeyboard-config - ) - )" -COMMON_DEPEND="${TB_ONLY_DEPEND} - >=app-accessibility/at-spi2-core-2.46.0:2 - dev-libs/expat - dev-libs/glib:2 - dev-libs/libffi:= - >=dev-libs/nss-3.112.2 - >=dev-libs/nspr-4.36 - media-libs/alsa-lib - media-libs/fontconfig - media-libs/freetype - media-libs/mesa - media-video/ffmpeg - sys-apps/dbus - virtual/zlib:= - virtual/freedesktop-icon-theme - x11-libs/cairo - x11-libs/gdk-pixbuf:2 - x11-libs/libdrm - x11-libs/pango - x11-libs/pixman - jack? ( virtual/jack ) - pulseaudio? ( - || ( - media-libs/libpulse - >=media-sound/apulse-0.1.12-r4[sdk] - ) - ) - libproxy? ( net-libs/libproxy ) - selinux? ( sec-policy/selinux-mozilla ) - sndio? ( >=media-sound/sndio-1.8.0-r1 ) - system-av1? ( - >=media-libs/dav1d-1.0.0:= - >=media-libs/libaom-1.0.0:= - ) - system-harfbuzz? ( - >=media-gfx/graphite2-1.3.13 - >=media-libs/harfbuzz-2.8.1:0= - ) - system-icu? ( >=dev-libs/icu-76.1:= ) - system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1:= ) - system-libevent? ( >=dev-libs/libevent-2.1.12:0=[threads(+)] ) - system-libvpx? ( >=media-libs/libvpx-1.8.2:0=[postproc] ) - system-pipewire? ( >=media-video/pipewire-1.4.7-r2:= ) - system-png? ( >=media-libs/libpng-1.6.45:0=[apng] ) - system-webp? ( >=media-libs/libwebp-1.1.0:0= ) - wayland? ( - >=media-libs/libepoxy-1.5.10-r1 - x11-libs/gtk+:3[wayland] - ) - wifi? ( - kernel_linux? ( - || ( - net-misc/networkmanager - net-misc/connman[networkmanager] - ) - ) - ) - X? ( - virtual/opengl - x11-libs/cairo[X] - x11-libs/gtk+:3[X] - x11-libs/libX11 - x11-libs/libXcomposite - x11-libs/libXdamage - x11-libs/libXext - x11-libs/libXfixes - x11-libs/libXrandr - x11-libs/libxcb:= - )" -RDEPEND="${COMMON_DEPEND} - jack? ( virtual/jack )" -DEPEND="${COMMON_DEPEND} - X? ( - x11-base/xorg-proto - x11-libs/libICE - x11-libs/libSM - )" - -llvm_check_deps() { - if ! has_version -b "llvm-core/clang:${LLVM_SLOT}" ; then - einfo "llvm-core/clang:${LLVM_SLOT} is missing! Cannot use LLVM slot ${LLVM_SLOT} ..." >&2 - return 1 - fi - - if use clang && ! tc-ld-is-mold ; then - if ! has_version -b "llvm-core/lld:${LLVM_SLOT}" ; then - einfo "llvm-core/lld:${LLVM_SLOT} is missing! Cannot use LLVM slot ${LLVM_SLOT} ..." >&2 - return 1 - fi - fi - - if use pgo ; then - if ! has_version -b "=llvm-runtimes/compiler-rt-sanitizers-${LLVM_SLOT}*[profile]" ; then - einfo "=llvm-runtimes/compiler-rt-sanitizers-${LLVM_SLOT}*[profile] is missing!" >&2 - einfo "Cannot use LLVM slot ${LLVM_SLOT} ..." >&2 - return 1 - 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 es-MX 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}" -} - -virtwl() { - debug-print-function ${FUNCNAME} "$@" - - [[ $# -lt 1 ]] && die "${FUNCNAME} needs at least one argument" - [[ -n $XDG_RUNTIME_DIR ]] || die "${FUNCNAME} needs XDG_RUNTIME_DIR to be set; try xdg_environment_reset" - tinywl -h >/dev/null || die 'tinywl -h failed' - - local VIRTWL VIRTWL_PID - coproc VIRTWL { WLR_BACKENDS=headless exec tinywl -s 'echo $WAYLAND_DISPLAY; read _; kill $PPID'; } - local -x WAYLAND_DISPLAY - read WAYLAND_DISPLAY <&${VIRTWL[0]} - - debug-print "${FUNCNAME}: $@" - "$@" - local r=$? - - [[ -n $VIRTWL_PID ]] || die "tinywl exited unexpectedly" - exec {VIRTWL[0]}<&- {VIRTWL[1]}>&- - return $r -} - -pkg_pretend() { - if [[ ${MERGE_TYPE} != binary ]] ; then - # Ensure we have enough disk space to compile - if use pgo || use debug ; then - CHECKREQS_DISK_BUILD="14300M" - elif tc-is-lto ; then - CHECKREQS_DISK_BUILD="10600M" - else - CHECKREQS_DISK_BUILD="7400M" - fi - - check-reqs_pkg_pretend - fi -} - -pkg_setup() { - - # Get LTO from environment; export after this phase for use in src_configure (etc) - use_lto=no - - if [[ ${MERGE_TYPE} != binary ]] ; then - - if tc-is-lto; then - use_lto=yes - # LTO is handled via configure - filter-lto - fi - - if use pgo ; then - if ! has userpriv ${FEATURES} ; then - eerror "Building ${PN} with USE=pgo and FEATURES=-userpriv is not supported!" - fi - fi - - if [[ ${use_lto} = yes ]] ; then - # -Werror=lto-type-mismatch -Werror=odr are going to fail with GCC, - # bmo#1516758, bgo#942288 - filter-flags -Werror=lto-type-mismatch -Werror=odr - fi - - if use pgo || use debug ; then - CHECKREQS_DISK_BUILD="14300M" - elif [[ ${use_lto} == "yes" ]] ; then - CHECKREQS_DISK_BUILD="10600M" - else - CHECKREQS_DISK_BUILD="7400M" - fi - - check-reqs_pkg_setup - llvm-r1_pkg_setup - rust_pkg_setup - python-any-r1_pkg_setup - - # Avoid PGO profiling problems due to enviroment leakage - # These should *always* be cleaned up anyway - unset \ - DBUS_SESSION_BUS_ADDRESS \ - DISPLAY \ - ORBIT_SOCKETDIR \ - SESSION_MANAGER \ - XAUTHORITY \ - XDG_CACHE_HOME \ - XDG_SESSION_COOKIE - - # Build system is using /proc/self/oom_score_adj, bug #604394 - addpredict /proc/self/oom_score_adj - - if use pgo ; then - # Update 105.0: "/proc/self/oom_score_adj" isn't enough anymore with pgo, but not sure - # whether that's due to better OOM handling by Firefox (bmo#1771712), or portage - # (PORTAGE_SCHEDULING_POLICY) update... - addpredict /proc - - # Clear tons of conditions, since PGO is hardware-dependant. - addpredict /dev - fi - - if ! mountpoint -q /dev/shm ; then - # If /dev/shm is not available, configure is known to fail with - # a traceback report referencing /usr/lib/pythonN.N/multiprocessing/synchronize.py - ewarn "/dev/shm is not mounted -- expect build failures!" - fi - - # Google API keys (see http://www.chromium.org/developers/how-tos/api-keys) - # Note: These are for Gentoo Linux use ONLY. For your own distribution, please - # get your own set of keys. - if [[ -z "${MOZ_API_KEY_GOOGLE+set}" ]] ; then - MOZ_API_KEY_GOOGLE="AIzaSyDEAOvatFogGaPi0eTgsV_ZlEzx0ObmepsMzfAc" - fi - - if [[ -z "${MOZ_API_KEY_LOCATION+set}" ]] ; then - MOZ_API_KEY_LOCATION="AIzaSyB2h2OuRgGaPicUgy5N-5hsZqiPW6sH3n_rptiQ" - fi - - # Mozilla API keys (see https://location.services.mozilla.com/api) - # Note: These are for Gentoo Linux use ONLY. For your own distribution, please - # get your own set of keys. - if [[ -z "${MOZ_API_KEY_MOZILLA+set}" ]] ; then - MOZ_API_KEY_MOZILLA="edb3d487-3a84-46m0ap1e3-9dfd-92b5efaaa005" - fi - - # Ensure we use C locale when building, bug #746215 - export LC_ALL=C - fi - - export use_lto -} - -src_unpack() { - local _lp_dir="${WORKDIR}/language_packs" - local _src_file - - if [[ ! -d "${_lp_dir}" ]] ; then - mkdir "${_lp_dir}" || die - fi - - for _src_file in ${A} ; do - if [[ ${_src_file} == *.xpi ]]; then - cp "${DISTDIR}/${_src_file}" "${_lp_dir}" || die "Failed to copy '${_src_file}' to '${_lp_dir}'!" - else - unpack ${_src_file} - fi - done -} - -src_prepare() { - if [[ ${use_lto} == "yes" ]]; then - rm -v "${WORKDIR}"/firefox-patches/*-LTO-Only-enable-LTO-*.patch || die - fi - - # Workaround for bgo#915651 on musl - if use elibc_glibc ; then - rm -v "${WORKDIR}"/firefox-patches/*bgo-748849-RUST_TARGET_override.patch || die - fi - - eapply "${WORKDIR}/firefox-patches" - use loong && eapply "${WORKDIR}/firefox-loong-patches" - - # Allow user to apply any additional patches without modifing ebuild - eapply_user - - # Make cargo respect MAKEOPTS - export CARGO_BUILD_JOBS="$(makeopts_jobs)" - - # Workaround for bgo#915651 - if ! use elibc_glibc ; then - if use amd64 ; then - export RUST_TARGET="x86_64-unknown-linux-musl" - elif use x86 ; then - export RUST_TARGET="i686-unknown-linux-musl" - elif use arm64 ; then - export RUST_TARGET="aarch64-unknown-linux-musl" - elif use loong; then - # Only the LP64D ABI of LoongArch64 is actively supported among - # the wider Linux ecosystem, so the assumption is safe. - export RUST_TARGET="loongarch64-unknown-linux-musl" - elif use ppc64 ; then - export RUST_TARGET="powerpc64le-unknown-linux-musl" - elif use riscv ; then - # We can pretty safely rule out any 32-bit riscvs, but 64-bit riscvs also have tons of - # different ABIs available. riscv64gc-unknown-linux-musl seems to be the best working - # guess right now though. - elog "riscv detected, forcing a riscv64 target for now." - export RUST_TARGET="riscv64gc-unknown-linux-musl" - else - die "Unknown musl chost, please post a new bug with your rustc -vV along with emerge --info" - fi - fi - - # Make LTO respect MAKEOPTS - sed -i -e "s/multiprocessing.cpu_count()/$(makeopts_jobs)/" \ - "${S}"/build/moz.configure/lto-pgo.configure || die "Failed sedding multiprocessing.cpu_count" - - sed -i -e "s/multiprocessing.cpu_count()/$(makeopts_jobs)/" \ - "${S}"/third_party/chromium/build/toolchain/get_cpu_count.py || die "Failed sedding multiprocessing.cpu_count" - - sed -i -e "s/multiprocessing.cpu_count()/$(makeopts_jobs)/" \ - "${S}"/third_party/python/gyp/pylib/gyp/input.py || die "Failed sedding multiprocessing.cpu_count" - - # sed-in toolchain prefix - sed -i \ - -e "s/objdump/${CHOST}-objdump/" \ - "${S}"/python/mozbuild/mozbuild/configure/check_debug_ranges.py || die "sed failed to set toolchain prefix" - - sed -i \ - -e 's/ccache_stats = None/return None/' \ - "${S}"/python/mozbuild/mozbuild/controller/building.py || die "sed failed to disable ccache stats call" - - einfo "Removing pre-built binaries ..." - - find "${S}"/third_party -type f \( -name '*.so' -o -name '*.o' \) -print -delete || die - - # Clear checksums from cargo crates we've manually patched. - # moz_clear_vendor_checksums xyz - - # Create build dir - BUILD_DIR="${WORKDIR}/${PN}_build" - mkdir -p "${BUILD_DIR}" || die - - # Write API keys to disk - echo -n "${MOZ_API_KEY_GOOGLE//gGaPi/}" > "${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_environment_reset -} - -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; then - # Force clang - einfo "Enforcing the use of clang due to USE=clang ..." - - local version_clang=$(clang --version 2>/dev/null | grep -F -- 'clang version' | awk '{ print $3 }') - [[ -n ${version_clang} ]] && version_clang=$(ver_cut 1 "${version_clang}") - [[ -z ${version_clang} ]] && die "Failed to read clang version!" - - if tc-is-gcc; then - have_switched_compiler=yes - fi - - AR=llvm-ar - CC=${CHOST}-clang-${version_clang} - CXX=${CHOST}-clang++-${version_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, - # AS is used in a non-standard way by upstream, #bmo1654031 - export HOST_CC="$(tc-getBUILD_CC)" - export HOST_CXX="$(tc-getBUILD_CXX)" - export AS="$(tc-getCC) -c" - - # Configuration tests expect llvm-readelf output, bug 913130 - READELF="llvm-readelf" - - tc-export CC CXX LD AR AS NM OBJDUMP RANLIB READELF 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 - mozconfig_add_options_ac '' --enable-project=comm/mail - - # Set Gentoo defaults - mozconfig_add_options_ac 'Gentoo default' \ - --allow-addon-sideload \ - --disable-cargo-incremental \ - --disable-crashreporter \ - --disable-disk-remnant-avoidance \ - --disable-geckodriver \ - --disable-install-strip \ - --disable-legacy-profile-creation \ - --disable-parental-controls \ - --disable-strip \ - --disable-tests \ - --disable-updater \ - --disable-valgrind \ - --disable-wmf \ - --enable-dbus \ - --enable-js-shell \ - --enable-negotiateauth \ - --enable-new-pass-manager \ - --enable-official-branding \ - --enable-packed-relative-relocs \ - --enable-release \ - --enable-system-policies \ - --host="${CBUILD:-${CHOST}}" \ - --libdir="${EPREFIX}/usr/$(get_libdir)" \ - --prefix="${EPREFIX}/usr" \ - --target="${CHOST}" \ - --without-ccache \ - --without-wasm-sandboxed-libraries \ - --with-intl-api \ - --with-libclang-path="$(llvm-config --libdir)" \ - --with-system-ffi \ - --with-system-gbm \ - --with-system-libdrm \ - --with-system-nspr \ - --with-system-nss \ - --with-system-pixman \ - --with-system-zlib \ - --with-toolchain-prefix="${CHOST}-" \ - --with-unsigned-addon-scopes=app,system - - # Set update channel - local update_channel=release - [[ -n ${MOZ_ESR} ]] && update_channel=esr - mozconfig_add_options_ac '' --enable-update-channel=${update_channel} - - # Whitelist to allow unkeyworded arches to build with "--disable-rust-simd" by default. - if use amd64 || use arm64 || use loong ; then - mozconfig_add_options_ac '' --enable-rust-simd - fi - - # For future keywording: This is currently (97.0) only supported on: - # amd64, arm, arm64 & x86. - # Might want to flip the logic around if Firefox is to support more arches. - # bug 833001, bug 903411#c8 - if use loong || use ppc64 || use riscv ; then - mozconfig_add_options_ac '' --disable-sandbox - else - mozconfig_add_options_ac '' --enable-sandbox - fi - - # riscv-related options, bgo#947337, bgo#947338 - if use riscv ; then - mozconfig_add_options_ac 'Disable JIT for RISC-V 64' --disable-jit - mozconfig_add_options_ac 'Disable webrtc for RISC-V' --disable-webrtc - 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 - mozconfig_use_with system-libvpx - mozconfig_use_with system-pipewire - mozconfig_use_with system-png - mozconfig_use_with system-webp - - if use system-librnp; then - mozconfig_add_options_ac "+system-librnp" --enable-compile-environment - mozconfig_use_with system-librnp - else - # This controls the backend of the bundled librnp. Choices are "botan" and "openssl". - # RNP Upstream recommends to use botan. In Gentoo it's preferred to use system-librnp. - mozconfig_add_options_ac "+bundled librnp backend = botan" --with-librnp-backend="botan" - fi - - mozconfig_use_enable libproxy - - 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" - - # Increase the FORTIFY_SOURCE value, #910071. - sed -i -e '/-D_FORTIFY_SOURCE=/s:2:3:' "${S}"/build/moz.configure/toolchain.configure || die - fi - - local myaudiobackends="" - use jack && myaudiobackends+="jack," - use sndio && myaudiobackends+="sndio," - use pulseaudio && myaudiobackends+="pulseaudio," - ! use pulseaudio && myaudiobackends+="alsa," - - mozconfig_add_options_ac '--enable-audio-backends' --enable-audio-backends="${myaudiobackends::-1}" - - mozconfig_use_enable wifi necko-wifi - - if use X && use wayland ; then - mozconfig_add_options_ac '+x11+wayland' --enable-default-toolkit=cairo-gtk3-x11-wayland - elif ! use X && use wayland ; then - mozconfig_add_options_ac '+wayland' --enable-default-toolkit=cairo-gtk3-wayland-only - else - mozconfig_add_options_ac '+x11' --enable-default-toolkit=cairo-gtk3-x11-only - fi - - if [[ ${use_lto} == "yes" ]] ; then - if use clang ; then - # Upstream only supports lld or mold when using clang. - if tc-ld-is-mold ; then - # mold expects the -flto line from *FLAGS configuration, bgo#923119 - append-ldflags "-flto=thin" - mozconfig_add_options_ac "using ld=mold due to system selection" --enable-linker=mold - else - mozconfig_add_options_ac "forcing ld=lld due to USE=clang and USE=lto" --enable-linker=lld - fi - - mozconfig_add_options_ac '+lto' --enable-lto=cross - - else - # ThinLTO is currently broken, see bmo#1644409. - # mold does not support gcc+lto combination. - mozconfig_add_options_ac '+lto' --enable-lto=full - mozconfig_add_options_ac "linker is set to bfd" --enable-linker=bfd - fi - - else - # Avoid auto-magic on linker - if use clang ; then - # lld is upstream's default - if tc-ld-is-mold ; then - mozconfig_add_options_ac "using ld=mold due to system selection" --enable-linker=mold - else - mozconfig_add_options_ac "forcing ld=lld due to USE=clang" --enable-linker=lld - fi - - else - if tc-ld-is-mold ; then - mozconfig_add_options_ac "using ld=mold due to system selection" --enable-linker=mold - else - mozconfig_add_options_ac "linker is set to bfd due to USE=-clang" --enable-linker=bfd - fi - fi - 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 - - mozconfig_use_enable debug - if use debug ; then - mozconfig_add_options_ac '+debug' --disable-optimize - mozconfig_add_options_ac '+debug' --enable-jemalloc - mozconfig_add_options_ac '+debug' --enable-real-time-tracing - else - mozconfig_add_options_ac 'Gentoo defaults' --disable-real-time-tracing - - 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*' - - # elf-hack - # Filter "-z,pack-relative-relocs" and let the build system handle it instead. - if use amd64 || use x86 ; then - filter-flags "-z,pack-relative-relocs" - - if tc-ld-is-mold ; then - # relr-elf-hack is currently broken with mold, bgo#916259 - mozconfig_add_options_ac 'disable elf-hack with mold linker' --disable-elf-hack - else - mozconfig_add_options_ac 'relr elf-hack' --enable-elf-hack=relr - fi - elif use loong || use ppc64 || use riscv ; then - # '--disable-elf-hack' is not recognized on loong/ppc64/riscv, - # see bgo #917049, #930046 - :; - else - mozconfig_add_options_ac 'disable elf-hack on non-supported arches' --disable-elf-hack - fi - - if ! use elibc_glibc; then - mozconfig_add_options_ac '!elibc_glibc' --disable-jemalloc - fi - - # System-av1 fix - use system-av1 && append-ldflags "-Wl,--undefined-version" - - # 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 PIP_NETWORK_INSTALL_RESTRICTED_VIRTUALENVS=mach - - export MACH_BUILD_PYTHON_NATIVE_PACKAGE_SOURCE="none" - - # 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_lto} == "yes" ]] && tc-ld-is-mold ; then - # increase ulimit with mold+lto, bugs #892641, #907485 - if ! ulimit -n 16384 1>/dev/null 2>&1 ; then - ewarn "Unable to modify ulimits - building with mold+lto might fail due to low ulimit -n resources." - ewarn "Please see bugs #892641 & #907485." - else - ulimit -n 16384 - fi - fi - - if use pgo; then - # Reset and cleanup environment variables used by GNOME/XDG - gnome2_environment_reset - - addpredict /root - - if ! use X; then - virtx_cmd=virtwl - else - virtx_cmd=virtx - fi - fi - - if ! use X; then - local -x GDK_BACKEND=wayland - else - local -x GDK_BACKEND=x11 - fi - - ${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 llvm-core/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-r1.js gentoo-prefs.js - - local GENTOO_PREFS="${ED}${PREFS_DIR}/gentoo-prefs.js" - - # 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" - - if use wayland; then - cat >>"${GENTOO_PREFS}" <<-EOF || die "failed to set hwaccel wayland prefs" - pref("gfx.x11-egl.force-enabled", false); - EOF - else - cat >>"${GENTOO_PREFS}" <<-EOF || die "failed to set hwaccel x11 prefs" - pref("gfx.x11-egl.force-enabled", true); - EOF - fi - fi - - # 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 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 exec_command="${PN}" - local icon="${PN}" - local use_wayland="false" - - if [[ -n ${MOZ_ESR} ]] ; then - local desktop_filename="${PN}-esr.desktop" - else - local desktop_filename="${PN}.desktop" - fi - - 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:@DEFAULT_WAYLAND@:${use_wayland}:" \ - "${ED}/usr/bin/${PN}" || die -} - -pkg_postinst() { - xdg_pkg_postinst - - if ver_replacing -lt 136.0 ; then - elog "In this version of Thunderbird, upstream introduced an in-app notification" - elog "system. Setting pref 'mail.inappnotifications.enabled' to false and nullifying" - elog "'mail.inappnotifications.url' may help you avoid these messages, if you don't" - elog "wish to receive them." - fi - - optfeature_header "Optional programs for extra features:" - optfeature "desktop notifications" x11-libs/libnotify - optfeature "encrypted chat support" net-libs/libotr - optfeature "fallback mouse cursor theme e.g. on WMs" gnome-base/gsettings-desktop-schemas -} diff --git a/mail-client/thunderbird/thunderbird-140.7.0.ebuild b/mail-client/thunderbird/thunderbird-140.7.2.ebuild index 6ff755a1aea7..6ff755a1aea7 100644 --- a/mail-client/thunderbird/thunderbird-140.7.0.ebuild +++ b/mail-client/thunderbird/thunderbird-140.7.2.ebuild diff --git a/mail-client/thunderbird/thunderbird-146.0.1.ebuild b/mail-client/thunderbird/thunderbird-146.0.1.ebuild deleted file mode 100644 index 43ea885ad9ad..000000000000 --- a/mail-client/thunderbird/thunderbird-146.0.1.ebuild +++ /dev/null @@ -1,1158 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -FIREFOX_PATCHSET="firefox-146-patches-01.tar.xz" - -LLVM_COMPAT=( 19 20 21 ) - -PYTHON_COMPAT=( python3_{11..14} ) -PYTHON_REQ_USE="ncurses,sqlite,ssl" - -RUST_MIN_VER="1.82.0" -RUST_NEEDS_LLVM=1 - -WANT_AUTOCONF="2.1" - -VIRTUALX_REQUIRED="manual" - -# Thunderbird will have separate release and esr channels, matching Firefox's rapid and esr. -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 check-reqs desktop eapi9-ver flag-o-matic gnome2-utils linux-info llvm-r1 \ - multiprocessing optfeature pax-utils python-any-r1 rust toolchain-funcs virtualx xdg - -DESCRIPTION="Thunderbird Mail Client" -HOMEPAGE="https://www.thunderbird.net/" - -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/mozilla/patchsets/${FIREFOX_PATCHSET} -) - -SRC_URI="${MOZ_SRC_BASE_URI}/source/${MOZ_P}.source.tar.xz -> ${MOZ_P_DISTFILES}.source.tar.xz - ${PATCH_URIS[@]}" -S="${WORKDIR}/${PN}-${PV%_*}" - -if [[ -n ${MOZ_ESR} ]] ; then - SLOT="0/esr" -else - SLOT="0/stable" -fi - -LICENSE="MPL-2.0 GPL-2 LGPL-2.1" -KEYWORDS="~amd64 ~arm64 ~loong ~ppc64 ~x86" - -IUSE="+clang debug eme-free hardened hwaccel jack libproxy pgo pulseaudio sndio selinux" -IUSE+=" +system-av1 +system-harfbuzz +system-icu +system-jpeg +system-libevent +system-libvpx" -IUSE+=" system-pipewire system-png +system-webp wayland wifi +X" - -# Thunderbird-only USE flags. -IUSE+=" +system-librnp" - -# "-system-librnp" requires clang, bmo#2006910 -REQUIRED_USE="|| ( X wayland ) - !system-librnp? ( clang ) - debug? ( !system-av1 )" - -TB_ONLY_DEPEND="selinux? ( sec-policy/selinux-thunderbird ) - !system-librnp? ( dev-libs/jsoncpp ) - system-librnp? ( >=dev-util/librnp-0.17.1 )" -BDEPEND="${PYTHON_DEPS} - $(llvm_gen_dep ' - llvm-core/clang:${LLVM_SLOT} - llvm-core/llvm:${LLVM_SLOT} - clang? ( - llvm-core/lld:${LLVM_SLOT} - pgo? ( llvm-runtimes/compiler-rt-sanitizers:${LLVM_SLOT}[profile] ) - ) - ') - app-alternatives/awk - app-arch/unzip - app-arch/zip - >=dev-util/cbindgen-0.29.1 - net-libs/nodejs - virtual/pkgconfig - amd64? ( >=dev-lang/nasm-2.14 ) - x86? ( >=dev-lang/nasm-2.14 ) - pgo? ( - X? ( - sys-devel/gettext - x11-base/xorg-server[xvfb] - x11-apps/xhost - ) - !X? ( - gui-wm/tinywl - x11-misc/xkeyboard-config - ) - )" -COMMON_DEPEND="${TB_ONLY_DEPEND} - >=app-accessibility/at-spi2-core-2.46.0:2 - dev-libs/expat - dev-libs/glib:2 - dev-libs/libffi:= - >=dev-libs/nss-3.118 - >=dev-libs/nspr-4.38 - media-libs/alsa-lib - media-libs/fontconfig - media-libs/freetype - media-libs/mesa - media-video/ffmpeg - sys-apps/dbus - virtual/zlib:= - virtual/freedesktop-icon-theme - x11-libs/cairo - x11-libs/gdk-pixbuf:2 - x11-libs/libdrm - x11-libs/pango - x11-libs/pixman - jack? ( virtual/jack ) - pulseaudio? ( - || ( - media-libs/libpulse - >=media-sound/apulse-0.1.12-r4[sdk] - ) - ) - libproxy? ( net-libs/libproxy ) - selinux? ( sec-policy/selinux-mozilla ) - sndio? ( >=media-sound/sndio-1.8.0-r1 ) - system-av1? ( - >=media-libs/dav1d-1.0.0:= - >=media-libs/libaom-1.0.0:= - ) - system-harfbuzz? ( - >=media-gfx/graphite2-1.3.13 - >=media-libs/harfbuzz-2.8.1:0= - ) - system-icu? ( >=dev-libs/icu-76.1:= ) - system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1:= ) - system-libevent? ( >=dev-libs/libevent-2.1.12:0=[threads(+)] ) - system-libvpx? ( >=media-libs/libvpx-1.8.2:0=[postproc] ) - system-pipewire? ( media-video/pipewire:= ) - system-png? ( >=media-libs/libpng-1.6.45:0=[apng] ) - system-webp? ( >=media-libs/libwebp-1.1.0:0= ) - wayland? ( - >=media-libs/libepoxy-1.5.10-r1 - x11-libs/gtk+:3[wayland] - ) - wifi? ( - kernel_linux? ( - || ( - net-misc/networkmanager - net-misc/connman[networkmanager] - ) - ) - ) - X? ( - virtual/opengl - x11-libs/cairo[X] - x11-libs/gtk+:3[X] - x11-libs/libX11 - x11-libs/libXcomposite - x11-libs/libXdamage - x11-libs/libXext - x11-libs/libXfixes - x11-libs/libXrandr - x11-libs/libxcb:= - )" -RDEPEND="${COMMON_DEPEND} - jack? ( virtual/jack )" -DEPEND="${COMMON_DEPEND} - X? ( - x11-base/xorg-proto - x11-libs/libICE - x11-libs/libSM - )" - -llvm_check_deps() { - if ! has_version -b "llvm-core/clang:${LLVM_SLOT}" ; then - einfo "llvm-core/clang:${LLVM_SLOT} is missing! Cannot use LLVM slot ${LLVM_SLOT} ..." >&2 - return 1 - fi - - if use clang && ! tc-ld-is-mold ; then - if ! has_version -b "llvm-core/lld:${LLVM_SLOT}" ; then - einfo "llvm-core/lld:${LLVM_SLOT} is missing! Cannot use LLVM slot ${LLVM_SLOT} ..." >&2 - return 1 - fi - fi - - if use pgo ; then - if ! has_version -b "=llvm-runtimes/compiler-rt-sanitizers-${LLVM_SLOT}*[profile]" ; then - einfo "=llvm-runtimes/compiler-rt-sanitizers-${LLVM_SLOT}*[profile] is missing!" >&2 - einfo "Cannot use LLVM slot ${LLVM_SLOT} ..." >&2 - return 1 - 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 es-MX 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}" -} - -virtwl() { - debug-print-function ${FUNCNAME} "$@" - - [[ $# -lt 1 ]] && die "${FUNCNAME} needs at least one argument" - [[ -n $XDG_RUNTIME_DIR ]] || die "${FUNCNAME} needs XDG_RUNTIME_DIR to be set; try xdg_environment_reset" - tinywl -h >/dev/null || die 'tinywl -h failed' - - local VIRTWL VIRTWL_PID - coproc VIRTWL { WLR_BACKENDS=headless exec tinywl -s 'echo $WAYLAND_DISPLAY; read _; kill $PPID'; } - local -x WAYLAND_DISPLAY - read WAYLAND_DISPLAY <&${VIRTWL[0]} - - debug-print "${FUNCNAME}: $@" - "$@" - local r=$? - - [[ -n $VIRTWL_PID ]] || die "tinywl exited unexpectedly" - exec {VIRTWL[0]}<&- {VIRTWL[1]}>&- - return $r -} - -pkg_pretend() { - if [[ ${MERGE_TYPE} != binary ]] ; then - # Ensure we have enough disk space to compile - if use pgo || use debug ; then - CHECKREQS_DISK_BUILD="14300M" - elif tc-is-lto ; then - CHECKREQS_DISK_BUILD="10600M" - else - CHECKREQS_DISK_BUILD="7400M" - fi - - check-reqs_pkg_pretend - fi -} - -pkg_setup() { - - # Get LTO from environment; export after this phase for use in src_configure (etc) - use_lto=no - - if [[ ${MERGE_TYPE} != binary ]] ; then - - if tc-is-lto; then - use_lto=yes - # LTO is handled via configure - filter-lto - fi - - if use pgo ; then - if ! has userpriv ${FEATURES} ; then - eerror "Building ${PN} with USE=pgo and FEATURES=-userpriv is not supported!" - fi - fi - - if [[ ${use_lto} = yes ]] ; then - # -Werror=lto-type-mismatch -Werror=odr are going to fail with GCC, - # bmo#1516758, bgo#942288 - filter-flags -Werror=lto-type-mismatch -Werror=odr - fi - - if use pgo || use debug ; then - CHECKREQS_DISK_BUILD="14300M" - elif [[ ${use_lto} == "yes" ]] ; then - CHECKREQS_DISK_BUILD="10600M" - else - CHECKREQS_DISK_BUILD="7400M" - fi - - check-reqs_pkg_setup - llvm-r1_pkg_setup - rust_pkg_setup - python-any-r1_pkg_setup - - # Avoid PGO profiling problems due to enviroment leakage - # These should *always* be cleaned up anyway - unset \ - DBUS_SESSION_BUS_ADDRESS \ - DISPLAY \ - ORBIT_SOCKETDIR \ - SESSION_MANAGER \ - XAUTHORITY \ - XDG_CACHE_HOME \ - XDG_SESSION_COOKIE - - # Build system is using /proc/self/oom_score_adj, bug #604394 - addpredict /proc/self/oom_score_adj - - if use pgo ; then - # Update 105.0: "/proc/self/oom_score_adj" isn't enough anymore with pgo, but not sure - # whether that's due to better OOM handling by Firefox (bmo#1771712), or portage - # (PORTAGE_SCHEDULING_POLICY) update... - addpredict /proc - - # Clear tons of conditions, since PGO is hardware-dependant. - addpredict /dev - fi - - if ! mountpoint -q /dev/shm ; then - # If /dev/shm is not available, configure is known to fail with - # a traceback report referencing /usr/lib/pythonN.N/multiprocessing/synchronize.py - ewarn "/dev/shm is not mounted -- expect build failures!" - fi - - # Google API keys (see http://www.chromium.org/developers/how-tos/api-keys) - # Note: These are for Gentoo Linux use ONLY. For your own distribution, please - # get your own set of keys. - if [[ -z "${MOZ_API_KEY_GOOGLE+set}" ]] ; then - MOZ_API_KEY_GOOGLE="AIzaSyDEAOvatFogGaPi0eTgsV_ZlEzx0ObmepsMzfAc" - fi - - if [[ -z "${MOZ_API_KEY_LOCATION+set}" ]] ; then - MOZ_API_KEY_LOCATION="AIzaSyB2h2OuRgGaPicUgy5N-5hsZqiPW6sH3n_rptiQ" - fi - - # Mozilla API keys (see https://location.services.mozilla.com/api) - # Note: These are for Gentoo Linux use ONLY. For your own distribution, please - # get your own set of keys. - if [[ -z "${MOZ_API_KEY_MOZILLA+set}" ]] ; then - MOZ_API_KEY_MOZILLA="edb3d487-3a84-46m0ap1e3-9dfd-92b5efaaa005" - fi - - # Ensure we use C locale when building, bug #746215 - export LC_ALL=C - fi - - export use_lto -} - -src_unpack() { - local _lp_dir="${WORKDIR}/language_packs" - local _src_file - - if [[ ! -d "${_lp_dir}" ]] ; then - mkdir "${_lp_dir}" || die - fi - - for _src_file in ${A} ; do - if [[ ${_src_file} == *.xpi ]]; then - cp "${DISTDIR}/${_src_file}" "${_lp_dir}" || die "Failed to copy '${_src_file}' to '${_lp_dir}'!" - else - unpack ${_src_file} - fi - done -} - -src_prepare() { - if [[ ${use_lto} == "yes" ]]; then - rm -v "${WORKDIR}"/firefox-patches/*-LTO-Only-enable-LTO-*.patch || die - fi - - # Workaround for bgo#915651 and bmo#1988166 on musl - if use elibc_glibc ; then - rm -v "${WORKDIR}"/firefox-patches/*bgo-748849-RUST_TARGET_override.patch || die - rm -v "${WORKDIR}"/firefox-patches/*bmo-1988166-musl-remove-nonexisting-system-header-req.patch || die - fi - - # Enable jpeg-xl only in Firefox. - rm -v "${WORKDIR}"/firefox-patches/*bgo-928126-enable-jxl.patch || die - - eapply "${WORKDIR}/firefox-patches" - - # Allow user to apply any additional patches without modifing ebuild - eapply_user - - # Make cargo respect MAKEOPTS - export CARGO_BUILD_JOBS="$(makeopts_jobs)" - - # Workaround for bgo#915651 - if ! use elibc_glibc ; then - if use amd64 ; then - export RUST_TARGET="x86_64-unknown-linux-musl" - elif use x86 ; then - export RUST_TARGET="i686-unknown-linux-musl" - elif use arm64 ; then - export RUST_TARGET="aarch64-unknown-linux-musl" - elif use loong; then - # Only the LP64D ABI of LoongArch64 is actively supported among - # the wider Linux ecosystem, so the assumption is safe. - export RUST_TARGET="loongarch64-unknown-linux-musl" - elif use ppc64 ; then - export RUST_TARGET="powerpc64le-unknown-linux-musl" - elif use riscv ; then - # We can pretty safely rule out any 32-bit riscvs, but 64-bit riscvs also have tons of - # different ABIs available. riscv64gc-unknown-linux-musl seems to be the best working - # guess right now though. - elog "riscv detected, forcing a riscv64 target for now." - export RUST_TARGET="riscv64gc-unknown-linux-musl" - else - die "Unknown musl chost, please post a new bug with your rustc -vV along with emerge --info" - fi - fi - - # Make LTO respect MAKEOPTS - sed -i -e "s/multiprocessing.cpu_count()/$(makeopts_jobs)/" \ - "${S}"/build/moz.configure/lto-pgo.configure || die "Failed sedding multiprocessing.cpu_count" - - sed -i -e "s/multiprocessing.cpu_count()/$(makeopts_jobs)/" \ - "${S}"/third_party/chromium/build/toolchain/get_cpu_count.py || die "Failed sedding multiprocessing.cpu_count" - - sed -i -e "s/multiprocessing.cpu_count()/$(makeopts_jobs)/" \ - "${S}"/third_party/python/gyp/pylib/gyp/input.py || die "Failed sedding multiprocessing.cpu_count" - - # sed-in toolchain prefix - sed -i \ - -e "s/objdump/${CHOST}-objdump/" \ - "${S}"/python/mozbuild/mozbuild/configure/check_debug_ranges.py || die "sed failed to set toolchain prefix" - - sed -i \ - -e 's/ccache_stats = None/return None/' \ - "${S}"/python/mozbuild/mozbuild/controller/building.py || die "sed failed to disable ccache stats call" - - einfo "Removing pre-built binaries ..." - - find "${S}"/third_party -type f \( -name '*.so' -o -name '*.o' \) -print -delete || die - - # Clear checksums from cargo crates we've manually patched. - # moz_clear_vendor_checksums xyz - - # Create build dir - BUILD_DIR="${WORKDIR}/${PN}_build" - mkdir -p "${BUILD_DIR}" || die - - # Write API keys to disk - echo -n "${MOZ_API_KEY_GOOGLE//gGaPi/}" > "${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_environment_reset -} - -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; then - # Force clang - einfo "Enforcing the use of clang due to USE=clang ..." - - local version_clang=$(clang --version 2>/dev/null | grep -F -- 'clang version' | awk '{ print $3 }') - [[ -n ${version_clang} ]] && version_clang=$(ver_cut 1 "${version_clang}") - [[ -z ${version_clang} ]] && die "Failed to read clang version!" - - if tc-is-gcc; then - have_switched_compiler=yes - fi - - AR=llvm-ar - CC=${CHOST}-clang-${version_clang} - CXX=${CHOST}-clang++-${version_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, - # AS is used in a non-standard way by upstream, #bmo1654031 - export HOST_CC="$(tc-getBUILD_CC)" - export HOST_CXX="$(tc-getBUILD_CXX)" - export AS="$(tc-getCC) -c" - - # Configuration tests expect llvm-readelf output, bug 913130 - READELF="llvm-readelf" - - tc-export CC CXX LD AR AS NM OBJDUMP RANLIB READELF 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 - mozconfig_add_options_ac '' --enable-project=comm/mail - - # Set Gentoo defaults - mozconfig_add_options_ac 'Gentoo default' \ - --allow-addon-sideload \ - --disable-cargo-incremental \ - --disable-crashreporter \ - --disable-disk-remnant-avoidance \ - --disable-geckodriver \ - --disable-install-strip \ - --disable-legacy-profile-creation \ - --disable-parental-controls \ - --disable-strip \ - --disable-tests \ - --disable-updater \ - --disable-valgrind \ - --disable-wmf \ - --enable-dbus \ - --enable-js-shell \ - --enable-negotiateauth \ - --enable-new-pass-manager \ - --enable-official-branding \ - --enable-packed-relative-relocs \ - --enable-release \ - --enable-system-policies \ - --host="${CBUILD:-${CHOST}}" \ - --libdir="${EPREFIX}/usr/$(get_libdir)" \ - --prefix="${EPREFIX}/usr" \ - --target="${CHOST}" \ - --without-ccache \ - --without-wasm-sandboxed-libraries \ - --with-intl-api \ - --with-libclang-path="$(llvm-config --libdir)" \ - --with-system-ffi \ - --with-system-gbm \ - --with-system-libdrm \ - --with-system-nspr \ - --with-system-nss \ - --with-system-pixman \ - --with-system-zlib \ - --with-toolchain-prefix="${CHOST}-" \ - --with-unsigned-addon-scopes=app,system - - # Set update channel - local update_channel=release - [[ -n ${MOZ_ESR} ]] && update_channel=esr - mozconfig_add_options_ac '' --enable-update-channel=${update_channel} - - # Whitelist to allow unkeyworded arches to build with "--disable-rust-simd" by default. - if use amd64 || use arm64 || use loong ; then - mozconfig_add_options_ac '' --enable-rust-simd - fi - - # For future keywording: This is currently (97.0) only supported on: - # amd64, arm, arm64 & x86. - # Might want to flip the logic around if Firefox is to support more arches. - # bug 833001, bug 903411#c8 - if use loong || use ppc64 || use riscv; then - mozconfig_add_options_ac '' --disable-sandbox - else - mozconfig_add_options_ac '' --enable-sandbox - fi - - # riscv-related options, bgo#947337, bgo#947338 - if use riscv ; then - mozconfig_add_options_ac 'Disable JIT for RISC-V 64' --disable-jit - mozconfig_add_options_ac 'Disable webrtc for RISC-V' --disable-webrtc - 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 - mozconfig_use_with system-libvpx - mozconfig_use_with system-pipewire - mozconfig_use_with system-png - mozconfig_use_with system-webp - - if use system-librnp; then - mozconfig_add_options_ac "+system-librnp" --enable-compile-environment - mozconfig_use_with system-librnp - else - # This controls the backend of the bundled librnp. Choices are "botan" and "openssl". - # RNP Upstream recommends to use botan. In Gentoo it's preferred to use system-librnp. - mozconfig_add_options_ac "+bundled librnp backend = botan" --with-librnp-backend="botan" - fi - - mozconfig_use_enable libproxy - - use eme-free && mozconfig_add_options_ac '+eme-free' --disable-eme - - if use hardened ; then - mozconfig_add_options_ac "+hardened" --enable-hardening - # mozconfig_add_options_ac "+hardened stl" --enable-stl-hardening # not available in TB - append-ldflags "-Wl,-z,relro -Wl,-z,now" - - # Increase the FORTIFY_SOURCE value, #910071. - sed -i -e '/-D_FORTIFY_SOURCE=/s:2:3:' "${S}"/build/moz.configure/toolchain.configure || die - fi - - local myaudiobackends="" - use jack && myaudiobackends+="jack," - use sndio && myaudiobackends+="sndio," - use pulseaudio && myaudiobackends+="pulseaudio," - ! use pulseaudio && myaudiobackends+="alsa," - - mozconfig_add_options_ac '--enable-audio-backends' --enable-audio-backends="${myaudiobackends::-1}" - - mozconfig_use_enable wifi necko-wifi - - if use X && use wayland ; then - mozconfig_add_options_ac '+x11+wayland' --enable-default-toolkit=cairo-gtk3-x11-wayland - elif ! use X && use wayland ; then - mozconfig_add_options_ac '+wayland' --enable-default-toolkit=cairo-gtk3-wayland-only - else - mozconfig_add_options_ac '+x11' --enable-default-toolkit=cairo-gtk3-x11-only - fi - - if [[ ${use_lto} == "yes" ]] ; then - if use clang ; then - # Upstream only supports lld or mold when using clang. - if tc-ld-is-mold ; then - # mold expects the -flto line from *FLAGS configuration, bgo#923119 - append-ldflags "-flto=thin" - mozconfig_add_options_ac "using ld=mold due to system selection" --enable-linker=mold - else - mozconfig_add_options_ac "forcing ld=lld due to USE=clang and USE=lto" --enable-linker=lld - fi - - mozconfig_add_options_ac '+lto' --enable-lto=cross - - else - # ThinLTO is currently broken, see bmo#1644409. - # mold does not support gcc+lto combination. - mozconfig_add_options_ac '+lto' --enable-lto=full - mozconfig_add_options_ac "linker is set to bfd" --enable-linker=bfd - fi - - else - # Avoid auto-magic on linker - if use clang ; then - # lld is upstream's default - if tc-ld-is-mold ; then - mozconfig_add_options_ac "using ld=mold due to system selection" --enable-linker=mold - else - mozconfig_add_options_ac "forcing ld=lld due to USE=clang" --enable-linker=lld - fi - - else - if tc-ld-is-mold ; then - mozconfig_add_options_ac "using ld=mold due to system selection" --enable-linker=mold - else - mozconfig_add_options_ac "linker is set to bfd due to USE=-clang" --enable-linker=bfd - fi - fi - 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 - - mozconfig_use_enable debug - if use debug ; then - mozconfig_add_options_ac '+debug' --disable-optimize - mozconfig_add_options_ac '+debug' --enable-jemalloc - mozconfig_add_options_ac '+debug' --enable-real-time-tracing - else - mozconfig_add_options_ac 'Gentoo defaults' --disable-real-time-tracing - - 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*' - - # elf-hack - # Filter "-z,pack-relative-relocs" and let the build system handle it instead. - if use amd64 || use x86 ; then - filter-flags "-z,pack-relative-relocs" - - if tc-ld-is-mold ; then - # relr-elf-hack is currently broken with mold, bgo#916259 - mozconfig_add_options_ac 'disable elf-hack with mold linker' --disable-elf-hack - else - mozconfig_add_options_ac 'relr elf-hack' --enable-elf-hack=relr - fi - elif use loong || use ppc64 || use riscv ; then - # '--disable-elf-hack' is not recognized on loong/ppc64/riscv, - # see bgo #917049, #930046 - :; - else - mozconfig_add_options_ac 'disable elf-hack on non-supported arches' --disable-elf-hack - fi - - if ! use elibc_glibc; then - mozconfig_add_options_ac '!elibc_glibc' --disable-jemalloc - fi - - # System-av1 fix - use system-av1 && append-ldflags "-Wl,--undefined-version" - - # 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 PIP_NETWORK_INSTALL_RESTRICTED_VIRTUALENVS=mach - - export MACH_BUILD_PYTHON_NATIVE_PACKAGE_SOURCE="none" - - # 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_lto} == "yes" ]] && tc-ld-is-mold ; then - # increase ulimit with mold+lto, bugs #892641, #907485 - if ! ulimit -n 16384 1>/dev/null 2>&1 ; then - ewarn "Unable to modify ulimits - building with mold+lto might fail due to low ulimit -n resources." - ewarn "Please see bugs #892641 & #907485." - else - ulimit -n 16384 - fi - fi - - if use pgo; then - # Reset and cleanup environment variables used by GNOME/XDG - gnome2_environment_reset - - addpredict /root - - if ! use X; then - virtx_cmd=virtwl - else - virtx_cmd=virtx - fi - fi - - if ! use X; then - local -x GDK_BACKEND=wayland - else - local -x GDK_BACKEND=x11 - fi - - ${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 llvm-core/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-r1.js gentoo-prefs.js - - local GENTOO_PREFS="${ED}${PREFS_DIR}/gentoo-prefs.js" - - # 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" - - if use wayland; then - cat >>"${GENTOO_PREFS}" <<-EOF || die "failed to set hwaccel wayland prefs" - pref("gfx.x11-egl.force-enabled", false); - EOF - else - cat >>"${GENTOO_PREFS}" <<-EOF || die "failed to set hwaccel x11 prefs" - pref("gfx.x11-egl.force-enabled", true); - EOF - fi - fi - - # 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 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 exec_command="${PN}" - local icon="${PN}" - local use_wayland="false" - - if [[ -n ${MOZ_ESR} ]] ; then - local desktop_filename="${PN}-esr.desktop" - else - local desktop_filename="${PN}.desktop" - fi - - 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:@DEFAULT_WAYLAND@:${use_wayland}:" \ - "${ED}/usr/bin/${PN}" || die -} - -pkg_postinst() { - xdg_pkg_postinst - - if ver_replacing -lt 136.0 ; then - elog "In this version of Thunderbird, upstream introduced an in-app notification" - elog "system. Setting pref 'mail.inappnotifications.enabled' to false and nullifying" - elog "'mail.inappnotifications.url' may help you avoid these messages, if you don't" - elog "wish to receive them." - fi - - optfeature_header "Optional programs for extra features:" - optfeature "desktop notifications" x11-libs/libnotify - optfeature "encrypted chat support" net-libs/libotr - optfeature "fallback mouse cursor theme e.g. on WMs" gnome-base/gsettings-desktop-schemas -} diff --git a/mail-client/thunderbird/thunderbird-146.0.ebuild b/mail-client/thunderbird/thunderbird-146.0.ebuild deleted file mode 100644 index a08ff6fc6272..000000000000 --- a/mail-client/thunderbird/thunderbird-146.0.ebuild +++ /dev/null @@ -1,1156 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -FIREFOX_PATCHSET="firefox-146-patches-01.tar.xz" - -LLVM_COMPAT=( 19 20 21 ) - -PYTHON_COMPAT=( python3_{11..14} ) -PYTHON_REQ_USE="ncurses,sqlite,ssl" - -RUST_MIN_VER="1.82.0" -RUST_NEEDS_LLVM=1 - -WANT_AUTOCONF="2.1" - -VIRTUALX_REQUIRED="manual" - -# Thunderbird will have separate release and esr channels, matching Firefox's rapid and esr. -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 check-reqs desktop eapi9-ver flag-o-matic gnome2-utils linux-info llvm-r1 \ - multiprocessing optfeature pax-utils python-any-r1 rust toolchain-funcs virtualx xdg - -DESCRIPTION="Thunderbird Mail Client" -HOMEPAGE="https://www.thunderbird.net/" - -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/mozilla/patchsets/${FIREFOX_PATCHSET} -) - -SRC_URI="${MOZ_SRC_BASE_URI}/source/${MOZ_P}.source.tar.xz -> ${MOZ_P_DISTFILES}.source.tar.xz - ${PATCH_URIS[@]}" -S="${WORKDIR}/${PN}-${PV%_*}" - -if [[ -n ${MOZ_ESR} ]] ; then - SLOT="0/esr" -else - SLOT="0/stable" -fi - -LICENSE="MPL-2.0 GPL-2 LGPL-2.1" -KEYWORDS="~amd64 ~arm64 ~loong ~ppc64 ~x86" - -IUSE="+clang debug eme-free hardened hwaccel jack libproxy pgo pulseaudio sndio selinux" -IUSE+=" +system-av1 +system-harfbuzz +system-icu +system-jpeg +system-libevent +system-libvpx" -IUSE+=" system-pipewire system-png +system-webp wayland wifi +X" - -# Thunderbird-only USE flags. -IUSE+=" +system-librnp" - -REQUIRED_USE="|| ( X wayland ) - debug? ( !system-av1 )" - -TB_ONLY_DEPEND="selinux? ( sec-policy/selinux-thunderbird ) - !system-librnp? ( dev-libs/jsoncpp ) - system-librnp? ( >=dev-util/librnp-0.17.1 )" -BDEPEND="${PYTHON_DEPS} - $(llvm_gen_dep ' - llvm-core/clang:${LLVM_SLOT} - llvm-core/llvm:${LLVM_SLOT} - clang? ( - llvm-core/lld:${LLVM_SLOT} - pgo? ( llvm-runtimes/compiler-rt-sanitizers:${LLVM_SLOT}[profile] ) - ) - ') - app-alternatives/awk - app-arch/unzip - app-arch/zip - >=dev-util/cbindgen-0.29.1 - net-libs/nodejs - virtual/pkgconfig - amd64? ( >=dev-lang/nasm-2.14 ) - x86? ( >=dev-lang/nasm-2.14 ) - pgo? ( - X? ( - sys-devel/gettext - x11-base/xorg-server[xvfb] - x11-apps/xhost - ) - !X? ( - gui-wm/tinywl - x11-misc/xkeyboard-config - ) - )" -COMMON_DEPEND="${TB_ONLY_DEPEND} - >=app-accessibility/at-spi2-core-2.46.0:2 - dev-libs/expat - dev-libs/glib:2 - dev-libs/libffi:= - >=dev-libs/nss-3.118 - >=dev-libs/nspr-4.38 - media-libs/alsa-lib - media-libs/fontconfig - media-libs/freetype - media-libs/mesa - media-video/ffmpeg - sys-apps/dbus - virtual/zlib:= - virtual/freedesktop-icon-theme - x11-libs/cairo - x11-libs/gdk-pixbuf:2 - x11-libs/libdrm - x11-libs/pango - x11-libs/pixman - jack? ( virtual/jack ) - pulseaudio? ( - || ( - media-libs/libpulse - >=media-sound/apulse-0.1.12-r4[sdk] - ) - ) - libproxy? ( net-libs/libproxy ) - selinux? ( sec-policy/selinux-mozilla ) - sndio? ( >=media-sound/sndio-1.8.0-r1 ) - system-av1? ( - >=media-libs/dav1d-1.0.0:= - >=media-libs/libaom-1.0.0:= - ) - system-harfbuzz? ( - >=media-gfx/graphite2-1.3.13 - >=media-libs/harfbuzz-2.8.1:0= - ) - system-icu? ( >=dev-libs/icu-76.1:= ) - system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1:= ) - system-libevent? ( >=dev-libs/libevent-2.1.12:0=[threads(+)] ) - system-libvpx? ( >=media-libs/libvpx-1.8.2:0=[postproc] ) - system-pipewire? ( media-video/pipewire:= ) - system-png? ( >=media-libs/libpng-1.6.45:0=[apng] ) - system-webp? ( >=media-libs/libwebp-1.1.0:0= ) - wayland? ( - >=media-libs/libepoxy-1.5.10-r1 - x11-libs/gtk+:3[wayland] - ) - wifi? ( - kernel_linux? ( - || ( - net-misc/networkmanager - net-misc/connman[networkmanager] - ) - ) - ) - X? ( - virtual/opengl - x11-libs/cairo[X] - x11-libs/gtk+:3[X] - x11-libs/libX11 - x11-libs/libXcomposite - x11-libs/libXdamage - x11-libs/libXext - x11-libs/libXfixes - x11-libs/libXrandr - x11-libs/libxcb:= - )" -RDEPEND="${COMMON_DEPEND} - jack? ( virtual/jack )" -DEPEND="${COMMON_DEPEND} - X? ( - x11-base/xorg-proto - x11-libs/libICE - x11-libs/libSM - )" - -llvm_check_deps() { - if ! has_version -b "llvm-core/clang:${LLVM_SLOT}" ; then - einfo "llvm-core/clang:${LLVM_SLOT} is missing! Cannot use LLVM slot ${LLVM_SLOT} ..." >&2 - return 1 - fi - - if use clang && ! tc-ld-is-mold ; then - if ! has_version -b "llvm-core/lld:${LLVM_SLOT}" ; then - einfo "llvm-core/lld:${LLVM_SLOT} is missing! Cannot use LLVM slot ${LLVM_SLOT} ..." >&2 - return 1 - fi - fi - - if use pgo ; then - if ! has_version -b "=llvm-runtimes/compiler-rt-sanitizers-${LLVM_SLOT}*[profile]" ; then - einfo "=llvm-runtimes/compiler-rt-sanitizers-${LLVM_SLOT}*[profile] is missing!" >&2 - einfo "Cannot use LLVM slot ${LLVM_SLOT} ..." >&2 - return 1 - 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 es-MX 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}" -} - -virtwl() { - debug-print-function ${FUNCNAME} "$@" - - [[ $# -lt 1 ]] && die "${FUNCNAME} needs at least one argument" - [[ -n $XDG_RUNTIME_DIR ]] || die "${FUNCNAME} needs XDG_RUNTIME_DIR to be set; try xdg_environment_reset" - tinywl -h >/dev/null || die 'tinywl -h failed' - - local VIRTWL VIRTWL_PID - coproc VIRTWL { WLR_BACKENDS=headless exec tinywl -s 'echo $WAYLAND_DISPLAY; read _; kill $PPID'; } - local -x WAYLAND_DISPLAY - read WAYLAND_DISPLAY <&${VIRTWL[0]} - - debug-print "${FUNCNAME}: $@" - "$@" - local r=$? - - [[ -n $VIRTWL_PID ]] || die "tinywl exited unexpectedly" - exec {VIRTWL[0]}<&- {VIRTWL[1]}>&- - return $r -} - -pkg_pretend() { - if [[ ${MERGE_TYPE} != binary ]] ; then - # Ensure we have enough disk space to compile - if use pgo || use debug ; then - CHECKREQS_DISK_BUILD="14300M" - elif tc-is-lto ; then - CHECKREQS_DISK_BUILD="10600M" - else - CHECKREQS_DISK_BUILD="7400M" - fi - - check-reqs_pkg_pretend - fi -} - -pkg_setup() { - - # Get LTO from environment; export after this phase for use in src_configure (etc) - use_lto=no - - if [[ ${MERGE_TYPE} != binary ]] ; then - - if tc-is-lto; then - use_lto=yes - # LTO is handled via configure - filter-lto - fi - - if use pgo ; then - if ! has userpriv ${FEATURES} ; then - eerror "Building ${PN} with USE=pgo and FEATURES=-userpriv is not supported!" - fi - fi - - if [[ ${use_lto} = yes ]] ; then - # -Werror=lto-type-mismatch -Werror=odr are going to fail with GCC, - # bmo#1516758, bgo#942288 - filter-flags -Werror=lto-type-mismatch -Werror=odr - fi - - if use pgo || use debug ; then - CHECKREQS_DISK_BUILD="14300M" - elif [[ ${use_lto} == "yes" ]] ; then - CHECKREQS_DISK_BUILD="10600M" - else - CHECKREQS_DISK_BUILD="7400M" - fi - - check-reqs_pkg_setup - llvm-r1_pkg_setup - rust_pkg_setup - python-any-r1_pkg_setup - - # Avoid PGO profiling problems due to enviroment leakage - # These should *always* be cleaned up anyway - unset \ - DBUS_SESSION_BUS_ADDRESS \ - DISPLAY \ - ORBIT_SOCKETDIR \ - SESSION_MANAGER \ - XAUTHORITY \ - XDG_CACHE_HOME \ - XDG_SESSION_COOKIE - - # Build system is using /proc/self/oom_score_adj, bug #604394 - addpredict /proc/self/oom_score_adj - - if use pgo ; then - # Update 105.0: "/proc/self/oom_score_adj" isn't enough anymore with pgo, but not sure - # whether that's due to better OOM handling by Firefox (bmo#1771712), or portage - # (PORTAGE_SCHEDULING_POLICY) update... - addpredict /proc - - # Clear tons of conditions, since PGO is hardware-dependant. - addpredict /dev - fi - - if ! mountpoint -q /dev/shm ; then - # If /dev/shm is not available, configure is known to fail with - # a traceback report referencing /usr/lib/pythonN.N/multiprocessing/synchronize.py - ewarn "/dev/shm is not mounted -- expect build failures!" - fi - - # Google API keys (see http://www.chromium.org/developers/how-tos/api-keys) - # Note: These are for Gentoo Linux use ONLY. For your own distribution, please - # get your own set of keys. - if [[ -z "${MOZ_API_KEY_GOOGLE+set}" ]] ; then - MOZ_API_KEY_GOOGLE="AIzaSyDEAOvatFogGaPi0eTgsV_ZlEzx0ObmepsMzfAc" - fi - - if [[ -z "${MOZ_API_KEY_LOCATION+set}" ]] ; then - MOZ_API_KEY_LOCATION="AIzaSyB2h2OuRgGaPicUgy5N-5hsZqiPW6sH3n_rptiQ" - fi - - # Mozilla API keys (see https://location.services.mozilla.com/api) - # Note: These are for Gentoo Linux use ONLY. For your own distribution, please - # get your own set of keys. - if [[ -z "${MOZ_API_KEY_MOZILLA+set}" ]] ; then - MOZ_API_KEY_MOZILLA="edb3d487-3a84-46m0ap1e3-9dfd-92b5efaaa005" - fi - - # Ensure we use C locale when building, bug #746215 - export LC_ALL=C - fi - - export use_lto -} - -src_unpack() { - local _lp_dir="${WORKDIR}/language_packs" - local _src_file - - if [[ ! -d "${_lp_dir}" ]] ; then - mkdir "${_lp_dir}" || die - fi - - for _src_file in ${A} ; do - if [[ ${_src_file} == *.xpi ]]; then - cp "${DISTDIR}/${_src_file}" "${_lp_dir}" || die "Failed to copy '${_src_file}' to '${_lp_dir}'!" - else - unpack ${_src_file} - fi - done -} - -src_prepare() { - if [[ ${use_lto} == "yes" ]]; then - rm -v "${WORKDIR}"/firefox-patches/*-LTO-Only-enable-LTO-*.patch || die - fi - - # Workaround for bgo#915651 and bmo#1988166 on musl - if use elibc_glibc ; then - rm -v "${WORKDIR}"/firefox-patches/*bgo-748849-RUST_TARGET_override.patch || die - rm -v "${WORKDIR}"/firefox-patches/*bmo-1988166-musl-remove-nonexisting-system-header-req.patch || die - fi - - # Enable jpeg-xl only in Firefox. - rm -v "${WORKDIR}"/firefox-patches/*bgo-928126-enable-jxl.patch || die - - eapply "${WORKDIR}/firefox-patches" - - # Allow user to apply any additional patches without modifing ebuild - eapply_user - - # Make cargo respect MAKEOPTS - export CARGO_BUILD_JOBS="$(makeopts_jobs)" - - # Workaround for bgo#915651 - if ! use elibc_glibc ; then - if use amd64 ; then - export RUST_TARGET="x86_64-unknown-linux-musl" - elif use x86 ; then - export RUST_TARGET="i686-unknown-linux-musl" - elif use arm64 ; then - export RUST_TARGET="aarch64-unknown-linux-musl" - elif use loong; then - # Only the LP64D ABI of LoongArch64 is actively supported among - # the wider Linux ecosystem, so the assumption is safe. - export RUST_TARGET="loongarch64-unknown-linux-musl" - elif use ppc64 ; then - export RUST_TARGET="powerpc64le-unknown-linux-musl" - elif use riscv ; then - # We can pretty safely rule out any 32-bit riscvs, but 64-bit riscvs also have tons of - # different ABIs available. riscv64gc-unknown-linux-musl seems to be the best working - # guess right now though. - elog "riscv detected, forcing a riscv64 target for now." - export RUST_TARGET="riscv64gc-unknown-linux-musl" - else - die "Unknown musl chost, please post a new bug with your rustc -vV along with emerge --info" - fi - fi - - # Make LTO respect MAKEOPTS - sed -i -e "s/multiprocessing.cpu_count()/$(makeopts_jobs)/" \ - "${S}"/build/moz.configure/lto-pgo.configure || die "Failed sedding multiprocessing.cpu_count" - - sed -i -e "s/multiprocessing.cpu_count()/$(makeopts_jobs)/" \ - "${S}"/third_party/chromium/build/toolchain/get_cpu_count.py || die "Failed sedding multiprocessing.cpu_count" - - sed -i -e "s/multiprocessing.cpu_count()/$(makeopts_jobs)/" \ - "${S}"/third_party/python/gyp/pylib/gyp/input.py || die "Failed sedding multiprocessing.cpu_count" - - # sed-in toolchain prefix - sed -i \ - -e "s/objdump/${CHOST}-objdump/" \ - "${S}"/python/mozbuild/mozbuild/configure/check_debug_ranges.py || die "sed failed to set toolchain prefix" - - sed -i \ - -e 's/ccache_stats = None/return None/' \ - "${S}"/python/mozbuild/mozbuild/controller/building.py || die "sed failed to disable ccache stats call" - - einfo "Removing pre-built binaries ..." - - find "${S}"/third_party -type f \( -name '*.so' -o -name '*.o' \) -print -delete || die - - # Clear checksums from cargo crates we've manually patched. - # moz_clear_vendor_checksums xyz - - # Create build dir - BUILD_DIR="${WORKDIR}/${PN}_build" - mkdir -p "${BUILD_DIR}" || die - - # Write API keys to disk - echo -n "${MOZ_API_KEY_GOOGLE//gGaPi/}" > "${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_environment_reset -} - -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; then - # Force clang - einfo "Enforcing the use of clang due to USE=clang ..." - - local version_clang=$(clang --version 2>/dev/null | grep -F -- 'clang version' | awk '{ print $3 }') - [[ -n ${version_clang} ]] && version_clang=$(ver_cut 1 "${version_clang}") - [[ -z ${version_clang} ]] && die "Failed to read clang version!" - - if tc-is-gcc; then - have_switched_compiler=yes - fi - - AR=llvm-ar - CC=${CHOST}-clang-${version_clang} - CXX=${CHOST}-clang++-${version_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, - # AS is used in a non-standard way by upstream, #bmo1654031 - export HOST_CC="$(tc-getBUILD_CC)" - export HOST_CXX="$(tc-getBUILD_CXX)" - export AS="$(tc-getCC) -c" - - # Configuration tests expect llvm-readelf output, bug 913130 - READELF="llvm-readelf" - - tc-export CC CXX LD AR AS NM OBJDUMP RANLIB READELF 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 - mozconfig_add_options_ac '' --enable-project=comm/mail - - # Set Gentoo defaults - mozconfig_add_options_ac 'Gentoo default' \ - --allow-addon-sideload \ - --disable-cargo-incremental \ - --disable-crashreporter \ - --disable-disk-remnant-avoidance \ - --disable-geckodriver \ - --disable-install-strip \ - --disable-legacy-profile-creation \ - --disable-parental-controls \ - --disable-strip \ - --disable-tests \ - --disable-updater \ - --disable-valgrind \ - --disable-wmf \ - --enable-dbus \ - --enable-js-shell \ - --enable-negotiateauth \ - --enable-new-pass-manager \ - --enable-official-branding \ - --enable-packed-relative-relocs \ - --enable-release \ - --enable-system-policies \ - --host="${CBUILD:-${CHOST}}" \ - --libdir="${EPREFIX}/usr/$(get_libdir)" \ - --prefix="${EPREFIX}/usr" \ - --target="${CHOST}" \ - --without-ccache \ - --without-wasm-sandboxed-libraries \ - --with-intl-api \ - --with-libclang-path="$(llvm-config --libdir)" \ - --with-system-ffi \ - --with-system-gbm \ - --with-system-libdrm \ - --with-system-nspr \ - --with-system-nss \ - --with-system-pixman \ - --with-system-zlib \ - --with-toolchain-prefix="${CHOST}-" \ - --with-unsigned-addon-scopes=app,system - - # Set update channel - local update_channel=release - [[ -n ${MOZ_ESR} ]] && update_channel=esr - mozconfig_add_options_ac '' --enable-update-channel=${update_channel} - - # Whitelist to allow unkeyworded arches to build with "--disable-rust-simd" by default. - if use amd64 || use arm64 || use loong ; then - mozconfig_add_options_ac '' --enable-rust-simd - fi - - # For future keywording: This is currently (97.0) only supported on: - # amd64, arm, arm64 & x86. - # Might want to flip the logic around if Firefox is to support more arches. - # bug 833001, bug 903411#c8 - if use loong || use ppc64 || use riscv; then - mozconfig_add_options_ac '' --disable-sandbox - else - mozconfig_add_options_ac '' --enable-sandbox - fi - - # riscv-related options, bgo#947337, bgo#947338 - if use riscv ; then - mozconfig_add_options_ac 'Disable JIT for RISC-V 64' --disable-jit - mozconfig_add_options_ac 'Disable webrtc for RISC-V' --disable-webrtc - 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 - mozconfig_use_with system-libvpx - mozconfig_use_with system-pipewire - mozconfig_use_with system-png - mozconfig_use_with system-webp - - if use system-librnp; then - mozconfig_add_options_ac "+system-librnp" --enable-compile-environment - mozconfig_use_with system-librnp - else - # This controls the backend of the bundled librnp. Choices are "botan" and "openssl". - # RNP Upstream recommends to use botan. In Gentoo it's preferred to use system-librnp. - mozconfig_add_options_ac "+bundled librnp backend = botan" --with-librnp-backend="botan" - fi - - mozconfig_use_enable libproxy - - use eme-free && mozconfig_add_options_ac '+eme-free' --disable-eme - - if use hardened ; then - mozconfig_add_options_ac "+hardened" --enable-hardening - # mozconfig_add_options_ac "+hardened stl" --enable-stl-hardening # not available in TB - append-ldflags "-Wl,-z,relro -Wl,-z,now" - - # Increase the FORTIFY_SOURCE value, #910071. - sed -i -e '/-D_FORTIFY_SOURCE=/s:2:3:' "${S}"/build/moz.configure/toolchain.configure || die - fi - - local myaudiobackends="" - use jack && myaudiobackends+="jack," - use sndio && myaudiobackends+="sndio," - use pulseaudio && myaudiobackends+="pulseaudio," - ! use pulseaudio && myaudiobackends+="alsa," - - mozconfig_add_options_ac '--enable-audio-backends' --enable-audio-backends="${myaudiobackends::-1}" - - mozconfig_use_enable wifi necko-wifi - - if use X && use wayland ; then - mozconfig_add_options_ac '+x11+wayland' --enable-default-toolkit=cairo-gtk3-x11-wayland - elif ! use X && use wayland ; then - mozconfig_add_options_ac '+wayland' --enable-default-toolkit=cairo-gtk3-wayland-only - else - mozconfig_add_options_ac '+x11' --enable-default-toolkit=cairo-gtk3-x11-only - fi - - if [[ ${use_lto} == "yes" ]] ; then - if use clang ; then - # Upstream only supports lld or mold when using clang. - if tc-ld-is-mold ; then - # mold expects the -flto line from *FLAGS configuration, bgo#923119 - append-ldflags "-flto=thin" - mozconfig_add_options_ac "using ld=mold due to system selection" --enable-linker=mold - else - mozconfig_add_options_ac "forcing ld=lld due to USE=clang and USE=lto" --enable-linker=lld - fi - - mozconfig_add_options_ac '+lto' --enable-lto=cross - - else - # ThinLTO is currently broken, see bmo#1644409. - # mold does not support gcc+lto combination. - mozconfig_add_options_ac '+lto' --enable-lto=full - mozconfig_add_options_ac "linker is set to bfd" --enable-linker=bfd - fi - - else - # Avoid auto-magic on linker - if use clang ; then - # lld is upstream's default - if tc-ld-is-mold ; then - mozconfig_add_options_ac "using ld=mold due to system selection" --enable-linker=mold - else - mozconfig_add_options_ac "forcing ld=lld due to USE=clang" --enable-linker=lld - fi - - else - if tc-ld-is-mold ; then - mozconfig_add_options_ac "using ld=mold due to system selection" --enable-linker=mold - else - mozconfig_add_options_ac "linker is set to bfd due to USE=-clang" --enable-linker=bfd - fi - fi - 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 - - mozconfig_use_enable debug - if use debug ; then - mozconfig_add_options_ac '+debug' --disable-optimize - mozconfig_add_options_ac '+debug' --enable-jemalloc - mozconfig_add_options_ac '+debug' --enable-real-time-tracing - else - mozconfig_add_options_ac 'Gentoo defaults' --disable-real-time-tracing - - 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*' - - # elf-hack - # Filter "-z,pack-relative-relocs" and let the build system handle it instead. - if use amd64 || use x86 ; then - filter-flags "-z,pack-relative-relocs" - - if tc-ld-is-mold ; then - # relr-elf-hack is currently broken with mold, bgo#916259 - mozconfig_add_options_ac 'disable elf-hack with mold linker' --disable-elf-hack - else - mozconfig_add_options_ac 'relr elf-hack' --enable-elf-hack=relr - fi - elif use loong || use ppc64 || use riscv ; then - # '--disable-elf-hack' is not recognized on loong/ppc64/riscv, - # see bgo #917049, #930046 - :; - else - mozconfig_add_options_ac 'disable elf-hack on non-supported arches' --disable-elf-hack - fi - - if ! use elibc_glibc; then - mozconfig_add_options_ac '!elibc_glibc' --disable-jemalloc - fi - - # System-av1 fix - use system-av1 && append-ldflags "-Wl,--undefined-version" - - # 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 PIP_NETWORK_INSTALL_RESTRICTED_VIRTUALENVS=mach - - export MACH_BUILD_PYTHON_NATIVE_PACKAGE_SOURCE="none" - - # 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_lto} == "yes" ]] && tc-ld-is-mold ; then - # increase ulimit with mold+lto, bugs #892641, #907485 - if ! ulimit -n 16384 1>/dev/null 2>&1 ; then - ewarn "Unable to modify ulimits - building with mold+lto might fail due to low ulimit -n resources." - ewarn "Please see bugs #892641 & #907485." - else - ulimit -n 16384 - fi - fi - - if use pgo; then - # Reset and cleanup environment variables used by GNOME/XDG - gnome2_environment_reset - - addpredict /root - - if ! use X; then - virtx_cmd=virtwl - else - virtx_cmd=virtx - fi - fi - - if ! use X; then - local -x GDK_BACKEND=wayland - else - local -x GDK_BACKEND=x11 - fi - - ${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 llvm-core/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-r1.js gentoo-prefs.js - - local GENTOO_PREFS="${ED}${PREFS_DIR}/gentoo-prefs.js" - - # 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" - - if use wayland; then - cat >>"${GENTOO_PREFS}" <<-EOF || die "failed to set hwaccel wayland prefs" - pref("gfx.x11-egl.force-enabled", false); - EOF - else - cat >>"${GENTOO_PREFS}" <<-EOF || die "failed to set hwaccel x11 prefs" - pref("gfx.x11-egl.force-enabled", true); - EOF - fi - fi - - # 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 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 exec_command="${PN}" - local icon="${PN}" - local use_wayland="false" - - if [[ -n ${MOZ_ESR} ]] ; then - local desktop_filename="${PN}-esr.desktop" - else - local desktop_filename="${PN}.desktop" - fi - - 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:@DEFAULT_WAYLAND@:${use_wayland}:" \ - "${ED}/usr/bin/${PN}" || die -} - -pkg_postinst() { - xdg_pkg_postinst - - if ver_replacing -lt 136.0 ; then - elog "In this version of Thunderbird, upstream introduced an in-app notification" - elog "system. Setting pref 'mail.inappnotifications.enabled' to false and nullifying" - elog "'mail.inappnotifications.url' may help you avoid these messages, if you don't" - elog "wish to receive them." - fi - - optfeature_header "Optional programs for extra features:" - optfeature "desktop notifications" x11-libs/libnotify - optfeature "encrypted chat support" net-libs/libotr - optfeature "fallback mouse cursor theme e.g. on WMs" gnome-base/gsettings-desktop-schemas -} diff --git a/mail-client/thunderbird/thunderbird-147.0.1.ebuild b/mail-client/thunderbird/thunderbird-147.0.2.ebuild index 352d3dced614..352d3dced614 100644 --- a/mail-client/thunderbird/thunderbird-147.0.1.ebuild +++ b/mail-client/thunderbird/thunderbird-147.0.2.ebuild diff --git a/media-gfx/asymptote/Manifest b/media-gfx/asymptote/Manifest index a5cbeee954d7..e8e22dddf7a8 100644 --- a/media-gfx/asymptote/Manifest +++ b/media-gfx/asymptote/Manifest @@ -1,2 +1 @@ -DIST asymptote-3.05.src.tgz 31175573 BLAKE2B 4bdd4fad3d512cbd87bd829ff552d72a14b007e0135dd2f9933a1e3c8a12a0cbd3a42630cbab15d97aaad1f0fe0a473f41b486dce72eac33f4c331f5ac736981 SHA512 8061d5a35b86bc3b6f98d46dc7f636efe3a2f212ea609acfaa90b8fe70502ebddad1e01dbbe8a6c68a1d61962395f51f85e48e002d606fd57edd703b3fdbe21d DIST asymptote-3.06.src.tgz 41459813 BLAKE2B 22fb641398522e6e16697048d34b7c1b75eaa3e47f56f648ab2eaaa886806715026d7af535901637f8bfbf0f8e9aab2d56897db74dd43a87025ad696525cabec SHA512 d0dfc3ecefe9b46a52c194cf80e2efe36845cce67e3bad7eee6b30e00629145cbefbdfabab6a6950e1a711eb801c7a815491b6755b2714722f030b58bec44e2e diff --git a/media-gfx/asymptote/asymptote-3.05.ebuild b/media-gfx/asymptote/asymptote-3.05.ebuild deleted file mode 100644 index 6a971ab353ad..000000000000 --- a/media-gfx/asymptote/asymptote-3.05.ebuild +++ /dev/null @@ -1,241 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{10..14} ) - -inherit autotools elisp-common latex-package python-r1 - -DESCRIPTION="A vector graphics language that provides a framework for technical drawing" -HOMEPAGE="https://asymptote.sourceforge.io/ https://github.com/vectorgraphics/asymptote/" -SRC_URI="https://downloads.sourceforge.net/asymptote/${P}.src.tgz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="amd64 ~ppc ~riscv ~x86" -IUSE="context curl doc emacs examples fftw gsl gui +imagemagick latex lsp +opengl python sigsegv svg test vim-syntax" -RESTRICT="!test? ( test )" - -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -RDEPEND=" - >=sys-libs/ncurses-5.4-r5:0= - >=sys-libs/readline-4.3-r5:0= - net-libs/libtirpc:= - imagemagick? ( media-gfx/imagemagick[png] ) - opengl? ( media-libs/mesa[X] media-libs/freeglut media-libs/glew:0 media-libs/glm ) - svg? ( app-text/dvisvgm ) - sigsegv? ( dev-libs/libsigsegv ) - fftw? ( >=sci-libs/fftw-3.0.1:= ) - gsl? ( sci-libs/gsl:= ) - python? ( ${PYTHON_DEPS} ) - curl? ( net-misc/curl ) - lsp? ( - dev-libs/boost - dev-libs/rapidjson - dev-libs/utfcpp - ) - gui? ( - ${PYTHON_DEPS} - dev-python/pyqt5[${PYTHON_USEDEP},gui,widgets,svg] - dev-python/cson - dev-python/numpy - >=gnome-base/librsvg-2.40 - ) - latex? ( - virtual/latex-base - dev-texlive/texlive-latexextra - ) - context? ( dev-texlive/texlive-context ) - emacs? ( >=app-editors/emacs-23.1:* ) - vim-syntax? ( || ( app-editors/vim app-editors/gvim ) )" -DEPEND="${RDEPEND} - dev-lang/perl - doc? ( - media-gfx/imagemagick[png] - virtual/texi2dvi - virtual/latex-base - dev-texlive/texlive-latexextra - app-text/ghostscript-gpl ) - test? ( app-text/ghostscript-gpl )" - -TEXMF=/usr/share/texmf-site - -PATCHES=( - # Changing pdf, ps, image viewers to xdg-open - "${FILESDIR}/${PN}-2.92-xdg-utils.patch" - - # Bug #322473 - "${FILESDIR}/${PN}-2.70-info.patch" - - "${FILESDIR}/${PN}-3.00-gc-check.patch" - - # Bug # 960289 - "${FILESDIR}/${PN}-3.05-boost-1.88.patch" -) - -src_prepare() { - sed -e "s:Datadir/doc/asymptote:Datadir/doc/${PF}:" \ - -i configure.ac \ - || die "sed configure.ac failed" - - default - eautoreconf -} - -src_configure() { - # for the CPPFLAGS see - # https://sourceforge.net/forum/forum.php?thread_id=1683277&forum_id=409349 - econf \ - CPPFLAGS=-DHAVE_SYS_TYPES_H \ - CFLAGS="${CXXFLAGS}" \ - --disable-gc-debug \ - --disable-gc-full-debug \ - --with-latex=/usr/share/texmf-site/tex/latex \ - --with-context=/usr/share/texmf-site/tex/context \ - --disable-offscreen \ - $(use_enable curl) \ - $(use_enable lsp) \ - $(use_enable fftw) \ - $(use_enable gsl) \ - $(use_enable opengl gl) \ - $(use_enable sigsegv) -} - -src_compile() { - default - - emake doc/version.texi - cd doc || die - emake asy.1 - einfo "Making info" - emake ${PN}.info - if use doc; then - cd FAQ || die - emake - cd .. || die - # pdf - einfo "Making pdf docs" - export VARTEXFONTS="${T}"/fonts - # see bug #260606 - emake -j1 asymptote.pdf - emake CAD.pdf asy-latex.pdf asyRefCard.pdf - fi - cd .. || die - - if use emacs; then - einfo "Compiling emacs lisp files" - elisp-compile base/*.el - fi -} - -src_install() { - # the program - dobin asy - - # .asy files - insinto /usr/share/${PN} - doins -r base/*.asy base/*.js base/*.sh base/*.ps base/shaders base/webgl - chmod 755 "${D}"/usr/share/${PN}/shaders/* - - # documentation - dodoc README ReleaseNotes ChangeLog - cd doc || die - doman asy.1 - doinfo png/${PN}.info - if use doc; then - dodoc FAQ/asy-faq.ascii - dodoc CAD.pdf asy-latex.pdf asyRefCard.pdf asymptote.pdf - fi - cd .. || die - - # asymptote.py - if use python; then - python_moduleinto ${PN} - python_foreach_impl python_domodule base/${PN}.py - fi - - # gui - if use gui; then - cd GUI || die - python_setup - sed -e 1d -i xasy.py - echo "#!/usr/bin/env ${EPYTHON}" > xasy1 - cat xasy1 xasy.py > xasy - rm xasy1 xasy.py - mv xasy xasy.py - cd .. || die - python_moduleinto ${PN} - python_domodule GUI - chmod 755 "${D}/$(python_get_sitedir)/${PN}/GUI/xasy.py" - dosym "$(python_get_sitedir)/${PN}/GUI/xasy.py" /usr/bin/xasy - doman doc/xasy.1x - fi - - # examples - if use examples; then - docinto examples - dodoc \ - examples/*.asy \ - examples/*.views \ - examples/*.dat \ - examples/*.bib \ - examples/*.png \ - examples/*.pdb1 \ - doc/*.asy \ - doc/*.csv \ - doc/*.dat \ - doc/pixel.pdf \ - doc/extra/*.asy - docinto examples/animations - dodoc examples/animations/*.asy - fi - - # LaTeX style - if use latex; then - cd doc || die - insinto "${TEXMF}"/tex/latex/${PN} - doins *.sty latexmkrc - if use examples; then - docinto examples - dodoc latexusage.tex externalprc.tex - docinto examples/animations - dodoc ../examples/animations/*.tex - fi - cd .. || die - fi - - # ConTeXt - if use context; then - insinto /usr/share/texmf-site/tex/context - doins doc/colo-asy.tex - fi - - # emacs mode - if use emacs; then - elisp-install ${PN} base/*.el base/*.elc asy-keywords.el - elisp-site-file-install "${FILESDIR}"/64${PN}-gentoo.el - fi - - # vim syntax - if use vim-syntax; then - insinto /usr/share/vim/vimfiles/syntax - doins base/asy.vim - insinto /usr/share/vim/vimfiles/ftdetect - doins base/asy_filetype.vim - fi -} - -pkg_postinst() { - use latex && latex-package_rehash - use emacs && elisp-site-regen - - elog 'Use the variable ASYMPTOTE_PSVIEWER to set the postscript viewer' - elog 'Use the variable ASYMPTOTE_PDFVIEWER to set the PDF viewer' -} - -pkg_postrm() { - use latex && latex-package_rehash - use emacs && elisp-site-regen -} diff --git a/media-gfx/asymptote/files/asymptote-3.00-gc-check.patch b/media-gfx/asymptote/files/asymptote-3.00-gc-check.patch deleted file mode 100644 index 55b640c171dc..000000000000 --- a/media-gfx/asymptote/files/asymptote-3.00-gc-check.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff '--color=auto' -r -U3 asymptote-3.01.orig/gc/Makefile.in asymptote-3.01/gc/Makefile.in ---- asymptote-3.01.orig/gc/Makefile.in 2025-02-24 03:39:29.000000000 +0700 -+++ asymptote-3.01/gc/Makefile.in 2025-03-23 15:13:49.870021946 +0700 -@@ -2509,7 +2509,7 @@ - exit 1; } >&2 - check-am: all-am - $(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS) $(check_LTLIBRARIES) -- $(MAKE) $(AM_MAKEFLAGS) check-TESTS -+# $(MAKE) $(AM_MAKEFLAGS) check-TESTS - check: check-recursive - all-am: Makefile $(LTLIBRARIES) $(MANS) $(DATA) $(HEADERS) - install-checkPROGRAMS: install-libLTLIBRARIES diff --git a/media-gfx/asymptote/files/asymptote-3.05-boost-1.88.patch b/media-gfx/asymptote/files/asymptote-3.05-boost-1.88.patch deleted file mode 100644 index 1da465ab2857..000000000000 --- a/media-gfx/asymptote/files/asymptote-3.05-boost-1.88.patch +++ /dev/null @@ -1,74 +0,0 @@ -commit a0541fdbeb08247b8c97f2f01e922452ffb4bc9e -Author: Erik Zeek <zeekec@gmail.com> -Date: Mon Jul 21 20:21:07 2025 -0600 - - Use boost/process/v1 for newer boosts - - Signed-off-by: Erik Zeek <zeekec@gmail.com> - -diff --git a/LspCpp/examples/StdIOClientExample.cpp b/LspCpp/examples/StdIOClientExample.cpp -index 13bf9da..48a9ace 100644 ---- a/LspCpp/examples/StdIOClientExample.cpp -+++ b/LspCpp/examples/StdIOClientExample.cpp -@@ -17,7 +17,17 @@ - #include "LibLsp/JsonRpc/TcpServer.h" - #include "LibLsp/lsp/textDocument/document_symbol.h" - #include "LibLsp/lsp/workspace/execute_command.h" -+ -+#include <boost/version.hpp> -+#if BOOST_VERSION >= 108800 // v2 is now default -+#define BOOST_PROCESS_VERSION 1 -+#include <boost/process/v1/child.hpp> -+#include <boost/process/v1/io.hpp> -+#include <boost/process/v1/pipe.hpp> -+#else - #include <boost/process.hpp> -+#endif -+ - #include <boost/filesystem.hpp> - #include <boost/asio.hpp> - #include <iostream> -diff --git a/LspCpp/examples/StdIOServerExample.cpp b/LspCpp/examples/StdIOServerExample.cpp -index 8b2d2b2..f38e4a7 100644 ---- a/LspCpp/examples/StdIOServerExample.cpp -+++ b/LspCpp/examples/StdIOServerExample.cpp -@@ -16,7 +16,17 @@ - #include "LibLsp/JsonRpc/TcpServer.h" - #include "LibLsp/lsp/textDocument/document_symbol.h" - #include "LibLsp/lsp/workspace/execute_command.h" -+ -+#include <boost/version.hpp> -+#if BOOST_VERSION >= 108800 // v2 is now default -+#define BOOST_PROCESS_VERSION 1 -+#include <boost/process/v1/child.hpp> -+#include <boost/process/v1/io.hpp> -+#include <boost/process/v1/pipe.hpp> -+#else - #include <boost/process.hpp> -+#endif -+ - #include <boost/filesystem.hpp> - #include <boost/asio.hpp> - #include <iostream> -diff --git a/LspCpp/src/lsp/ParentProcessWatcher.cpp b/LspCpp/src/lsp/ParentProcessWatcher.cpp -index ee4147b..8ecc05d 100644 ---- a/LspCpp/src/lsp/ParentProcessWatcher.cpp -+++ b/LspCpp/src/lsp/ParentProcessWatcher.cpp -@@ -1,6 +1,17 @@ - #include "LibLsp/lsp/ParentProcessWatcher.h" - #include <algorithm> -+ -+#include <boost/version.hpp> -+#if BOOST_VERSION >= 108800 // v2 is now default -+#define BOOST_PROCESS_VERSION 1 -+#include <boost/process/v1/child.hpp> -+#include <boost/process/v1/io.hpp> -+#include <boost/process/v1/pipe.hpp> -+#include <boost/process/v1/system.hpp> -+#else - #include <boost/process.hpp> -+#error "V1" -+#endif - - #ifdef _WIN32 - #include <boost/process/v1/windows.hpp> diff --git a/media-gfx/flameshot/Manifest b/media-gfx/flameshot/Manifest index c9f70f001289..da33715fabee 100644 --- a/media-gfx/flameshot/Manifest +++ b/media-gfx/flameshot/Manifest @@ -1,2 +1,3 @@ DIST flameshot-13.1.0.tar.gz 16028319 BLAKE2B 8d17073c1dde9bbf5703c71f9004360059b716f5311d3f3f64b13bc9089929c46c01fb2901e94e5fb5bc64a6490ce9c9fdece5e69df2fd5fd339faac0c9d7ccd SHA512 d91c01c82e89c17a5c913fc90521867029f68985bd83883f904c1be8b4ffd548302954d6d36bce322f292419cf1434e597e8e23618eb0769b28cc48a267ce231 +DIST flameshot-13.3.0.tar.gz 16081429 BLAKE2B 2d601ff90be4c385c127d2df93fc66aa210f008fac276127488bb6e07bd05996375e39a1e832212bfcc37ff7c356c1066a04398f33c276f6d6ab441cab041fe7 SHA512 0f991b58e6e828aceb94d1e7eb4e1b5d946d94ad6434ee5324b1177ec3d235298887b767c6c671124ea82d56e24a05909a21cf13a29777bbcd2358f14a7f2362 DIST flameshot-qtcolorwidgets-84910784.tar.bz2 209064 BLAKE2B b83bd685ac0a90e690dc3388147604b9499c73d29c5eec27418f6ff5959e20fbfbb1a4b3d6bcc83f9da5d79e6479ef49d02b43054e3bed0fbcc3365afe56d0d1 SHA512 57d838cc021dc09fff2605b5f7a1ea9181c98b4a28ad093d09ab220241af784a42c6c12daa2ed3cf2272e637572f5801fa9ad38c5c8a36bbd9fc9e71b2ef0c12 diff --git a/media-gfx/flameshot/flameshot-13.3.0.ebuild b/media-gfx/flameshot/flameshot-13.3.0.ebuild new file mode 100644 index 000000000000..f28db18e99e2 --- /dev/null +++ b/media-gfx/flameshot/flameshot-13.3.0.ebuild @@ -0,0 +1,55 @@ +# Copyright 2021-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake flag-o-matic xdg + +DESCRIPTION="Powerful yet simple to use screenshot software" +HOMEPAGE="https://flameshot.org https://github.com/flameshot-org/flameshot" +SRC_URI=" + https://github.com/flameshot-org/flameshot/archive/refs/tags/v${PV}.tar.gz + -> ${P}.tar.gz +" + +LICENSE="Apache-2.0 Free-Art-1.3 GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86" +IUSE="imgur wayland" + +DEPEND=" + dev-libs/kdsingleapplication:= + dev-qt/qtbase:6[dbus,gui,network,widgets] + dev-qt/qtsvg:6 + gui-libs/qt-color-widgets:= + sys-apps/dbus + wayland? ( kde-frameworks/kguiaddons:6 ) +" +RDEPEND="${DEPEND}" +BDEPEND=" + dev-qt/qttools:6[linguist] +" + +src_configure() { + # -Werror=strict-aliasing + # https://bugs.gentoo.org/859613 + # https://github.com/flameshot-org/flameshot/issues/3531 + # + # Do not trust with LTO either + append-flags -fno-strict-aliasing + filter-lto + + local mycmakeargs=( + -DCMAKE_DISABLE_FIND_PACKAGE_Git=ON + -DDISABLE_UPDATE_CHECKER=ON + -DENABLE_CACHE=0 + -DENABLE_IMGUR=$(usex imgur) + -DFETCHCONTENT_TRY_FIND_PACKAGE_MODE=ALWAYS + -DUSE_BUNDLED_KDSINGLEAPPLICATION=OFF + -DUSE_KDSINGLEAPPLICATION=ON + -DUSE_WAYLAND_CLIPBOARD=$(usex wayland) + + ) + + cmake_src_configure +} diff --git a/media-gfx/flameshot/metadata.xml b/media-gfx/flameshot/metadata.xml index 6fd04ada1a85..c4ce81037ba0 100644 --- a/media-gfx/flameshot/metadata.xml +++ b/media-gfx/flameshot/metadata.xml @@ -17,5 +17,8 @@ support for both GUI and CLI interface. </longdescription> + <use> + <flag name="imgur">Enable Imgur uploader</flag> + </use> <origin>gentoo-staging</origin> </pkgmetadata>
\ No newline at end of file diff --git a/media-gfx/kphotoalbum/kphotoalbum-6.1.0-r1.ebuild b/media-gfx/kphotoalbum/kphotoalbum-6.1.0-r1.ebuild index 42a8a2838e0a..04f2f136e7c6 100644 --- a/media-gfx/kphotoalbum/kphotoalbum-6.1.0-r1.ebuild +++ b/media-gfx/kphotoalbum/kphotoalbum-6.1.0-r1.ebuild @@ -16,7 +16,7 @@ HOMEPAGE="https://www.kphotoalbum.org/" if [[ ${KDE_BUILD_TYPE} != live ]]; then SRC_URI="mirror://kde/stable/${PN}/${PV}/${P}.tar.xz https://dev.gentoo.org/~asturm/distfiles/${PATCHSET}.tar.xz" - KEYWORDS="~amd64 ~x86" + KEYWORDS="amd64 ~x86" fi LICENSE="GPL-2+ FDL-1.2 CC-BY-SA-4.0" diff --git a/media-gfx/sfftobmp/files/sfftobmp-3.1.1-gcc44-and-boost-1_37.patch b/media-gfx/sfftobmp/files/sfftobmp-3.1.1-gcc44-and-boost-1_37.patch deleted file mode 100644 index 226b717431de..000000000000 --- a/media-gfx/sfftobmp/files/sfftobmp-3.1.1-gcc44-and-boost-1_37.patch +++ /dev/null @@ -1,28 +0,0 @@ ---- a/src/cmdline.cpp -+++ b/src/cmdline.cpp -@@ -35,6 +35,7 @@ - - ---RCS-Info--------------------------------------------------*/ - -+#include <cstdio> - #include <vector> - #include <cassert> - #include <iostream> ---- a/src/common.cpp -+++ b/src/common.cpp -@@ -49,6 +49,7 @@ - #include <sys/utime.h> - #endif - -+#include <cstdio> - #include <cassert> - #include <iostream> - ---- a/src/Makefile.am -+++ b/src/Makefile.am -@@ -3,4 +3,4 @@ - INCLUDES = -I$(top_builddir) -I$(top_srcdir) - bin_PROGRAMS = sfftobmp - sfftobmp_SOURCES = my_getopt.c cmdline.cpp codes.cpp common.cpp decoder.cpp input.cpp main.cpp output.cpp --sfftobmp_LDADD = @TIFF_LIB@ @JPEG_LIB@ -lboost_filesystem -+sfftobmp_LDADD = @TIFF_LIB@ @JPEG_LIB@ -lboost_filesystem -lboost_system diff --git a/media-libs/kvazaar/files/kvazaar-2.0.0-fix-avx2-flags.patch b/media-libs/kvazaar/files/kvazaar-2.0.0-fix-avx2-flags.patch deleted file mode 100644 index f2ae8ae44150..000000000000 --- a/media-libs/kvazaar/files/kvazaar-2.0.0-fix-avx2-flags.patch +++ /dev/null @@ -1,33 +0,0 @@ -From 99423a825027c862bbfd50e112a1846a013b01a7 Mon Sep 17 00:00:00 2001 -From: "Francisco Blas (klondike) Izquierdo Riera" <klondike@klondike.es> -Date: Tue, 4 Oct 2022 10:03:44 +0200 -Subject: [PATCH] Enable -mpopcnt and -mlzcnt on AVX2 - -When -mpopcnt or -mlzcnt are explicitly enabled or disabled -(when using -march=native for example), kvazaar builds fail -on older CPUs without support for these flags (see -https://github.com/ultravideo/kvazaar/issues/228 and -https://bugs.gentoo.org/739776 ). - -Ensuring these flags are on as done with the rest of AVX2 flags -solves the compilation issues, although it may be a better -approach to provide a configuration option so that only the -specific version matching the build system supported flags is -created in such cases. ---- - src/Makefile.am | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/Makefile.am b/src/Makefile.am -index 79880a98..c972c5be 100644 ---- a/src/Makefile.am -+++ b/src/Makefile.am -@@ -226,7 +226,7 @@ endif #HAVE_PPC - if HAVE_X86 - - if HAVE_AVX2_GCC --libavx2_la_CFLAGS = -mavx2 -mbmi -mabm -mbmi2 -+libavx2_la_CFLAGS = -mavx2 -mbmi -mabm -mpopcnt -mlzcnt -mbmi2 - endif - if HAVE_AVX2_CLANG - libavx2_la_CFLAGS = -mavx2 -mbmi -mpopcnt -mlzcnt -mbmi2 diff --git a/media-libs/lilv/lilv-0.24.26.ebuild b/media-libs/lilv/lilv-0.24.26-r1.ebuild index 5b1b168f890f..6fedf48d3ba6 100644 --- a/media-libs/lilv/lilv-0.24.26.ebuild +++ b/media-libs/lilv/lilv-0.24.26-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -16,7 +16,7 @@ LICENSE="ISC" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~sparc x86" IUSE="doc python test tools" -REQUIRED_USE="${PYTHON_REQUIRED_USE}" +REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" RESTRICT="!test? ( test )" BDEPEND=" @@ -30,7 +30,7 @@ BDEPEND=" " # Take care on bumps to check minimum versions! RDEPEND=" - ${PYTHON_DEPS} + python? ( ${PYTHON_DEPS} ) >=dev-libs/serd-0.30.10[${MULTILIB_USEDEP}] >=dev-libs/sord-0.16.16[${MULTILIB_USEDEP}] >=dev-libs/zix-0.6.0[${MULTILIB_USEDEP}] @@ -41,7 +41,7 @@ RDEPEND=" DEPEND="${RDEPEND}" pkg_setup() { - python_setup + use python && python-single-r1_pkg_setup } src_prepare() { @@ -64,7 +64,7 @@ multilib_src_configure() { multilib_src_install() { meson_src_install - python_optimize + use python && python_optimize } multilib_src_install_all() { diff --git a/media-libs/lvtk/files/lvtk-1.2.0-boost-system-underlinking.patch b/media-libs/lvtk/files/lvtk-1.2.0-boost-system-underlinking.patch deleted file mode 100644 index 8a32358852c3..000000000000 --- a/media-libs/lvtk/files/lvtk-1.2.0-boost-system-underlinking.patch +++ /dev/null @@ -1,13 +0,0 @@ -Prevent underlinking issues due to recent boost versions requiring boost::system -See also: https://bugs.gentoo.org/show_bug.cgi?id=579398 - ---- lvtk-1.2.0/wscript -+++ lvtk-1.2.0/wscript -@@ -71,6 +71,7 @@ - atleast_version="2.20.0", mandatory=False) - - # Setup the Environment -+ conf.env.LIB_BOOST = ['boost_system'] - conf.env.EXAMPLES_DISABLED = conf.options.disable_examples - conf.env.TOOLS_DISABLED = conf.options.disable_tools - conf.env.UI_DISABLED = conf.options.disable_ui diff --git a/media-libs/lvtk/lvtk-1.2.0-r3.ebuild b/media-libs/lvtk/lvtk-1.2.0-r3.ebuild deleted file mode 100644 index 69a9244e4ef0..000000000000 --- a/media-libs/lvtk/lvtk-1.2.0-r3.ebuild +++ /dev/null @@ -1,75 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{10..14} ) -PYTHON_REQ_USE="threads(+)" - -inherit dot-a python-any-r1 waf-utils - -WAF_VER=2.0.20 - -DESCRIPTION="A set of C++ wrappers around the LV2 C API" -HOMEPAGE="https://lvtk.org/" -SRC_URI="https://github.com/lvtk/lvtk/archive/${PV}.tar.gz -> ${P}.tar.gz - https://waf.io/waf-${WAF_VER}" - -LICENSE="GPL-3+" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="debug doc examples +gtk2 +tools" - -RDEPEND=" - media-libs/lv2 - dev-libs/boost - gtk2? ( dev-cpp/gtkmm:2.4 ) -" -DEPEND=" - ${RDEPEND} - doc? ( app-text/doxygen - media-gfx/graphviz ) -" -BDEPEND=" - ${PYTHON_DEPS} - virtual/pkgconfig -" - -PATCHES=( - "${FILESDIR}/${P}-boost-system-underlinking.patch" - "${FILESDIR}/${P}-py3.patch" -) - -src_unpack() { - unpack ${P}.tar.gz || die - - # we need newer version of waf to work with py3 - cp "${DISTDIR}/waf-${WAF_VER}" "${S}/waf" || die -} - -src_configure() { - lto-guarantee-fat - - local mywafconfargs=( - "--docdir=${EPREFIX}/usr/share/doc/${PF}" - "--lv2dir=${EPREFIX}/usr/$(get_libdir)/lv2" - ) - use debug && mywafconfargs+=( "--debug" ) - use doc && mywafconfargs+=( "--docs" ) - use examples || mywafconfargs+=( "--disable-examples" ) - use tools || mywafconfargs+=( "--disable-tools" ) - use gtk2 || mywafconfargs+=( "--disable-ui" ) - waf-utils_src_configure ${mywafconfargs[@]} -} - -src_install() { - waf-utils_src_install - - strip-lto-bytecode - - # It does not respect docdir properly, reported upstream - if use doc; then - mv "${ED}/usr/share/doc/${PF}/lvtk-1/html" "${ED}/usr/share/doc/${PF}/html" || die - rmdir "${ED}/usr/share/doc/${PF}/lvtk-1" || die - fi -} diff --git a/media-sound/snapcast/Manifest b/media-sound/snapcast/Manifest index 86960e37e41d..a688ca34006b 100644 --- a/media-sound/snapcast/Manifest +++ b/media-sound/snapcast/Manifest @@ -1,2 +1 @@ -DIST snapcast-0.31.0.tar.gz 1128037 BLAKE2B 82444e9fc75e82b5f57e3e115a8bfbde2a5839bc68e25db47df0f25675cf73a836f2e8b09afb077410bd3c36917abb17ce302c18b67b440567c55b673301e7f5 SHA512 9c3eef7a18aaf6479a96810aeb58d11cc87654021d8d07b29f9b623c70bd7fd9aa08f5dee430c11de72abafa1a1b5abe500b93eef4b17b7c56df55c2f2a29867 DIST snapcast-0.34.0.tar.gz 1173157 BLAKE2B e141c7fe264801ba598e09edad41cc543811e36ee51c02597dc180bd79370b6693aeaed919ce4c56749064f6034c26409c6aa7273a01b33fdc265315d501f76d SHA512 509c76432f71c1f08975740f7e633289254d157d2676f0c20d4a2578515e5ed5bb0036706df35fd2d4cba091881fc6c84d870c80e6cf7c6923392daf9c1cfbb1 diff --git a/media-sound/snapcast/files/snapcast-0.31.0-boost-1.88-fixup.patch b/media-sound/snapcast/files/snapcast-0.31.0-boost-1.88-fixup.patch deleted file mode 100644 index 36045c0e902a..000000000000 --- a/media-sound/snapcast/files/snapcast-0.31.0-boost-1.88-fixup.patch +++ /dev/null @@ -1,257 +0,0 @@ -https://github.com/badaix/snapcast/commit/0de502f565c6f26ab9ea4e18aa005ab3ebc6a01a -https://github.com/badaix/snapcast/commit/7c27acb3c7db28d8e74795ccb163b38efdf2625c -https://github.com/badaix/snapcast/commit/e617654e17aa09c28aad07822777b696298f92d0 - -From 0de502f565c6f26ab9ea4e18aa005ab3ebc6a01a Mon Sep 17 00:00:00 2001 -From: badaix <johannes.pohl@badaix.de> -Date: Fri, 6 Jun 2025 14:01:26 +0200 -Subject: [PATCH] Define BOOST_PROCESS_VERSION=1 globally - ---- - CMakeLists.txt | 3 ++- - client/player/player.cpp | 1 - - server/streamreader/stream_control.hpp | 4 ++-- - 3 files changed, 4 insertions(+), 4 deletions(-) - -diff --git a/CMakeLists.txt b/CMakeLists.txt -index b35291f7..e6dccd2f 100644 ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -332,7 +332,8 @@ else() - add_compile_definitions(HAS_TREMOR) - endif() - --add_compile_definitions(BOOST_ERROR_CODE_HEADER_ONLY BOOST_ASIO_NO_TS_EXECUTORS) -+add_compile_definitions(BOOST_ERROR_CODE_HEADER_ONLY BOOST_ASIO_NO_TS_EXECUTORS -+ BOOST_PROCESS_VERSION=1) - - if(WIN32) - include(FindPackageHandleStandardArgs) -diff --git a/client/player/player.cpp b/client/player/player.cpp -index 047a9ab1..968cb723 100644 ---- a/client/player/player.cpp -+++ b/client/player/player.cpp -@@ -27,7 +27,6 @@ - - // 3rd party headers - #ifdef SUPPORTS_VOLUME_SCRIPT --#define BOOST_PROCESS_VERSION 1 - #include <boost/process/v1/args.hpp> - #include <boost/process/v1/child.hpp> - #include <boost/process/v1/detail/on_exit.hpp> -diff --git a/server/streamreader/stream_control.hpp b/server/streamreader/stream_control.hpp -index 5007f208..5cbc9217 100644 ---- a/server/streamreader/stream_control.hpp -+++ b/server/streamreader/stream_control.hpp -@@ -23,8 +23,8 @@ - #include "server_settings.hpp" - - // 3rd party headers --#define BOOST_PROCESS_VERSION 1 --#include <boost/asio.hpp> -+#include <boost/asio/any_io_executor.hpp> -+#include <boost/process/v1/child.hpp> - #include <boost/process/v1/io.hpp> - #include <boost/process/v1/start_dir.hpp> - #include <boost/process/v1/system.hpp> - -From 7c27acb3c7db28d8e74795ccb163b38efdf2625c Mon Sep 17 00:00:00 2001 -From: badaix <johannes.pohl@badaix.de> -Date: Fri, 6 Jun 2025 14:05:39 +0200 -Subject: [PATCH] Add missing includes - ---- - server/snapserver.cpp | 1 + - server/stream_session_tcp.cpp | 2 ++ - server/streamreader/airplay_stream.hpp | 3 +-- - server/streamreader/file_stream.hpp | 5 ++++- - server/streamreader/pcm_stream.hpp | 1 + - server/streamreader/pipe_stream.hpp | 6 +++++- - server/streamreader/process_stream.hpp | 5 +++++ - 7 files changed, 19 insertions(+), 4 deletions(-) - -diff --git a/server/snapserver.cpp b/server/snapserver.cpp -index 3e51fb2d..454f3b5d 100644 ---- a/server/snapserver.cpp -+++ b/server/snapserver.cpp -@@ -38,6 +38,7 @@ - - // 3rd party headers - #include <boost/asio/ip/host_name.hpp> -+#include <boost/asio/signal_set.hpp> - - // standard headers - #include <chrono> -diff --git a/server/stream_session_tcp.cpp b/server/stream_session_tcp.cpp -index 0cc05f6a..e9bebfd5 100644 ---- a/server/stream_session_tcp.cpp -+++ b/server/stream_session_tcp.cpp -@@ -23,6 +23,8 @@ - #include "common/aixlog.hpp" - - // 3rd party headers -+#include <boost/asio/read.hpp> -+#include <boost/asio/write.hpp> - - // standard headers - #include <iostream> -diff --git a/server/streamreader/airplay_stream.hpp b/server/streamreader/airplay_stream.hpp -index 05ec2d4b..44c89752 100644 ---- a/server/streamreader/airplay_stream.hpp -+++ b/server/streamreader/airplay_stream.hpp -@@ -23,6 +23,7 @@ - #include "process_stream.hpp" - - // 3rd party headers -+#include <boost/asio/streambuf.hpp> - // Expat is used in metadata parsing from Shairport-sync. - // Without HAS_EXPAT defined no parsing will occur. - #ifdef HAS_EXPAT -@@ -42,8 +43,6 @@ struct TageEntry - int length{0}; ///< length - }; - --/// Starts shairport-sync and reads PCM data from stdout -- - /** - * Starts shairport-sync, reads PCM data from stdout, and passes the data to an encoder. - * Implements EncoderListener to get the encoded data. -diff --git a/server/streamreader/file_stream.hpp b/server/streamreader/file_stream.hpp -index 243fceb8..5d1641fd 100644 ---- a/server/streamreader/file_stream.hpp -+++ b/server/streamreader/file_stream.hpp -@@ -1,6 +1,6 @@ - /*** - This file is part of snapcast -- Copyright (C) 2014-2024 Johannes Pohl -+ Copyright (C) 2014-2025 Johannes Pohl - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by -@@ -22,6 +22,9 @@ - // local headers - #include "asio_stream.hpp" - -+// 3rd party headers -+#include <boost/asio/posix/stream_descriptor.hpp> -+ - namespace streamreader - { - -diff --git a/server/streamreader/pcm_stream.hpp b/server/streamreader/pcm_stream.hpp -index 6392fea6..7af99bab 100644 ---- a/server/streamreader/pcm_stream.hpp -+++ b/server/streamreader/pcm_stream.hpp -@@ -35,6 +35,7 @@ - #include <boost/asio/io_context.hpp> - #include <boost/asio/read_until.hpp> - #include <boost/asio/steady_timer.hpp> -+#include <boost/asio/strand.hpp> - - // standard headers - #include <atomic> -diff --git a/server/streamreader/pipe_stream.hpp b/server/streamreader/pipe_stream.hpp -index 75339ce2..0f7d41f5 100644 ---- a/server/streamreader/pipe_stream.hpp -+++ b/server/streamreader/pipe_stream.hpp -@@ -1,6 +1,6 @@ - /*** - This file is part of snapcast -- Copyright (C) 2014-2024 Johannes Pohl -+ Copyright (C) 2014-2025 Johannes Pohl - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by -@@ -22,6 +22,10 @@ - // local headers - #include "asio_stream.hpp" - -+// 3rd party headers -+#include <boost/asio/posix/stream_descriptor.hpp> -+ -+ - namespace streamreader - { - -diff --git a/server/streamreader/process_stream.hpp b/server/streamreader/process_stream.hpp -index 2a19fecb..5c495655 100644 ---- a/server/streamreader/process_stream.hpp -+++ b/server/streamreader/process_stream.hpp -@@ -23,6 +23,11 @@ - #include "asio_stream.hpp" - #include "watchdog.hpp" - -+// 3rd party headers -+#include <boost/asio/posix/stream_descriptor.hpp> -+#include <boost/process/v1/child.hpp> -+#include <boost/process/v1/pipe.hpp> -+ - // standard headers - #include <memory> - #include <string> - -From e617654e17aa09c28aad07822777b696298f92d0 Mon Sep 17 00:00:00 2001 -From: badaix <johannes.pohl@badaix.de> -Date: Fri, 6 Jun 2025 21:52:26 +0200 -Subject: [PATCH] Include process v1 headers for Boost version >= v1.88.0 - ---- - client/client_connection.cpp | 1 - - client/player/player.cpp | 4 ++++ - server/streamreader/process_stream.hpp | 3 --- - server/streamreader/stream_control.hpp | 4 ++++ - 4 files changed, 8 insertions(+), 4 deletions(-) - -diff --git a/client/player/player.cpp b/client/player/player.cpp -index 968cb723..76ca3818 100644 ---- a/client/player/player.cpp -+++ b/client/player/player.cpp -@@ -27,10 +27,14 @@ - - // 3rd party headers - #ifdef SUPPORTS_VOLUME_SCRIPT -+#if BOOST_VERSION >= 108800 - #include <boost/process/v1/args.hpp> - #include <boost/process/v1/child.hpp> - #include <boost/process/v1/detail/on_exit.hpp> - #include <boost/process/v1/exe.hpp> -+#else -+#include <boost/process.hpp> -+#endif - #endif - - // standard headers -diff --git a/server/streamreader/process_stream.hpp b/server/streamreader/process_stream.hpp -index 5c495655..0774b9e9 100644 ---- a/server/streamreader/process_stream.hpp -+++ b/server/streamreader/process_stream.hpp -@@ -24,9 +24,6 @@ - #include "watchdog.hpp" - - // 3rd party headers --#include <boost/asio/posix/stream_descriptor.hpp> --#include <boost/process/v1/child.hpp> --#include <boost/process/v1/pipe.hpp> - - // standard headers - #include <memory> -diff --git a/server/streamreader/stream_control.hpp b/server/streamreader/stream_control.hpp -index 5cbc9217..6a448d52 100644 ---- a/server/streamreader/stream_control.hpp -+++ b/server/streamreader/stream_control.hpp -@@ -24,10 +24,14 @@ - - // 3rd party headers - #include <boost/asio/any_io_executor.hpp> -+#if BOOST_VERSION >= 108800 - #include <boost/process/v1/child.hpp> - #include <boost/process/v1/io.hpp> - #include <boost/process/v1/start_dir.hpp> - #include <boost/process/v1/system.hpp> -+#else -+#include <boost/process.hpp> -+#endif - - // standard headers - #include <filesystem> - diff --git a/media-sound/snapcast/files/snapcast-0.31.0-boost-1.88.patch b/media-sound/snapcast/files/snapcast-0.31.0-boost-1.88.patch deleted file mode 100644 index 7c05f3430745..000000000000 --- a/media-sound/snapcast/files/snapcast-0.31.0-boost-1.88.patch +++ /dev/null @@ -1,55 +0,0 @@ -https://bugs.gentoo.org/955544 -https://github.com/badaix/snapcast/commit/798e5cb142b90f19542a8bce897a4fe6460e5a10 - -From 798e5cb142b90f19542a8bce897a4fe6460e5a10 Mon Sep 17 00:00:00 2001 -From: Tobias Hochwallner <tobster@gmx.at> -Date: Wed, 7 May 2025 22:42:07 +0200 -Subject: [PATCH] Build failure with boost 1.88.0 #1367 fix compilation errors - by including the deprecated boost process v1 APIs - ---- - client/player/player.cpp | 6 +++++- - server/streamreader/stream_control.hpp | 8 +++++--- - 2 files changed, 10 insertions(+), 4 deletions(-) - -diff --git a/client/player/player.cpp b/client/player/player.cpp -index c4b590c7..047a9ab1 100644 ---- a/client/player/player.cpp -+++ b/client/player/player.cpp -@@ -27,7 +27,11 @@ - - // 3rd party headers - #ifdef SUPPORTS_VOLUME_SCRIPT --#include <boost/process.hpp> -+#define BOOST_PROCESS_VERSION 1 -+#include <boost/process/v1/args.hpp> -+#include <boost/process/v1/child.hpp> -+#include <boost/process/v1/detail/on_exit.hpp> -+#include <boost/process/v1/exe.hpp> - #endif - - // standard headers -diff --git a/server/streamreader/stream_control.hpp b/server/streamreader/stream_control.hpp -index 358d9708..5007f208 100644 ---- a/server/streamreader/stream_control.hpp -+++ b/server/streamreader/stream_control.hpp -@@ -18,14 +18,16 @@ - - #pragma once - -- - // local headers - #include "jsonrpcpp.hpp" - #include "server_settings.hpp" - - // 3rd party headers --#include <boost/asio/any_io_executor.hpp> --#include <boost/process.hpp> -+#define BOOST_PROCESS_VERSION 1 -+#include <boost/asio.hpp> -+#include <boost/process/v1/io.hpp> -+#include <boost/process/v1/start_dir.hpp> -+#include <boost/process/v1/system.hpp> - - // standard headers - #include <filesystem> diff --git a/media-sound/snapcast/files/snapcast-0.31.0-drop-lint.patch b/media-sound/snapcast/files/snapcast-0.31.0-drop-lint.patch deleted file mode 100644 index 36f687baf651..000000000000 --- a/media-sound/snapcast/files/snapcast-0.31.0-drop-lint.patch +++ /dev/null @@ -1,12 +0,0 @@ -We don't want any automagic lint probing. ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -85,8 +85,6 @@ else() - endif() - - include(GNUInstallDirs) --include(${CMAKE_SOURCE_DIR}/cmake/cppcheck.cmake) --include(${CMAKE_SOURCE_DIR}/cmake/reformat.cmake) - - if(NOT WIN32) - option(BUILD_SERVER "Build Snapserver" ON) # no Windows server for now diff --git a/media-sound/snapcast/snapcast-0.31.0.ebuild b/media-sound/snapcast/snapcast-0.31.0.ebuild deleted file mode 100644 index a6ffd602bdc2..000000000000 --- a/media-sound/snapcast/snapcast-0.31.0.ebuild +++ /dev/null @@ -1,85 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit edo cmake - -DESCRIPTION="Synchronous multi-room audio player" -HOMEPAGE="https://github.com/badaix/snapcast" -SRC_URI="https://github.com/badaix/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-3+" -SLOT="0" -KEYWORDS="amd64 ~arm ppc ppc64 ~riscv x86" -IUSE="+client +expat +flac jack +opus +server test tremor +vorbis +zeroconf" -REQUIRED_USE="|| ( server client )" -RESTRICT="!test? ( test )" - -RDEPEND=" - dev-libs/boost:= - dev-libs/openssl:= - media-libs/alsa-lib - client? ( acct-user/snapclient ) - expat? ( dev-libs/expat ) - flac? ( media-libs/flac:= ) - jack? ( virtual/jack ) - opus? ( media-libs/opus ) - server? ( - acct-group/snapserver - acct-user/snapserver - ) - tremor? ( media-libs/tremor ) - vorbis? ( media-libs/libvorbis ) - zeroconf? ( net-dns/avahi[dbus] ) -" -DEPEND=" - ${RDEPEND} - >=dev-cpp/aixlog-1.2.1 - >=dev-cpp/asio-1.12.1 - >=dev-cpp/popl-1.2.0 - test? ( >=dev-cpp/catch-3:0 ) -" - -PATCHES=( - "${FILESDIR}"/${PN}-0.31.0-boost-1.88.patch - "${FILESDIR}"/${PN}-0.31.0-drop-lint.patch - "${FILESDIR}"/${PN}-0.31.0-boost-1.88-fixup.patch -) - -src_configure() { - local mycmakeargs=( - -DBUILD_CLIENT=$(usex client) - -DBUILD_WITH_EXPAT=$(usex expat) - -DBUILD_WITH_FLAC=$(usex flac) - -DBUILD_WITH_JACK=$(usex jack) - -DBUILD_WITH_OPUS=$(usex opus) - -DBUILD_SERVER=$(usex server) - -DBUILD_STATIC_LIBS=no - -DBUILD_TESTS=$(usex test) - -DBUILD_WITH_TREMOR=$(usex tremor) - -DBUILD_WITH_VORBIS=$(usex vorbis) - -DBUILD_WITH_AVAHI=$(usex zeroconf) - -DCMAKE_INSTALL_SYSCONFDIR="${EPREFIX}/etc" - ) - - cmake_src_configure -} - -src_test() { - cmake_src_test - edo "${S}"/bin/snapcast_test -} - -src_install() { - cmake_src_install - - for bin in server client ; do - if use ${bin} ; then - doman "${bin}/snap${bin}.1" - - newconfd "${FILESDIR}/snap${bin}.confd" "snap${bin}" - newinitd "${FILESDIR}/snap${bin}.initd" "snap${bin}" - fi - done -} diff --git a/media-sound/sox/sox-14.4.4.1.ebuild b/media-sound/sox/sox-14.4.4.1-r1.ebuild index 58bb15c3f7d8..c019d17bc87a 100644 --- a/media-sound/sox/sox-14.4.4.1.ebuild +++ b/media-sound/sox/sox-14.4.4.1-r1.ebuild @@ -93,7 +93,6 @@ src_configure() { $(use_with twolame) $(use_with wavpack) - --with-dyn-default --enable-replace # bug #960558 --disable-debug # user cflags --with-distro="Gentoo" diff --git a/media-sound/sox/sox-14.6.0.4.ebuild b/media-sound/sox/sox-14.6.0.4-r1.ebuild index 57b50ea47de6..0d11d2e871f9 100644 --- a/media-sound/sox/sox-14.6.0.4.ebuild +++ b/media-sound/sox/sox-14.6.0.4-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -101,7 +101,6 @@ src_configure() { $(use_with twolame) $(use_with wavpack) - --with-dyn-default --enable-replace # bug #960558 --disable-debug # user cflags --with-distro="Gentoo" diff --git a/media-tv/plex-media-server/Manifest b/media-tv/plex-media-server/Manifest index 6b4247c5321f..688a9bde0d82 100644 --- a/media-tv/plex-media-server/Manifest +++ b/media-tv/plex-media-server/Manifest @@ -1,4 +1,4 @@ -DIST plexmediaserver_1.42.2.10156-f737b826c_amd64.deb 83123046 BLAKE2B a2e6939d8cdc1d092548aadc519082e14a1a9675b9ff56230bf9f846180a0f826b616ee8cbab93c8bf8a36b484d053f16bae5bceb1a9314cc88b215c96e30b55 SHA512 0a295e8d92d9b78aa3ca3a9dc234c177498fc084e66e3ffedbb60f2feb805ec5993bbe9bc9b001b4fa71933e78f7f92bbf890c3a7fa15b7de6e8890cfb38ead3 -DIST plexmediaserver_1.42.2.10156-f737b826c_arm64.deb 75664242 BLAKE2B 32db450eed37bfeceb8e7cf5f833f51cf8b30ed9ecfeffbc88284c71569806463df9fb05bb5de7432d228dafa154977739049029319e7c760dea9f290470cfb0 SHA512 f42ab6244e5b25558e50bbe59b64fa2b369c0edf710ec4165d61cf78ff87f977b4a08cee077b00947471896f2efd2d04b2a15d5178ac7ee577bf0303c31d7447 -DIST plexmediaserver_1.42.2.10156-f737b826c_armhf.deb 75557946 BLAKE2B d1167e16f6d4e75e822193814466ab1c8a5e0607d58f29972feaf6ffb066c3b79cc749d8ea0becf4e9e67bb8c8cba609c08246286ae899bae5fb72f28304a0a9 SHA512 982942691841a6463dc1ad423c8cdcdaba859b8c6055dea37d8ecd0d385301b8ec2ab3ee1d3a15f0a9552c08ca1219153a9a6eac28cb275a9c456c21017d5823 -DIST plexmediaserver_1.42.2.10156-f737b826c_i386.deb 76658954 BLAKE2B 2ef36ab661c32fa73da9308d65a5bcb0cb3d8a3a5155c549f382c72d57b9c5d2c7c335876fb00fad8ec7603ed37d9a470be367d4f920557597934ac87d37b39c SHA512 ebc2fd2ca1a19fd471affc4521b5d2d2dc3313436575bd32c7c9ddf0a858f4a5f2d23300b88b1c96fdb9aa018e092fb91d1ea7fbdc2ae72ee31340318a4d72e1 +DIST plexmediaserver_1.43.0.10492-121068a07_amd64.deb 84210046 BLAKE2B 4b9eae41becd86dfe253d2ad2e8d097317b073bdf61be925438a8a7bd5374d2d3fd4aa58c831e95b3864d263eb5abde0b7c3faea61d0e633cf879169e0a65e8b SHA512 11a81add221aade69ac9f534fd6b2cc8521a116e83efd64f9a2d1b78e1a3dc3eb2b04c0ab169d6c08590792fb2a8bd5ea8f29ea46f32bd25e2ce4f207fc194db +DIST plexmediaserver_1.43.0.10492-121068a07_arm64.deb 76125026 BLAKE2B ffb5d2c0517b73601ddd7d13138ff15c7b775c5e5e6ac97d7982cefa2d5e765f1212a258292c0055c2e2e0a9c53f832d6f9b9865069d3b72843b65473fc99587 SHA512 2137f151078571be29f303393275f1e571da1c2850701a45e2e636f10143a717354b30e5fb994ca862caa445eb7f4edf449d597f9abf235841e1bda59c8c50f7 +DIST plexmediaserver_1.43.0.10492-121068a07_armhf.deb 76170442 BLAKE2B 1630ae764b47d233afec5e98798cbb451c9265519660ef5459b573e25ba3215670174855fa54643f51d9ef7c85e9c281ad4a7598f27bfdf7a032612a8d495668 SHA512 f8c528600971e8dce49e6e973206d8dbbbdfdd0232b1f3d85ea4f5474e6bf19d8e7e21dd9392e9478464e3617a3943919d125c51b8c60c4a3504eccf139a45e7 +DIST plexmediaserver_1.43.0.10492-121068a07_i386.deb 77337558 BLAKE2B dd5795a19d5107516492d19a6abf108d3d6c5d44e1f1caa97934b625b93db93fd281f62def60ea5bd4c6aa4255c0da275e50691b6ab402993309f26bc8435a7f SHA512 4acc836aaf998a66291a640838daad84e82d996fb795f6b216c133d91934c2a61f87cc0a4bc30d361cb801b7cb9b5c75070abe9e134a31cbc1951f96d7c20068 diff --git a/media-tv/plex-media-server/plex-media-server-1.42.2.10156.ebuild b/media-tv/plex-media-server/plex-media-server-1.43.0.10492.ebuild index c3d944d636c9..9825b37eec7c 100644 --- a/media-tv/plex-media-server/plex-media-server-1.42.2.10156.ebuild +++ b/media-tv/plex-media-server/plex-media-server-1.43.0.10492.ebuild @@ -1,11 +1,11 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 inherit readme.gentoo-r1 systemd unpacker pax-utils -MY_PV="${PV}-f737b826c" +MY_PV="${PV}-121068a07" MY_URI="https://downloads.plex.tv/plex-media-server-new" DESCRIPTION="Free media library that is intended for use with a plex client" diff --git a/media-video/wireplumber/wireplumber-0.5.13.ebuild b/media-video/wireplumber/wireplumber-0.5.13.ebuild index 9e9566dfa710..860beb01063b 100644 --- a/media-video/wireplumber/wireplumber-0.5.13.ebuild +++ b/media-video/wireplumber/wireplumber-0.5.13.ebuild @@ -44,7 +44,7 @@ else WIREPLUMBER_DOCS_USEFLAG="doc" fi - KEYWORDS="~amd64 ~arm ~arm64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" + KEYWORDS="amd64 arm arm64 ~loong ~mips ppc ppc64 ~riscv ~sparc x86" fi LICENSE="MIT" diff --git a/metadata/md5-cache/app-admin/awscli-1.44.40 b/metadata/md5-cache/app-admin/awscli-1.44.40 new file mode 100644 index 000000000000..e842bd0d2590 --- /dev/null +++ b/metadata/md5-cache/app-admin/awscli-1.44.40 @@ -0,0 +1,16 @@ +BDEPEND=test? ( dev-python/packaging[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) test? ( >=dev-python/botocore-1.42.50[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/colorama[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/docutils[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/rsa[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/s3transfer-0.16.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pyyaml[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] !app-admin/awscli-bin >=dev-python/pytest-7.4.4[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest-xdist[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest-forked[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) >=dev-python/gpep517-16[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/setuptools-78.1.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Universal Command Line Environment for AWS +EAPI=8 +HOMEPAGE=https://github.com/aws/aws-cli/ https://pypi.org/project/awscli/ +INHERIT=distutils-r1 shell-completion +IUSE=test python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86 +LICENSE=Apache-2.0 +RDEPEND=>=dev-python/botocore-1.42.50[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/colorama[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/docutils[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/rsa[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/s3transfer-0.16.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pyyaml[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] !app-admin/awscli-bin python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) +REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/aws/aws-cli/archive/1.44.40.tar.gz -> aws-cli-1.44.40.gh.tar.gz +_eclasses_=bash-completion-r1 767861f3744f589ee5291c1698b1c082 distutils-r1 776bbaa25e9fa0dc9ac6f039ca37f701 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multibuild 83db098a835f71feb71761f72a694aa2 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 0e15b2ab9cfc87d7474678201d6bca38 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 shell-completion 0b655d0d825e157a5e99c463bddaac16 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_md5_=d1ae13b7385af5d64da49918cc44a14f diff --git a/metadata/md5-cache/app-admin/exo-1.92.0 b/metadata/md5-cache/app-admin/exo-1.93.0 index 72412feaacc6..22fc83b67e4d 100644 --- a/metadata/md5-cache/app-admin/exo-1.92.0 +++ b/metadata/md5-cache/app-admin/exo-1.93.0 @@ -9,6 +9,6 @@ KEYWORDS=~amd64 LICENSE=Apache-2.0 RESTRICT=strip SLOT=0 -SRC_URI=https://github.com/exoscale/cli/archive/v1.92.0.tar.gz -> exo-1.92.0.gh.tar.gz +SRC_URI=https://github.com/exoscale/cli/archive/v1.93.0.tar.gz -> exo-1.93.0.gh.tar.gz _eclasses_=flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 go-env 0e2babf96e7d0b045fc07ad199eb2399 go-module d96f2a2fd6d8fbad6d94516bf238f885 multiprocessing 1e32df7deee68372153dca65f4a7c21f toolchain-funcs 7e440a20ac11dece04e3334622e6e5da _md5_=40567bd1ac86c1b61d64b80706c8483e diff --git a/metadata/md5-cache/app-admin/gkrellm-2.5.0 b/metadata/md5-cache/app-admin/gkrellm-2.5.0 index b7e8ebb444ca..e64c5342d157 100644 --- a/metadata/md5-cache/app-admin/gkrellm-2.5.0 +++ b/metadata/md5-cache/app-admin/gkrellm-2.5.0 @@ -7,11 +7,11 @@ HOMEPAGE=https://gkrellm.srcbox.net/ IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info INHERIT=flag-o-matic optfeature toolchain-funcs xdg IUSE=gnutls lm-sensors nls ntlm ssl X -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 +KEYWORDS=~alpha amd64 arm ~arm64 ~hppa ~mips ppc ppc64 ~riscv ~sparc x86 LICENSE=GPL-3+ RDEPEND=acct-group/gkrellmd acct-user/gkrellmd dev-libs/glib:2 lm-sensors? ( sys-apps/lm-sensors:= ) nls? ( virtual/libintl ) X? ( x11-libs/gdk-pixbuf:2 x11-libs/gtk+:2 x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/pango ntlm? ( net-libs/libntlm ) ssl? ( gnutls? ( net-libs/gnutls:= ) !gnutls? ( dev-libs/openssl:0= ) ) ) REQUIRED_USE=gnutls? ( ssl ) SLOT=2 SRC_URI=https://gkrellm.srcbox.net/releases/gkrellm-2.5.0.tar.bz2 _eclasses_=flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 optfeature 538bce96e5589935b57e178e8635f301 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=d159f28e74ce34681b008a34be41a20e +_md5_=50be36a388626001186da72d7d7eea4b diff --git a/metadata/md5-cache/app-admin/ig-0.49.0 b/metadata/md5-cache/app-admin/ig-0.49.1 index 7dc1682db2e4..54f0f86f9678 100644 --- a/metadata/md5-cache/app-admin/ig-0.49.0 +++ b/metadata/md5-cache/app-admin/ig-0.49.1 @@ -8,6 +8,6 @@ KEYWORDS=~amd64 ~arm64 LICENSE=Apache-2.0 GPL-2 MIT BSD-2 MPL-2.0 ISC imagemagick CC-BY-SA-4.0 RESTRICT=test SLOT=0 -SRC_URI=https://github.com/inspektor-gadget/inspektor-gadget/archive/v0.49.0.tar.gz -> ig-0.49.0.tar.gz https://github.com/inspektor-gadget/inspektor-gadget/releases/download/v0.49.0/inspektor-gadget-vendor-v0.49.0.tar.gz +SRC_URI=https://github.com/inspektor-gadget/inspektor-gadget/archive/v0.49.1.tar.gz -> ig-0.49.1.tar.gz https://github.com/inspektor-gadget/inspektor-gadget/releases/download/v0.49.1/inspektor-gadget-vendor-v0.49.1.tar.gz _eclasses_=flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 go-env 0e2babf96e7d0b045fc07ad199eb2399 go-module d96f2a2fd6d8fbad6d94516bf238f885 multiprocessing 1e32df7deee68372153dca65f4a7c21f toolchain-funcs 7e440a20ac11dece04e3334622e6e5da _md5_=19fb5f800f9e6d70910bcb92ddd1afac diff --git a/metadata/md5-cache/app-admin/keepassxc-2.7.10-r2 b/metadata/md5-cache/app-admin/keepassxc-2.7.10-r2 deleted file mode 100644 index 2c0e7606d198..000000000000 --- a/metadata/md5-cache/app-admin/keepassxc-2.7.10-r2 +++ /dev/null @@ -1,18 +0,0 @@ -BDEPEND=dev-qt/linguist-tools:5 doc? ( dev-ruby/asciidoctor ) app-alternatives/ninja >=dev-build/cmake-3.28.5 -DEFINED_PHASES=compile configure install postinst postrm preinst prepare test -DEPEND=app-crypt/argon2:= dev-libs/botan:3= dev-libs/zxcvbn-c dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 media-gfx/qrencode:= sys-libs/readline:0= virtual/minizip:= X? ( dev-qt/qtx11extras:5 ) autotype? ( x11-libs/libX11 x11-libs/libXtst ) yubikey? ( dev-libs/libusb:1 sys-apps/pcsc-lite ) dev-qt/qttest:5 -DESCRIPTION=KeePassXC - KeePass Cross-platform Community Edition -EAPI=8 -HOMEPAGE=https://keepassxc.org -IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info -INHERIT=cmake xdg -IUSE=X autotype browser doc keeshare +keyring +network +ssh-agent test yubikey -KEYWORDS=amd64 ~arm64 ~ppc64 ~riscv x86 -LICENSE=|| ( GPL-2 GPL-3 ) BSD LGPL-2.1 MIT LGPL-2 CC0-1.0 Apache-2.0 GPL-2+ BSD-2 -RDEPEND=app-crypt/argon2:= dev-libs/botan:3= dev-libs/zxcvbn-c dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 media-gfx/qrencode:= sys-libs/readline:0= virtual/minizip:= X? ( dev-qt/qtx11extras:5 ) autotype? ( x11-libs/libX11 x11-libs/libXtst ) yubikey? ( dev-libs/libusb:1 sys-apps/pcsc-lite ) -REQUIRED_USE=autotype? ( X ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/keepassxreboot/keepassxc/archive/2.7.10.tar.gz -> keepassxc-2.7.10.gh.tar.gz -_eclasses_=cmake 5691a3da96eac88f135cf3596b8c2c3c flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b toolchain-funcs 7e440a20ac11dece04e3334622e6e5da xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=8548fc622d1a628c714e64de19ad4939 diff --git a/metadata/md5-cache/app-admin/keepassxc-2.7.11 b/metadata/md5-cache/app-admin/keepassxc-2.7.11 deleted file mode 100644 index 42610e66b0d8..000000000000 --- a/metadata/md5-cache/app-admin/keepassxc-2.7.11 +++ /dev/null @@ -1,18 +0,0 @@ -BDEPEND=dev-qt/linguist-tools:5 doc? ( dev-ruby/asciidoctor ) app-alternatives/ninja >=dev-build/cmake-3.28.5 -DEFINED_PHASES=compile configure install postinst postrm preinst prepare test -DEPEND=app-crypt/argon2:= dev-libs/botan:3= dev-libs/zxcvbn-c dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 media-gfx/qrencode:= sys-libs/readline:0= virtual/minizip:= X? ( dev-qt/qtx11extras:5 ) autotype? ( x11-libs/libX11 x11-libs/libXtst ) yubikey? ( dev-libs/libusb:1 sys-apps/pcsc-lite ) dev-qt/qttest:5 -DESCRIPTION=KeePassXC - KeePass Cross-platform Community Edition -EAPI=8 -HOMEPAGE=https://keepassxc.org -IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info -INHERIT=cmake xdg -IUSE=X autotype browser doc keeshare +keyring +network +ssh-agent test yubikey -KEYWORDS=amd64 ~arm64 ~ppc64 ~riscv x86 -LICENSE=|| ( GPL-2 GPL-3 ) BSD LGPL-2.1 MIT LGPL-2 CC0-1.0 Apache-2.0 GPL-2+ BSD-2 -RDEPEND=app-crypt/argon2:= dev-libs/botan:3= dev-libs/zxcvbn-c dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 media-gfx/qrencode:= sys-libs/readline:0= virtual/minizip:= X? ( dev-qt/qtx11extras:5 ) autotype? ( x11-libs/libX11 x11-libs/libXtst ) yubikey? ( dev-libs/libusb:1 sys-apps/pcsc-lite ) -REQUIRED_USE=autotype? ( X ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/keepassxreboot/keepassxc/archive/2.7.11.tar.gz -> keepassxc-2.7.11.gh.tar.gz -_eclasses_=cmake 5691a3da96eac88f135cf3596b8c2c3c flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b toolchain-funcs 7e440a20ac11dece04e3334622e6e5da xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=8548fc622d1a628c714e64de19ad4939 diff --git a/metadata/md5-cache/app-admin/metalog-20260105 b/metadata/md5-cache/app-admin/metalog-20260105 index 347f317609e6..e6908ad47233 100644 --- a/metadata/md5-cache/app-admin/metalog-20260105 +++ b/metadata/md5-cache/app-admin/metalog-20260105 @@ -6,10 +6,10 @@ EAPI=8 HOMEPAGE=https://github.com/hvisage/metalog INHERIT=autotools systemd IUSE=unicode zlib -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 LICENSE=GPL-2 RDEPEND=dev-libs/libpcre2:= zlib? ( virtual/zlib:= ) SLOT=0 SRC_URI=https://github.com/hvisage/metalog/archive/refs/tags/20260105.tar.gz -> metalog-20260105.gh.tar.gz _eclasses_=autotools 955b29ccd82c1df4755e5f37748d2fa6 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da -_md5_=7846019dafb942976ecc8f55ca72e23f +_md5_=f5a5a95b9f70c7333895187e09a124f9 diff --git a/metadata/md5-cache/app-doc/gnucash-docs-5.12 b/metadata/md5-cache/app-doc/gnucash-docs-5.12 index e716668ac453..64b283c6ff24 100644 --- a/metadata/md5-cache/app-doc/gnucash-docs-5.12 +++ b/metadata/md5-cache/app-doc/gnucash-docs-5.12 @@ -5,9 +5,9 @@ EAPI=8 HOMEPAGE=https://www.gnucash.org/ INHERIT=cmake optfeature IUSE=l10n_de l10n_it l10n_ja l10n_pt -KEYWORDS=~amd64 ~arm64 ~ppc ~ppc64 ~riscv ~x86 +KEYWORDS=amd64 ~arm64 ~ppc ~ppc64 ~riscv ~x86 LICENSE=GPL-2 FDL-1.1 SLOT=0 SRC_URI=https://github.com/Gnucash/gnucash-docs/archive/5.12.tar.gz -> gnucash-docs-5.12.tar.gz _eclasses_=cmake 5691a3da96eac88f135cf3596b8c2c3c flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b optfeature 538bce96e5589935b57e178e8635f301 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=1ac1a0ddfee0080480d2b7b6d98e0cfc +_md5_=38771cc865d29b5d1ce15d8bcf167c68 diff --git a/metadata/md5-cache/app-emacs/forge-0.6.3 b/metadata/md5-cache/app-emacs/forge-0.6.3 index 126deabf9e22..4fba0a970233 100644 --- a/metadata/md5-cache/app-emacs/forge-0.6.3 +++ b/metadata/md5-cache/app-emacs/forge-0.6.3 @@ -4,10 +4,10 @@ DESCRIPTION=Work with Git forges from the comfort of Magit EAPI=8 HOMEPAGE=https://magit.vc/ https://github.com/magit/forge/ INHERIT=elisp -KEYWORDS=~amd64 +KEYWORDS=amd64 LICENSE=GPL-3+ RDEPEND=>=app-emacs/magit-4.5.0 app-emacs/closql app-emacs/compat app-emacs/cond-let app-emacs/dash app-emacs/emacsql app-emacs/ghub app-emacs/llama app-emacs/markdown-mode app-emacs/transient app-emacs/yaml >=app-editors/emacs-29.1:* SLOT=0 SRC_URI=https://github.com/magit/forge/archive/v0.6.3.tar.gz -> forge-0.6.3.gh.tar.gz _eclasses_=elisp a37bfc35b86403c770beebbd71661c30 elisp-common ce20c7e2fc0c52b58ddabcd536b7310b -_md5_=e271e30da585f069343e4e2540ba1cfe +_md5_=501a709b5378d6e4eddb2ee7c6868e75 diff --git a/metadata/md5-cache/app-misc/fastfetch-2.59.0 b/metadata/md5-cache/app-misc/fastfetch-2.59.0 new file mode 100644 index 000000000000..6bcf6a0b5f2d --- /dev/null +++ b/metadata/md5-cache/app-misc/fastfetch-2.59.0 @@ -0,0 +1,17 @@ +BDEPEND=virtual/pkgconfig app-alternatives/ninja >=dev-build/cmake-3.28.5 +DEFINED_PHASES=compile configure install prepare test +DEPEND=>=dev-libs/yyjson-0.12.0 sys-apps/hwdata virtual/zlib:= chafa? ( media-gfx/chafa ) dbus? ( sys-apps/dbus ) ddcutil? ( app-misc/ddcutil:= ) drm? ( x11-libs/libdrm ) elf? ( virtual/libelf:= ) gnome? ( dev-libs/glib gnome-base/dconf ) imagemagick? ( media-gfx/imagemagick:= ) opencl? ( virtual/opencl ) opengl? ( media-libs/libglvnd[X?] X? ( x11-libs/libX11 ) ) pulseaudio? ( media-libs/libpulse ) sqlite? ( dev-db/sqlite:3 ) vulkan? ( media-libs/vulkan-loader sys-apps/pciutils ) wayland? ( dev-libs/wayland ) xcb? ( x11-libs/libxcb ) xrandr? ( x11-libs/libXrandr ) opengl? ( X? ( x11-base/xorg-proto ) ) xcb? ( x11-base/xorg-proto ) xrandr? ( x11-base/xorg-proto ) vulkan? ( dev-util/vulkan-headers ) +DESCRIPTION=Fast neofetch-like system information tool +EAPI=8 +HOMEPAGE=https://github.com/fastfetch-cli/fastfetch +INHERIT=cmake flag-o-matic +IUSE=X chafa dbus ddcutil drm elf gnome imagemagick opencl opengl pulseaudio sqlite test vulkan wayland xcb xrandr +KEYWORDS=~amd64 ~arm ~arm64 ~loong ~m68k ~ppc ~ppc64 ~riscv ~sparc ~x86 +LICENSE=MIT +RDEPEND=>=dev-libs/yyjson-0.12.0 sys-apps/hwdata virtual/zlib:= chafa? ( media-gfx/chafa ) dbus? ( sys-apps/dbus ) ddcutil? ( app-misc/ddcutil:= ) drm? ( x11-libs/libdrm ) elf? ( virtual/libelf:= ) gnome? ( dev-libs/glib gnome-base/dconf ) imagemagick? ( media-gfx/imagemagick:= ) opencl? ( virtual/opencl ) opengl? ( media-libs/libglvnd[X?] X? ( x11-libs/libX11 ) ) pulseaudio? ( media-libs/libpulse ) sqlite? ( dev-db/sqlite:3 ) vulkan? ( media-libs/vulkan-loader sys-apps/pciutils ) wayland? ( dev-libs/wayland ) xcb? ( x11-libs/libxcb ) xrandr? ( x11-libs/libXrandr ) +REQUIRED_USE=chafa? ( imagemagick ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/fastfetch-cli/fastfetch/archive/refs/tags/2.59.0.tar.gz -> fastfetch-2.59.0.tar.gz +_eclasses_=cmake 5691a3da96eac88f135cf3596b8c2c3c flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b toolchain-funcs 7e440a20ac11dece04e3334622e6e5da xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_md5_=8cf24d67a9e979e5e04b8d1a8935c24d diff --git a/metadata/md5-cache/app-misc/hello-2.12.2 b/metadata/md5-cache/app-misc/hello-2.12.2 index 7823938e3965..5674baf44095 100644 --- a/metadata/md5-cache/app-misc/hello-2.12.2 +++ b/metadata/md5-cache/app-misc/hello-2.12.2 @@ -3,8 +3,8 @@ DESCRIPTION=GNU "Hello, world" application EAPI=8 HOMEPAGE=https://www.gnu.org/software/hello/ IUSE=nls -KEYWORDS=amd64 ~arm ~arm64 x86 +KEYWORDS=amd64 ~arm ~arm64 ~m68k x86 LICENSE=FDL-1.3+ GPL-3+ SLOT=0 SRC_URI=mirror://gnu/hello/hello-2.12.2.tar.gz -_md5_=7ee89419b116d8341ce86212907439ac +_md5_=792dfc083f0d654ed67f1d723418e09e diff --git a/metadata/md5-cache/app-office/gnucash-5.12 b/metadata/md5-cache/app-office/gnucash-5.12 index d654cd70b4c2..faf08469a72b 100644 --- a/metadata/md5-cache/app-office/gnucash-5.12 +++ b/metadata/md5-cache/app-office/gnucash-5.12 @@ -7,7 +7,7 @@ HOMEPAGE=https://www.gnucash.org/ IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info INHERIT=cmake flag-o-matic gnome2 guile-single python-single-r1 xdg IUSE=aqbanking debug doc examples +gui keyring mysql nls ofx postgres python quotes smartcard sqlite test guile_single_target_2-2 guile_single_target_3-0 python_single_target_python3_10 python_single_target_python3_11 python_single_target_python3_12 python_single_target_python3_13 python_single_target_python3_14 -KEYWORDS=~amd64 ~arm64 ~ppc ~ppc64 ~riscv ~x86 +KEYWORDS=amd64 ~arm64 ~ppc ~ppc64 ~riscv ~x86 LICENSE=GPL-2+ PDEPEND=doc? ( ~app-doc/gnucash-docs-5.12 gnome-extra/yelp ) RDEPEND=guile_single_target_2-2? ( dev-scheme/guile:2.2[regex] ) guile_single_target_3-0? ( dev-scheme/guile:3.0[regex] ) >=dev-libs/glib-2.56.1:2 >=virtual/zlib-1.1.4:= dev-libs/boost:=[icu,nls] >=dev-libs/icu-54.0:= dev-libs/libxml2:2= dev-libs/libxslt x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/pango aqbanking? ( >=net-libs/aqbanking-6[ofx?] >=sys-libs/gwenhywfar-5.6.0:= smartcard? ( sys-libs/libchipcard ) ) gui? ( >=x11-libs/gtk+-3.22.30:3 gnome-base/dconf net-libs/webkit-gtk:4.1= aqbanking? ( sys-libs/gwenhywfar:=[gtk] ) ) keyring? ( >=app-crypt/libsecret-0.18 ) mysql? ( dev-db/libdbi dev-db/libdbi-drivers[mysql] ) ofx? ( >=dev-libs/libofx-0.9.12:= ) postgres? ( dev-db/libdbi dev-db/libdbi-drivers[postgres] ) python? ( python_single_target_python3_10? ( dev-lang/python:3.10 ) python_single_target_python3_11? ( dev-lang/python:3.11 ) python_single_target_python3_12? ( dev-lang/python:3.12 ) python_single_target_python3_13? ( dev-lang/python:3.13 ) python_single_target_python3_14? ( dev-lang/python:3.14 ) python_single_target_python3_10? ( dev-python/pygobject:3[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/pygobject:3[python_targets_python3_11(-)] ) python_single_target_python3_12? ( dev-python/pygobject:3[python_targets_python3_12(-)] ) python_single_target_python3_13? ( dev-python/pygobject:3[python_targets_python3_13(-)] ) python_single_target_python3_14? ( dev-python/pygobject:3[python_targets_python3_14(-)] ) ) quotes? ( >=dev-perl/Finance-Quote-1.11 dev-perl/JSON-Parse dev-perl/HTML-TableExtract ) sqlite? ( dev-db/libdbi dev-db/libdbi-drivers[sqlite] ) @@ -16,4 +16,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/Gnucash/gnucash/releases/download/5.12/gnucash-5.12.tar.bz2 _eclasses_=cmake 5691a3da96eac88f135cf3596b8c2c3c flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnome.org e1b4f392dbfedfb8974b71b017937f08 gnome2 26fd01914b36038dc8e964ff4bd03a95 gnome2-utils a8cf148ec7f5ae0b1f1d33ae5f7f9e88 guile-single 6e99296ff5eff20c16de5075dfe75616 guile-utils 81d7b13f6e52873bc85dd7a729ffbf4d libtool c81bd096be5f4c82f4e8f156ef112402 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=012b50c7c5cf122ce9e9445f8c19d35f +_md5_=e6714c7d0bb2cce0afd9ad1416ee3284 diff --git a/metadata/md5-cache/app-shells/atuin-18.11.0 b/metadata/md5-cache/app-shells/atuin-18.11.0 index 05dc445a61c6..a781ab26a0d3 100644 --- a/metadata/md5-cache/app-shells/atuin-18.11.0 +++ b/metadata/md5-cache/app-shells/atuin-18.11.0 @@ -6,7 +6,7 @@ EAPI=8 HOMEPAGE=https://atuin.sh https://github.com/atuinsh/atuin INHERIT=cargo greadme shell-completion systemd IUSE=+client +daemon server system-sqlite test +sync debug -KEYWORDS=~amd64 ~arm64 ~riscv +KEYWORDS=amd64 ~arm64 ~riscv LICENSE=MIT Apache-2.0 BSD Boost-1.0 CDLA-Permissive-2.0 ISC MIT MPL-2.0 openssl Unicode-3.0 ZLIB RDEPEND=system-sqlite? ( dev-db/sqlite:3 ) server? ( acct-user/atuin ) REQUIRED_USE=|| ( client server ) sync? ( client ) test? ( client server sync ) @@ -14,4 +14,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/atuinsh/atuin/archive/refs/tags/v18.11.0.tar.gz -> atuin-18.11.0.tar.gz https://github.com/gentoo-crate-dist/atuin/releases/download/v18.11.0/atuin-18.11.0-crates.tar.xz _eclasses_=bash-completion-r1 767861f3744f589ee5291c1698b1c082 cargo aeba1d272f6c2e000912e11d8cf626eb flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 greadme a8eea52f1e4068ec2222c2cb3ab7417e multiprocessing 1e32df7deee68372153dca65f4a7c21f rust dd082fc51cbae6f9afa90dd1668d71a9 rust-toolchain 76468983281b0a7fc167ca224f84ecfd shell-completion 0b655d0d825e157a5e99c463bddaac16 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da -_md5_=71ad7b8900f6d9e2a2f47ae04e2f1bdf +_md5_=a2f6151af819fc5a4ba28273555d2820 diff --git a/metadata/md5-cache/dev-cpp/lucene++-3.0.9-r1 b/metadata/md5-cache/dev-cpp/lucene++-3.0.9-r1 deleted file mode 100644 index ba154c6346d0..000000000000 --- a/metadata/md5-cache/dev-cpp/lucene++-3.0.9-r1 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=test? ( dev-cpp/gtest ) app-alternatives/ninja >=dev-build/cmake-3.28.5 -DEFINED_PHASES=compile configure install prepare test -DEPEND=dev-libs/boost:=[zlib] -DESCRIPTION=C++ port of Lucene library, a high-performance, full-featured text search engine -EAPI=8 -HOMEPAGE=https://github.com/luceneplusplus/LucenePlusPlus -INHERIT=edo cmake flag-o-matic -IUSE=debug test -KEYWORDS=amd64 ~hppa ~loong ppc ppc64 ~sparc x86 -LICENSE=|| ( LGPL-3 Apache-2.0 ) -RDEPEND=dev-libs/boost:=[zlib] -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/luceneplusplus/LucenePlusPlus/archive/rel_3.0.9.tar.gz -> lucene++-3.0.9.tar.gz -_eclasses_=cmake 5691a3da96eac88f135cf3596b8c2c3c edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b toolchain-funcs 7e440a20ac11dece04e3334622e6e5da xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=dc93a549f8760b356af7224a19b7406b diff --git a/metadata/md5-cache/dev-db/mongodb-5.0.32 b/metadata/md5-cache/dev-db/mongodb-5.0.32 index 6b9f2cf0c4f0..e6bfb362e5a2 100644 --- a/metadata/md5-cache/dev-db/mongodb-5.0.32 +++ b/metadata/md5-cache/dev-db/mongodb-5.0.32 @@ -6,7 +6,7 @@ EAPI=8 HOMEPAGE=https://www.mongodb.com INHERIT=check-reqs eapi9-ver flag-o-matic multiprocessing pax-utils python-any-r1 scons-utils systemd toolchain-funcs IUSE=debug kerberos mongosh ssl +tools cpu_flags_x86_avx -KEYWORDS=~amd64 ~arm64 -riscv +KEYWORDS=amd64 ~arm64 -riscv LICENSE=Apache-2.0 SSPL-1 PDEPEND=mongosh? ( app-admin/mongosh-bin ) tools? ( >=app-admin/mongo-tools-100 ) RDEPEND=acct-group/mongodb acct-user/mongodb >=app-arch/snappy-1.1.7:= app-arch/zstd:= >=dev-cpp/yaml-cpp-0.6.2:= dev-libs/boost:=[nls] >=dev-libs/libpcre-8.42[cxx] dev-libs/snowball-stemmer:= net-misc/curl >=virtual/zlib-1.2.12:= kerberos? ( dev-libs/cyrus-sasl[kerberos] ) ssl? ( >=dev-libs/openssl-1.0.1g:0= ) @@ -14,4 +14,4 @@ RESTRICT=test SLOT=0 SRC_URI=https://github.com/mongodb/mongo/archive/refs/tags/r5.0.32.tar.gz -> mongodb-5.0.32.gh.tar.gz https://dev.gentoo.org/~sam/distfiles/dev-db/mongodb/mongodb-5.0.30-patches.tar.xz _eclasses_=check-reqs 12ab9d3fc16bfe1f87c6fb652324b57c eapi9-ver 6a71fa30cdb3fe445114fdeab156c1f0 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 scons-utils 578ea0f3ec78f687f07728af19d8d002 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da -_md5_=3d9bbd694ddbe0a07574ebe583dc8e75 +_md5_=48f66c60c7474e7ed2ae9d20ad2a9c95 diff --git a/metadata/md5-cache/dev-debug/gdb-16.3 b/metadata/md5-cache/dev-debug/gdb-16.3 index 2f2646cb3ad9..51784a2f8996 100644 --- a/metadata/md5-cache/dev-debug/gdb-16.3 +++ b/metadata/md5-cache/dev-debug/gdb-16.3 @@ -5,7 +5,7 @@ DESCRIPTION=GNU debugger EAPI=8 HOMEPAGE=https://sourceware.org/gdb/ INHERIT=flag-o-matic guile-single linux-info python-single-r1 strip-linguas toolchain-funcs -IUSE=babeltrace cet debuginfod guile lzma multitarget nls +python rocm +server sim source-highlight test vanilla xml xxhash zstd guile_single_target_2-2 guile_single_target_3-0 python_single_target_python3_10 python_single_target_python3_11 python_single_target_python3_12 python_single_target_python3_13 python_single_target_python3_14 +IUSE=babeltrace cet +debuginfod guile lzma multitarget nls +python rocm +server sim source-highlight test vanilla xml xxhash zstd guile_single_target_2-2 guile_single_target_3-0 python_single_target_python3_10 python_single_target_python3_11 python_single_target_python3_12 python_single_target_python3_13 python_single_target_python3_14 KEYWORDS=~alpha amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~x64-macos ~x64-solaris LICENSE=GPL-3+ LGPL-2.1+ RDEPEND=dev-libs/mpfr:= dev-libs/gmp:= >=sys-libs/ncurses-5.2-r2:= >=sys-libs/readline-7:= virtual/zlib:= babeltrace? ( dev-util/babeltrace:0/1 ) debuginfod? ( dev-libs/elfutils[debuginfod(-)] ) lzma? ( app-arch/xz-utils ) python? ( python_single_target_python3_10? ( dev-lang/python:3.10 ) python_single_target_python3_11? ( dev-lang/python:3.11 ) python_single_target_python3_12? ( dev-lang/python:3.12 ) python_single_target_python3_13? ( dev-lang/python:3.13 ) python_single_target_python3_14? ( dev-lang/python:3.14 ) ) guile? ( guile_single_target_2-2? ( dev-scheme/guile:2.2 ) guile_single_target_3-0? ( dev-scheme/guile:3.0 ) ) xml? ( dev-libs/expat ) rocm? ( >=dev-libs/rocdbgapi-6.3 ) source-highlight? ( dev-util/source-highlight ) xxhash? ( dev-libs/xxhash ) zstd? ( app-arch/zstd:= ) @@ -14,4 +14,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://gnu/gdb/gdb-16.3.tar.xz https://sourceware.org/pub/gdb/releases/gdb-16.3.tar.xz _eclasses_=flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 guile-single 6e99296ff5eff20c16de5075dfe75616 guile-utils 81d7b13f6e52873bc85dd7a729ffbf4d linux-info efd923656513c879204fec6638eadee5 multiprocessing 1e32df7deee68372153dca65f4a7c21f python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 strip-linguas 3480f49d8ea2640d0398e69d20a2f45f toolchain-funcs 7e440a20ac11dece04e3334622e6e5da -_md5_=bc68cae3793cc1693ad9779313b0708a +_md5_=08214ec2943213fdf6981d3d522ac3a6 diff --git a/metadata/md5-cache/dev-debug/gdb-17.1 b/metadata/md5-cache/dev-debug/gdb-17.1 index efb7dfc7e46a..9ae4493ea284 100644 --- a/metadata/md5-cache/dev-debug/gdb-17.1 +++ b/metadata/md5-cache/dev-debug/gdb-17.1 @@ -5,7 +5,7 @@ DESCRIPTION=GNU debugger EAPI=8 HOMEPAGE=https://sourceware.org/gdb/ INHERIT=flag-o-matic guile-single linux-info python-single-r1 strip-linguas toolchain-funcs -IUSE=babeltrace cet debuginfod guile lzma multitarget nls +python rocm +server sim source-highlight test vanilla +xml xxhash zstd guile_single_target_2-2 guile_single_target_3-0 python_single_target_python3_10 python_single_target_python3_11 python_single_target_python3_12 python_single_target_python3_13 python_single_target_python3_14 +IUSE=babeltrace cet +debuginfod guile lzma multitarget nls +python rocm +server sim source-highlight test vanilla +xml xxhash zstd guile_single_target_2-2 guile_single_target_3-0 python_single_target_python3_10 python_single_target_python3_11 python_single_target_python3_12 python_single_target_python3_13 python_single_target_python3_14 KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos ~x64-solaris LICENSE=GPL-3+ LGPL-2.1+ RDEPEND=dev-libs/mpfr:= dev-libs/gmp:= >=sys-libs/ncurses-5.2-r2:= >=sys-libs/readline-7:= virtual/zlib:= babeltrace? ( dev-util/babeltrace:0/1 ) debuginfod? ( dev-libs/elfutils[debuginfod(-)] ) lzma? ( app-arch/xz-utils ) python? ( python_single_target_python3_10? ( dev-lang/python:3.10 ) python_single_target_python3_11? ( dev-lang/python:3.11 ) python_single_target_python3_12? ( dev-lang/python:3.12 ) python_single_target_python3_13? ( dev-lang/python:3.13 ) python_single_target_python3_14? ( dev-lang/python:3.14 ) ) guile? ( guile_single_target_2-2? ( dev-scheme/guile:2.2 ) guile_single_target_3-0? ( dev-scheme/guile:3.0 ) ) xml? ( dev-libs/expat ) rocm? ( >=dev-libs/rocdbgapi-6.3 ) source-highlight? ( dev-util/source-highlight ) xxhash? ( dev-libs/xxhash ) zstd? ( app-arch/zstd:= ) @@ -14,4 +14,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://gnu/gdb/gdb-17.1.tar.xz https://sourceware.org/pub/gdb/releases/gdb-17.1.tar.xz _eclasses_=flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 guile-single 6e99296ff5eff20c16de5075dfe75616 guile-utils 81d7b13f6e52873bc85dd7a729ffbf4d linux-info efd923656513c879204fec6638eadee5 multiprocessing 1e32df7deee68372153dca65f4a7c21f python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 strip-linguas 3480f49d8ea2640d0398e69d20a2f45f toolchain-funcs 7e440a20ac11dece04e3334622e6e5da -_md5_=fc9e80a139a49d3eece42f15539f68d3 +_md5_=687de446925024d235e0b9bd0fcb17f7 diff --git a/metadata/md5-cache/dev-debug/gdb-9999 b/metadata/md5-cache/dev-debug/gdb-9999 index c0f68bc0ef1e..c9d74b20e63b 100644 --- a/metadata/md5-cache/dev-debug/gdb-9999 +++ b/metadata/md5-cache/dev-debug/gdb-9999 @@ -5,7 +5,7 @@ DESCRIPTION=GNU debugger EAPI=8 HOMEPAGE=https://sourceware.org/gdb/ INHERIT=flag-o-matic guile-single linux-info python-single-r1 strip-linguas toolchain-funcs git-r3 -IUSE=babeltrace cet debuginfod guile lzma multitarget nls +python rocm +server sim source-highlight test vanilla +xml xxhash zstd guile_single_target_2-2 guile_single_target_3-0 python_single_target_python3_10 python_single_target_python3_11 python_single_target_python3_12 python_single_target_python3_13 python_single_target_python3_14 +IUSE=babeltrace cet +debuginfod guile lzma multitarget nls +python rocm +server sim source-highlight test vanilla +xml xxhash zstd guile_single_target_2-2 guile_single_target_3-0 python_single_target_python3_10 python_single_target_python3_11 python_single_target_python3_12 python_single_target_python3_13 python_single_target_python3_14 LICENSE=GPL-3+ LGPL-2.1+ PROPERTIES=live RDEPEND=dev-libs/mpfr:= dev-libs/gmp:= >=sys-libs/ncurses-5.2-r2:= >=sys-libs/readline-7:= virtual/zlib:= babeltrace? ( dev-util/babeltrace:0/1 ) debuginfod? ( dev-libs/elfutils[debuginfod(-)] ) lzma? ( app-arch/xz-utils ) python? ( python_single_target_python3_10? ( dev-lang/python:3.10 ) python_single_target_python3_11? ( dev-lang/python:3.11 ) python_single_target_python3_12? ( dev-lang/python:3.12 ) python_single_target_python3_13? ( dev-lang/python:3.13 ) python_single_target_python3_14? ( dev-lang/python:3.14 ) ) guile? ( guile_single_target_2-2? ( dev-scheme/guile:2.2 ) guile_single_target_3-0? ( dev-scheme/guile:3.0 ) ) xml? ( dev-libs/expat ) rocm? ( >=dev-libs/rocdbgapi-6.3 ) source-highlight? ( dev-util/source-highlight ) xxhash? ( dev-libs/xxhash ) zstd? ( app-arch/zstd:= ) @@ -13,4 +13,4 @@ REQUIRED_USE=guile? ( ^^ ( guile_single_target_2-2 guile_single_target_3-0 ) ) p RESTRICT=!test? ( test ) SLOT=0 _eclasses_=flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 git-r3 875eb471682d3e1f18da124be97dcc81 guile-single 6e99296ff5eff20c16de5075dfe75616 guile-utils 81d7b13f6e52873bc85dd7a729ffbf4d linux-info efd923656513c879204fec6638eadee5 multiprocessing 1e32df7deee68372153dca65f4a7c21f python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 strip-linguas 3480f49d8ea2640d0398e69d20a2f45f toolchain-funcs 7e440a20ac11dece04e3334622e6e5da -_md5_=fc9e80a139a49d3eece42f15539f68d3 +_md5_=687de446925024d235e0b9bd0fcb17f7 diff --git a/metadata/md5-cache/dev-games/godot-4.6.1 b/metadata/md5-cache/dev-games/godot-4.6.1 new file mode 100644 index 000000000000..e53dffd3af15 --- /dev/null +++ b/metadata/md5-cache/dev-games/godot-4.6.1 @@ -0,0 +1,18 @@ +BDEPEND=virtual/pkgconfig wayland? ( dev-util/wayland-scanner ) || ( ( dev-lang/python:3.14 >=dev-build/scons-4.4.0[python_targets_python3_14(-)] ) ( dev-lang/python:3.13 >=dev-build/scons-4.4.0[python_targets_python3_13(-)] ) ( dev-lang/python:3.12 >=dev-build/scons-4.4.0[python_targets_python3_12(-)] ) ( dev-lang/python:3.11 >=dev-build/scons-4.4.0[python_targets_python3_11(-)] ) ( dev-lang/python:3.10 >=dev-build/scons-4.4.0[python_targets_python3_10(-)] ) ) +DEFINED_PHASES=compile install postinst postrm preinst prepare setup test +DEPEND=app-arch/brotli:= app-arch/zstd:= dev-games/recastnavigation:= dev-libs/icu:= dev-libs/libpcre2:=[pcre32] media-libs/freetype[brotli,harfbuzz] media-libs/harfbuzz:=[icu] media-libs/libjpeg-turbo:= media-libs/libogg media-libs/libpng:= media-libs/libvorbis >=net-libs/mbedtls-3.6.2-r101:3= net-libs/wslay virtual/zlib:= alsa? ( media-libs/alsa-lib ) dbus? ( sys-apps/dbus ) fontconfig? ( media-libs/fontconfig ) gui? ( media-libs/libglvnd x11-libs/libX11 x11-libs/libXcursor x11-libs/libXext x11-libs/libXi x11-libs/libXinerama x11-libs/libXrandr x11-libs/libXrender x11-libs/libxkbcommon tools? ( raycast? ( media-libs/embree:4 ) ) vulkan? ( media-libs/vulkan-loader[X,wayland?] ) ) pulseaudio? ( media-libs/libpulse ) sdl? ( media-libs/libsdl3 ) speech? ( app-accessibility/speech-dispatcher ) theora? ( media-libs/libtheora:= tools? ( media-libs/libtheora[encode] ) ) tools? ( app-misc/ca-certificates ) udev? ( virtual/udev ) upnp? ( net-libs/miniupnpc:= ) wayland? ( dev-libs/wayland gui-libs/libdecor ) webp? ( media-libs/libwebp:= ) gui? ( x11-base/xorg-proto ) tools? ( test? ( dev-cpp/doctest ) ) +DESCRIPTION=Multi-platform 2D and 3D game engine with a feature-rich editor +EAPI=8 +HOMEPAGE=https://godotengine.org/ +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=branding desktop python-any-r1 flag-o-matic scons-utils shell-completion toolchain-funcs xdg +IUSE=accessibility alsa +dbus debug deprecated double-precision +fontconfig +gui pulseaudio raycast speech test +sdl +theora +tools +udev +upnp +vulkan wayland +webp +KEYWORDS=~amd64 +LICENSE=MIT Apache-2.0 BSD Boost-1.0 CC0-1.0 Unlicense ZLIB gui? ( CC-BY-4.0 ) tools? ( OFL-1.1 ) +RDEPEND=app-arch/brotli:= app-arch/zstd:= dev-games/recastnavigation:= dev-libs/icu:= dev-libs/libpcre2:=[pcre32] media-libs/freetype[brotli,harfbuzz] media-libs/harfbuzz:=[icu] media-libs/libjpeg-turbo:= media-libs/libogg media-libs/libpng:= media-libs/libvorbis >=net-libs/mbedtls-3.6.2-r101:3= net-libs/wslay virtual/zlib:= alsa? ( media-libs/alsa-lib ) dbus? ( sys-apps/dbus ) fontconfig? ( media-libs/fontconfig ) gui? ( media-libs/libglvnd x11-libs/libX11 x11-libs/libXcursor x11-libs/libXext x11-libs/libXi x11-libs/libXinerama x11-libs/libXrandr x11-libs/libXrender x11-libs/libxkbcommon tools? ( raycast? ( media-libs/embree:4 ) ) vulkan? ( media-libs/vulkan-loader[X,wayland?] ) ) pulseaudio? ( media-libs/libpulse ) sdl? ( media-libs/libsdl3 ) speech? ( app-accessibility/speech-dispatcher ) theora? ( media-libs/libtheora:= tools? ( media-libs/libtheora[encode] ) ) tools? ( app-misc/ca-certificates ) udev? ( virtual/udev ) upnp? ( net-libs/miniupnpc:= ) wayland? ( dev-libs/wayland gui-libs/libdecor ) webp? ( media-libs/libwebp:= ) +REQUIRED_USE=wayland? ( gui ) +RESTRICT=test +SLOT=0 +SRC_URI=https://downloads.tuxfamily.org/godotengine/4.6.1/godot-4.6.1-stable.tar.xz https://github.com/godotengine/godot/releases/download/4.6.1-stable/godot-4.6.1-stable.tar.xz +_eclasses_=bash-completion-r1 767861f3744f589ee5291c1698b1c082 branding 7bcece3faa73dd0fc3e597013510d53a desktop 26d57169ca094c04be416993844ec8bc flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 scons-utils 578ea0f3ec78f687f07728af19d8d002 shell-completion 0b655d0d825e157a5e99c463bddaac16 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_md5_=5c732999f583c7ec7cc88eb74a84bbdd diff --git a/metadata/md5-cache/dev-java/openjdk-bin-26_beta34 b/metadata/md5-cache/dev-java/openjdk-bin-26_beta35 index 164bfa20db30..5a5aae5a1eed 100644 --- a/metadata/md5-cache/dev-java/openjdk-bin-26_beta34 +++ b/metadata/md5-cache/dev-java/openjdk-bin-26_beta35 @@ -11,6 +11,6 @@ LICENSE=GPL-2-with-classpath-exception RDEPEND=>=sys-apps/baselayout-java-0.1.0-r1 kernel_linux? ( media-libs/fontconfig:1.0 media-libs/freetype:2 media-libs/harfbuzz elibc_glibc? ( >=sys-libs/glibc-2.2.5:* ) elibc_musl? ( sys-libs/musl ) virtual/zlib:= alsa? ( media-libs/alsa-lib ) cups? ( net-print/cups ) selinux? ( sec-policy/selinux-java ) !headless-awt? ( x11-libs/libX11 x11-libs/libXext x11-libs/libXi x11-libs/libXrender x11-libs/libXtst ) ) dev-java/java-config app-eselect/eselect-java RESTRICT=preserve-libs splitdebug SLOT=26 -SRC_URI=arm64? ( https://github.com/adoptium/temurin26-binaries/releases/download/jdk-26+34-ea-beta//OpenJDK26U-jdk_aarch64_linux_hotspot_26_34-ea.tar.gz ) arm64? ( elibc_musl? ( https://github.com/adoptium/temurin26-binaries/releases/download/jdk-26+34-ea-beta//OpenJDK26U-jdk_aarch64_alpine-linux_hotspot_26_34-ea.tar.gz ) ) ppc64? ( https://github.com/adoptium/temurin26-binaries/releases/download/jdk-26+34-ea-beta//OpenJDK26U-jdk_ppc64le_linux_hotspot_26_34-ea.tar.gz ) amd64? ( https://github.com/adoptium/temurin26-binaries/releases/download/jdk-26+34-ea-beta//OpenJDK26U-jdk_x64_linux_hotspot_26_34-ea.tar.gz ) amd64? ( elibc_musl? ( https://github.com/adoptium/temurin26-binaries/releases/download/jdk-26+34-ea-beta//OpenJDK26U-jdk_x64_alpine-linux_hotspot_26_34-ea.tar.gz ) ) riscv? ( https://github.com/adoptium/temurin26-binaries/releases/download/jdk-26+34-ea-beta//OpenJDK26U-jdk_riscv64_linux_hotspot_26_34-ea.tar.gz ) +SRC_URI=arm64? ( https://github.com/adoptium/temurin26-binaries/releases/download/jdk-26+35-ea-beta//OpenJDK26U-jdk_aarch64_linux_hotspot_26_35-ea.tar.gz ) arm64? ( elibc_musl? ( https://github.com/adoptium/temurin26-binaries/releases/download/jdk-26+35-ea-beta//OpenJDK26U-jdk_aarch64_alpine-linux_hotspot_26_35-ea.tar.gz ) ) ppc64? ( https://github.com/adoptium/temurin26-binaries/releases/download/jdk-26+35-ea-beta//OpenJDK26U-jdk_ppc64le_linux_hotspot_26_35-ea.tar.gz ) amd64? ( https://github.com/adoptium/temurin26-binaries/releases/download/jdk-26+35-ea-beta//OpenJDK26U-jdk_x64_linux_hotspot_26_35-ea.tar.gz ) amd64? ( elibc_musl? ( https://github.com/adoptium/temurin26-binaries/releases/download/jdk-26+35-ea-beta//OpenJDK26U-jdk_x64_alpine-linux_hotspot_26_35-ea.tar.gz ) ) riscv? ( https://github.com/adoptium/temurin26-binaries/releases/download/jdk-26+35-ea-beta//OpenJDK26U-jdk_riscv64_linux_hotspot_26_35-ea.tar.gz ) _eclasses_=java-vm-2 6c7243f2269a7c9b5c177579e49f89ab multilib 404b65bd5212cff83b3935c685419d08 pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=ee618de252c0641610b9680e1c47190a diff --git a/metadata/md5-cache/dev-java/openjdk-bin-27_alpha7 b/metadata/md5-cache/dev-java/openjdk-bin-27_alpha9 index 10aaf7bfaedc..f18891a42f68 100644 --- a/metadata/md5-cache/dev-java/openjdk-bin-27_alpha7 +++ b/metadata/md5-cache/dev-java/openjdk-bin-27_alpha9 @@ -11,6 +11,6 @@ LICENSE=GPL-2-with-classpath-exception RDEPEND=>=sys-apps/baselayout-java-0.1.0-r1 kernel_linux? ( media-libs/fontconfig:1.0 media-libs/freetype:2 media-libs/harfbuzz elibc_glibc? ( >=sys-libs/glibc-2.2.5:* ) elibc_musl? ( sys-libs/musl ) virtual/zlib:= alsa? ( media-libs/alsa-lib ) cups? ( net-print/cups ) selinux? ( sec-policy/selinux-java ) !headless-awt? ( x11-libs/libX11 x11-libs/libXext x11-libs/libXi x11-libs/libXrender x11-libs/libXtst ) ) dev-java/java-config app-eselect/eselect-java RESTRICT=preserve-libs splitdebug SLOT=27 -SRC_URI=arm64? ( https://github.com/adoptium/temurin27-binaries/releases/download/jdk-27+7-ea-beta//OpenJDK-jdk_aarch64_linux_hotspot_27_7-ea.tar.gz ) arm64? ( elibc_musl? ( https://github.com/adoptium/temurin27-binaries/releases/download/jdk-27+7-ea-beta//OpenJDK-jdk_aarch64_alpine-linux_hotspot_27_7-ea.tar.gz ) ) ppc64? ( https://github.com/adoptium/temurin27-binaries/releases/download/jdk-27+7-ea-beta//OpenJDK-jdk_ppc64le_linux_hotspot_27_7-ea.tar.gz ) amd64? ( https://github.com/adoptium/temurin27-binaries/releases/download/jdk-27+7-ea-beta//OpenJDK-jdk_x64_linux_hotspot_27_7-ea.tar.gz ) amd64? ( elibc_musl? ( https://github.com/adoptium/temurin27-binaries/releases/download/jdk-27+7-ea-beta//OpenJDK-jdk_x64_alpine-linux_hotspot_27_7-ea.tar.gz ) ) riscv? ( https://github.com/adoptium/temurin27-binaries/releases/download/jdk-27+7-ea-beta//OpenJDK-jdk_riscv64_linux_hotspot_27_7-ea.tar.gz ) +SRC_URI=arm64? ( https://github.com/adoptium/temurin27-binaries/releases/download/jdk-27+9-ea-beta//OpenJDK-jdk_aarch64_linux_hotspot_27_9-ea.tar.gz ) arm64? ( elibc_musl? ( https://github.com/adoptium/temurin27-binaries/releases/download/jdk-27+9-ea-beta//OpenJDK-jdk_aarch64_alpine-linux_hotspot_27_9-ea.tar.gz ) ) ppc64? ( https://github.com/adoptium/temurin27-binaries/releases/download/jdk-27+9-ea-beta//OpenJDK-jdk_ppc64le_linux_hotspot_27_9-ea.tar.gz ) amd64? ( https://github.com/adoptium/temurin27-binaries/releases/download/jdk-27+9-ea-beta//OpenJDK-jdk_x64_linux_hotspot_27_9-ea.tar.gz ) amd64? ( elibc_musl? ( https://github.com/adoptium/temurin27-binaries/releases/download/jdk-27+9-ea-beta//OpenJDK-jdk_x64_alpine-linux_hotspot_27_9-ea.tar.gz ) ) riscv? ( https://github.com/adoptium/temurin27-binaries/releases/download/jdk-27+9-ea-beta//OpenJDK-jdk_riscv64_linux_hotspot_27_9-ea.tar.gz ) _eclasses_=java-vm-2 6c7243f2269a7c9b5c177579e49f89ab multilib 404b65bd5212cff83b3935c685419d08 pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=ee618de252c0641610b9680e1c47190a diff --git a/metadata/md5-cache/dev-java/tomcat-native-2.0.9-r1 b/metadata/md5-cache/dev-java/tomcat-native-2.0.9-r1 deleted file mode 100644 index 6d7d6eb6e9ee..000000000000 --- a/metadata/md5-cache/dev-java/tomcat-native-2.0.9-r1 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=verify-sig? ( sec-keys/openpgp-keys-apache-tomcat-connectors ) verify-sig? ( || ( app-alternatives/gpg app-crypt/gnupg[-alternatives(-)] ) >=app-portage/gemato-20 ) -DEFINED_PHASES=compile configure install postinst preinst prepare setup test unpack -DEPEND=>=virtual/jdk-17:* >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) test? ( dev-java/junit:4 ) -DESCRIPTION=Allows Tomcat to use certain native resources for better performance -EAPI=8 -HOMEPAGE=https://tomcat.apache.org/native-doc/ -INHERIT=java-pkg-2 java-pkg-simple verify-sig -IUSE=static-libs doc source test verify-sig -KEYWORDS=amd64 -LICENSE=Apache-2.0 -RDEPEND=dev-libs/apr:1= dev-libs/openssl:0/3 >=virtual/jre-1.8:* >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -RESTRICT=!test? ( test ) -SLOT=2 -SRC_URI=mirror://apache/tomcat/tomcat-connectors/native/2.0.9/source/tomcat-native-2.0.9-src.tar.gz verify-sig? ( https://downloads.apache.org/tomcat/tomcat-connectors/native/2.0.9/source/tomcat-native-2.0.9-src.tar.gz.asc ) -_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd java-pkg-2 438c2725ea326202d7fc1eb31af76813 java-pkg-simple df1fc43a5017ec8f5d23007b23731474 java-utils-2 b41327d85d12ce816943cf4d344add19 verify-sig ece4c893b6bd62eacbc4d25958e857f8 -_md5_=bdea427012be1b369cb384e5ea8f9963 diff --git a/metadata/md5-cache/dev-lang/deno-bin-2.6.10 b/metadata/md5-cache/dev-lang/deno-bin-2.6.10 new file mode 100644 index 000000000000..f741d8a4ed1b --- /dev/null +++ b/metadata/md5-cache/dev-lang/deno-bin-2.6.10 @@ -0,0 +1,13 @@ +BDEPEND=app-arch/unzip +DEFINED_PHASES=compile install +DESCRIPTION=Modern runtime for JavaScript and TypeScript +EAPI=8 +HOMEPAGE=https://deno.com/ +INHERIT=shell-completion toolchain-funcs +KEYWORDS=-* ~amd64 ~arm64 +LICENSE=MIT Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD-2 BSD CC0-1.0 ISC MIT MPL-2.0 openssl Unicode-3.0 Unicode-DFS-2016 ZLIB +RDEPEND=|| ( llvm-runtimes/libgcc sys-devel/gcc:* ) sys-libs/glibc +SLOT=0 +SRC_URI=amd64? ( https://github.com/denoland/deno/releases/download/v2.6.10/deno-x86_64-unknown-linux-gnu.zip -> deno-bin-2.6.10-amd64.zip ) arm64? ( https://github.com/denoland/deno/releases/download/v2.6.10/deno-aarch64-unknown-linux-gnu.zip -> deno-bin-2.6.10-arm64.zip ) +_eclasses_=bash-completion-r1 767861f3744f589ee5291c1698b1c082 shell-completion 0b655d0d825e157a5e99c463bddaac16 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_md5_=5363bc4e9a30771b76a1464f96dfb1da diff --git a/metadata/md5-cache/dev-libs/apache-arrow-23.0.1 b/metadata/md5-cache/dev-libs/apache-arrow-23.0.1 new file mode 100644 index 000000000000..59209f888b31 --- /dev/null +++ b/metadata/md5-cache/dev-libs/apache-arrow-23.0.1 @@ -0,0 +1,17 @@ +BDEPEND=app-alternatives/ninja >=dev-build/cmake-3.28.5 +DEFINED_PHASES=compile configure install prepare test +DEPEND=brotli? ( app-arch/brotli:= ) bzip2? ( app-arch/bzip2:= ) compute? ( dev-libs/libutf8proc:= ) dataset? ( dev-libs/libutf8proc:= ) elibc_musl? ( sys-libs/timezone-data ) lz4? ( app-arch/lz4:= ) parquet? ( dev-libs/libutf8proc:= dev-libs/thrift:= ssl? ( dev-libs/openssl:= ) ) re2? ( dev-libs/re2:= ) snappy? ( app-arch/snappy:= ) zlib? ( virtual/zlib:= ) zstd? ( app-arch/zstd:= ) dev-cpp/xsimd >=dev-libs/boost-1.81.0 json? ( dev-libs/rapidjson ) test? ( dev-cpp/gflags dev-cpp/gtest ) +DESCRIPTION=A cross-language development platform for in-memory data +EAPI=8 +HOMEPAGE=https://arrow.apache.org/ https://github.com/apache/arrow/ +INHERIT=cmake +IUSE=+brotli bzip2 +compute +dataset +json lz4 +parquet +re2 +snappy ssl test zlib zstd +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~loong ~riscv ~s390 ~x86 +LICENSE=Apache-2.0 +RDEPEND=brotli? ( app-arch/brotli:= ) bzip2? ( app-arch/bzip2:= ) compute? ( dev-libs/libutf8proc:= ) dataset? ( dev-libs/libutf8proc:= ) elibc_musl? ( sys-libs/timezone-data ) lz4? ( app-arch/lz4:= ) parquet? ( dev-libs/libutf8proc:= dev-libs/thrift:= ssl? ( dev-libs/openssl:= ) ) re2? ( dev-libs/re2:= ) snappy? ( app-arch/snappy:= ) zlib? ( virtual/zlib:= ) zstd? ( app-arch/zstd:= ) +REQUIRED_USE=test? ( json parquet? ( zstd ) ) ssl? ( json ) +RESTRICT=!test? ( test ) +SLOT=0/23 +SRC_URI=mirror://apache/arrow/arrow-23.0.1/apache-arrow-23.0.1.tar.gz test? ( https://github.com/apache/parquet-testing/archive/a3d96a65e11e2bbca7d22a894e8313ede90a33a3.tar.gz -> parquet-testing-a3d96a65e11e2bbca7d22a894e8313ede90a33a3.tar.gz https://github.com/apache/arrow-testing/archive/725fd4a4b12d01c53c98e80274c0b23aa8397082.tar.gz -> arrow-testing-725fd4a4b12d01c53c98e80274c0b23aa8397082.tar.gz ) +_eclasses_=cmake 5691a3da96eac88f135cf3596b8c2c3c flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b toolchain-funcs 7e440a20ac11dece04e3334622e6e5da xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_md5_=f168ae674bff6171c827db60678615da diff --git a/metadata/md5-cache/dev-libs/apache-arrow-9999 b/metadata/md5-cache/dev-libs/apache-arrow-9999 index 96e54bdce869..dd8ae4bd309a 100644 --- a/metadata/md5-cache/dev-libs/apache-arrow-9999 +++ b/metadata/md5-cache/dev-libs/apache-arrow-9999 @@ -13,4 +13,4 @@ REQUIRED_USE=test? ( json parquet? ( zstd ) ) ssl? ( json ) RESTRICT=!test? ( test ) SLOT=0/9999 _eclasses_=cmake 5691a3da96eac88f135cf3596b8c2c3c flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 git-r3 875eb471682d3e1f18da124be97dcc81 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b toolchain-funcs 7e440a20ac11dece04e3334622e6e5da xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=73ae6f9be4589c0705a22a6c0518ebee +_md5_=97fde47dcce1165ce23d43092ebe56bb diff --git a/metadata/md5-cache/dev-libs/elfutils-0.193-r1 b/metadata/md5-cache/dev-libs/elfutils-0.193-r1 index 1754096c5830..76a0f30eee90 100644 --- a/metadata/md5-cache/dev-libs/elfutils-0.193-r1 +++ b/metadata/md5-cache/dev-libs/elfutils-0.193-r1 @@ -5,7 +5,7 @@ DESCRIPTION=Libraries/utilities to handle ELF objects (drop in replacement for l EAPI=8 HOMEPAGE=https://sourceware.org/elfutils/ INHERIT=autotools flag-o-matic multilib-minimal verify-sig -IUSE=bzip2 debuginfod +lzma nls static-libs stacktrace test +utils valgrind zstd 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 +IUSE=bzip2 +debuginfod +lzma nls static-libs stacktrace test +utils valgrind zstd 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=~alpha amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 LICENSE=|| ( GPL-2+ LGPL-3+ ) utils? ( GPL-3+ ) RDEPEND=!dev-libs/libelf >=app-arch/libarchive-3.1.2:= >=virtual/zlib-1.2.8-r1:=[static-libs?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] bzip2? ( >=app-arch/bzip2-1.0.6-r4[static-libs?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) debuginfod? ( dev-db/sqlite:3= >=dev-libs/json-c-0.11:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=net-libs/libmicrohttpd-0.9.33:= >=net-misc/curl-7.29.0[static-libs?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) lzma? ( >=app-arch/xz-utils-5.0.5-r1[static-libs?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) stacktrace? ( dev-util/sysprof ) zstd? ( app-arch/zstd:=[static-libs?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) elibc_musl? ( dev-libs/libbsd sys-libs/argp-standalone sys-libs/fts-standalone sys-libs/obstack-standalone ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://sourceware.org/elfutils/ftp/0.193/elfutils-0.193.tar.bz2 verify-sig? ( https://sourceware.org/elfutils/ftp/0.193/elfutils-0.193.tar.bz2.sig ) _eclasses_=autotools 955b29ccd82c1df4755e5f37748d2fa6 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multibuild 83db098a835f71feb71761f72a694aa2 multilib 404b65bd5212cff83b3935c685419d08 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a toolchain-funcs 7e440a20ac11dece04e3334622e6e5da verify-sig ece4c893b6bd62eacbc4d25958e857f8 -_md5_=2e93913c5547c3ce0c3f458fbcb7e0dc +_md5_=945c98ecf2ec7a93e96b0b4dfa544695 diff --git a/metadata/md5-cache/dev-libs/elfutils-0.194 b/metadata/md5-cache/dev-libs/elfutils-0.194 index 941876954179..9a1f87a142d6 100644 --- a/metadata/md5-cache/dev-libs/elfutils-0.194 +++ b/metadata/md5-cache/dev-libs/elfutils-0.194 @@ -5,8 +5,8 @@ DESCRIPTION=Libraries/utilities to handle ELF objects (drop in replacement for l EAPI=8 HOMEPAGE=https://sourceware.org/elfutils/ INHERIT=autotools flag-o-matic multilib-minimal verify-sig -IUSE=bzip2 debuginfod libarchive +lzma nls static-libs stacktrace test +utils valgrind zstd 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=~alpha ~amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 +IUSE=bzip2 +debuginfod +libarchive +lzma nls static-libs stacktrace test +utils valgrind zstd 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=~alpha amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 LICENSE=|| ( GPL-2+ LGPL-3+ ) utils? ( GPL-3+ ) RDEPEND=!dev-libs/libelf >=virtual/zlib-1.2.8-r1:=[static-libs?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] bzip2? ( >=app-arch/bzip2-1.0.6-r4[static-libs?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) debuginfod? ( dev-db/sqlite:3= >=dev-libs/json-c-0.11:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=net-libs/libmicrohttpd-0.9.33:= >=net-misc/curl-7.29.0[static-libs?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libarchive? ( >=app-arch/libarchive-3.1.2:= ) lzma? ( >=app-arch/xz-utils-5.0.5-r1[static-libs?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) stacktrace? ( dev-util/sysprof ) zstd? ( app-arch/zstd:=[static-libs?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) elibc_musl? ( dev-libs/libbsd sys-libs/argp-standalone sys-libs/fts-standalone sys-libs/obstack-standalone ) REQUIRED_USE=debuginfod? ( libarchive ) @@ -14,4 +14,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://sourceware.org/elfutils/ftp/0.194/elfutils-0.194.tar.bz2 verify-sig? ( https://sourceware.org/elfutils/ftp/0.194/elfutils-0.194.tar.bz2.sig ) _eclasses_=autotools 955b29ccd82c1df4755e5f37748d2fa6 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multibuild 83db098a835f71feb71761f72a694aa2 multilib 404b65bd5212cff83b3935c685419d08 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a toolchain-funcs 7e440a20ac11dece04e3334622e6e5da verify-sig ece4c893b6bd62eacbc4d25958e857f8 -_md5_=789797f6928e1a5bd072c29f2e2ab1d9 +_md5_=b8fecc84febb2301242447bff3a65cc7 diff --git a/metadata/md5-cache/dev-libs/elfutils-9999 b/metadata/md5-cache/dev-libs/elfutils-9999 index e6a8cd0c2ea9..34e3d24308f5 100644 --- a/metadata/md5-cache/dev-libs/elfutils-9999 +++ b/metadata/md5-cache/dev-libs/elfutils-9999 @@ -5,7 +5,7 @@ DESCRIPTION=Libraries/utilities to handle ELF objects (drop in replacement for l EAPI=8 HOMEPAGE=https://sourceware.org/elfutils/ INHERIT=autotools flag-o-matic multilib-minimal git-r3 -IUSE=bzip2 debuginfod libarchive +lzma nls static-libs stacktrace test +utils valgrind zstd abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 +IUSE=bzip2 +debuginfod +libarchive +lzma nls static-libs stacktrace test +utils valgrind zstd abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 LICENSE=|| ( GPL-2+ LGPL-3+ ) utils? ( GPL-3+ ) PROPERTIES=live RDEPEND=!dev-libs/libelf >=virtual/zlib-1.2.8-r1:=[static-libs?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] bzip2? ( >=app-arch/bzip2-1.0.6-r4[static-libs?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) debuginfod? ( dev-db/sqlite:3= >=dev-libs/json-c-0.11:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=net-libs/libmicrohttpd-0.9.33:= >=net-misc/curl-7.29.0[static-libs?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libarchive? ( >=app-arch/libarchive-3.1.2:= ) lzma? ( >=app-arch/xz-utils-5.0.5-r1[static-libs?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) stacktrace? ( dev-util/sysprof ) zstd? ( app-arch/zstd:=[static-libs?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) elibc_musl? ( dev-libs/libbsd sys-libs/argp-standalone sys-libs/fts-standalone sys-libs/obstack-standalone ) @@ -13,4 +13,4 @@ REQUIRED_USE=debuginfod? ( libarchive ) RESTRICT=!test? ( test ) SLOT=0 _eclasses_=autotools 955b29ccd82c1df4755e5f37748d2fa6 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 git-r3 875eb471682d3e1f18da124be97dcc81 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multibuild 83db098a835f71feb71761f72a694aa2 multilib 404b65bd5212cff83b3935c685419d08 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a toolchain-funcs 7e440a20ac11dece04e3334622e6e5da -_md5_=ea382ea704782c8aad085ceeeb402cea +_md5_=bbbf894f0dfb40505020aaa5652678b3 diff --git a/metadata/md5-cache/dev-libs/girara-9999 b/metadata/md5-cache/dev-libs/girara-9999 index cb77bd72099e..254ffacf9c87 100644 --- a/metadata/md5-cache/dev-libs/girara-9999 +++ b/metadata/md5-cache/dev-libs/girara-9999 @@ -1,6 +1,6 @@ BDEPEND=sys-devel/gettext virtual/pkgconfig doc? ( app-text/doxygen ) >=dev-build/meson-1.2.3 app-alternatives/ninja dev-build/meson-format-array >=dev-vcs/git-1.8.2.1[curl] DEFINED_PHASES=compile configure install test unpack -DEPEND=app-accessibility/at-spi2-core >=dev-libs/glib-2.72:2 dev-libs/json-glib:= media-libs/harfbuzz:= x11-libs/cairo[glib] x11-libs/gdk-pixbuf >=x11-libs/gtk+-3.24:3[X?] x11-libs/pango test? ( x11-base/xorg-proto x11-libs/gtk+:3[X] x11-misc/xvfb-run ) +DEPEND=app-accessibility/at-spi2-core >=dev-libs/glib-2.72:2 media-libs/harfbuzz:= x11-libs/cairo[glib] x11-libs/gdk-pixbuf >=x11-libs/gtk+-3.24:3[X?] x11-libs/pango test? ( x11-base/xorg-proto x11-libs/gtk+:3[X] x11-misc/xvfb-run ) DESCRIPTION=UI library that focuses on simplicity and minimalism EAPI=8 HOMEPAGE=https://pwmt.org/projects/girara/ @@ -8,8 +8,8 @@ INHERIT=flag-o-matic meson git-r3 IUSE=doc test X LICENSE=ZLIB PROPERTIES=live -RDEPEND=app-accessibility/at-spi2-core >=dev-libs/glib-2.72:2 dev-libs/json-glib:= media-libs/harfbuzz:= x11-libs/cairo[glib] x11-libs/gdk-pixbuf >=x11-libs/gtk+-3.24:3[X?] x11-libs/pango +RDEPEND=app-accessibility/at-spi2-core >=dev-libs/glib-2.72:2 media-libs/harfbuzz:= x11-libs/cairo[glib] x11-libs/gdk-pixbuf >=x11-libs/gtk+-3.24:3[X?] x11-libs/pango RESTRICT=!test? ( test ) SLOT=0/9999 _eclasses_=flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 git-r3 875eb471682d3e1f18da124be97dcc81 meson ee14b47f310c323b82e6655787cd65ed multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot b9348e4d36f160f6d2556bea5b59f99c toolchain-funcs 7e440a20ac11dece04e3334622e6e5da -_md5_=534d272ee3ba96f5016a3c76974cfbdd +_md5_=9c8c399a4558c3abf0bf9f954950430f diff --git a/metadata/md5-cache/dev-libs/kdsingleapplication-1.2.0 b/metadata/md5-cache/dev-libs/kdsingleapplication-1.2.0-r1 index 13fe4dfb0a99..974941ac21f0 100644 --- a/metadata/md5-cache/dev-libs/kdsingleapplication-1.2.0 +++ b/metadata/md5-cache/dev-libs/kdsingleapplication-1.2.0-r1 @@ -10,7 +10,7 @@ KEYWORDS=amd64 ~arm64 ~ppc64 x86 LICENSE=BSD MIT RDEPEND=dev-qt/qtbase:6[network,widgets] RESTRICT=!test? ( test ) -SLOT=0 +SLOT=0/1.2 SRC_URI=https://github.com/KDAB/KDSingleApplication/releases/download/v1.2.0/kdsingleapplication-1.2.0.tar.gz _eclasses_=cmake 5691a3da96eac88f135cf3596b8c2c3c flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b qmake-utils 28f99dba9219112f4785f46ed426a021 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=4521072af9e2488e00671ebeff36acc6 +_md5_=665da76682fecb3633527cd04cee6404 diff --git a/metadata/md5-cache/dev-libs/quazip-1.5 b/metadata/md5-cache/dev-libs/quazip-1.5 index 54e385e8b1b2..945d5123ef19 100644 --- a/metadata/md5-cache/dev-libs/quazip-1.5 +++ b/metadata/md5-cache/dev-libs/quazip-1.5 @@ -6,11 +6,11 @@ EAPI=8 HOMEPAGE=https://stachenov.github.io/quazip/ INHERIT=cmake IUSE=bzip2 test -KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~x86 +KEYWORDS=~amd64 ~arm arm64 ~hppa ~ppc ~ppc64 ~riscv ~x86 LICENSE=LGPL-2.1-with-linking-exception RDEPEND=dev-qt/qtbase:6 dev-qt/qt5compat:6 virtual/minizip:= bzip2? ( app-arch/bzip2:= ) RESTRICT=!test? ( test ) SLOT=0/1.5 SRC_URI=https://github.com/stachenov/quazip/archive/v1.5.tar.gz -> quazip-1.5.tar.gz _eclasses_=cmake 5691a3da96eac88f135cf3596b8c2c3c flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b toolchain-funcs 7e440a20ac11dece04e3334622e6e5da xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=0cff02c8d433348af3da0f5275f3ec77 +_md5_=743d34c16eb9ec00ae1cc0fc9c0bf76b diff --git a/metadata/md5-cache/dev-ml/dune-3.21.1-r1 b/metadata/md5-cache/dev-ml/dune-3.21.1-r1 new file mode 100644 index 000000000000..e784e5d0cac4 --- /dev/null +++ b/metadata/md5-cache/dev-ml/dune-3.21.1-r1 @@ -0,0 +1,15 @@ +DEFINED_PHASES=compile configure install prepare +DEPEND=dev-lang/ocaml:= dev-ml/pp:= emacs? ( >=app-editors/emacs-23.1:* ) +DESCRIPTION=A composable build system for OCaml +EAPI=8 +HOMEPAGE=https://github.com/ocaml/dune +INHERIT=multiprocessing elisp-common +IUSE=emacs +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 +LICENSE=MIT +RDEPEND=dev-lang/ocaml:= dev-ml/pp:= emacs? ( >=app-editors/emacs-23.1:* ) +RESTRICT=strip test +SLOT=0/3.21.1 +SRC_URI=https://github.com/ocaml/dune/archive/3.21.1.tar.gz -> dune-3.21.1.tar.gz +_eclasses_=elisp-common ce20c7e2fc0c52b58ddabcd536b7310b multiprocessing 1e32df7deee68372153dca65f4a7c21f +_md5_=5807af5146a14d647fd98a7b07933e3a diff --git a/metadata/md5-cache/dev-ml/dune-build-info-3.19.1 b/metadata/md5-cache/dev-ml/dune-build-info-3.19.1-r1 index 2efbd0a9b766..f9e0dba6d72b 100644 --- a/metadata/md5-cache/dev-ml/dune-build-info-3.19.1 +++ b/metadata/md5-cache/dev-ml/dune-build-info-3.19.1-r1 @@ -1,6 +1,6 @@ BDEPEND=dev-lang/ocaml dev-ml/dune DEFINED_PHASES=compile configure install test -DEPEND=>=dev-ml/dune-3.12 dev-lang/ocaml:=[ocamlopt?] dev-ml/dune:= +DEPEND=>=dev-ml/dune-3.18 dev-lang/ocaml:=[ocamlopt?] dev-ml/dune:= DESCRIPTION=Embed locations informations inside executable and libraries EAPI=8 HOMEPAGE=https://github.com/ocaml/dune @@ -8,9 +8,9 @@ INHERIT=dune IUSE=+ocamlopt KEYWORDS=~amd64 ~arm64 ~ppc64 ~x86 LICENSE=MIT -RDEPEND=>=dev-ml/dune-3.12 dev-lang/ocaml:=[ocamlopt?] dev-ml/dune:= +RDEPEND=>=dev-ml/dune-3.18 dev-lang/ocaml:=[ocamlopt?] dev-ml/dune:= RESTRICT=test SLOT=0/3.19.1 SRC_URI=https://github.com/ocaml/dune/archive/3.19.1.tar.gz -> dune-3.19.1.tar.gz _eclasses_=dune 4304f35da0fafecd98eb149d0b7ed4d4 edo a5e294016aa84979fcb2459749eb80b2 multiprocessing 1e32df7deee68372153dca65f4a7c21f -_md5_=d8bd3da3605dce81f9d7a65d6243c6b0 +_md5_=270784653bcb0352d991aa913c9e3f1c diff --git a/metadata/md5-cache/dev-ml/dune-build-info-3.16.1 b/metadata/md5-cache/dev-ml/dune-build-info-3.21.1 index 971d0c88b7b4..b2a3fb0a8a85 100644 --- a/metadata/md5-cache/dev-ml/dune-build-info-3.16.1 +++ b/metadata/md5-cache/dev-ml/dune-build-info-3.21.1 @@ -1,6 +1,6 @@ BDEPEND=dev-lang/ocaml dev-ml/dune DEFINED_PHASES=compile configure install test -DEPEND=>=dev-ml/dune-3.12 dev-lang/ocaml:=[ocamlopt?] dev-ml/dune:= +DEPEND=>=dev-ml/dune-3.21 dev-lang/ocaml:=[ocamlopt?] dev-ml/dune:= DESCRIPTION=Embed locations informations inside executable and libraries EAPI=8 HOMEPAGE=https://github.com/ocaml/dune @@ -8,9 +8,9 @@ INHERIT=dune IUSE=+ocamlopt KEYWORDS=~amd64 ~arm64 ~ppc64 ~x86 LICENSE=MIT -RDEPEND=>=dev-ml/dune-3.12 dev-lang/ocaml:=[ocamlopt?] dev-ml/dune:= +RDEPEND=>=dev-ml/dune-3.21 dev-lang/ocaml:=[ocamlopt?] dev-ml/dune:= RESTRICT=test -SLOT=0/3.16.1 -SRC_URI=https://github.com/ocaml/dune/archive/3.16.1.tar.gz -> dune-3.16.1.tar.gz +SLOT=0/3.21.1 +SRC_URI=https://github.com/ocaml/dune/archive/3.21.1.tar.gz -> dune-3.21.1.tar.gz _eclasses_=dune 4304f35da0fafecd98eb149d0b7ed4d4 edo a5e294016aa84979fcb2459749eb80b2 multiprocessing 1e32df7deee68372153dca65f4a7c21f -_md5_=d8bd3da3605dce81f9d7a65d6243c6b0 +_md5_=eec1b3452f870f1ad42e4ee64045ef45 diff --git a/metadata/md5-cache/dev-ml/dune-configurator-3.19.1 b/metadata/md5-cache/dev-ml/dune-configurator-3.19.1-r1 index a6a15ae7b9b0..ef5b525bd34b 100644 --- a/metadata/md5-cache/dev-ml/dune-configurator-3.19.1 +++ b/metadata/md5-cache/dev-ml/dune-configurator-3.19.1-r1 @@ -1,4 +1,4 @@ -BDEPEND=>=dev-ml/dune-3.12 dev-lang/ocaml dev-ml/dune +BDEPEND=>=dev-ml/dune-3.18 dev-lang/ocaml dev-ml/dune DEFINED_PHASES=compile configure install prepare test DEPEND=>=dev-ml/csexp-1.5:=[ocamlopt?] dev-lang/ocaml:=[ocamlopt?] dev-ml/dune:= DESCRIPTION=Helper library for gathering system configuration @@ -13,4 +13,4 @@ RESTRICT=test SLOT=0/3.19.1 SRC_URI=https://github.com/ocaml/dune/archive/3.19.1.tar.gz -> dune-3.19.1.tar.gz _eclasses_=dune 4304f35da0fafecd98eb149d0b7ed4d4 edo a5e294016aa84979fcb2459749eb80b2 multiprocessing 1e32df7deee68372153dca65f4a7c21f -_md5_=9f99745105190efde87b016be27d2451 +_md5_=4db74c56030be1486c3a0b35f2161d68 diff --git a/metadata/md5-cache/dev-ml/dune-configurator-3.21.1 b/metadata/md5-cache/dev-ml/dune-configurator-3.21.1 new file mode 100644 index 000000000000..dd0753cc3a78 --- /dev/null +++ b/metadata/md5-cache/dev-ml/dune-configurator-3.21.1 @@ -0,0 +1,16 @@ +BDEPEND=>=dev-ml/dune-3.21 dev-lang/ocaml dev-ml/dune +DEFINED_PHASES=compile configure install test +DEPEND=>=dev-ml/csexp-1.5:=[ocamlopt?] dev-lang/ocaml:=[ocamlopt?] dev-ml/dune:= +DESCRIPTION=Helper library for gathering system configuration +EAPI=8 +HOMEPAGE=https://github.com/ocaml/dune +INHERIT=dune +IUSE=+ocamlopt +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 +LICENSE=Apache-2.0 +RDEPEND=>=dev-ml/csexp-1.5:=[ocamlopt?] dev-lang/ocaml:=[ocamlopt?] dev-ml/dune:= +RESTRICT=test +SLOT=0/3.21.1 +SRC_URI=https://github.com/ocaml/dune/archive/3.21.1.tar.gz -> dune-3.21.1.tar.gz +_eclasses_=dune 4304f35da0fafecd98eb149d0b7ed4d4 edo a5e294016aa84979fcb2459749eb80b2 multiprocessing 1e32df7deee68372153dca65f4a7c21f +_md5_=ea067096ef705ceb4d1bb1d69cfbc3cf diff --git a/metadata/md5-cache/dev-ml/dune-private-libs-3.19.0 b/metadata/md5-cache/dev-ml/dune-private-libs-3.19.0-r1 index b08f2c5a4297..1f65ae0f2a54 100644 --- a/metadata/md5-cache/dev-ml/dune-private-libs-3.19.0 +++ b/metadata/md5-cache/dev-ml/dune-private-libs-3.19.0-r1 @@ -1,4 +1,4 @@ -BDEPEND=>=dev-ml/dune-3.12 dev-lang/ocaml dev-ml/dune +BDEPEND=>=dev-ml/dune-3.18 dev-lang/ocaml dev-ml/dune DEFINED_PHASES=compile configure install test DEPEND=dev-ml/csexp:=[ocamlopt?] dev-lang/ocaml:=[ocamlopt?] dev-ml/dune:= DESCRIPTION=Private libraries of Dune @@ -13,4 +13,4 @@ RESTRICT=test SLOT=0/3.19.0 SRC_URI=https://github.com/ocaml/dune/archive/3.19.0.tar.gz -> dune-3.19.0.tar.gz _eclasses_=dune 4304f35da0fafecd98eb149d0b7ed4d4 edo a5e294016aa84979fcb2459749eb80b2 multiprocessing 1e32df7deee68372153dca65f4a7c21f -_md5_=9ca17ecb7408fe91e0f3d745c8ace081 +_md5_=877b21db837ab1c288a5c4af7f3bd9e1 diff --git a/metadata/md5-cache/dev-ml/dune-site-3.19.1 b/metadata/md5-cache/dev-ml/dune-site-3.19.1-r1 index 859c937207b1..0f7f6717ccae 100644 --- a/metadata/md5-cache/dev-ml/dune-site-3.19.1 +++ b/metadata/md5-cache/dev-ml/dune-site-3.19.1-r1 @@ -1,6 +1,6 @@ BDEPEND=dev-lang/ocaml dev-ml/dune DEFINED_PHASES=compile configure install test -DEPEND=>=dev-ml/dune-3.12 dev-ml/csexp:=[ocamlopt?] !dev-ml/dune-private-libs !dev-ml/stdune !dev-ml/dyn !dev-ml/ordering dev-lang/ocaml:=[ocamlopt?] dev-ml/dune:= +DEPEND=>=dev-ml/dune-3.18 dev-ml/csexp:=[ocamlopt?] !dev-ml/dune-private-libs !dev-ml/stdune !dev-ml/dyn !dev-ml/ordering dev-lang/ocaml:=[ocamlopt?] dev-ml/dune:= DESCRIPTION=Embed locations informations inside executable and libraries EAPI=8 HOMEPAGE=https://github.com/ocaml/dune @@ -8,9 +8,9 @@ INHERIT=dune IUSE=+ocamlopt KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 LICENSE=MIT -RDEPEND=>=dev-ml/dune-3.12 dev-ml/csexp:=[ocamlopt?] !dev-ml/dune-private-libs !dev-ml/stdune !dev-ml/dyn !dev-ml/ordering dev-lang/ocaml:=[ocamlopt?] dev-ml/dune:= +RDEPEND=>=dev-ml/dune-3.18 dev-ml/csexp:=[ocamlopt?] !dev-ml/dune-private-libs !dev-ml/stdune !dev-ml/dyn !dev-ml/ordering dev-lang/ocaml:=[ocamlopt?] dev-ml/dune:= RESTRICT=test SLOT=0/3.19.1 SRC_URI=https://github.com/ocaml/dune/archive/3.19.1.tar.gz -> dune-3.19.1.tar.gz _eclasses_=dune 4304f35da0fafecd98eb149d0b7ed4d4 edo a5e294016aa84979fcb2459749eb80b2 multiprocessing 1e32df7deee68372153dca65f4a7c21f -_md5_=0671813bd0987cc591432641cf44eb3b +_md5_=b4537e30cb048426d0db806be2cf99e0 diff --git a/metadata/md5-cache/dev-ml/dune-site-3.21.1 b/metadata/md5-cache/dev-ml/dune-site-3.21.1 new file mode 100644 index 000000000000..3c3e43a0786c --- /dev/null +++ b/metadata/md5-cache/dev-ml/dune-site-3.21.1 @@ -0,0 +1,16 @@ +BDEPEND=dev-lang/ocaml dev-ml/dune +DEFINED_PHASES=compile configure install test +DEPEND=>=dev-ml/dune-3.21 dev-ml/csexp:=[ocamlopt?] !dev-ml/dune-private-libs !dev-ml/stdune !dev-ml/dyn !dev-ml/ordering dev-lang/ocaml:=[ocamlopt?] dev-ml/dune:= +DESCRIPTION=Embed locations informations inside executable and libraries +EAPI=8 +HOMEPAGE=https://github.com/ocaml/dune +INHERIT=dune +IUSE=+ocamlopt +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 +LICENSE=MIT +RDEPEND=>=dev-ml/dune-3.21 dev-ml/csexp:=[ocamlopt?] !dev-ml/dune-private-libs !dev-ml/stdune !dev-ml/dyn !dev-ml/ordering dev-lang/ocaml:=[ocamlopt?] dev-ml/dune:= +RESTRICT=test +SLOT=0/3.21.1 +SRC_URI=https://github.com/ocaml/dune/archive/3.21.1.tar.gz -> dune-3.21.1.tar.gz +_eclasses_=dune 4304f35da0fafecd98eb149d0b7ed4d4 edo a5e294016aa84979fcb2459749eb80b2 multiprocessing 1e32df7deee68372153dca65f4a7c21f +_md5_=38625954c9731fe485d356f184b558b6 diff --git a/metadata/md5-cache/dev-ml/ppxlib_jane-0.17.0-r1 b/metadata/md5-cache/dev-ml/ppxlib_jane-0.17.0-r1 deleted file mode 100644 index 0d786d5ab567..000000000000 --- a/metadata/md5-cache/dev-ml/ppxlib_jane-0.17.0-r1 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=>=dev-ml/dune-3.11 dev-lang/ocaml dev-ml/dune -DEFINED_PHASES=compile install test -DEPEND=>=dev-lang/ocaml-5 <dev-lang/ocaml-5.3 dev-ml/stdlib-shims:=[ocamlopt?] >=dev-ml/ppxlib-0.32.1:=[ocamlopt?] dev-lang/ocaml:=[ocamlopt?] dev-ml/dune:= -DESCRIPTION=Utilities for working with Jane Street AST constructs -EAPI=8 -HOMEPAGE=https://github.com/janestreet/ppxlib_jane -INHERIT=dune -IUSE=+ocamlopt -KEYWORDS=~amd64 ~arm64 ~ppc ~ppc64 -LICENSE=MIT -RDEPEND=>=dev-lang/ocaml-5 <dev-lang/ocaml-5.3 dev-ml/stdlib-shims:=[ocamlopt?] >=dev-ml/ppxlib-0.32.1:=[ocamlopt?] dev-lang/ocaml:=[ocamlopt?] dev-ml/dune:= -SLOT=0/0.17 -SRC_URI=https://github.com/janestreet/ppxlib_jane/archive/refs/tags/v0.17.0.tar.gz -> ppxlib_jane-0.17.0.tar.gz -_eclasses_=dune 4304f35da0fafecd98eb149d0b7ed4d4 edo a5e294016aa84979fcb2459749eb80b2 multiprocessing 1e32df7deee68372153dca65f4a7c21f -_md5_=e0c4606134879fc619aee2c6c02d87b8 diff --git a/metadata/md5-cache/dev-ml/ppxlib_jane-0.17.2-r1 b/metadata/md5-cache/dev-ml/ppxlib_jane-0.17.2-r2 index 9169d6da8c1b..9e7c8c4966fe 100644 --- a/metadata/md5-cache/dev-ml/ppxlib_jane-0.17.2-r1 +++ b/metadata/md5-cache/dev-ml/ppxlib_jane-0.17.2-r2 @@ -1,4 +1,4 @@ -BDEPEND=>=dev-ml/dune-3.11 dev-lang/ocaml dev-ml/dune +BDEPEND=dev-lang/ocaml dev-ml/dune DEFINED_PHASES=compile install test DEPEND=>=dev-lang/ocaml-5.3 dev-ml/stdlib-shims:=[ocamlopt?] >=dev-ml/ppxlib-0.32.1:=[ocamlopt?] <dev-ml/ppxlib-0.36.0 dev-lang/ocaml:=[ocamlopt?] dev-ml/dune:= DESCRIPTION=Utilities for working with Jane Street AST constructs @@ -12,4 +12,4 @@ RDEPEND=>=dev-lang/ocaml-5.3 dev-ml/stdlib-shims:=[ocamlopt?] >=dev-ml/ppxlib-0. SLOT=0/0.17 SRC_URI=https://github.com/janestreet/ppxlib_jane/archive/refs/tags/v0.17.2.tar.gz -> ppxlib_jane-0.17.2.tar.gz _eclasses_=dune 4304f35da0fafecd98eb149d0b7ed4d4 edo a5e294016aa84979fcb2459749eb80b2 multiprocessing 1e32df7deee68372153dca65f4a7c21f -_md5_=c644f8dfe01477b6de087242a413ca08 +_md5_=04cbd561f15aa9a1db4d52c81085eaac diff --git a/metadata/md5-cache/dev-ml/ppxlib_jane-0.17.4 b/metadata/md5-cache/dev-ml/ppxlib_jane-0.17.4-r1 index 2e9f0baf5570..9db3860de92a 100644 --- a/metadata/md5-cache/dev-ml/ppxlib_jane-0.17.4 +++ b/metadata/md5-cache/dev-ml/ppxlib_jane-0.17.4-r1 @@ -1,4 +1,4 @@ -BDEPEND=>=dev-ml/dune-3.11 dev-lang/ocaml dev-ml/dune +BDEPEND=dev-lang/ocaml dev-ml/dune DEFINED_PHASES=compile install test DEPEND=>=dev-lang/ocaml-5.3 dev-ml/stdlib-shims:=[ocamlopt?] >=dev-ml/ppxlib-0.36.0:=[ocamlopt?] dev-lang/ocaml:=[ocamlopt?] dev-ml/dune:= DESCRIPTION=Utilities for working with Jane Street AST constructs @@ -12,4 +12,4 @@ RDEPEND=>=dev-lang/ocaml-5.3 dev-ml/stdlib-shims:=[ocamlopt?] >=dev-ml/ppxlib-0. SLOT=0/0.17 SRC_URI=https://github.com/janestreet/ppxlib_jane/archive/refs/tags/v0.17.4.tar.gz -> ppxlib_jane-0.17.4.tar.gz _eclasses_=dune 4304f35da0fafecd98eb149d0b7ed4d4 edo a5e294016aa84979fcb2459749eb80b2 multiprocessing 1e32df7deee68372153dca65f4a7c21f -_md5_=0266b5ab5290a2e6e1e8ab74c66e06f0 +_md5_=c18b3371f0cf096618bc9fb899c19e46 diff --git a/metadata/md5-cache/dev-ml/record_builder-0.17.0-r1 b/metadata/md5-cache/dev-ml/record_builder-0.17.0-r2 index 5b42fa65d4b1..7681fe0c939b 100644 --- a/metadata/md5-cache/dev-ml/record_builder-0.17.0-r1 +++ b/metadata/md5-cache/dev-ml/record_builder-0.17.0-r2 @@ -1,4 +1,4 @@ -BDEPEND=>=dev-ml/dune-3.11 dev-lang/ocaml dev-ml/dune +BDEPEND=dev-lang/ocaml dev-ml/dune DEFINED_PHASES=compile install test DEPEND=>=dev-lang/ocaml-5 =dev-ml/base-0.17*:=[ocamlopt?] =dev-ml/ppx_jane-0.17*:=[ocamlopt] dev-lang/ocaml:=[ocamlopt?] dev-ml/dune:= DESCRIPTION=A library which provides traversal of records with an applicative @@ -12,4 +12,4 @@ RDEPEND=>=dev-lang/ocaml-5 =dev-ml/base-0.17*:=[ocamlopt?] =dev-ml/ppx_jane-0.17 SLOT=0/0.17 SRC_URI=https://github.com/janestreet/record_builder/archive/refs/tags/v0.17.0.tar.gz -> record_builder-0.17.0.tar.gz _eclasses_=dune 4304f35da0fafecd98eb149d0b7ed4d4 edo a5e294016aa84979fcb2459749eb80b2 multiprocessing 1e32df7deee68372153dca65f4a7c21f -_md5_=8f1b6689462a90531b3d38f562e02bb0 +_md5_=67f2bd6909b87ecf8f19fc1195e947b7 diff --git a/metadata/md5-cache/dev-ml/sexp_pretty-0.17.0-r1 b/metadata/md5-cache/dev-ml/sexp_pretty-0.17.0-r2 index 5f029f957b05..ab732369184f 100644 --- a/metadata/md5-cache/dev-ml/sexp_pretty-0.17.0-r1 +++ b/metadata/md5-cache/dev-ml/sexp_pretty-0.17.0-r2 @@ -1,4 +1,4 @@ -BDEPEND=>=dev-ml/dune-3.11 dev-lang/ocaml dev-ml/dune +BDEPEND=dev-lang/ocaml dev-ml/dune DEFINED_PHASES=compile install test DEPEND=>=dev-lang/ocaml-5 =dev-ml/base-0.17*:=[ocamlopt?] =dev-ml/ppx_base-0.17*:=[ocamlopt?] =dev-ml/sexplib-0.17*:=[ocamlopt?] dev-ml/re:=[ocamlopt?] dev-lang/ocaml:=[ocamlopt?] dev-ml/dune:= DESCRIPTION=S-expression pretty-printer @@ -12,4 +12,4 @@ RDEPEND=>=dev-lang/ocaml-5 =dev-ml/base-0.17*:=[ocamlopt?] =dev-ml/ppx_base-0.17 SLOT=0/0.17 SRC_URI=https://github.com/janestreet/sexp_pretty/archive/refs/tags/v0.17.0.tar.gz -> sexp_pretty-0.17.0.tar.gz _eclasses_=dune 4304f35da0fafecd98eb149d0b7ed4d4 edo a5e294016aa84979fcb2459749eb80b2 multiprocessing 1e32df7deee68372153dca65f4a7c21f -_md5_=68c0516920c729e646694e7683f87b83 +_md5_=2230c0beb0826653de2b805c0321c9c8 diff --git a/metadata/md5-cache/dev-ml/sexplib-0.17.0 b/metadata/md5-cache/dev-ml/sexplib-0.17.0-r1 index 4c2552301963..8e1282f9eb32 100644 --- a/metadata/md5-cache/dev-ml/sexplib-0.17.0 +++ b/metadata/md5-cache/dev-ml/sexplib-0.17.0-r1 @@ -1,4 +1,4 @@ -BDEPEND=>=dev-ml/dune-3.11 dev-lang/ocaml dev-ml/dune +BDEPEND=dev-lang/ocaml dev-ml/dune DEFINED_PHASES=compile install test DEPEND=>=dev-lang/ocaml-5 dev-ml/parsexp:0/0.17[ocamlopt?] dev-ml/sexplib0:0/0.17[ocamlopt?] dev-ml/num:=[ocamlopt?] dev-lang/ocaml:=[ocamlopt?] dev-ml/dune:= DESCRIPTION=Library for automated conversion of OCaml-values to and from S-expressions @@ -12,4 +12,4 @@ RDEPEND=>=dev-lang/ocaml-5 dev-ml/parsexp:0/0.17[ocamlopt?] dev-ml/sexplib0:0/0. SLOT=0/0.17 SRC_URI=https://github.com/janestreet/sexplib/archive/v0.17.0.tar.gz -> sexplib-0.17.0.tar.gz _eclasses_=dune 4304f35da0fafecd98eb149d0b7ed4d4 edo a5e294016aa84979fcb2459749eb80b2 multiprocessing 1e32df7deee68372153dca65f4a7c21f -_md5_=d4d3748d8816d7668957034e23cf0430 +_md5_=1be4319d97592eb08a00935e3bfb4bda diff --git a/metadata/md5-cache/dev-ml/sexplib0-0.17.0-r1 b/metadata/md5-cache/dev-ml/sexplib0-0.17.0-r2 index 0037560bd7eb..6022067e5d8d 100644 --- a/metadata/md5-cache/dev-ml/sexplib0-0.17.0-r1 +++ b/metadata/md5-cache/dev-ml/sexplib0-0.17.0-r2 @@ -1,4 +1,4 @@ -BDEPEND=>=dev-ml/dune-3.11 >=dev-lang/ocaml-4.12 dev-lang/ocaml dev-ml/dune +BDEPEND=dev-lang/ocaml dev-ml/dune DEFINED_PHASES=compile install test DEPEND=dev-lang/ocaml:=[ocamlopt?] dev-ml/dune:= DESCRIPTION=Library for automated conversion of OCaml-values to and from S-expressions @@ -12,4 +12,4 @@ RDEPEND=dev-lang/ocaml:=[ocamlopt?] dev-ml/dune:= SLOT=0/0.17 SRC_URI=https://github.com/janestreet/sexplib0/archive/v0.17.0.tar.gz -> sexplib0-0.17.0.tar.gz _eclasses_=dune 4304f35da0fafecd98eb149d0b7ed4d4 edo a5e294016aa84979fcb2459749eb80b2 multiprocessing 1e32df7deee68372153dca65f4a7c21f -_md5_=30427f8bad69546498020a8994685928 +_md5_=d4e87479e1aefbcb4a7f57007444d28a diff --git a/metadata/md5-cache/dev-ml/splittable_random-0.17.0-r1 b/metadata/md5-cache/dev-ml/splittable_random-0.17.0-r2 index c64991a2864b..71664c2da806 100644 --- a/metadata/md5-cache/dev-ml/splittable_random-0.17.0-r1 +++ b/metadata/md5-cache/dev-ml/splittable_random-0.17.0-r2 @@ -1,4 +1,4 @@ -BDEPEND=>=dev-ml/dune-3.11 dev-lang/ocaml dev-ml/dune +BDEPEND=dev-lang/ocaml dev-ml/dune DEFINED_PHASES=compile install test DEPEND=>=dev-lang/ocaml-5 =dev-ml/base-0.17*:=[ocamlopt?] =dev-ml/ppx_assert-0.17*:=[ocamlopt?] =dev-ml/ppx_bench-0.17*:=[ocamlopt?] =dev-ml/ppx_inline_test-0.17*:=[ocamlopt?] =dev-ml/ppx_sexp_message-0.17*:=[ocamlopt?] dev-lang/ocaml:=[ocamlopt?] dev-ml/dune:= DESCRIPTION=PRNG that can be split into independent streams @@ -12,4 +12,4 @@ RDEPEND=>=dev-lang/ocaml-5 =dev-ml/base-0.17*:=[ocamlopt?] =dev-ml/ppx_assert-0. SLOT=0/0.17 SRC_URI=https://github.com/janestreet/splittable_random/archive/v0.17.0.tar.gz -> splittable_random-0.17.0.tar.gz _eclasses_=dune 4304f35da0fafecd98eb149d0b7ed4d4 edo a5e294016aa84979fcb2459749eb80b2 multiprocessing 1e32df7deee68372153dca65f4a7c21f -_md5_=6df645d774e87df16122b4ed81310f54 +_md5_=307e178a6b6376879cedf6d5fac60ee5 diff --git a/metadata/md5-cache/dev-ml/stdio-0.17.0-r1 b/metadata/md5-cache/dev-ml/stdio-0.17.0-r2 index 8908fa3ff8a3..ece51342ab00 100644 --- a/metadata/md5-cache/dev-ml/stdio-0.17.0-r1 +++ b/metadata/md5-cache/dev-ml/stdio-0.17.0-r2 @@ -1,4 +1,4 @@ -BDEPEND=>=dev-ml/dune-3.11 dev-lang/ocaml dev-ml/dune +BDEPEND=dev-lang/ocaml dev-ml/dune DEFINED_PHASES=compile install test DEPEND=>=dev-lang/ocaml-5 =dev-ml/base-0.17*:=[ocamlopt?] dev-lang/ocaml:=[ocamlopt?] dev-ml/dune:= DESCRIPTION=Standard IO Library for OCaml @@ -12,4 +12,4 @@ RDEPEND=>=dev-lang/ocaml-5 =dev-ml/base-0.17*:=[ocamlopt?] dev-lang/ocaml:=[ocam SLOT=0/0.17 SRC_URI=https://github.com/janestreet/stdio/archive/v0.17.0.tar.gz -> stdio-0.17.0.tar.gz _eclasses_=dune 4304f35da0fafecd98eb149d0b7ed4d4 edo a5e294016aa84979fcb2459749eb80b2 multiprocessing 1e32df7deee68372153dca65f4a7c21f -_md5_=28dffb4ad17cc1f14f1b8ea2dfd1a502 +_md5_=1d1dad4ca0f8db521e70a7827fff86b3 diff --git a/metadata/md5-cache/dev-ml/textutils-0.17.0 b/metadata/md5-cache/dev-ml/textutils-0.17.0-r1 index 67b8aca49c7d..22e7240c45e5 100644 --- a/metadata/md5-cache/dev-ml/textutils-0.17.0 +++ b/metadata/md5-cache/dev-ml/textutils-0.17.0-r1 @@ -1,4 +1,4 @@ -BDEPEND=>=dev-ml/dune-3.11 dev-lang/ocaml dev-ml/dune +BDEPEND=dev-lang/ocaml dev-ml/dune DEFINED_PHASES=compile install test DEPEND=>=dev-lang/ocaml-5 dev-ml/core:0/0.17[ocamlopt?] dev-ml/core_kernel:0/0.17[ocamlopt?] dev-ml/core_unix:0/0.17[ocamlopt?] dev-ml/ppx_jane:0/0.17[ocamlopt?] >=dev-ml/uutf-1.0.2:=[ocamlopt?] dev-lang/ocaml:=[ocamlopt?] dev-ml/dune:= DESCRIPTION=Text output utilities @@ -12,4 +12,4 @@ RDEPEND=>=dev-lang/ocaml-5 dev-ml/core:0/0.17[ocamlopt?] dev-ml/core_kernel:0/0. SLOT=0/0.17 SRC_URI=https://github.com/janestreet/textutils/archive/v0.17.0.tar.gz -> textutils-0.17.0.tar.gz _eclasses_=dune 4304f35da0fafecd98eb149d0b7ed4d4 edo a5e294016aa84979fcb2459749eb80b2 multiprocessing 1e32df7deee68372153dca65f4a7c21f -_md5_=14e600c954ee73beeb3e73329904696a +_md5_=81165a180ac6d504a24c6d3fea1f2ba3 diff --git a/metadata/md5-cache/dev-ml/textutils_kernel-0.17.0 b/metadata/md5-cache/dev-ml/textutils_kernel-0.17.0-r1 index 3e7ef71822d9..92d84c54ee1f 100644 --- a/metadata/md5-cache/dev-ml/textutils_kernel-0.17.0 +++ b/metadata/md5-cache/dev-ml/textutils_kernel-0.17.0-r1 @@ -1,6 +1,6 @@ BDEPEND=dev-lang/ocaml dev-ml/dune DEFINED_PHASES=compile install test -DEPEND=>=dev-lang/ocaml-5 dev-ml/core:0/0.17[ocamlopt?] dev-ml/ppx_jane:0/0.17[ocamlopt?] >=dev-ml/uutf-1.0.2:=[ocamlopt?] >=dev-ml/dune-3.11 dev-lang/ocaml:=[ocamlopt?] dev-ml/dune:= +DEPEND=>=dev-lang/ocaml-5 dev-ml/core:0/0.17[ocamlopt?] dev-ml/ppx_jane:0/0.17[ocamlopt?] >=dev-ml/uutf-1.0.2:=[ocamlopt?] dev-lang/ocaml:=[ocamlopt?] dev-ml/dune:= DESCRIPTION=Text output utilities EAPI=8 HOMEPAGE=https://github.com/janestreet/textutils_kernel @@ -8,8 +8,8 @@ INHERIT=dune IUSE=+ocamlopt KEYWORDS=~amd64 ~arm64 ~ppc ~ppc64 LICENSE=MIT -RDEPEND=>=dev-lang/ocaml-5 dev-ml/core:0/0.17[ocamlopt?] dev-ml/ppx_jane:0/0.17[ocamlopt?] >=dev-ml/uutf-1.0.2:=[ocamlopt?] >=dev-ml/dune-3.11 dev-lang/ocaml:=[ocamlopt?] dev-ml/dune:= +RDEPEND=>=dev-lang/ocaml-5 dev-ml/core:0/0.17[ocamlopt?] dev-ml/ppx_jane:0/0.17[ocamlopt?] >=dev-ml/uutf-1.0.2:=[ocamlopt?] dev-lang/ocaml:=[ocamlopt?] dev-ml/dune:= SLOT=0/0.17 SRC_URI=https://github.com/janestreet/textutils_kernel/archive/refs/tags/v0.17.0.tar.gz -> textutils_kernel-0.17.0.tar.gz _eclasses_=dune 4304f35da0fafecd98eb149d0b7ed4d4 edo a5e294016aa84979fcb2459749eb80b2 multiprocessing 1e32df7deee68372153dca65f4a7c21f -_md5_=33313e87301d45819929529d58a6d174 +_md5_=b47594fe1865c01938279bcdc4145753 diff --git a/metadata/md5-cache/dev-ml/time_now-0.17.0-r1 b/metadata/md5-cache/dev-ml/time_now-0.17.0-r2 index d4a3dafd6d3e..4dc020dc05c8 100644 --- a/metadata/md5-cache/dev-ml/time_now-0.17.0-r1 +++ b/metadata/md5-cache/dev-ml/time_now-0.17.0-r2 @@ -1,4 +1,4 @@ -BDEPEND=>=dev-ml/dune-3.11 dev-lang/ocaml dev-ml/dune +BDEPEND=dev-lang/ocaml dev-ml/dune DEFINED_PHASES=compile install test DEPEND=>=dev-lang/ocaml-5 =dev-ml/base-0.17*:=[ocamlopt?] =dev-ml/jane-street-headers-0.17*:=[ocamlopt?] =dev-ml/jst-config-0.17*:=[ocamlopt?] =dev-ml/ppx_base-0.17*:=[ocamlopt?] =dev-ml/ppx_optcomp-0.17*:=[ocamlopt?] dev-lang/ocaml:=[ocamlopt?] dev-ml/dune:= DESCRIPTION=Reports the current time @@ -12,4 +12,4 @@ RDEPEND=>=dev-lang/ocaml-5 =dev-ml/base-0.17*:=[ocamlopt?] =dev-ml/jane-street-h SLOT=0/0.17 SRC_URI=https://github.com/janestreet/time_now/archive/v0.17.0.tar.gz -> time_now-0.17.0.tar.gz _eclasses_=dune 4304f35da0fafecd98eb149d0b7ed4d4 edo a5e294016aa84979fcb2459749eb80b2 multiprocessing 1e32df7deee68372153dca65f4a7c21f -_md5_=a6a2b7fbf89a5827d8a30e45a6e69499 +_md5_=58e1494ed6c0b51d316139002ea2587e diff --git a/metadata/md5-cache/dev-ml/timezone-0.17.0 b/metadata/md5-cache/dev-ml/timezone-0.17.0-r1 index d3347e627f60..bd6774de7db8 100644 --- a/metadata/md5-cache/dev-ml/timezone-0.17.0 +++ b/metadata/md5-cache/dev-ml/timezone-0.17.0-r1 @@ -1,4 +1,4 @@ -BDEPEND=>=dev-ml/dune-3.11 dev-lang/ocaml dev-ml/dune +BDEPEND=dev-lang/ocaml dev-ml/dune DEFINED_PHASES=compile install test DEPEND=>=dev-lang/ocaml-5 dev-ml/core:0/0.17[ocamlopt?] dev-ml/ppx_jane:0/0.17[ocamlopt?] dev-lang/ocaml:=[ocamlopt?] dev-ml/dune:= DESCRIPTION=Time-zone handling for OCaml @@ -12,4 +12,4 @@ RDEPEND=>=dev-lang/ocaml-5 dev-ml/core:0/0.17[ocamlopt?] dev-ml/ppx_jane:0/0.17[ SLOT=0/0.17 SRC_URI=https://github.com/janestreet/timezone/archive/v0.17.0.tar.gz -> timezone-0.17.0.tar.gz _eclasses_=dune 4304f35da0fafecd98eb149d0b7ed4d4 edo a5e294016aa84979fcb2459749eb80b2 multiprocessing 1e32df7deee68372153dca65f4a7c21f -_md5_=20a46b6d6ad3baa9d8db853a655e50bd +_md5_=4e75cd1605c5d92d3f626d58a862b246 diff --git a/metadata/md5-cache/dev-ml/typerep-0.17.1-r1 b/metadata/md5-cache/dev-ml/typerep-0.17.1-r2 index 3f4ef6c4b9b1..c9de2b70482a 100644 --- a/metadata/md5-cache/dev-ml/typerep-0.17.1-r1 +++ b/metadata/md5-cache/dev-ml/typerep-0.17.1-r2 @@ -1,4 +1,4 @@ -BDEPEND=>=dev-ml/dune-3.11 dev-lang/ocaml dev-ml/dune +BDEPEND=dev-lang/ocaml dev-ml/dune DEFINED_PHASES=compile install test DEPEND=>=dev-lang/ocaml-5 =dev-ml/base-0.17*:=[ocamlopt?] dev-lang/ocaml:=[ocamlopt?] dev-ml/dune:= DESCRIPTION=Library for creating runtime representation of OCaml types @@ -12,4 +12,4 @@ RDEPEND=>=dev-lang/ocaml-5 =dev-ml/base-0.17*:=[ocamlopt?] dev-lang/ocaml:=[ocam SLOT=0/0.17 SRC_URI=https://github.com/janestreet/typerep/archive/v0.17.1.tar.gz -> typerep-0.17.1.tar.gz _eclasses_=dune 4304f35da0fafecd98eb149d0b7ed4d4 edo a5e294016aa84979fcb2459749eb80b2 multiprocessing 1e32df7deee68372153dca65f4a7c21f -_md5_=f6dcf92984b5e97e1397a62eb762a919 +_md5_=78ed1df9ae1f7cd5d157564dafea30d1 diff --git a/metadata/md5-cache/dev-ml/uopt-0.17.0-r1 b/metadata/md5-cache/dev-ml/uopt-0.17.0-r2 index 67feb8c7c935..3f60fee82e0b 100644 --- a/metadata/md5-cache/dev-ml/uopt-0.17.0-r1 +++ b/metadata/md5-cache/dev-ml/uopt-0.17.0-r2 @@ -1,4 +1,4 @@ -BDEPEND=>=dev-ml/dune-3.11 dev-lang/ocaml dev-ml/dune +BDEPEND=dev-lang/ocaml dev-ml/dune DEFINED_PHASES=compile install test DEPEND=>=dev-lang/ocaml-5 =dev-ml/base-0.17*:=[ocamlopt?] =dev-ml/ppx_jane-0.17*:=[ocamlopt?] dev-lang/ocaml:=[ocamlopt?] dev-ml/dune:= DESCRIPTION=An [option]-like type that incurs no allocation @@ -12,4 +12,4 @@ RDEPEND=>=dev-lang/ocaml-5 =dev-ml/base-0.17*:=[ocamlopt?] =dev-ml/ppx_jane-0.17 SLOT=0/0.17 SRC_URI=https://github.com/janestreet/uopt/archive/refs/tags/v0.17.0.tar.gz -> uopt-0.17.0.tar.gz _eclasses_=dune 4304f35da0fafecd98eb149d0b7ed4d4 edo a5e294016aa84979fcb2459749eb80b2 multiprocessing 1e32df7deee68372153dca65f4a7c21f -_md5_=5ba33e51a9d6905ab5bbd6e8b828ea1e +_md5_=a4afdde9be69fc906cda875086552441 diff --git a/metadata/md5-cache/dev-ml/variantslib-0.17.0-r1 b/metadata/md5-cache/dev-ml/variantslib-0.17.0-r2 index f9a52e2fe311..23525b5c759b 100644 --- a/metadata/md5-cache/dev-ml/variantslib-0.17.0-r1 +++ b/metadata/md5-cache/dev-ml/variantslib-0.17.0-r2 @@ -1,4 +1,4 @@ -BDEPEND=>=dev-ml/dune-3.11 dev-lang/ocaml dev-ml/dune +BDEPEND=dev-lang/ocaml dev-ml/dune DEFINED_PHASES=compile install test DEPEND=>=dev-lang/ocaml-5 =dev-ml/base-0.17*:=[ocamlopt?] dev-lang/ocaml:=[ocamlopt?] dev-ml/dune:= DESCRIPTION=OCaml variants as first class values @@ -12,4 +12,4 @@ RDEPEND=>=dev-lang/ocaml-5 =dev-ml/base-0.17*:=[ocamlopt?] dev-lang/ocaml:=[ocam SLOT=0/0.17 SRC_URI=https://github.com/janestreet/variantslib/archive/v0.17.0.tar.gz -> variantslib-0.17.0.tar.gz _eclasses_=dune 4304f35da0fafecd98eb149d0b7ed4d4 edo a5e294016aa84979fcb2459749eb80b2 multiprocessing 1e32df7deee68372153dca65f4a7c21f -_md5_=3fa0a60eb6ece849d9b14566d20e0e90 +_md5_=cab0d5fdbe537eb9574a57f88b9f21dd diff --git a/metadata/md5-cache/dev-ml/xdg-3.21.1 b/metadata/md5-cache/dev-ml/xdg-3.21.1 new file mode 100644 index 000000000000..38b7a6399b83 --- /dev/null +++ b/metadata/md5-cache/dev-ml/xdg-3.21.1 @@ -0,0 +1,16 @@ +BDEPEND=>=dev-ml/dune-3.21 dev-lang/ocaml dev-ml/dune +DEFINED_PHASES=compile configure install test +DEPEND=dev-lang/ocaml:=[ocamlopt?] dev-ml/dune:= +DESCRIPTION=XDG Base Directory Specification +EAPI=8 +HOMEPAGE=https://github.com/ocaml/dune/ +INHERIT=dune +IUSE=+ocamlopt +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 +LICENSE=Apache-2.0 +RDEPEND=dev-lang/ocaml:=[ocamlopt?] dev-ml/dune:= +RESTRICT=test +SLOT=0/3.21.1 +SRC_URI=https://github.com/ocaml/dune/archive/3.21.1.tar.gz -> dune-3.21.1.tar.gz +_eclasses_=dune 4304f35da0fafecd98eb149d0b7ed4d4 edo a5e294016aa84979fcb2459749eb80b2 multiprocessing 1e32df7deee68372153dca65f4a7c21f +_md5_=6deb091c5974d914114b3d94f1f0cc63 diff --git a/metadata/md5-cache/dev-ml/zed-3.2.2-r1 b/metadata/md5-cache/dev-ml/zed-3.2.2-r1 deleted file mode 100644 index a1856b329b44..000000000000 --- a/metadata/md5-cache/dev-ml/zed-3.2.2-r1 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=test? ( dev-ml/alcotest ) dev-lang/ocaml dev-ml/dune -DEFINED_PHASES=compile install test -DEPEND=>=dev-ml/dune-3 dev-ml/react:= dev-ml/result:= dev-ml/uchar:= dev-ml/uucp:= dev-ml/uuseg:= dev-ml/uutf:= dev-lang/ocaml:=[ocamlopt?] dev-ml/dune:= -DESCRIPTION=Abstract engine for text edition in OCaml -EAPI=8 -HOMEPAGE=https://github.com/ocaml-community/zed -INHERIT=dune -IUSE=+ocamlopt test -KEYWORDS=~amd64 ~x86 -LICENSE=BSD -RDEPEND=>=dev-ml/dune-3 dev-ml/react:= dev-ml/result:= dev-ml/uchar:= dev-ml/uucp:= dev-ml/uuseg:= dev-ml/uutf:= dev-lang/ocaml:=[ocamlopt?] dev-ml/dune:= -RESTRICT=!test? ( test ) -SLOT=0/3.2.2 -SRC_URI=https://github.com/ocaml-community/zed/archive/3.2.2.tar.gz -> zed-3.2.2.tar.gz -_eclasses_=dune 4304f35da0fafecd98eb149d0b7ed4d4 edo a5e294016aa84979fcb2459749eb80b2 multiprocessing 1e32df7deee68372153dca65f4a7c21f -_md5_=a32baad56705bd17cf341dc1a9acf065 diff --git a/metadata/md5-cache/dev-ml/zed-3.2.3 b/metadata/md5-cache/dev-ml/zed-3.2.3 index 13c7ec2b6b3d..235604aac8a5 100644 --- a/metadata/md5-cache/dev-ml/zed-3.2.3 +++ b/metadata/md5-cache/dev-ml/zed-3.2.3 @@ -1,6 +1,6 @@ BDEPEND=test? ( dev-ml/alcotest ) dev-lang/ocaml dev-ml/dune DEFINED_PHASES=compile install test -DEPEND=>=dev-ml/dune-3 dev-ml/react:= dev-ml/result:= dev-ml/uchar:= dev-ml/uucp:= dev-ml/uuseg:= dev-ml/uutf:= dev-lang/ocaml:=[ocamlopt?] dev-ml/dune:= +DEPEND=dev-ml/react:= dev-ml/result:= dev-ml/uchar:= dev-ml/uucp:= dev-ml/uuseg:= dev-ml/uutf:= dev-lang/ocaml:=[ocamlopt?] dev-ml/dune:= DESCRIPTION=Abstract engine for text edition in OCaml EAPI=8 HOMEPAGE=https://github.com/ocaml-community/zed @@ -8,9 +8,9 @@ INHERIT=dune IUSE=+ocamlopt test KEYWORDS=~amd64 ~x86 LICENSE=BSD -RDEPEND=>=dev-ml/dune-3 dev-ml/react:= dev-ml/result:= dev-ml/uchar:= dev-ml/uucp:= dev-ml/uuseg:= dev-ml/uutf:= dev-lang/ocaml:=[ocamlopt?] dev-ml/dune:= +RDEPEND=dev-ml/react:= dev-ml/result:= dev-ml/uchar:= dev-ml/uucp:= dev-ml/uuseg:= dev-ml/uutf:= dev-lang/ocaml:=[ocamlopt?] dev-ml/dune:= RESTRICT=!test? ( test ) SLOT=0/3.2.3 SRC_URI=https://github.com/ocaml-community/zed/archive/3.2.3.tar.gz -> zed-3.2.3.tar.gz _eclasses_=dune 4304f35da0fafecd98eb149d0b7ed4d4 edo a5e294016aa84979fcb2459749eb80b2 multiprocessing 1e32df7deee68372153dca65f4a7c21f -_md5_=a32baad56705bd17cf341dc1a9acf065 +_md5_=2a4ecc9cd1fb7f766305764524202332 diff --git a/metadata/md5-cache/dev-python/aiosmtpd-1.4.6 b/metadata/md5-cache/dev-python/aiosmtpd-1.4.6 index 81dc9450d8b8..733acdcd6805 100644 --- a/metadata/md5-cache/dev-python/aiosmtpd-1.4.6 +++ b/metadata/md5-cache/dev-python/aiosmtpd-1.4.6 @@ -1,11 +1,11 @@ -BDEPEND=test? ( >=dev-python/pytest-mock-3.12.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) test? ( >=dev-python/atpublic-4.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/attrs-23.2.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-7.4.4[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) >=dev-python/gpep517-16[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/setuptools-78.1.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] +BDEPEND=test? ( >=dev-python/atpublic-4.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/attrs-23.2.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-7.4.4[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest-mock[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) >=dev-python/gpep517-16[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/setuptools-78.1.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] DEFINED_PHASES=compile configure install prepare test DESCRIPTION=Reimplementation of the Python stdlib smtpd.py based on asyncio EAPI=8 HOMEPAGE=https://aiosmtpd.aio-libs.org/ https://github.com/aio-libs/aiosmtpd https://pypi.org/project/aiosmtpd/ INHERIT=distutils-r1 pypi IUSE=test python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv ~sparc x86 +KEYWORDS=amd64 arm arm64 ~loong ppc ppc64 ~riscv ~sparc x86 LICENSE=Apache-2.0 RDEPEND=>=dev-python/atpublic-4.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/attrs-23.2.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://files.pythonhosted.org/packages/source/a/aiosmtpd/aiosmtpd-1.4.6.tar.gz _eclasses_=distutils-r1 776bbaa25e9fa0dc9ac6f039ca37f701 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multibuild 83db098a835f71feb71761f72a694aa2 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pypi d2befa41d10011e03e2158e065d5d6da python-r1 0e15b2ab9cfc87d7474678201d6bca38 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da -_md5_=6afc62cc0a870f8d7b1e18fca32cc3c1 +_md5_=33c39fbe81772b6f5ca82edbaf6b89f5 diff --git a/metadata/md5-cache/dev-python/atpublic-6.0.2 b/metadata/md5-cache/dev-python/atpublic-6.0.2 index e28ec084b26d..0dbeee4c7e96 100644 --- a/metadata/md5-cache/dev-python/atpublic-6.0.2 +++ b/metadata/md5-cache/dev-python/atpublic-6.0.2 @@ -5,7 +5,7 @@ EAPI=8 HOMEPAGE=https://gitlab.com/warsaw/public/ https://pypi.org/project/atpublic/ INHERIT=distutils-r1 pypi IUSE=test python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv ~sparc x86 +KEYWORDS=amd64 arm arm64 ~loong ppc ppc64 ~riscv ~sparc x86 LICENSE=Apache-2.0 RDEPEND=python_targets_python3_11? ( >=dev-python/importlib-resources-5.10[python_targets_python3_11(-)?] ) python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://files.pythonhosted.org/packages/source/a/atpublic/atpublic-6.0.2.tar.gz _eclasses_=distutils-r1 776bbaa25e9fa0dc9ac6f039ca37f701 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multibuild 83db098a835f71feb71761f72a694aa2 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pypi d2befa41d10011e03e2158e065d5d6da python-r1 0e15b2ab9cfc87d7474678201d6bca38 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da -_md5_=5e706b12815afc3607b73222b8edaf97 +_md5_=3a828a443d8390059a6dbd3991e73a1d diff --git a/metadata/md5-cache/dev-python/atpublic-7.0.0 b/metadata/md5-cache/dev-python/atpublic-7.0.0 index a705e6d596f2..ea6b25bbca7c 100644 --- a/metadata/md5-cache/dev-python/atpublic-7.0.0 +++ b/metadata/md5-cache/dev-python/atpublic-7.0.0 @@ -5,7 +5,7 @@ EAPI=8 HOMEPAGE=https://gitlab.com/warsaw/public/ https://pypi.org/project/atpublic/ INHERIT=distutils-r1 pypi IUSE=test python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv ~sparc x86 +KEYWORDS=amd64 arm arm64 ~loong ppc ppc64 ~riscv ~sparc x86 LICENSE=Apache-2.0 RDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://files.pythonhosted.org/packages/source/a/atpublic/atpublic-7.0.0.tar.gz _eclasses_=distutils-r1 776bbaa25e9fa0dc9ac6f039ca37f701 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multibuild 83db098a835f71feb71761f72a694aa2 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pypi d2befa41d10011e03e2158e065d5d6da python-r1 0e15b2ab9cfc87d7474678201d6bca38 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da -_md5_=239addc55454bcc38edf8d1c35f1ac30 +_md5_=cf2beaac3ce881be53d809e28ab87cbd diff --git a/metadata/md5-cache/dev-python/backrefs-6.0.1 b/metadata/md5-cache/dev-python/backrefs-6.2 index 1aa294526f48..bb6390e35419 100644 --- a/metadata/md5-cache/dev-python/backrefs-6.0.1 +++ b/metadata/md5-cache/dev-python/backrefs-6.2 @@ -1,16 +1,16 @@ -BDEPEND=test? ( dev-python/regex[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-vcs/git ) test? ( >=dev-python/pytest-7.4.4[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) >=dev-python/gpep517-16[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/hatchling-1.27.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] -DEFINED_PHASES=compile configure install prepare test +BDEPEND=test? ( dev-python/regex[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-vcs/git ) test? ( >=dev-python/pytest-7.4.4[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) >=dev-python/gpep517-16[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/hatchling-1.27.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] verify-provenance? ( dev-python/pypi-attestations ) +DEFINED_PHASES=compile configure install prepare test unpack DESCRIPTION=Wrapper around re or regex that adds additional back references EAPI=8 HOMEPAGE=https://github.com/facelessuser/backrefs/ https://pypi.org/project/backrefs/ INHERIT=distutils-r1 pypi -IUSE=test python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 -KEYWORDS=amd64 arm64 ~riscv x86 +IUSE=test python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 verify-provenance +KEYWORDS=~amd64 ~arm64 ~riscv ~x86 LICENSE=MIT RDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 ) RESTRICT=!test? ( test ) SLOT=0 -SRC_URI=https://files.pythonhosted.org/packages/source/b/backrefs/backrefs-6.0.1.tar.gz +SRC_URI=https://files.pythonhosted.org/packages/source/b/backrefs/backrefs-6.2.tar.gz verify-provenance? ( https://pypi.org/integrity/backrefs/v6.2/backrefs-6.2.tar.gz/provenance -> backrefs-6.2.tar.gz.provenance ) _eclasses_=distutils-r1 776bbaa25e9fa0dc9ac6f039ca37f701 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multibuild 83db098a835f71feb71761f72a694aa2 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pypi d2befa41d10011e03e2158e065d5d6da python-r1 0e15b2ab9cfc87d7474678201d6bca38 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da -_md5_=26ae4213d2f233e77e9f081c196fd0d8 +_md5_=7654d73beec67863c7745989179f0386 diff --git a/metadata/md5-cache/dev-python/boto3-1.42.50 b/metadata/md5-cache/dev-python/boto3-1.42.50 new file mode 100644 index 000000000000..374feaeb60a7 --- /dev/null +++ b/metadata/md5-cache/dev-python/boto3-1.42.50 @@ -0,0 +1,16 @@ +BDEPEND=test? ( >=dev-python/botocore-1.42.50[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/jmespath-0.7.1[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/s3transfer-0.16.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-7.4.4[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest-xdist[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) >=dev-python/gpep517-16[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/setuptools-78.1.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=The AWS SDK for Python +EAPI=8 +HOMEPAGE=https://github.com/boto/boto3/ https://pypi.org/project/boto3/ +INHERIT=distutils-r1 +IUSE=test python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 +KEYWORDS=~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86 +LICENSE=Apache-2.0 +RDEPEND=>=dev-python/botocore-1.42.50[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/jmespath-0.7.1[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/s3transfer-0.16.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) +REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/boto/boto3/archive/1.42.50.tar.gz -> boto3-1.42.50.gh.tar.gz +_eclasses_=distutils-r1 776bbaa25e9fa0dc9ac6f039ca37f701 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multibuild 83db098a835f71feb71761f72a694aa2 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 0e15b2ab9cfc87d7474678201d6bca38 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_md5_=8ba2271dc3c02b695594ca38ff586eda diff --git a/metadata/md5-cache/dev-python/botocore-1.42.50 b/metadata/md5-cache/dev-python/botocore-1.42.50 new file mode 100644 index 000000000000..2810f67512bc --- /dev/null +++ b/metadata/md5-cache/dev-python/botocore-1.42.50 @@ -0,0 +1,16 @@ +BDEPEND=test? ( dev-python/jsonschema[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) test? ( <dev-python/jmespath-2[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/python-dateutil[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/urllib3-1.25.4[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/requests[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/six[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-7.4.4[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest-xdist[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) >=dev-python/gpep517-16[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/setuptools-78.1.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Low-level, data-driven core of boto 3 +EAPI=8 +HOMEPAGE=https://github.com/boto/botocore/ https://pypi.org/project/botocore/ +INHERIT=distutils-r1 +IUSE=test python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 +KEYWORDS=~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86 +LICENSE=Apache-2.0 +RDEPEND=<dev-python/jmespath-2[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/python-dateutil[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/urllib3-1.25.4[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/requests[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/six[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) +REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/boto/botocore/archive/1.42.50.tar.gz -> botocore-1.42.50.gh.tar.gz +_eclasses_=distutils-r1 776bbaa25e9fa0dc9ac6f039ca37f701 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multibuild 83db098a835f71feb71761f72a694aa2 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 0e15b2ab9cfc87d7474678201d6bca38 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_md5_=5915439a41529d52fb48000964baebf6 diff --git a/metadata/md5-cache/dev-python/dj-database-url-3.0.1 b/metadata/md5-cache/dev-python/dj-database-url-3.0.1 index 866b9cfe9e3c..4bd7d146591d 100644 --- a/metadata/md5-cache/dev-python/dj-database-url-3.0.1 +++ b/metadata/md5-cache/dev-python/dj-database-url-3.0.1 @@ -5,7 +5,7 @@ EAPI=8 HOMEPAGE=https://github.com/jazzband/dj-database-url/ https://pypi.org/project/dj-database-url/ INHERIT=distutils-r1 pypi IUSE=test python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv ~sparc x86 +KEYWORDS=amd64 arm arm64 ~loong ppc ppc64 ~riscv ~sparc x86 LICENSE=BSD RDEPEND=>=dev-python/django-4.2[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://files.pythonhosted.org/packages/source/d/dj-database-url/dj_database_url-3.0.1.tar.gz _eclasses_=distutils-r1 776bbaa25e9fa0dc9ac6f039ca37f701 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multibuild 83db098a835f71feb71761f72a694aa2 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pypi d2befa41d10011e03e2158e065d5d6da python-r1 0e15b2ab9cfc87d7474678201d6bca38 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da -_md5_=a739ecc0c860c337fa021ad0fccb679b +_md5_=bc6137db110dae25338a1b27b9bb792f diff --git a/metadata/md5-cache/dev-python/django-configurations-2.5.1 b/metadata/md5-cache/dev-python/django-configurations-2.5.1 index a5f65664ca86..9125ae1c5bc2 100644 --- a/metadata/md5-cache/dev-python/django-configurations-2.5.1 +++ b/metadata/md5-cache/dev-python/django-configurations-2.5.1 @@ -5,7 +5,7 @@ EAPI=8 HOMEPAGE=https://pypi.org/project/django-configurations/ https://github.com/jazzband/django-configurations/ https://django-configurations.readthedocs.io/ INHERIT=distutils-r1 pypi IUSE=test python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv ~sparc x86 +KEYWORDS=amd64 arm arm64 ~loong ppc ppc64 ~riscv ~sparc x86 LICENSE=BSD RDEPEND=>=dev-python/django-3.2[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://files.pythonhosted.org/packages/source/d/django-configurations/django-configurations-2.5.1.tar.gz _eclasses_=distutils-r1 776bbaa25e9fa0dc9ac6f039ca37f701 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multibuild 83db098a835f71feb71761f72a694aa2 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pypi d2befa41d10011e03e2158e065d5d6da python-r1 0e15b2ab9cfc87d7474678201d6bca38 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da -_md5_=74f58705074014774127b90ba7922248 +_md5_=b450c8963d944159dff11f65df43778a diff --git a/metadata/md5-cache/dev-python/fakeredis-2.32.1 b/metadata/md5-cache/dev-python/fakeredis-2.34.0 index 9ec96521b946..b8309bbfdf04 100644 --- a/metadata/md5-cache/dev-python/fakeredis-2.32.1 +++ b/metadata/md5-cache/dev-python/fakeredis-2.34.0 @@ -1,16 +1,16 @@ -BDEPEND=test? ( dev-db/redis dev-python/packaging[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) test? ( >=dev-python/redis-4.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/sortedcontainers-2[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-7.4.4[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest-xdist[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest-asyncio[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest-mock[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) >=dev-python/gpep517-16[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/hatchling-1.27.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] -DEFINED_PHASES=compile configure install prepare test +BDEPEND=test? ( dev-db/redis dev-python/packaging[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) test? ( >=dev-python/redis-4.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/sortedcontainers-2[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-7.4.4[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest-xdist[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest-asyncio[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest-mock[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) >=dev-python/gpep517-16[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/hatchling-1.27.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] verify-provenance? ( dev-python/pypi-attestations ) +DEFINED_PHASES=compile configure install prepare test unpack DESCRIPTION=Fake implementation of redis API for testing purposes EAPI=8 HOMEPAGE=https://github.com/cunla/fakeredis-py/ https://pypi.org/project/fakeredis/ INHERIT=distutils-r1 pypi -IUSE=test python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 -KEYWORDS=amd64 ~arm arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86 +IUSE=test python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 verify-provenance +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86 LICENSE=BSD RDEPEND=>=dev-python/redis-4.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/sortedcontainers-2[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 ) RESTRICT=!test? ( test ) SLOT=0 -SRC_URI=https://files.pythonhosted.org/packages/source/f/fakeredis/fakeredis-2.32.1.tar.gz +SRC_URI=https://files.pythonhosted.org/packages/source/f/fakeredis/fakeredis-2.34.0.tar.gz verify-provenance? ( https://pypi.org/integrity/fakeredis/v2.34.0/fakeredis-2.34.0.tar.gz/provenance -> fakeredis-2.34.0.tar.gz.provenance ) _eclasses_=distutils-r1 776bbaa25e9fa0dc9ac6f039ca37f701 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multibuild 83db098a835f71feb71761f72a694aa2 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pypi d2befa41d10011e03e2158e065d5d6da python-r1 0e15b2ab9cfc87d7474678201d6bca38 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da -_md5_=0d058bcc9f6326f1b978a14b88948b05 +_md5_=0c4433afff99fc2368c52d0d79524761 diff --git a/metadata/md5-cache/dev-python/filelock-3.24.2 b/metadata/md5-cache/dev-python/filelock-3.24.2 new file mode 100644 index 000000000000..7351cad2a9f4 --- /dev/null +++ b/metadata/md5-cache/dev-python/filelock-3.24.2 @@ -0,0 +1,16 @@ +BDEPEND=dev-python/hatch-vcs[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] test? ( dev-python/virtualenv[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) test? ( >=dev-python/pytest-7.4.4[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest-rerunfailures[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest-asyncio[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest-mock[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest-timeout[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) >=dev-python/gpep517-16[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/hatchling-1.27.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] verify-provenance? ( dev-python/pypi-attestations ) +DEFINED_PHASES=compile configure install prepare test unpack +DESCRIPTION=A platform independent file lock for Python +EAPI=8 +HOMEPAGE=https://github.com/tox-dev/filelock/ https://pypi.org/project/filelock/ +INHERIT=distutils-r1 pypi +IUSE=test python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 verify-provenance +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos +LICENSE=MIT +RDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) +REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://files.pythonhosted.org/packages/source/f/filelock/filelock-3.24.2.tar.gz verify-provenance? ( https://pypi.org/integrity/filelock/v3.24.2/filelock-3.24.2.tar.gz/provenance -> filelock-3.24.2.tar.gz.provenance ) +_eclasses_=distutils-r1 776bbaa25e9fa0dc9ac6f039ca37f701 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multibuild 83db098a835f71feb71761f72a694aa2 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pypi d2befa41d10011e03e2158e065d5d6da python-r1 0e15b2ab9cfc87d7474678201d6bca38 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_md5_=ff9eb88a2ccceb66694f5c8e895d4ec6 diff --git a/metadata/md5-cache/dev-python/flatdict-4.1.0 b/metadata/md5-cache/dev-python/flatdict-4.1.0 new file mode 100644 index 000000000000..73b9e2383280 --- /dev/null +++ b/metadata/md5-cache/dev-python/flatdict-4.1.0 @@ -0,0 +1,15 @@ +BDEPEND=dev-python/hatch-vcs[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) >=dev-python/gpep517-16[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/hatchling-1.27.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Python module for interacting with nested dicts +EAPI=8 +HOMEPAGE=https://github.com/gmr/flatdict/ https://pypi.org/project/flatdict/ +INHERIT=distutils-r1 +IUSE=python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 +KEYWORDS=~amd64 ~arm64 +LICENSE=BSD +RDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) +REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 ) +SLOT=0 +SRC_URI=https://github.com/gmr/flatdict/archive/4.1.0.tar.gz -> flatdict-4.1.0.gh.tar.gz +_eclasses_=distutils-r1 776bbaa25e9fa0dc9ac6f039ca37f701 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multibuild 83db098a835f71feb71761f72a694aa2 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 0e15b2ab9cfc87d7474678201d6bca38 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_md5_=88a548dbcddcc66434e8a08b9255a82c diff --git a/metadata/md5-cache/dev-python/gssapi-1.10.1 b/metadata/md5-cache/dev-python/gssapi-1.10.1 index c1f9d1ad6f66..c64423c74271 100644 --- a/metadata/md5-cache/dev-python/gssapi-1.10.1 +++ b/metadata/md5-cache/dev-python/gssapi-1.10.1 @@ -6,7 +6,7 @@ EAPI=8 HOMEPAGE=https://github.com/pythongssapi/python-gssapi/ https://pypi.org/project/gssapi/ INHERIT=distutils-r1 IUSE=test python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 debug -KEYWORDS=~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +KEYWORDS=amd64 arm arm64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 LICENSE=ISC RDEPEND=dev-python/decorator[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] virtual/krb5 python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 ) @@ -14,4 +14,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/pythongssapi/python-gssapi/releases/download/v1.10.1/python-gssapi-1.10.1.tar.gz -> gssapi-1.10.1.gh.tar.gz _eclasses_=distutils-r1 776bbaa25e9fa0dc9ac6f039ca37f701 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multibuild 83db098a835f71feb71761f72a694aa2 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 0e15b2ab9cfc87d7474678201d6bca38 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da -_md5_=fd27b8ea6daa087750420ed606afe00f +_md5_=dc28704038730fb86ad77620f470cfb7 diff --git a/metadata/md5-cache/dev-python/hypothesis-6.148.12 b/metadata/md5-cache/dev-python/hypothesis-6.148.12 deleted file mode 100644 index 9d572ec714e8..000000000000 --- a/metadata/md5-cache/dev-python/hypothesis-6.148.12 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=test? ( >=dev-python/attrs-22.2.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pexpect[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-8[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) test? ( >=dev-python/sortedcontainers-2.1.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] cli? ( python_targets_python3_11? ( dev-python/black[python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/click[python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] ) python_targets_python3_12? ( dev-python/black[python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/click[python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] ) python_targets_python3_13? ( dev-python/black[python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/click[python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] ) ) >=dev-python/pytest-7.4.4[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest-rerunfailures[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest-xdist[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest-xdist[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) python_targets_python3_10? ( dev-lang/python:3.10[threads(+),sqlite] ) python_targets_python3_11? ( dev-lang/python:3.11[threads(+),sqlite] ) python_targets_python3_12? ( dev-lang/python:3.12[threads(+),sqlite] ) python_targets_python3_13? ( dev-lang/python:3.13[threads(+),sqlite] ) python_targets_python3_14? ( dev-lang/python:3.14[threads(+),sqlite] ) >=dev-python/gpep517-16[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/setuptools-78.1.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] -DEFINED_PHASES=compile configure install postinst prepare test -DESCRIPTION=A library for property based testing -EAPI=8 -HOMEPAGE=https://github.com/HypothesisWorks/hypothesis/ https://pypi.org/project/hypothesis/ -INHERIT=distutils-r1 optfeature -IUSE=cli test python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 -LICENSE=MPL-2.0 -PDEPEND=dev-python/hypothesis-gentoo[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] -RDEPEND=>=dev-python/sortedcontainers-2.1.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] cli? ( python_targets_python3_11? ( dev-python/black[python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/click[python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] ) python_targets_python3_12? ( dev-python/black[python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/click[python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] ) python_targets_python3_13? ( dev-python/black[python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/click[python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] ) ) python_targets_python3_10? ( dev-lang/python:3.10[threads(+),sqlite] ) python_targets_python3_11? ( dev-lang/python:3.11[threads(+),sqlite] ) python_targets_python3_12? ( dev-lang/python:3.12[threads(+),sqlite] ) python_targets_python3_13? ( dev-lang/python:3.13[threads(+),sqlite] ) python_targets_python3_14? ( dev-lang/python:3.14[threads(+),sqlite] ) -REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-6.148.12.tar.gz -> hypothesis-6.148.12.gh.tar.gz -_eclasses_=distutils-r1 776bbaa25e9fa0dc9ac6f039ca37f701 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multibuild 83db098a835f71feb71761f72a694aa2 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b optfeature 538bce96e5589935b57e178e8635f301 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 0e15b2ab9cfc87d7474678201d6bca38 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da -_md5_=0625baaabeb10974af5935bb157c5d6a diff --git a/metadata/md5-cache/dev-python/hypothesis-6.151.0 b/metadata/md5-cache/dev-python/hypothesis-6.151.0 deleted file mode 100644 index 411c1e085b6e..000000000000 --- a/metadata/md5-cache/dev-python/hypothesis-6.151.0 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=test? ( >=dev-python/attrs-22.2.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pexpect[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-8[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) test? ( >=dev-python/sortedcontainers-2.1.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] cli? ( python_targets_python3_11? ( dev-python/black[python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/click[python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] ) python_targets_python3_12? ( dev-python/black[python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/click[python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] ) python_targets_python3_13? ( dev-python/black[python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/click[python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] ) ) >=dev-python/pytest-7.4.4[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest-rerunfailures[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest-xdist[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest-xdist[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) python_targets_python3_10? ( dev-lang/python:3.10[threads(+),sqlite] ) python_targets_python3_11? ( dev-lang/python:3.11[threads(+),sqlite] ) python_targets_python3_12? ( dev-lang/python:3.12[threads(+),sqlite] ) python_targets_python3_13? ( dev-lang/python:3.13[threads(+),sqlite] ) python_targets_python3_14? ( dev-lang/python:3.14[threads(+),sqlite] ) >=dev-python/gpep517-16[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/setuptools-78.1.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] -DEFINED_PHASES=compile configure install postinst prepare test -DESCRIPTION=A library for property based testing -EAPI=8 -HOMEPAGE=https://github.com/HypothesisWorks/hypothesis/ https://pypi.org/project/hypothesis/ -INHERIT=distutils-r1 optfeature -IUSE=cli test python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 -LICENSE=MPL-2.0 -PDEPEND=dev-python/hypothesis-gentoo[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] -RDEPEND=>=dev-python/sortedcontainers-2.1.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] cli? ( python_targets_python3_11? ( dev-python/black[python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/click[python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] ) python_targets_python3_12? ( dev-python/black[python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/click[python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] ) python_targets_python3_13? ( dev-python/black[python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/click[python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] ) ) python_targets_python3_10? ( dev-lang/python:3.10[threads(+),sqlite] ) python_targets_python3_11? ( dev-lang/python:3.11[threads(+),sqlite] ) python_targets_python3_12? ( dev-lang/python:3.12[threads(+),sqlite] ) python_targets_python3_13? ( dev-lang/python:3.13[threads(+),sqlite] ) python_targets_python3_14? ( dev-lang/python:3.14[threads(+),sqlite] ) -REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-6.151.0.tar.gz -> hypothesis-6.151.0.gh.tar.gz -_eclasses_=distutils-r1 776bbaa25e9fa0dc9ac6f039ca37f701 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multibuild 83db098a835f71feb71761f72a694aa2 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b optfeature 538bce96e5589935b57e178e8635f301 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 0e15b2ab9cfc87d7474678201d6bca38 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da -_md5_=00daf615eae69ea0d5b85b011d274695 diff --git a/metadata/md5-cache/dev-python/hypothesis-6.151.2 b/metadata/md5-cache/dev-python/hypothesis-6.151.2 deleted file mode 100644 index ba2236365c85..000000000000 --- a/metadata/md5-cache/dev-python/hypothesis-6.151.2 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=test? ( >=dev-python/attrs-22.2.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pexpect[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-8[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) test? ( >=dev-python/sortedcontainers-2.1.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] cli? ( python_targets_python3_11? ( dev-python/black[python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/click[python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] ) python_targets_python3_12? ( dev-python/black[python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/click[python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] ) python_targets_python3_13? ( dev-python/black[python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/click[python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] ) ) >=dev-python/pytest-7.4.4[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest-rerunfailures[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest-xdist[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest-xdist[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) python_targets_python3_10? ( dev-lang/python:3.10[threads(+),sqlite] ) python_targets_python3_11? ( dev-lang/python:3.11[threads(+),sqlite] ) python_targets_python3_12? ( dev-lang/python:3.12[threads(+),sqlite] ) python_targets_python3_13? ( dev-lang/python:3.13[threads(+),sqlite] ) python_targets_python3_14? ( dev-lang/python:3.14[threads(+),sqlite] ) >=dev-python/gpep517-16[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/setuptools-78.1.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] -DEFINED_PHASES=compile configure install postinst prepare test -DESCRIPTION=A library for property based testing -EAPI=8 -HOMEPAGE=https://github.com/HypothesisWorks/hypothesis/ https://pypi.org/project/hypothesis/ -INHERIT=distutils-r1 optfeature -IUSE=cli test python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 -LICENSE=MPL-2.0 -PDEPEND=dev-python/hypothesis-gentoo[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] -RDEPEND=>=dev-python/sortedcontainers-2.1.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] cli? ( python_targets_python3_11? ( dev-python/black[python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/click[python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] ) python_targets_python3_12? ( dev-python/black[python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/click[python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] ) python_targets_python3_13? ( dev-python/black[python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/click[python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] ) ) python_targets_python3_10? ( dev-lang/python:3.10[threads(+),sqlite] ) python_targets_python3_11? ( dev-lang/python:3.11[threads(+),sqlite] ) python_targets_python3_12? ( dev-lang/python:3.12[threads(+),sqlite] ) python_targets_python3_13? ( dev-lang/python:3.13[threads(+),sqlite] ) python_targets_python3_14? ( dev-lang/python:3.14[threads(+),sqlite] ) -REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-6.151.2.tar.gz -> hypothesis-6.151.2.gh.tar.gz -_eclasses_=distutils-r1 776bbaa25e9fa0dc9ac6f039ca37f701 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multibuild 83db098a835f71feb71761f72a694aa2 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b optfeature 538bce96e5589935b57e178e8635f301 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 0e15b2ab9cfc87d7474678201d6bca38 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da -_md5_=00daf615eae69ea0d5b85b011d274695 diff --git a/metadata/md5-cache/dev-python/hypothesis-6.151.3 b/metadata/md5-cache/dev-python/hypothesis-6.151.9 index 26e11612eb51..fa01de58a91f 100644 --- a/metadata/md5-cache/dev-python/hypothesis-6.151.3 +++ b/metadata/md5-cache/dev-python/hypothesis-6.151.9 @@ -12,6 +12,6 @@ RDEPEND=>=dev-python/sortedcontainers-2.1.0[python_targets_python3_10(-)?,python REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 ) RESTRICT=!test? ( test ) SLOT=0 -SRC_URI=https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-6.151.3.tar.gz -> hypothesis-6.151.3.gh.tar.gz +SRC_URI=https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-6.151.9.tar.gz -> hypothesis-6.151.9.gh.tar.gz _eclasses_=distutils-r1 776bbaa25e9fa0dc9ac6f039ca37f701 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multibuild 83db098a835f71feb71761f72a694aa2 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b optfeature 538bce96e5589935b57e178e8635f301 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 0e15b2ab9cfc87d7474678201d6bca38 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da -_md5_=00daf615eae69ea0d5b85b011d274695 +_md5_=3442d6aabb1c8f1436c44f516e33a5d4 diff --git a/metadata/md5-cache/dev-python/mpmath-1.4.0_beta4 b/metadata/md5-cache/dev-python/mpmath-1.4.0_beta4 new file mode 100644 index 000000000000..4a6f00ed629a --- /dev/null +++ b/metadata/md5-cache/dev-python/mpmath-1.4.0_beta4 @@ -0,0 +1,16 @@ +BDEPEND=dev-python/setuptools-scm[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] test? ( dev-python/numpy[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/packaging[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/pexpect[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] python_targets_python3_11? ( >=dev-python/gmpy2-2.3[python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] ) python_targets_python3_12? ( >=dev-python/gmpy2-2.3[python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] ) python_targets_python3_13? ( >=dev-python/gmpy2-2.3[python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] ) test-full? ( python_targets_pypy3_11? ( dev-python/matplotlib[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] ) python_targets_python3_11? ( dev-python/matplotlib[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] ) python_targets_python3_12? ( dev-python/matplotlib[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] ) python_targets_python3_13? ( dev-python/matplotlib[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] ) ) ) test? ( >=dev-python/pytest-7.4.4[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/pytest-rerunfailures[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/pytest-xdist[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/hypothesis[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] dev-python/pytest-timeout[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] ) python_targets_pypy3_11? ( dev-lang/pypy:3.11= ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) >=dev-python/gpep517-16[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] >=dev-python/setuptools-78.1.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?] +DEFINED_PHASES=compile configure install postinst prepare test +DESCRIPTION=Python library for arbitrary-precision floating-point arithmetic +EAPI=8 +HOMEPAGE=https://mpmath.org/ https://github.com/mpmath/mpmath/ https://pypi.org/project/mpmath/ +INHERIT=distutils-r1 optfeature pypi +IUSE=test-full test python_targets_pypy3_11 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~x64-macos +LICENSE=BSD +RDEPEND=python_targets_pypy3_11? ( dev-lang/pypy:3.11= ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) +REQUIRED_USE=|| ( python_targets_pypy3_11 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://files.pythonhosted.org/packages/source/m/mpmath/mpmath-1.4.0b4.tar.gz +_eclasses_=distutils-r1 776bbaa25e9fa0dc9ac6f039ca37f701 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multibuild 83db098a835f71feb71761f72a694aa2 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b optfeature 538bce96e5589935b57e178e8635f301 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pypi d2befa41d10011e03e2158e065d5d6da python-r1 0e15b2ab9cfc87d7474678201d6bca38 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_md5_=9184565b2e11c48de07d376fd8a9e6c8 diff --git a/metadata/md5-cache/dev-python/pyarrow-23.0.1 b/metadata/md5-cache/dev-python/pyarrow-23.0.1 new file mode 100644 index 000000000000..b1c185b653ff --- /dev/null +++ b/metadata/md5-cache/dev-python/pyarrow-23.0.1 @@ -0,0 +1,17 @@ +BDEPEND=test? ( dev-python/cffi[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/packaging[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pandas[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytz[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-libs/apache-arrow[lz4,zlib] ) test? ( ~dev-libs/apache-arrow-23.0.1[compute,dataset,json,parquet?,re2,snappy?,ssl?] >=dev-python/numpy-1.16.6:=[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-7.4.4[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest-xdist[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/hypothesis[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) >=dev-python/gpep517-16[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/setuptools-78.1.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] +DEFINED_PHASES=compile configure install prepare test +DEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) +DESCRIPTION=Python library for Apache Arrow +EAPI=8 +HOMEPAGE=https://arrow.apache.org/ https://github.com/apache/arrow/ https://pypi.org/project/pyarrow/ +INHERIT=distutils-r1 multiprocessing +IUSE=+parquet +snappy ssl test python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 debug +KEYWORDS=~amd64 ~arm64 ~riscv ~x86 +LICENSE=Apache-2.0 +RDEPEND=~dev-libs/apache-arrow-23.0.1[compute,dataset,json,parquet?,re2,snappy?,ssl?] >=dev-python/numpy-1.16.6:=[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) +REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://apache/arrow/arrow-23.0.1/apache-arrow-23.0.1.tar.gz test? ( https://github.com/apache/parquet-testing/archive/a3d96a65e11e2bbca7d22a894e8313ede90a33a3.tar.gz -> parquet-testing-a3d96a65e11e2bbca7d22a894e8313ede90a33a3.tar.gz https://github.com/apache/arrow-testing/archive/725fd4a4b12d01c53c98e80274c0b23aa8397082.tar.gz -> arrow-testing-725fd4a4b12d01c53c98e80274c0b23aa8397082.tar.gz ) +_eclasses_=distutils-r1 776bbaa25e9fa0dc9ac6f039ca37f701 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multibuild 83db098a835f71feb71761f72a694aa2 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 0e15b2ab9cfc87d7474678201d6bca38 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_md5_=31910f7f4575ef9fed6f668e55c7a08a diff --git a/metadata/md5-cache/dev-python/pybind11-2.13.6 b/metadata/md5-cache/dev-python/pybind11-2.13.6 deleted file mode 100644 index 0616215cb367..000000000000 --- a/metadata/md5-cache/dev-python/pybind11-2.13.6 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=test? ( <dev-cpp/catch-3:0 >=dev-cpp/catch-2.13.9:0 dev-libs/boost dev-python/pytest-rerunfailures[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) test? ( dev-cpp/eigen:3 >=dev-python/pytest-7.4.4[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest-xdist[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) app-alternatives/ninja >=dev-build/cmake-3.28.5 python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) >=dev-python/gpep517-16[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/setuptools-78.1.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=AST-based Python refactoring library -EAPI=8 -HOMEPAGE=https://pybind11.readthedocs.io/en/stable/ https://github.com/pybind/pybind11/ https://pypi.org/project/pybind11/ -INHERIT=cmake distutils-r1 -IUSE=test python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~arm64-macos ~x64-macos -LICENSE=BSD -RDEPEND=dev-cpp/eigen:3 python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) -REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/pybind/pybind11/archive/v2.13.6.tar.gz -> pybind11-2.13.6.gh.tar.gz -_eclasses_=cmake 5691a3da96eac88f135cf3596b8c2c3c distutils-r1 776bbaa25e9fa0dc9ac6f039ca37f701 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multibuild 83db098a835f71feb71761f72a694aa2 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 0e15b2ab9cfc87d7474678201d6bca38 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=63f6dbff8ffda091566bdd06bd18ede3 diff --git a/metadata/md5-cache/dev-python/pybind11-3.0.0-r1 b/metadata/md5-cache/dev-python/pybind11-3.0.2 index 40728903fa64..eb6b5fcffa17 100644 --- a/metadata/md5-cache/dev-python/pybind11-3.0.0-r1 +++ b/metadata/md5-cache/dev-python/pybind11-3.0.2 @@ -5,12 +5,12 @@ EAPI=8 HOMEPAGE=https://pybind11.readthedocs.io/en/stable/ https://github.com/pybind/pybind11/ https://pypi.org/project/pybind11/ INHERIT=cmake distutils-r1 IUSE=test python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~arm64-macos ~x64-macos +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~arm64-macos ~x64-macos LICENSE=BSD RDEPEND=dev-cpp/eigen:3 python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 ) RESTRICT=!test? ( test ) SLOT=0 -SRC_URI=https://github.com/pybind/pybind11/archive/v3.0.0.tar.gz -> pybind11-3.0.0.gh.tar.gz +SRC_URI=https://github.com/pybind/pybind11/archive/v3.0.2.tar.gz -> pybind11-3.0.2.gh.tar.gz _eclasses_=cmake 5691a3da96eac88f135cf3596b8c2c3c distutils-r1 776bbaa25e9fa0dc9ac6f039ca37f701 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multibuild 83db098a835f71feb71761f72a694aa2 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 0e15b2ab9cfc87d7474678201d6bca38 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=eec135a18c174cf9f8774feb3dc8cbbd +_md5_=8dafda267c6f1f687d0232334e3d4b6e diff --git a/metadata/md5-cache/dev-python/pycountry-26.2.16 b/metadata/md5-cache/dev-python/pycountry-26.2.16 new file mode 100644 index 000000000000..15ae613ca23c --- /dev/null +++ b/metadata/md5-cache/dev-python/pycountry-26.2.16 @@ -0,0 +1,16 @@ +BDEPEND=test? ( >=dev-python/pytest-7.4.4[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) >=dev-python/gpep517-16[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/poetry-core-2.1.1[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] verify-provenance? ( dev-python/pypi-attestations ) +DEFINED_PHASES=compile configure install prepare test unpack +DESCRIPTION=Database of countries, subdivisions, languages, currencies and script +EAPI=8 +HOMEPAGE=https://github.com/pycountry/pycountry/ https://pypi.org/project/pycountry/ +INHERIT=distutils-r1 pypi +IUSE=test python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 verify-provenance +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +LICENSE=LGPL-2.1 +RDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) +REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://files.pythonhosted.org/packages/source/p/pycountry/pycountry-26.2.16.tar.gz verify-provenance? ( https://pypi.org/integrity/pycountry/v26.2.16/pycountry-26.2.16.tar.gz/provenance -> pycountry-26.2.16.tar.gz.provenance ) +_eclasses_=distutils-r1 776bbaa25e9fa0dc9ac6f039ca37f701 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multibuild 83db098a835f71feb71761f72a694aa2 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pypi d2befa41d10011e03e2158e065d5d6da python-r1 0e15b2ab9cfc87d7474678201d6bca38 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_md5_=132257502aad16f2e6788042be055466 diff --git a/metadata/md5-cache/dev-python/pycurl-requests-0.5.0-r1 b/metadata/md5-cache/dev-python/pycurl-requests-0.5.2 index 50f30f7f86b8..354b71cc6be1 100644 --- a/metadata/md5-cache/dev-python/pycurl-requests-0.5.0-r1 +++ b/metadata/md5-cache/dev-python/pycurl-requests-0.5.2 @@ -11,6 +11,6 @@ RDEPEND=dev-python/chardet[python_targets_python3_10(-)?,python_targets_python3_ REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 ) RESTRICT=!test? ( test ) SLOT=0 -SRC_URI=https://github.com/dcoles/pycurl-requests/archive/v0.5.0.tar.gz -> pycurl-requests-0.5.0.gh.tar.gz +SRC_URI=https://github.com/dcoles/pycurl-requests/archive/v0.5.2.tar.gz -> pycurl-requests-0.5.2.gh.tar.gz _eclasses_=distutils-r1 776bbaa25e9fa0dc9ac6f039ca37f701 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multibuild 83db098a835f71feb71761f72a694aa2 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 0e15b2ab9cfc87d7474678201d6bca38 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da -_md5_=f6e21c12db2a681ca5151e90ad628f56 +_md5_=1d8d55e0e2d8987d4581aa9b8bfb2a22 diff --git a/metadata/md5-cache/dev-python/pytest-django-4.11.1 b/metadata/md5-cache/dev-python/pytest-django-4.11.1 index de40e8e34a02..4043ce10b4f4 100644 --- a/metadata/md5-cache/dev-python/pytest-django-4.11.1 +++ b/metadata/md5-cache/dev-python/pytest-django-4.11.1 @@ -5,7 +5,7 @@ EAPI=8 HOMEPAGE=https://pypi.org/project/pytest-django/ https://pytest-django.readthedocs.io/ https://github.com/pytest-dev/pytest-django/ INHERIT=distutils-r1 IUSE=test python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv ~sparc x86 +KEYWORDS=amd64 arm arm64 ~loong ppc ppc64 ~riscv ~sparc x86 LICENSE=BSD RDEPEND=>=dev-python/pytest-7.0.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/pytest-dev/pytest-django/archive/v4.11.1.tar.gz -> pytest-django-4.11.1.gh.tar.gz _eclasses_=distutils-r1 776bbaa25e9fa0dc9ac6f039ca37f701 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multibuild 83db098a835f71feb71761f72a694aa2 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 0e15b2ab9cfc87d7474678201d6bca38 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da -_md5_=dc38fb24b4500b5671c6cff00fb4ca75 +_md5_=355ef95dcd4c43a0698a82c967ecbe2a diff --git a/metadata/md5-cache/dev-python/pytest-django-4.12.0 b/metadata/md5-cache/dev-python/pytest-django-4.12.0 index da1317743679..922092517aa6 100644 --- a/metadata/md5-cache/dev-python/pytest-django-4.12.0 +++ b/metadata/md5-cache/dev-python/pytest-django-4.12.0 @@ -5,7 +5,7 @@ EAPI=8 HOMEPAGE=https://pypi.org/project/pytest-django/ https://pytest-django.readthedocs.io/ https://github.com/pytest-dev/pytest-django/ INHERIT=distutils-r1 IUSE=test python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86 LICENSE=BSD RDEPEND=>=dev-python/pytest-7.0.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/pytest-dev/pytest-django/archive/v4.12.0.tar.gz -> pytest-django-4.12.0.gh.tar.gz _eclasses_=distutils-r1 776bbaa25e9fa0dc9ac6f039ca37f701 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multibuild 83db098a835f71feb71761f72a694aa2 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 0e15b2ab9cfc87d7474678201d6bca38 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da -_md5_=c0d4532a108944342cef0def4be410bd +_md5_=39c499107615ed822339e44967dc600e diff --git a/metadata/md5-cache/dev-python/redis-7.2.0 b/metadata/md5-cache/dev-python/redis-7.2.0 new file mode 100644 index 000000000000..dddd24f33ebb --- /dev/null +++ b/metadata/md5-cache/dev-python/redis-7.2.0 @@ -0,0 +1,16 @@ +BDEPEND=test? ( dev-db/redis dev-python/numpy[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/xxhash[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) test? ( >=dev-python/pytest-7.4.4[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest-asyncio[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest-timeout[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) >=dev-python/gpep517-16[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/hatchling-1.27.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Python client for Redis key-value store +EAPI=8 +HOMEPAGE=https://github.com/redis/redis-py/ https://pypi.org/project/redis/ +INHERIT=distutils-r1 +IUSE=test python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 +KEYWORDS=~amd64 ~arm ~arm64 ~x86 +LICENSE=MIT +RDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) +REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/redis/redis-py/archive/v7.2.0.tar.gz -> redis-py-7.2.0.gh.tar.gz +_eclasses_=distutils-r1 776bbaa25e9fa0dc9ac6f039ca37f701 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multibuild 83db098a835f71feb71761f72a694aa2 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 0e15b2ab9cfc87d7474678201d6bca38 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_md5_=574ed8ad9427f11022f727742fc9346b diff --git a/metadata/md5-cache/dev-python/simsimd-6.5.8 b/metadata/md5-cache/dev-python/simsimd-6.5.13 index 0d333e54e7c1..6ed01b2a246f 100644 --- a/metadata/md5-cache/dev-python/simsimd-6.5.8 +++ b/metadata/md5-cache/dev-python/simsimd-6.5.13 @@ -12,6 +12,6 @@ RDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_pytho REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 ) RESTRICT=!test? ( test ) SLOT=0 -SRC_URI=https://files.pythonhosted.org/packages/source/s/simsimd/simsimd-6.5.8.tar.gz verify-provenance? ( https://pypi.org/integrity/simsimd/v6.5.8/simsimd-6.5.8.tar.gz/provenance -> simsimd-6.5.8.tar.gz.provenance ) +SRC_URI=https://files.pythonhosted.org/packages/source/s/simsimd/simsimd-6.5.13.tar.gz verify-provenance? ( https://pypi.org/integrity/simsimd/v6.5.13/simsimd-6.5.13.tar.gz/provenance -> simsimd-6.5.13.tar.gz.provenance ) _eclasses_=distutils-r1 776bbaa25e9fa0dc9ac6f039ca37f701 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multibuild 83db098a835f71feb71761f72a694aa2 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pypi d2befa41d10011e03e2158e065d5d6da python-r1 0e15b2ab9cfc87d7474678201d6bca38 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da -_md5_=b88dbe0c96ac203685f92d920e1f4bb7 +_md5_=73167f06b15c8da54c1c13095fb0f5e4 diff --git a/metadata/md5-cache/dev-python/simsimd-6.5.3 b/metadata/md5-cache/dev-python/simsimd-6.5.3 deleted file mode 100644 index 539f90095080..000000000000 --- a/metadata/md5-cache/dev-python/simsimd-6.5.3 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=test? ( dev-python/tabulate[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) test? ( >=dev-python/pytest-7.4.4[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest-repeat[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) >=dev-python/gpep517-16[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/setuptools-78.1.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] verify-provenance? ( dev-python/pypi-attestations ) -DEFINED_PHASES=compile configure install prepare pretend setup test unpack -DEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) -DESCRIPTION=Fastest SIMD-Accelerated Vector Similarity Functions for x86 and Arm -EAPI=8 -HOMEPAGE=https://github.com/ashvardanian/SimSIMD/ https://pypi.org/project/simsimd/ -INHERIT=distutils-r1 pypi toolchain-funcs -IUSE=openmp test python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 debug verify-provenance -KEYWORDS=~amd64 -LICENSE=Apache-2.0 -RDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) -REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://files.pythonhosted.org/packages/source/s/simsimd/simsimd-6.5.3.tar.gz verify-provenance? ( https://pypi.org/integrity/simsimd/v6.5.3/simsimd-6.5.3.tar.gz/provenance -> simsimd-6.5.3.tar.gz.provenance ) -_eclasses_=distutils-r1 776bbaa25e9fa0dc9ac6f039ca37f701 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multibuild 83db098a835f71feb71761f72a694aa2 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pypi d2befa41d10011e03e2158e065d5d6da python-r1 0e15b2ab9cfc87d7474678201d6bca38 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da -_md5_=b88dbe0c96ac203685f92d920e1f4bb7 diff --git a/metadata/md5-cache/dev-python/sshtunnel-0.4.0-r2 b/metadata/md5-cache/dev-python/sshtunnel-0.4.0-r2 index 6c174019d6cf..3c5f33787666 100644 --- a/metadata/md5-cache/dev-python/sshtunnel-0.4.0-r2 +++ b/metadata/md5-cache/dev-python/sshtunnel-0.4.0-r2 @@ -5,7 +5,7 @@ EAPI=8 HOMEPAGE=https://pypi.org/project/sshtunnel/ INHERIT=distutils-r1 pypi IUSE=test python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 -KEYWORDS=~amd64 ~arm ~arm64 ~x86 +KEYWORDS=amd64 ~arm ~arm64 x86 LICENSE=MIT RDEPEND=dev-python/paramiko[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://files.pythonhosted.org/packages/source/s/sshtunnel/sshtunnel-0.4.0.tar.gz _eclasses_=distutils-r1 776bbaa25e9fa0dc9ac6f039ca37f701 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multibuild 83db098a835f71feb71761f72a694aa2 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pypi d2befa41d10011e03e2158e065d5d6da python-r1 0e15b2ab9cfc87d7474678201d6bca38 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da -_md5_=5d32586ec80e8d78cca5e1dce76e4b5b +_md5_=ab965930a15a2101cd6c3e157e189b48 diff --git a/metadata/md5-cache/dev-python/sybil-9.2.0-r1 b/metadata/md5-cache/dev-python/sybil-9.2.0-r1 index 0942f04767b2..5904e791e5cf 100644 --- a/metadata/md5-cache/dev-python/sybil-9.2.0-r1 +++ b/metadata/md5-cache/dev-python/sybil-9.2.0-r1 @@ -5,7 +5,7 @@ EAPI=8 HOMEPAGE=https://github.com/simplistix/sybil/ https://pypi.org/project/sybil/ INHERIT=distutils-r1 IUSE=test python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv ~sparc x86 +KEYWORDS=amd64 arm arm64 ~loong ppc ppc64 ~riscv ~sparc x86 LICENSE=MIT RDEPEND=>=dev-python/pytest-8[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/simplistix/sybil/archive/9.2.0.tar.gz -> sybil-9.2.0.gh.tar.gz _eclasses_=distutils-r1 776bbaa25e9fa0dc9ac6f039ca37f701 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multibuild 83db098a835f71feb71761f72a694aa2 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 0e15b2ab9cfc87d7474678201d6bca38 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da -_md5_=d3fe37695b3c1aff19d1be6b327c28ad +_md5_=c69c83a3985b26eb3231d3b07d391dcf diff --git a/metadata/md5-cache/dev-python/sybil-9.3.0 b/metadata/md5-cache/dev-python/sybil-9.3.0 index 31fb9ca60b90..ea392b02f312 100644 --- a/metadata/md5-cache/dev-python/sybil-9.3.0 +++ b/metadata/md5-cache/dev-python/sybil-9.3.0 @@ -5,7 +5,7 @@ EAPI=8 HOMEPAGE=https://github.com/simplistix/sybil/ https://pypi.org/project/sybil/ INHERIT=distutils-r1 IUSE=test python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86 LICENSE=MIT RDEPEND=>=dev-python/pytest-8[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/simplistix/sybil/archive/9.3.0.tar.gz -> sybil-9.3.0.gh.tar.gz _eclasses_=distutils-r1 776bbaa25e9fa0dc9ac6f039ca37f701 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multibuild 83db098a835f71feb71761f72a694aa2 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 0e15b2ab9cfc87d7474678201d6bca38 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da -_md5_=488bbad744ad10840ebeddf527757512 +_md5_=26873447e0b991e3aa7150aa64996f06 diff --git a/metadata/md5-cache/dev-python/testfixtures-10.0.0 b/metadata/md5-cache/dev-python/testfixtures-10.0.0 index f5f807ca2969..487c0a9ca69a 100644 --- a/metadata/md5-cache/dev-python/testfixtures-10.0.0 +++ b/metadata/md5-cache/dev-python/testfixtures-10.0.0 @@ -5,7 +5,7 @@ EAPI=8 HOMEPAGE=https://pypi.org/project/testfixtures/ https://github.com/Simplistix/testfixtures/ INHERIT=distutils-r1 pypi IUSE=test python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv ~sparc x86 +KEYWORDS=amd64 arm arm64 ~loong ppc ppc64 ~riscv ~sparc x86 LICENSE=MIT RDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://files.pythonhosted.org/packages/source/t/testfixtures/testfixtures-10.0.0.tar.gz _eclasses_=distutils-r1 776bbaa25e9fa0dc9ac6f039ca37f701 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multibuild 83db098a835f71feb71761f72a694aa2 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pypi d2befa41d10011e03e2158e065d5d6da python-r1 0e15b2ab9cfc87d7474678201d6bca38 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da -_md5_=ad0507f49bf9694ba3d1592723e4a101 +_md5_=57b4a7f3c807e0866397a01fc408b092 diff --git a/metadata/md5-cache/dev-python/testfixtures-9.1.0 b/metadata/md5-cache/dev-python/testfixtures-9.1.0 index 27e0d3995368..50c786721f62 100644 --- a/metadata/md5-cache/dev-python/testfixtures-9.1.0 +++ b/metadata/md5-cache/dev-python/testfixtures-9.1.0 @@ -5,7 +5,7 @@ EAPI=8 HOMEPAGE=https://pypi.org/project/testfixtures/ https://github.com/Simplistix/testfixtures/ INHERIT=distutils-r1 pypi IUSE=test python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv ~sparc x86 +KEYWORDS=amd64 arm arm64 ~loong ppc ppc64 ~riscv ~sparc x86 LICENSE=MIT RDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://files.pythonhosted.org/packages/source/t/testfixtures/testfixtures-9.1.0.tar.gz _eclasses_=distutils-r1 776bbaa25e9fa0dc9ac6f039ca37f701 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multibuild 83db098a835f71feb71761f72a694aa2 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pypi d2befa41d10011e03e2158e065d5d6da python-r1 0e15b2ab9cfc87d7474678201d6bca38 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da -_md5_=ad0507f49bf9694ba3d1592723e4a101 +_md5_=57b4a7f3c807e0866397a01fc408b092 diff --git a/metadata/md5-cache/dev-python/testfixtures-9.2.0 b/metadata/md5-cache/dev-python/testfixtures-9.2.0 index 2b18f4cfc018..33af523b3f4c 100644 --- a/metadata/md5-cache/dev-python/testfixtures-9.2.0 +++ b/metadata/md5-cache/dev-python/testfixtures-9.2.0 @@ -5,7 +5,7 @@ EAPI=8 HOMEPAGE=https://pypi.org/project/testfixtures/ https://github.com/Simplistix/testfixtures/ INHERIT=distutils-r1 pypi IUSE=test python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv ~sparc x86 +KEYWORDS=amd64 arm arm64 ~loong ppc ppc64 ~riscv ~sparc x86 LICENSE=MIT RDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://files.pythonhosted.org/packages/source/t/testfixtures/testfixtures-9.2.0.tar.gz _eclasses_=distutils-r1 776bbaa25e9fa0dc9ac6f039ca37f701 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multibuild 83db098a835f71feb71761f72a694aa2 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pypi d2befa41d10011e03e2158e065d5d6da python-r1 0e15b2ab9cfc87d7474678201d6bca38 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da -_md5_=ad0507f49bf9694ba3d1592723e4a101 +_md5_=57b4a7f3c807e0866397a01fc408b092 diff --git a/metadata/md5-cache/dev-python/tifffile-2026.2.16 b/metadata/md5-cache/dev-python/tifffile-2026.2.16 new file mode 100644 index 000000000000..b4e17ac6580f --- /dev/null +++ b/metadata/md5-cache/dev-python/tifffile-2026.2.16 @@ -0,0 +1,16 @@ +BDEPEND=test? ( dev-python/defusedxml[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/fsspec-2021.5.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/lxml[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/xarray[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) test? ( >=dev-python/numpy-1.19.2[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-7.4.4[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest-xdist[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) >=dev-python/gpep517-16[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/setuptools-78.1.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Read and write TIFF files +EAPI=8 +HOMEPAGE=https://pypi.org/project/tifffile/ https://github.com/cgohlke/tifffile/ https://www.cgohlke.com/ +INHERIT=distutils-r1 +IUSE=test python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 +KEYWORDS=~amd64 ~arm64 ~x86 +LICENSE=BSD +RDEPEND=>=dev-python/numpy-1.19.2[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) +REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/cgohlke/tifffile/archive/v2026.2.16.tar.gz -> tifffile-2026.2.16.gh.tar.gz +_eclasses_=distutils-r1 776bbaa25e9fa0dc9ac6f039ca37f701 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multibuild 83db098a835f71feb71761f72a694aa2 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 0e15b2ab9cfc87d7474678201d6bca38 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_md5_=142f044038690258f4a0851208d109ce diff --git a/metadata/md5-cache/dev-python/tox-4.36.1 b/metadata/md5-cache/dev-python/tox-4.36.1 new file mode 100644 index 000000000000..8318a9b56ece --- /dev/null +++ b/metadata/md5-cache/dev-python/tox-4.36.1 @@ -0,0 +1,16 @@ +BDEPEND=dev-python/hatch-vcs[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] test? ( dev-python/build[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/distlib[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/psutil[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/re-assert[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] python_targets_python3_10? ( dev-python/time-machine[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) python_targets_python3_11? ( dev-python/time-machine[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) python_targets_python3_12? ( dev-python/time-machine[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) python_targets_python3_13? ( dev-python/time-machine[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) python_targets_python3_14? ( dev-python/time-machine[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) ) test? ( dev-python/cachetools[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/chardet[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/colorama[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/filelock[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/packaging[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/platformdirs[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pluggy[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pyproject-api[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/virtualenv[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-7.4.4[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest-mock[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest-rerunfailures[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest-timeout[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest-xdist[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) >=dev-python/gpep517-16[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/hatchling-1.27.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] verify-provenance? ( dev-python/pypi-attestations ) +DEFINED_PHASES=compile configure install prepare test unpack +DESCRIPTION=virtualenv-based automation of test activities +EAPI=8 +HOMEPAGE=https://tox.readthedocs.io/ https://github.com/tox-dev/tox/ https://pypi.org/project/tox/ +INHERIT=distutils-r1 pypi +IUSE=test python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 verify-provenance +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +LICENSE=MIT +RDEPEND=dev-python/cachetools[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/chardet[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/colorama[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/filelock[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/packaging[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/platformdirs[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pluggy[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pyproject-api[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/virtualenv[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) +REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://files.pythonhosted.org/packages/source/t/tox/tox-4.36.1.tar.gz verify-provenance? ( https://pypi.org/integrity/tox/v4.36.1/tox-4.36.1.tar.gz/provenance -> tox-4.36.1.tar.gz.provenance ) +_eclasses_=distutils-r1 776bbaa25e9fa0dc9ac6f039ca37f701 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multibuild 83db098a835f71feb71761f72a694aa2 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pypi d2befa41d10011e03e2158e065d5d6da python-r1 0e15b2ab9cfc87d7474678201d6bca38 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_md5_=0b9cae0ff336ae2f427e396111ba5f1d diff --git a/metadata/md5-cache/dev-python/typer-0.24.0 b/metadata/md5-cache/dev-python/typer-0.24.0 new file mode 100644 index 000000000000..550e61f7b2b3 --- /dev/null +++ b/metadata/md5-cache/dev-python/typer-0.24.0 @@ -0,0 +1,16 @@ +BDEPEND=test? ( dev-python/coverage[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) test? ( >=dev-python/annotated-doc-0.0.2[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/click-8.2.1[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/rich-12.3.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/shellingham-1.3.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] cli? ( !dev-lang/erlang ) >=dev-python/pytest-7.4.4[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest-xdist[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) >=dev-python/gpep517-16[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pdm-backend-2.4.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Build great CLIs. Easy to code. Based on Python type hints +EAPI=8 +HOMEPAGE=https://typer.tiangolo.com/ https://github.com/fastapi/typer/ https://pypi.org/project/typer/ +INHERIT=distutils-r1 shell-completion pypi +IUSE=cli test python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 +KEYWORDS=~amd64 ~arm ~arm64 +LICENSE=MIT +RDEPEND=>=dev-python/annotated-doc-0.0.2[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/click-8.2.1[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/rich-12.3.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/shellingham-1.3.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] cli? ( !dev-lang/erlang ) python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) +REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://files.pythonhosted.org/packages/source/t/typer/typer-0.24.0.tar.gz +_eclasses_=bash-completion-r1 767861f3744f589ee5291c1698b1c082 distutils-r1 776bbaa25e9fa0dc9ac6f039ca37f701 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multibuild 83db098a835f71feb71761f72a694aa2 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pypi d2befa41d10011e03e2158e065d5d6da python-r1 0e15b2ab9cfc87d7474678201d6bca38 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 shell-completion 0b655d0d825e157a5e99c463bddaac16 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_md5_=2042f8d33dc3da5097d0ec7caed382e8 diff --git a/metadata/md5-cache/dev-python/uv-0.10.3 b/metadata/md5-cache/dev-python/uv-0.10.3 new file mode 100644 index 000000000000..9a515d6a1980 --- /dev/null +++ b/metadata/md5-cache/dev-python/uv-0.10.3 @@ -0,0 +1,17 @@ +BDEPEND=virtual/pkgconfig test? ( dev-lang/python:3.9 dev-lang/python:3.10 dev-lang/python:3.11 dev-lang/python:3.12 dev-lang/python:3.13 !!~dev-python/uv-0.5.0 ) || ( >=dev-lang/rust-bin-1.91.0:* >=dev-lang/rust-1.91.0:* ) +DEFINED_PHASES=compile configure install prepare pretend setup test unpack +DEPEND=app-arch/bzip2:= app-arch/xz-utils:= app-arch/zstd:= +DESCRIPTION=A Python package installer and resolver, written in Rust +EAPI=8 +HOMEPAGE=https://github.com/astral-sh/uv/ https://pypi.org/project/uv/ +INHERIT=cargo check-reqs +IUSE=test debug +KEYWORDS=~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86 +LICENSE=|| ( Apache-2.0 MIT ) 0BSD Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD-2 BSD CC0-1.0 CDLA-Permissive-2.0 ISC MIT MPL-2.0 Unicode-3.0 Unicode-DFS-2016 ZLIB BZIP2 openssl +PROPERTIES=test_network +RDEPEND=app-arch/bzip2:= app-arch/xz-utils:= app-arch/zstd:= +RESTRICT=test +SLOT=0 +SRC_URI=https://github.com/astral-sh/uv/archive/0.10.3.tar.gz -> uv-0.10.3.gh.tar.gz https://github.com/gentoo-crate-dist/uv/releases/download/0.10.3/uv-0.10.3-crates.tar.xz +_eclasses_=cargo aeba1d272f6c2e000912e11d8cf626eb check-reqs 12ab9d3fc16bfe1f87c6fb652324b57c flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust dd082fc51cbae6f9afa90dd1668d71a9 rust-toolchain 76468983281b0a7fc167ca224f84ecfd toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_md5_=7c859acce3201357c875239991aa8463 diff --git a/metadata/md5-cache/dev-python/uv-build-0.10.3 b/metadata/md5-cache/dev-python/uv-build-0.10.3 new file mode 100644 index 000000000000..0a8e32aea5ff --- /dev/null +++ b/metadata/md5-cache/dev-python/uv-build-0.10.3 @@ -0,0 +1,16 @@ +BDEPEND=test? ( app-arch/unzip dev-python/build[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) >=dev-python/gpep517-16[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=PEP517 uv build backend +EAPI=8 +HOMEPAGE=https://github.com/astral-sh/uv/ https://pypi.org/project/uv-build/ +INHERIT=distutils-r1 pypi +IUSE=test python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 +KEYWORDS=~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86 +LICENSE=|| ( Apache-2.0 MIT ) +RDEPEND=>=dev-python/uv-0.10.3 python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) +REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://files.pythonhosted.org/packages/source/u/uv-build/uv_build-0.10.3.tar.gz +_eclasses_=distutils-r1 776bbaa25e9fa0dc9ac6f039ca37f701 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multibuild 83db098a835f71feb71761f72a694aa2 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pypi d2befa41d10011e03e2158e065d5d6da python-r1 0e15b2ab9cfc87d7474678201d6bca38 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_md5_=ec8244e88937961dc54637aeeb82f1a0 diff --git a/metadata/md5-cache/dev-python/uvicorn-0.38.0 b/metadata/md5-cache/dev-python/uvicorn-0.41.0 index a151211eb652..a903a5e81245 100644 --- a/metadata/md5-cache/dev-python/uvicorn-0.38.0 +++ b/metadata/md5-cache/dev-python/uvicorn-0.41.0 @@ -1,16 +1,16 @@ -BDEPEND=test? ( dev-python/a2wsgi[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/httptools-0.6.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/httpx-0.28[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/python-dotenv[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pyyaml[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/typing-extensions[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/websockets-10.4[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/wsproto[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] test-rust? ( dev-python/cryptography[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/trustme[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/watchfiles[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) ) test? ( >=dev-python/asgiref-3.4.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/click-7.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/h11-0.8[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-7.4.4[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest-rerunfailures[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest-xdist[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/anyio[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest-mock[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) >=dev-python/gpep517-16[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/hatchling-1.27.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] verify-provenance? ( dev-python/pypi-attestations ) +BDEPEND=test? ( dev-python/a2wsgi[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/httptools-0.6.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/httpx-0.28[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/python-dotenv[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pyyaml[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/typing-extensions[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/websockets-10.4[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/wsproto[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] test-rust? ( dev-python/cryptography[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/trustme[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/watchfiles-0.20[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) ) test? ( >=dev-python/asgiref-3.4.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/click-7.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/h11-0.8[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-7.4.4[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest-rerunfailures[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest-xdist[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/anyio[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest-mock[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) >=dev-python/gpep517-16[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/hatchling-1.27.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] verify-provenance? ( dev-python/pypi-attestations ) DEFINED_PHASES=compile configure install postinst prepare test unpack DESCRIPTION=Lightning-fast ASGI server implementation EAPI=8 HOMEPAGE=https://www.uvicorn.org/ https://github.com/Kludex/uvicorn/ https://pypi.org/project/uvicorn/ INHERIT=distutils-r1 optfeature pypi IUSE=test-rust test python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 verify-provenance -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 LICENSE=BSD RDEPEND=>=dev-python/asgiref-3.4.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/click-7.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/h11-0.8[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 ) RESTRICT=!test? ( test ) SLOT=0 -SRC_URI=https://files.pythonhosted.org/packages/source/u/uvicorn/uvicorn-0.38.0.tar.gz verify-provenance? ( https://pypi.org/integrity/uvicorn/v0.38.0/uvicorn-0.38.0.tar.gz/provenance -> uvicorn-0.38.0.tar.gz.provenance ) +SRC_URI=https://files.pythonhosted.org/packages/source/u/uvicorn/uvicorn-0.41.0.tar.gz verify-provenance? ( https://pypi.org/integrity/uvicorn/v0.41.0/uvicorn-0.41.0.tar.gz/provenance -> uvicorn-0.41.0.tar.gz.provenance ) _eclasses_=distutils-r1 776bbaa25e9fa0dc9ac6f039ca37f701 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multibuild 83db098a835f71feb71761f72a694aa2 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b optfeature 538bce96e5589935b57e178e8635f301 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pypi d2befa41d10011e03e2158e065d5d6da python-r1 0e15b2ab9cfc87d7474678201d6bca38 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da -_md5_=2be58cb54eb5d495511e4c2d980086c8 +_md5_=4c3721ef9fb59c76ccf380b035728a8a diff --git a/metadata/md5-cache/dev-python/virtualenv-20.37.0 b/metadata/md5-cache/dev-python/virtualenv-20.37.0 new file mode 100644 index 000000000000..6d9c1c3389e2 --- /dev/null +++ b/metadata/md5-cache/dev-python/virtualenv-20.37.0 @@ -0,0 +1,16 @@ +BDEPEND=dev-python/hatch-vcs[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] test? ( >=dev-python/distlib-0.3.7[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/filelock-3.24.2[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/platformdirs-3.9.1[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/ensurepip-pip >=dev-python/ensurepip-setuptools-70.1 dev-python/ensurepip-wheel python_targets_pypy3_11? ( dev-python/coverage[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pip-22.2.1[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-mock-3.6.1[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest-rerunfailures[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest-timeout[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest-xdist[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/setuptools-67.8[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/wheel[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/packaging-20.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) python_targets_python3_11? ( dev-python/coverage[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pip-22.2.1[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-mock-3.6.1[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest-rerunfailures[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest-timeout[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest-xdist[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/setuptools-67.8[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/wheel[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/packaging-20.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) python_targets_python3_12? ( dev-python/coverage[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pip-22.2.1[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-mock-3.6.1[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest-rerunfailures[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest-timeout[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest-xdist[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/setuptools-67.8[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/wheel[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/packaging-20.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) python_targets_python3_13? ( dev-python/coverage[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pip-22.2.1[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-mock-3.6.1[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest-rerunfailures[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest-timeout[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest-xdist[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/setuptools-67.8[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/wheel[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/packaging-20.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) python_targets_python3_14? ( dev-python/coverage[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pip-22.2.1[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/pytest-mock-3.6.1[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest-rerunfailures[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest-timeout[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/pytest-xdist[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/setuptools-67.8[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/wheel[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/packaging-20.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) python_targets_python3_11? ( dev-python/time-machine[python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) python_targets_python3_12? ( dev-python/time-machine[python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) python_targets_python3_13? ( dev-python/time-machine[python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) python_targets_python3_14? ( dev-python/time-machine[python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] ) python_targets_pypy3_11? ( >=dev-python/pytest-freezer-0.4.6[python_targets_pypy3_11(-)?] ) ) python_targets_pypy3_11? ( dev-lang/pypy:3.11= ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) >=dev-python/gpep517-16[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/hatchling-1.27.0[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] verify-provenance? ( dev-python/pypi-attestations ) +DEFINED_PHASES=compile configure install prepare test unpack +DESCRIPTION=Virtual Python Environment builder +EAPI=8 +HOMEPAGE=https://virtualenv.pypa.io/en/stable/ https://pypi.org/project/virtualenv/ https://github.com/pypa/virtualenv/ +INHERIT=distutils-r1 pypi +IUSE=test python_targets_pypy3_11 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 verify-provenance +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +LICENSE=MIT +RDEPEND=>=dev-python/distlib-0.3.7[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/filelock-3.24.2[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/platformdirs-3.9.1[python_targets_pypy3_11(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] dev-python/ensurepip-pip >=dev-python/ensurepip-setuptools-70.1 dev-python/ensurepip-wheel python_targets_pypy3_11? ( dev-lang/pypy:3.11= ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) +REQUIRED_USE=|| ( python_targets_pypy3_11 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://files.pythonhosted.org/packages/source/v/virtualenv/virtualenv-20.37.0.tar.gz verify-provenance? ( https://pypi.org/integrity/virtualenv/v20.37.0/virtualenv-20.37.0.tar.gz/provenance -> virtualenv-20.37.0.tar.gz.provenance ) +_eclasses_=distutils-r1 776bbaa25e9fa0dc9ac6f039ca37f701 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multibuild 83db098a835f71feb71761f72a694aa2 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pypi d2befa41d10011e03e2158e065d5d6da python-r1 0e15b2ab9cfc87d7474678201d6bca38 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_md5_=9c06c518c2a844e880f91f3694c69e6d diff --git a/metadata/md5-cache/dev-python/xxhash-3.5.0 b/metadata/md5-cache/dev-python/xxhash-3.5.0 deleted file mode 100644 index 717726d0fe84..000000000000 --- a/metadata/md5-cache/dev-python/xxhash-3.5.0 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=test? ( >=dev-libs/xxhash-0.8.0 ) python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) >=dev-python/gpep517-16[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/setuptools-78.1.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] -DEFINED_PHASES=compile configure install prepare test -DEPEND=>=dev-libs/xxhash-0.8.0 python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) -DESCRIPTION=Python binding for the xxHash library -EAPI=8 -HOMEPAGE=https://github.com/ifduyue/python-xxhash/ https://pypi.org/project/xxhash/ -INHERIT=distutils-r1 pypi -IUSE=test python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 debug -KEYWORDS=amd64 arm64 ~x86 -LICENSE=MIT -RDEPEND=>=dev-libs/xxhash-0.8.0 python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) -REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://files.pythonhosted.org/packages/source/x/xxhash/xxhash-3.5.0.tar.gz -_eclasses_=distutils-r1 776bbaa25e9fa0dc9ac6f039ca37f701 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multibuild 83db098a835f71feb71761f72a694aa2 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pypi d2befa41d10011e03e2158e065d5d6da python-r1 0e15b2ab9cfc87d7474678201d6bca38 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da -_md5_=30570f2ee8858dce1dfb9e6530f0d484 diff --git a/metadata/md5-cache/dev-python/xxhash-3.6.0 b/metadata/md5-cache/dev-python/xxhash-3.6.0 index 51c99bcbb3c1..7fbd3d4c561d 100644 --- a/metadata/md5-cache/dev-python/xxhash-3.6.0 +++ b/metadata/md5-cache/dev-python/xxhash-3.6.0 @@ -1,17 +1,17 @@ -BDEPEND=test? ( >=dev-libs/xxhash-0.8.0 ) python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) >=dev-python/gpep517-16[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/setuptools-78.1.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] -DEFINED_PHASES=compile configure install prepare test +BDEPEND=test? ( >=dev-libs/xxhash-0.8.0 ) python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) >=dev-python/gpep517-16[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] >=dev-python/setuptools-78.1.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] verify-provenance? ( dev-python/pypi-attestations ) +DEFINED_PHASES=compile configure install prepare test unpack DEPEND=>=dev-libs/xxhash-0.8.0 python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) DESCRIPTION=Python binding for the xxHash library EAPI=8 HOMEPAGE=https://github.com/ifduyue/python-xxhash/ https://pypi.org/project/xxhash/ INHERIT=distutils-r1 pypi -IUSE=test python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 debug -KEYWORDS=amd64 arm64 ~x86 +IUSE=test python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 debug verify-provenance +KEYWORDS=amd64 ~arm arm64 ~x86 LICENSE=MIT RDEPEND=>=dev-libs/xxhash-0.8.0 python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 ) RESTRICT=!test? ( test ) SLOT=0 -SRC_URI=https://files.pythonhosted.org/packages/source/x/xxhash/xxhash-3.6.0.tar.gz +SRC_URI=https://files.pythonhosted.org/packages/source/x/xxhash/xxhash-3.6.0.tar.gz verify-provenance? ( https://pypi.org/integrity/xxhash/v3.6.0/xxhash-3.6.0.tar.gz/provenance -> xxhash-3.6.0.tar.gz.provenance ) _eclasses_=distutils-r1 776bbaa25e9fa0dc9ac6f039ca37f701 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multibuild 83db098a835f71feb71761f72a694aa2 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pypi d2befa41d10011e03e2158e065d5d6da python-r1 0e15b2ab9cfc87d7474678201d6bca38 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da -_md5_=30570f2ee8858dce1dfb9e6530f0d484 +_md5_=e009acc62e9e017f321e1301a002bc66 diff --git a/metadata/md5-cache/dev-qt/qtgui-5.15.18 b/metadata/md5-cache/dev-qt/qtgui-5.15.18 deleted file mode 100644 index 43dcab3acd03..000000000000 --- a/metadata/md5-cache/dev-qt/qtgui-5.15.18 +++ /dev/null @@ -1,18 +0,0 @@ -BDEPEND=dev-lang/perl virtual/pkgconfig -DEFINED_PHASES=compile configure install postinst postrm prepare test -DEPEND=dev-libs/glib:2 =dev-qt/qtcore-5.15.18*:5= dev-util/gtk-update-icon-cache media-libs/fontconfig media-libs/freetype:2 media-libs/harfbuzz:= virtual/zlib:= accessibility? ( app-accessibility/at-spi2-core:2 ) dbus? ( =dev-qt/qtdbus-5.15.18* ) eglfs? ( media-libs/mesa[gbm(+)] x11-libs/libdrm ) evdev? ( sys-libs/mtdev ) jpeg? ( media-libs/libjpeg-turbo:= ) gles2-only? ( media-libs/libglvnd ) !gles2-only? ( media-libs/libglvnd[X] ) libinput? ( dev-libs/libinput:= x11-libs/libxkbcommon ) png? ( media-libs/libpng:= ) tslib? ( >=x11-libs/tslib-1.21 ) tuio? ( =dev-qt/qtnetwork-5.15.18* ) udev? ( virtual/libudev:= ) vnc? ( =dev-qt/qtnetwork-5.15.18* ) vulkan? ( dev-util/vulkan-headers ) X? ( x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libxcb:= x11-libs/libxkbcommon[X] x11-libs/xcb-util-image x11-libs/xcb-util-keysyms x11-libs/xcb-util-renderutil x11-libs/xcb-util-wm ) evdev? ( sys-kernel/linux-headers ) linuxfb? ( sys-kernel/linux-headers ) udev? ( sys-kernel/linux-headers ) X? ( x11-base/xorg-proto ) test? ( =dev-qt/qttest-5.15.18* ) -DESCRIPTION=The GUI module and platform plugins for the Qt5 framework -EAPI=8 -HOMEPAGE=https://www.qt.io/ https://invent.kde.org/qt/qt/qtbase https://community.kde.org/Qt5PatchCollection -INHERIT=qt5-build -IUSE=accessibility dbus egl eglfs evdev gles2-only ibus jpeg +libinput linuxfb +png tslib tuio +udev vnc vulkan wayland +X debug test -KEYWORDS=amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv x86 -LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 -PDEPEND=ibus? ( app-i18n/ibus ) wayland? ( =dev-qt/qtwayland-5.15.18* ) -RDEPEND=dev-libs/glib:2 =dev-qt/qtcore-5.15.18*:5= dev-util/gtk-update-icon-cache media-libs/fontconfig media-libs/freetype:2 media-libs/harfbuzz:= virtual/zlib:= accessibility? ( app-accessibility/at-spi2-core:2 ) dbus? ( =dev-qt/qtdbus-5.15.18* ) eglfs? ( media-libs/mesa[gbm(+)] x11-libs/libdrm ) evdev? ( sys-libs/mtdev ) jpeg? ( media-libs/libjpeg-turbo:= ) gles2-only? ( media-libs/libglvnd ) !gles2-only? ( media-libs/libglvnd[X] ) libinput? ( dev-libs/libinput:= x11-libs/libxkbcommon ) png? ( media-libs/libpng:= ) tslib? ( >=x11-libs/tslib-1.21 ) tuio? ( =dev-qt/qtnetwork-5.15.18* ) udev? ( virtual/libudev:= ) vnc? ( =dev-qt/qtnetwork-5.15.18* ) vulkan? ( dev-util/vulkan-headers ) X? ( x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libxcb:= x11-libs/libxkbcommon[X] x11-libs/xcb-util-image x11-libs/xcb-util-keysyms x11-libs/xcb-util-renderutil x11-libs/xcb-util-wm ) -REQUIRED_USE=|| ( eglfs linuxfb vnc wayland X ) accessibility? ( dbus X ) eglfs? ( egl ) ibus? ( dbus ) libinput? ( udev ) X? ( gles2-only? ( egl ) ) -RESTRICT=test -SLOT=5/5.15.18 -SRC_URI=https://download.qt.io/archive/qt/5.15/5.15.18/submodules/qtbase-everywhere-opensource-src-5.15.18.tar.xz https://dev.gentoo.org/~asturm/distfiles/qtbase-5.15.18-gentoo-kde-1.tar.xz https://dev.gentoo.org/~asturm/distfiles/qtbase-5.15-gentoo-patchset-6.tar.xz -_eclasses_=estack c61c368a76fdf3a82fdf8dbaebea3804 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 qt5-build 504d804fd213f9fbf7994f53e54be133 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da virtualx 9741d451eb64ea8bb9faee90d68a9b68 -_md5_=f1029fbcefdafc34dc8f2e340fdaa449 diff --git a/metadata/md5-cache/dev-qt/qtgui-5.15.18-r1 b/metadata/md5-cache/dev-qt/qtgui-5.15.18-r1 new file mode 100644 index 000000000000..d18741aa7b7f --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtgui-5.15.18-r1 @@ -0,0 +1,18 @@ +BDEPEND=dev-lang/perl virtual/pkgconfig +DEFINED_PHASES=compile configure install postinst postrm prepare test +DEPEND=dev-libs/glib:2 dev-libs/md4c =dev-qt/qtcore-5.15.18*:5= dev-util/gtk-update-icon-cache media-libs/fontconfig media-libs/freetype:2 media-libs/harfbuzz:= virtual/zlib:= accessibility? ( app-accessibility/at-spi2-core:2 ) dbus? ( =dev-qt/qtdbus-5.15.18* ) eglfs? ( media-libs/mesa[gbm(+)] x11-libs/libdrm ) evdev? ( sys-libs/mtdev ) jpeg? ( media-libs/libjpeg-turbo:= ) gles2-only? ( media-libs/libglvnd ) !gles2-only? ( media-libs/libglvnd[X] ) libinput? ( dev-libs/libinput:= x11-libs/libxkbcommon ) png? ( media-libs/libpng:= ) tslib? ( >=x11-libs/tslib-1.21 ) tuio? ( =dev-qt/qtnetwork-5.15.18* ) udev? ( virtual/libudev:= ) vnc? ( =dev-qt/qtnetwork-5.15.18* ) vulkan? ( dev-util/vulkan-headers ) X? ( x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libxcb:= x11-libs/libxkbcommon[X] x11-libs/xcb-util-image x11-libs/xcb-util-keysyms x11-libs/xcb-util-renderutil x11-libs/xcb-util-wm ) evdev? ( sys-kernel/linux-headers ) linuxfb? ( sys-kernel/linux-headers ) udev? ( sys-kernel/linux-headers ) X? ( x11-base/xorg-proto ) test? ( =dev-qt/qttest-5.15.18* ) +DESCRIPTION=The GUI module and platform plugins for the Qt5 framework +EAPI=8 +HOMEPAGE=https://www.qt.io/ https://invent.kde.org/qt/qt/qtbase https://community.kde.org/Qt5PatchCollection +INHERIT=qt5-build +IUSE=accessibility dbus egl eglfs evdev gles2-only ibus jpeg +libinput linuxfb +png tslib tuio +udev vnc vulkan wayland +X debug test +KEYWORDS=amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv x86 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +PDEPEND=ibus? ( app-i18n/ibus ) wayland? ( =dev-qt/qtwayland-5.15.18* ) +RDEPEND=dev-libs/glib:2 dev-libs/md4c =dev-qt/qtcore-5.15.18*:5= dev-util/gtk-update-icon-cache media-libs/fontconfig media-libs/freetype:2 media-libs/harfbuzz:= virtual/zlib:= accessibility? ( app-accessibility/at-spi2-core:2 ) dbus? ( =dev-qt/qtdbus-5.15.18* ) eglfs? ( media-libs/mesa[gbm(+)] x11-libs/libdrm ) evdev? ( sys-libs/mtdev ) jpeg? ( media-libs/libjpeg-turbo:= ) gles2-only? ( media-libs/libglvnd ) !gles2-only? ( media-libs/libglvnd[X] ) libinput? ( dev-libs/libinput:= x11-libs/libxkbcommon ) png? ( media-libs/libpng:= ) tslib? ( >=x11-libs/tslib-1.21 ) tuio? ( =dev-qt/qtnetwork-5.15.18* ) udev? ( virtual/libudev:= ) vnc? ( =dev-qt/qtnetwork-5.15.18* ) vulkan? ( dev-util/vulkan-headers ) X? ( x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libxcb:= x11-libs/libxkbcommon[X] x11-libs/xcb-util-image x11-libs/xcb-util-keysyms x11-libs/xcb-util-renderutil x11-libs/xcb-util-wm ) +REQUIRED_USE=|| ( eglfs linuxfb vnc wayland X ) accessibility? ( dbus X ) eglfs? ( egl ) ibus? ( dbus ) libinput? ( udev ) X? ( gles2-only? ( egl ) ) +RESTRICT=test +SLOT=5/5.15.18 +SRC_URI=https://download.qt.io/archive/qt/5.15/5.15.18/submodules/qtbase-everywhere-opensource-src-5.15.18.tar.xz https://dev.gentoo.org/~asturm/distfiles/qtbase-5.15.18-gentoo-kde-1.tar.xz https://dev.gentoo.org/~asturm/distfiles/qtbase-5.15-gentoo-patchset-6.tar.xz +_eclasses_=estack c61c368a76fdf3a82fdf8dbaebea3804 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 qt5-build 504d804fd213f9fbf7994f53e54be133 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da virtualx 9741d451eb64ea8bb9faee90d68a9b68 +_md5_=6510d3e730eff2fe275204a3cedde23b diff --git a/metadata/md5-cache/dev-util/cargo-nextest-0.9.122 b/metadata/md5-cache/dev-util/cargo-nextest-0.9.122 index 21ea8573a34c..c5cb75ae05ed 100644 --- a/metadata/md5-cache/dev-util/cargo-nextest-0.9.122 +++ b/metadata/md5-cache/dev-util/cargo-nextest-0.9.122 @@ -6,10 +6,10 @@ EAPI=8 HOMEPAGE=https://nexte.st/ INHERIT=cargo IUSE=debug -KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~x86 +KEYWORDS=amd64 ~arm arm64 ~ppc64 ~x86 LICENSE=|| ( Apache-2.0 MIT ) Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD Boost-1.0 CDLA-Permissive-2.0 ISC MIT MPL-2.0 Unicode-3.0 Unicode-DFS-2016 WTFPL-2 ZLIB RDEPEND=>=app-arch/zstd-1.5.7:= SLOT=0 SRC_URI=https://github.com/nextest-rs/nextest/archive/refs/tags/cargo-nextest-0.9.122.tar.gz https://github.com/gentoo-crate-dist/nextest/releases/download/cargo-nextest-0.9.122/nextest-cargo-nextest-0.9.122-crates.tar.xz _eclasses_=cargo aeba1d272f6c2e000912e11d8cf626eb flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust dd082fc51cbae6f9afa90dd1668d71a9 rust-toolchain 76468983281b0a7fc167ca224f84ecfd toolchain-funcs 7e440a20ac11dece04e3334622e6e5da -_md5_=453f90d4a82c55b33ecb84c40b78a23d +_md5_=863fe43b5a689d62057f9ab95eac3a44 diff --git a/metadata/md5-cache/dev-util/debugedit-5.2-r1 b/metadata/md5-cache/dev-util/debugedit-5.2-r1 index a49da3c90179..3ee34a77716b 100644 --- a/metadata/md5-cache/dev-util/debugedit-5.2-r1 +++ b/metadata/md5-cache/dev-util/debugedit-5.2-r1 @@ -6,11 +6,11 @@ EAPI=8 HOMEPAGE=https://sourceware.org/debugedit/ INHERIT=multiprocessing optfeature verify-sig toolchain-funcs IUSE=test verify-sig -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~sparc x86 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 LICENSE=GPL-3+ GPL-2+ LGPL-2+ RDEPEND=>=dev-libs/elfutils-0.176-r1:= >=dev-libs/xxhash-0.8:= elibc_musl? ( >=sys-libs/error-standalone-2.0 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://sourceware.org/ftp/debugedit/5.2/debugedit-5.2.tar.xz verify-sig? ( https://sourceware.org/ftp/debugedit/5.2/debugedit-5.2.tar.xz.sig ) _eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd multiprocessing 1e32df7deee68372153dca65f4a7c21f optfeature 538bce96e5589935b57e178e8635f301 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da verify-sig ece4c893b6bd62eacbc4d25958e857f8 -_md5_=65b9c02f27c089ecfbad705ca5a827c4 +_md5_=439da73734e10e1b611ee612b915e4c7 diff --git a/metadata/md5-cache/dev-util/maturin-1.11.5 b/metadata/md5-cache/dev-util/maturin-1.12.2 index a055eb72ff88..cd93ce5fdb52 100644 --- a/metadata/md5-cache/dev-util/maturin-1.11.5 +++ b/metadata/md5-cache/dev-util/maturin-1.12.2 @@ -12,6 +12,6 @@ RDEPEND=app-arch/xz-utils app-arch/zstd:= ssl? ( !libressl? ( dev-libs/openssl:= REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 ) RESTRICT=!test? ( test ) SLOT=0 -SRC_URI=https://github.com/PyO3/maturin/archive/refs/tags/v1.11.5.tar.gz -> maturin-1.11.5.gh.tar.gz https://dev.gentoo.org/~ionen/distfiles/maturin-1.11.5-vendor.tar.xz +SRC_URI=https://github.com/PyO3/maturin/archive/refs/tags/v1.12.2.tar.gz -> maturin-1.12.2.gh.tar.gz https://dev.gentoo.org/~ionen/distfiles/maturin-1.12.2-vendor.tar.xz _eclasses_=bash-completion-r1 767861f3744f589ee5291c1698b1c082 cargo aeba1d272f6c2e000912e11d8cf626eb distutils-r1 776bbaa25e9fa0dc9ac6f039ca37f701 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multibuild 83db098a835f71feb71761f72a694aa2 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 0e15b2ab9cfc87d7474678201d6bca38 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 rust-toolchain 76468983281b0a7fc167ca224f84ecfd shell-completion 0b655d0d825e157a5e99c463bddaac16 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da _md5_=73b72fc3bfc0977fd93d78f05a114d20 diff --git a/metadata/md5-cache/dev-util/perf-6.16 b/metadata/md5-cache/dev-util/perf-6.16 deleted file mode 100644 index 94c31a3865c2..000000000000 --- a/metadata/md5-cache/dev-util/perf-6.16 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) >=app-arch/tar-1.34-r2 dev-python/setuptools[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?] app-alternatives/yacc app-alternatives/lex sys-apps/which virtual/pkgconfig doc? ( app-text/asciidoc app-text/sgml-common app-text/xmlto sys-process/time ) -DEFINED_PHASES=compile install prepare pretend setup test unpack -DEPEND=babeltrace? ( dev-util/babeltrace:0/1 ) bpf? ( dev-libs/libbpf dev-util/bpftool dev-util/pahole llvm_slot_18? ( llvm-core/clang:18= llvm-core/llvm:18= ) llvm_slot_19? ( llvm-core/clang:19= llvm-core/llvm:19= ) llvm_slot_20? ( llvm-core/clang:20= llvm-core/llvm:20= ) ) caps? ( sys-libs/libcap ) capstone? ( dev-libs/capstone ) crypt? ( dev-libs/openssl:= ) gtk? ( x11-libs/gtk+:2 ) java? ( virtual/jre:* ) libpfm? ( dev-libs/libpfm:= ) libtraceevent? ( dev-libs/libtraceevent ) libtracefs? ( dev-libs/libtracefs ) lzma? ( app-arch/xz-utils ) numa? ( sys-process/numactl ) perl? ( dev-lang/perl:= ) python? ( python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) ) slang? ( sys-libs/slang ) systemtap? ( dev-debug/systemtap ) tcmalloc? ( dev-util/google-perftools ) unwind? ( sys-libs/libunwind:= ) app-arch/zstd:= dev-libs/elfutils sys-libs/binutils-libs:= virtual/zlib:= virtual/libcrypt >=sys-kernel/linux-headers-5.10 java? ( virtual/jdk ) -DESCRIPTION=Userland tools for Linux Performance Counters -EAPI=8 -HOMEPAGE=https://perfwiki.github.io/main/ -INHERIT=bash-completion-r1 estack flag-o-matic linux-info llvm-r1 toolchain-funcs python-r1 -IUSE=abi_mips_o32 abi_mips_n32 abi_mips_n64 babeltrace capstone big-endian bpf caps crypt debug +doc gtk java libpfm +libtraceevent +libtracefs lzma numa perl +python +slang systemtap tcmalloc unwind +llvm_slot_20 llvm_slot_18 llvm_slot_19 python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86 -LICENSE=GPL-2 -RDEPEND=babeltrace? ( dev-util/babeltrace:0/1 ) bpf? ( dev-libs/libbpf dev-util/bpftool dev-util/pahole llvm_slot_18? ( llvm-core/clang:18= llvm-core/llvm:18= ) llvm_slot_19? ( llvm-core/clang:19= llvm-core/llvm:19= ) llvm_slot_20? ( llvm-core/clang:20= llvm-core/llvm:20= ) ) caps? ( sys-libs/libcap ) capstone? ( dev-libs/capstone ) crypt? ( dev-libs/openssl:= ) gtk? ( x11-libs/gtk+:2 ) java? ( virtual/jre:* ) libpfm? ( dev-libs/libpfm:= ) libtraceevent? ( dev-libs/libtraceevent ) libtracefs? ( dev-libs/libtracefs ) lzma? ( app-arch/xz-utils ) numa? ( sys-process/numactl ) perl? ( dev-lang/perl:= ) python? ( python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) ) slang? ( sys-libs/slang ) systemtap? ( dev-debug/systemtap ) tcmalloc? ( dev-util/google-perftools ) unwind? ( sys-libs/libunwind:= ) app-arch/zstd:= dev-libs/elfutils sys-libs/binutils-libs:= virtual/zlib:= virtual/libcrypt -REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 ) ^^ ( llvm_slot_18 llvm_slot_19 llvm_slot_20 ) -SLOT=0 -SRC_URI=https://www.kernel.org/pub/linux/kernel/v6.x/linux-6.16.tar.xz -_eclasses_=bash-completion-r1 767861f3744f589ee5291c1698b1c082 estack c61c368a76fdf3a82fdf8dbaebea3804 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 linux-info efd923656513c879204fec6638eadee5 llvm-r1 59c52dab9ddf3ca54e79003177507e97 llvm-utils e7edb4086e31c8537574b263d899f826 multibuild 83db098a835f71feb71761f72a694aa2 multiprocessing 1e32df7deee68372153dca65f4a7c21f out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 0e15b2ab9cfc87d7474678201d6bca38 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da -_md5_=f1391667cfe8ac7663f078105c664808 diff --git a/metadata/md5-cache/dev-util/perf-6.16-r1 b/metadata/md5-cache/dev-util/perf-6.16-r1 deleted file mode 100644 index a95292a11d93..000000000000 --- a/metadata/md5-cache/dev-util/perf-6.16-r1 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=python_single_target_python3_10? ( dev-lang/python:3.10 ) python_single_target_python3_11? ( dev-lang/python:3.11 ) python_single_target_python3_12? ( dev-lang/python:3.12 ) python_single_target_python3_13? ( dev-lang/python:3.13 ) python_single_target_python3_14? ( dev-lang/python:3.14 ) >=app-arch/tar-1.34-r2 python_single_target_python3_10? ( dev-python/setuptools[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/setuptools[python_targets_python3_11(-)] ) python_single_target_python3_12? ( dev-python/setuptools[python_targets_python3_12(-)] ) python_single_target_python3_13? ( dev-python/setuptools[python_targets_python3_13(-)] ) python_single_target_python3_14? ( dev-python/setuptools[python_targets_python3_14(-)] ) app-alternatives/yacc app-alternatives/lex sys-apps/which virtual/pkgconfig app-text/asciidoc app-text/sgml-common app-text/xmlto sys-process/time -DEFINED_PHASES=compile install prepare setup test unpack -DEPEND=babeltrace? ( dev-util/babeltrace:0/1 ) bpf? ( dev-libs/libbpf dev-util/bpftool dev-util/pahole llvm_slot_18? ( llvm-core/clang:18= llvm-core/llvm:18= ) llvm_slot_19? ( llvm-core/clang:19= llvm-core/llvm:19= ) llvm_slot_20? ( llvm-core/clang:20= llvm-core/llvm:20= ) llvm_slot_21? ( llvm-core/clang:21= llvm-core/llvm:21= ) ) caps? ( sys-libs/libcap ) capstone? ( dev-libs/capstone ) crypt? ( dev-libs/openssl:= ) gtk? ( x11-libs/gtk+:2 ) java? ( virtual/jre:* ) libpfm? ( dev-libs/libpfm:= ) libtraceevent? ( dev-libs/libtraceevent ) libtracefs? ( dev-libs/libtracefs ) lzma? ( app-arch/xz-utils ) numa? ( sys-process/numactl ) perl? ( dev-lang/perl:= ) python? ( python_single_target_python3_10? ( dev-lang/python:3.10 ) python_single_target_python3_11? ( dev-lang/python:3.11 ) python_single_target_python3_12? ( dev-lang/python:3.12 ) python_single_target_python3_13? ( dev-lang/python:3.13 ) python_single_target_python3_14? ( dev-lang/python:3.14 ) ) slang? ( sys-libs/slang ) systemtap? ( dev-debug/systemtap ) tcmalloc? ( dev-util/google-perftools ) unwind? ( sys-libs/libunwind:= ) app-arch/zstd:= dev-libs/elfutils sys-libs/binutils-libs:= virtual/zlib:= virtual/libcrypt >=sys-kernel/linux-headers-5.10 java? ( virtual/jdk ) -DESCRIPTION=Userland tools for Linux Performance Counters -EAPI=8 -HOMEPAGE=https://perfwiki.github.io/main/ -INHERIT=bash-completion-r1 estack flag-o-matic linux-info llvm-r1 toolchain-funcs python-single-r1 -IUSE=abi_mips_o32 abi_mips_n32 abi_mips_n64 babeltrace capstone big-endian bpf caps crypt debug gtk java libpfm +libtraceevent +libtracefs lzma numa perl +python +slang systemtap tcmalloc unwind +llvm_slot_21 llvm_slot_18 llvm_slot_19 llvm_slot_20 python_single_target_python3_10 python_single_target_python3_11 python_single_target_python3_12 python_single_target_python3_13 python_single_target_python3_14 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86 -LICENSE=GPL-2 -RDEPEND=babeltrace? ( dev-util/babeltrace:0/1 ) bpf? ( dev-libs/libbpf dev-util/bpftool dev-util/pahole llvm_slot_18? ( llvm-core/clang:18= llvm-core/llvm:18= ) llvm_slot_19? ( llvm-core/clang:19= llvm-core/llvm:19= ) llvm_slot_20? ( llvm-core/clang:20= llvm-core/llvm:20= ) llvm_slot_21? ( llvm-core/clang:21= llvm-core/llvm:21= ) ) caps? ( sys-libs/libcap ) capstone? ( dev-libs/capstone ) crypt? ( dev-libs/openssl:= ) gtk? ( x11-libs/gtk+:2 ) java? ( virtual/jre:* ) libpfm? ( dev-libs/libpfm:= ) libtraceevent? ( dev-libs/libtraceevent ) libtracefs? ( dev-libs/libtracefs ) lzma? ( app-arch/xz-utils ) numa? ( sys-process/numactl ) perl? ( dev-lang/perl:= ) python? ( python_single_target_python3_10? ( dev-lang/python:3.10 ) python_single_target_python3_11? ( dev-lang/python:3.11 ) python_single_target_python3_12? ( dev-lang/python:3.12 ) python_single_target_python3_13? ( dev-lang/python:3.13 ) python_single_target_python3_14? ( dev-lang/python:3.14 ) ) slang? ( sys-libs/slang ) systemtap? ( dev-debug/systemtap ) tcmalloc? ( dev-util/google-perftools ) unwind? ( sys-libs/libunwind:= ) app-arch/zstd:= dev-libs/elfutils sys-libs/binutils-libs:= virtual/zlib:= virtual/libcrypt -REQUIRED_USE=^^ ( python_single_target_python3_10 python_single_target_python3_11 python_single_target_python3_12 python_single_target_python3_13 python_single_target_python3_14 ) ^^ ( llvm_slot_18 llvm_slot_19 llvm_slot_20 llvm_slot_21 ) -SLOT=0 -SRC_URI=https://www.kernel.org/pub/linux/kernel/v6.x/linux-6.16.tar.xz -_eclasses_=bash-completion-r1 767861f3744f589ee5291c1698b1c082 estack c61c368a76fdf3a82fdf8dbaebea3804 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 linux-info efd923656513c879204fec6638eadee5 llvm-r1 59c52dab9ddf3ca54e79003177507e97 llvm-utils e7edb4086e31c8537574b263d899f826 multiprocessing 1e32df7deee68372153dca65f4a7c21f python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da -_md5_=410a20e7a9300ebabb66397fe132751d diff --git a/metadata/md5-cache/dev-util/perf-6.17 b/metadata/md5-cache/dev-util/perf-6.17 deleted file mode 100644 index 21ec00fe6c7d..000000000000 --- a/metadata/md5-cache/dev-util/perf-6.17 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=python_single_target_python3_10? ( dev-lang/python:3.10 ) python_single_target_python3_11? ( dev-lang/python:3.11 ) python_single_target_python3_12? ( dev-lang/python:3.12 ) python_single_target_python3_13? ( dev-lang/python:3.13 ) python_single_target_python3_14? ( dev-lang/python:3.14 ) >=app-arch/tar-1.34-r2 python_single_target_python3_10? ( dev-python/setuptools[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/setuptools[python_targets_python3_11(-)] ) python_single_target_python3_12? ( dev-python/setuptools[python_targets_python3_12(-)] ) python_single_target_python3_13? ( dev-python/setuptools[python_targets_python3_13(-)] ) python_single_target_python3_14? ( dev-python/setuptools[python_targets_python3_14(-)] ) app-alternatives/yacc app-alternatives/lex sys-apps/which virtual/pkgconfig app-text/asciidoc app-text/sgml-common app-text/xmlto sys-process/time -DEFINED_PHASES=compile install prepare setup test unpack -DEPEND=babeltrace? ( dev-util/babeltrace:0/1 ) bpf? ( dev-libs/libbpf dev-util/bpftool dev-util/pahole llvm_slot_18? ( llvm-core/clang:18= llvm-core/llvm:18= ) llvm_slot_19? ( llvm-core/clang:19= llvm-core/llvm:19= ) llvm_slot_20? ( llvm-core/clang:20= llvm-core/llvm:20= ) llvm_slot_21? ( llvm-core/clang:21= llvm-core/llvm:21= ) ) caps? ( sys-libs/libcap ) capstone? ( dev-libs/capstone ) crypt? ( dev-libs/openssl:= ) gtk? ( x11-libs/gtk+:2 ) java? ( virtual/jre:* ) libpfm? ( dev-libs/libpfm:= ) libtraceevent? ( dev-libs/libtraceevent ) libtracefs? ( dev-libs/libtracefs ) lzma? ( app-arch/xz-utils ) numa? ( sys-process/numactl ) perl? ( dev-lang/perl:= ) python? ( python_single_target_python3_10? ( dev-lang/python:3.10 ) python_single_target_python3_11? ( dev-lang/python:3.11 ) python_single_target_python3_12? ( dev-lang/python:3.12 ) python_single_target_python3_13? ( dev-lang/python:3.13 ) python_single_target_python3_14? ( dev-lang/python:3.14 ) ) slang? ( sys-libs/slang ) systemtap? ( dev-debug/systemtap ) tcmalloc? ( dev-util/google-perftools ) unwind? ( sys-libs/libunwind:= ) app-arch/zstd:= dev-libs/elfutils sys-libs/binutils-libs:= virtual/zlib:= virtual/libcrypt >=sys-kernel/linux-headers-5.10 java? ( virtual/jdk ) -DESCRIPTION=Userland tools for Linux Performance Counters -EAPI=8 -HOMEPAGE=https://perfwiki.github.io/main/ -INHERIT=bash-completion-r1 estack flag-o-matic linux-info llvm-r1 toolchain-funcs python-single-r1 -IUSE=abi_mips_o32 abi_mips_n32 abi_mips_n64 babeltrace capstone big-endian bpf caps crypt debug gtk java libpfm +libtraceevent +libtracefs lzma numa perl +python +slang systemtap tcmalloc unwind +llvm_slot_21 llvm_slot_18 llvm_slot_19 llvm_slot_20 python_single_target_python3_10 python_single_target_python3_11 python_single_target_python3_12 python_single_target_python3_13 python_single_target_python3_14 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86 -LICENSE=GPL-2 -RDEPEND=babeltrace? ( dev-util/babeltrace:0/1 ) bpf? ( dev-libs/libbpf dev-util/bpftool dev-util/pahole llvm_slot_18? ( llvm-core/clang:18= llvm-core/llvm:18= ) llvm_slot_19? ( llvm-core/clang:19= llvm-core/llvm:19= ) llvm_slot_20? ( llvm-core/clang:20= llvm-core/llvm:20= ) llvm_slot_21? ( llvm-core/clang:21= llvm-core/llvm:21= ) ) caps? ( sys-libs/libcap ) capstone? ( dev-libs/capstone ) crypt? ( dev-libs/openssl:= ) gtk? ( x11-libs/gtk+:2 ) java? ( virtual/jre:* ) libpfm? ( dev-libs/libpfm:= ) libtraceevent? ( dev-libs/libtraceevent ) libtracefs? ( dev-libs/libtracefs ) lzma? ( app-arch/xz-utils ) numa? ( sys-process/numactl ) perl? ( dev-lang/perl:= ) python? ( python_single_target_python3_10? ( dev-lang/python:3.10 ) python_single_target_python3_11? ( dev-lang/python:3.11 ) python_single_target_python3_12? ( dev-lang/python:3.12 ) python_single_target_python3_13? ( dev-lang/python:3.13 ) python_single_target_python3_14? ( dev-lang/python:3.14 ) ) slang? ( sys-libs/slang ) systemtap? ( dev-debug/systemtap ) tcmalloc? ( dev-util/google-perftools ) unwind? ( sys-libs/libunwind:= ) app-arch/zstd:= dev-libs/elfutils sys-libs/binutils-libs:= virtual/zlib:= virtual/libcrypt -REQUIRED_USE=^^ ( python_single_target_python3_10 python_single_target_python3_11 python_single_target_python3_12 python_single_target_python3_13 python_single_target_python3_14 ) ^^ ( llvm_slot_18 llvm_slot_19 llvm_slot_20 llvm_slot_21 ) -SLOT=0 -SRC_URI=https://www.kernel.org/pub/linux/kernel/v6.x/linux-6.17.tar.xz -_eclasses_=bash-completion-r1 767861f3744f589ee5291c1698b1c082 estack c61c368a76fdf3a82fdf8dbaebea3804 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 linux-info efd923656513c879204fec6638eadee5 llvm-r1 59c52dab9ddf3ca54e79003177507e97 llvm-utils e7edb4086e31c8537574b263d899f826 multiprocessing 1e32df7deee68372153dca65f4a7c21f python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da -_md5_=410a20e7a9300ebabb66397fe132751d diff --git a/metadata/md5-cache/dev-util/perf-6.18-r1 b/metadata/md5-cache/dev-util/perf-6.19 index 468675b90d7a..c814ab9d3f14 100644 --- a/metadata/md5-cache/dev-util/perf-6.18-r1 +++ b/metadata/md5-cache/dev-util/perf-6.19 @@ -11,6 +11,6 @@ LICENSE=GPL-2 RDEPEND=babeltrace? ( dev-util/babeltrace:0/1 ) bpf? ( dev-libs/libbpf dev-util/bpftool dev-util/pahole llvm_slot_18? ( llvm-core/clang:18= llvm-core/llvm:18= ) llvm_slot_19? ( llvm-core/clang:19= llvm-core/llvm:19= ) llvm_slot_20? ( llvm-core/clang:20= llvm-core/llvm:20= ) llvm_slot_21? ( llvm-core/clang:21= llvm-core/llvm:21= ) ) caps? ( sys-libs/libcap ) capstone? ( dev-libs/capstone ) crypt? ( dev-libs/openssl:= ) gtk? ( x11-libs/gtk+:2 ) java? ( virtual/jre:* ) libpfm? ( dev-libs/libpfm:= ) libtraceevent? ( dev-libs/libtraceevent ) libtracefs? ( dev-libs/libtracefs ) lzma? ( app-arch/xz-utils ) numa? ( sys-process/numactl ) perl? ( dev-lang/perl:= ) python? ( python_single_target_python3_10? ( dev-lang/python:3.10 ) python_single_target_python3_11? ( dev-lang/python:3.11 ) python_single_target_python3_12? ( dev-lang/python:3.12 ) python_single_target_python3_13? ( dev-lang/python:3.13 ) python_single_target_python3_14? ( dev-lang/python:3.14 ) ) slang? ( sys-libs/slang ) systemtap? ( dev-debug/systemtap ) tcmalloc? ( dev-util/google-perftools ) unwind? ( sys-libs/libunwind:= ) app-arch/zstd:= dev-libs/elfutils virtual/zlib:= virtual/libcrypt REQUIRED_USE=^^ ( python_single_target_python3_10 python_single_target_python3_11 python_single_target_python3_12 python_single_target_python3_13 python_single_target_python3_14 ) ^^ ( llvm_slot_18 llvm_slot_19 llvm_slot_20 llvm_slot_21 ) SLOT=0 -SRC_URI=https://www.kernel.org/pub/linux/kernel/v6.x/linux-6.18.tar.xz +SRC_URI=https://www.kernel.org/pub/linux/kernel/v6.x/linux-6.19.tar.xz _eclasses_=bash-completion-r1 767861f3744f589ee5291c1698b1c082 estack c61c368a76fdf3a82fdf8dbaebea3804 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 linux-info efd923656513c879204fec6638eadee5 llvm-r1 59c52dab9ddf3ca54e79003177507e97 llvm-utils e7edb4086e31c8537574b263d899f826 multiprocessing 1e32df7deee68372153dca65f4a7c21f python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da -_md5_=ef32b66a9ac9e85c111de8f5d2c25925 +_md5_=020eec25555248821a98848bcaa6fe92 diff --git a/metadata/md5-cache/dev-util/premake-5.0.0_beta7 b/metadata/md5-cache/dev-util/premake-5.0.0_beta7 index 906a7300a93e..74b79a8dacee 100644 --- a/metadata/md5-cache/dev-util/premake-5.0.0_beta7 +++ b/metadata/md5-cache/dev-util/premake-5.0.0_beta7 @@ -5,11 +5,11 @@ EAPI=8 HOMEPAGE=https://premake.github.io INHERIT=lua-single toolchain-funcs IUSE=lua_single_target_luajit lua_single_target_lua5-1 lua_single_target_lua5-3 lua_single_target_lua5-4 -KEYWORDS=~amd64 ~arm64 ~ppc ~ppc64 ~x86 +KEYWORDS=amd64 ~arm64 ~ppc ~ppc64 x86 LICENSE=BSD RDEPEND=lua_single_target_luajit? ( dev-lang/luajit:= ) lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) lua_single_target_lua5-3? ( dev-lang/lua:5.3 ) lua_single_target_lua5-4? ( dev-lang/lua:5.4 ) lua_single_target_luajit? ( dev-lua/luasocket[lua_targets_luajit(-)] ) lua_single_target_lua5-1? ( dev-lua/luasocket[lua_targets_lua5-1(-)] ) lua_single_target_lua5-3? ( dev-lua/luasocket[lua_targets_lua5-3(-)] ) lua_single_target_lua5-4? ( dev-lua/luasocket[lua_targets_lua5-4(-)] ) dev-libs/libzip net-misc/curl sys-apps/util-linux REQUIRED_USE=^^ ( lua_single_target_luajit lua_single_target_lua5-1 lua_single_target_lua5-3 lua_single_target_lua5-4 ) SLOT=5 SRC_URI=https://github.com/premake/premake-core/archive/v5.0.0-beta7.tar.gz -> premake-5.0.0_beta7.tar.gz _eclasses_=lua-single 75fe955a36b18e199213c8739eaebdbb lua-utils 7c89927eda6f21c4c48136247077ab37 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da -_md5_=b470502b75e25b436b3fdc81939caa7d +_md5_=a16f3cf82f6f0d8e8b3a96b3f168ec2f diff --git a/metadata/md5-cache/dev-util/pwntools-4.15.0 b/metadata/md5-cache/dev-util/pwntools-4.15.0 index 39d03b4ac1bd..3b1de1f6687b 100644 --- a/metadata/md5-cache/dev-util/pwntools-4.15.0 +++ b/metadata/md5-cache/dev-util/pwntools-4.15.0 @@ -12,4 +12,4 @@ REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_tar SLOT=0 SRC_URI=https://github.com/Gallopsled/pwntools/archive/4.15.0.tar.gz -> pwntools-4.15.0.gh.tar.gz _eclasses_=bash-completion-r1 767861f3744f589ee5291c1698b1c082 distutils-r1 776bbaa25e9fa0dc9ac6f039ca37f701 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multibuild 83db098a835f71feb71761f72a694aa2 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 0e15b2ab9cfc87d7474678201d6bca38 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 shell-completion 0b655d0d825e157a5e99c463bddaac16 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da -_md5_=321ade0e832abad2ec0ac9f16ca6722b +_md5_=d174fffe0c2a7601fcb5abdbbe94fb48 diff --git a/metadata/md5-cache/dev-util/pwntools-9999 b/metadata/md5-cache/dev-util/pwntools-9999 index dba8fbbd2d04..1c36f917d966 100644 --- a/metadata/md5-cache/dev-util/pwntools-9999 +++ b/metadata/md5-cache/dev-util/pwntools-9999 @@ -11,4 +11,4 @@ RDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_pytho REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 ) SLOT=0 _eclasses_=bash-completion-r1 767861f3744f589ee5291c1698b1c082 distutils-r1 776bbaa25e9fa0dc9ac6f039ca37f701 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 git-r3 875eb471682d3e1f18da124be97dcc81 multibuild 83db098a835f71feb71761f72a694aa2 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 0e15b2ab9cfc87d7474678201d6bca38 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 shell-completion 0b655d0d825e157a5e99c463bddaac16 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da -_md5_=8b39e2017e9669b6cd97104a29d1f6d7 +_md5_=f54fb4472dd92b3bda41accdd34f9f8a diff --git a/metadata/md5-cache/dev-util/ruff-0.15.1 b/metadata/md5-cache/dev-util/ruff-0.15.1 new file mode 100644 index 000000000000..9f96ed3dc581 --- /dev/null +++ b/metadata/md5-cache/dev-util/ruff-0.15.1 @@ -0,0 +1,15 @@ +BDEPEND=|| ( >=dev-lang/rust-bin-1.91.0:* >=dev-lang/rust-1.91.0:* ) +DEFINED_PHASES=compile configure install prepare setup test unpack +DEPEND=!elibc_musl? ( !elibc_Darwin? ( !elibc_bionic? ( dev-libs/jemalloc:= ) ) ) app-arch/zstd +DESCRIPTION=An extremely fast Python linter, written in Rust +EAPI=8 +HOMEPAGE=https://docs.astral.sh/ruff/ https://github.com/astral-sh/ruff +INHERIT=shell-completion cargo +IUSE=debug +KEYWORDS=~amd64 ~arm64 ~loong ~riscv +LICENSE=MIT Apache-2.0 BSD CC0-1.0 ISC MIT MPL-2.0 PSF-2 Unicode-3.0 Unicode-DFS-2016 WTFPL-2 ZLIB +RDEPEND=!elibc_musl? ( !elibc_Darwin? ( !elibc_bionic? ( dev-libs/jemalloc:= ) ) ) app-arch/zstd +SLOT=0 +SRC_URI=https://github.com/astral-sh/lsp-types/archive/3512a9f33eadc5402cfab1b8f7340824c8ca1439.tar.gz -> lsp-types-3512a9f33eadc5402cfab1b8f7340824c8ca1439.gh.tar.gz https://github.com/salsa-rs/salsa/archive/53421c2fff87426fa0bb51cab06632b87646de13.tar.gz -> salsa-53421c2fff87426fa0bb51cab06632b87646de13.gh.tar.gz https://github.com/salsa-rs/salsa/archive/53421c2fff87426fa0bb51cab06632b87646de13.tar.gz -> salsa-53421c2fff87426fa0bb51cab06632b87646de13.gh.tar.gz https://github.com/salsa-rs/salsa/archive/53421c2fff87426fa0bb51cab06632b87646de13.tar.gz -> salsa-53421c2fff87426fa0bb51cab06632b87646de13.gh.tar.gz https://github.com/astral-sh/ruff/archive/refs/tags/0.15.1.tar.gz -> ruff-0.15.1.gh.tar.gz https://github.com/gentoo-crate-dist/ruff/releases/download/0.15.1/ruff-0.15.1-crates.tar.xz +_eclasses_=bash-completion-r1 767861f3744f589ee5291c1698b1c082 cargo aeba1d272f6c2e000912e11d8cf626eb flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust dd082fc51cbae6f9afa90dd1668d71a9 rust-toolchain 76468983281b0a7fc167ca224f84ecfd shell-completion 0b655d0d825e157a5e99c463bddaac16 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_md5_=5556ed7704598d4f5ddf03a9c6a129ea diff --git a/metadata/md5-cache/dev-vcs/fossil-2.26 b/metadata/md5-cache/dev-vcs/fossil-2.26 index d6a437af5245..8e2fd8d20ef4 100644 --- a/metadata/md5-cache/dev-vcs/fossil-2.26 +++ b/metadata/md5-cache/dev-vcs/fossil-2.26 @@ -6,11 +6,11 @@ EAPI=8 HOMEPAGE=https://www.fossil-scm.org/home INHERIT=toolchain-funcs IUSE=debug fusefs json system-sqlite +ssl static tcl tcl-stubs tcl-private-stubs test th1-docs th1-hooks -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 +KEYWORDS=amd64 arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 LICENSE=BSD-2 RDEPEND=virtual/zlib:= || ( sys-libs/readline:0 dev-libs/libedit ) system-sqlite? ( >=dev-db/sqlite-3.38.0:3 ) ssl? ( dev-libs/openssl:0= ) tcl? ( dev-lang/tcl:0= ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://fossil-scm.org/home/tarball/1205ec86cb5508e94b90698db2900997fe5c9db62429c67ac6fdc03d59aa2782/fossil-src-2.26.tar.gz -> fossil-src-2.26-r1.tar.gz _eclasses_=toolchain-funcs 7e440a20ac11dece04e3334622e6e5da -_md5_=f5eb45744a00e94856281e2af24cc6d8 +_md5_=fc873284cd73ded796ec2e0df403881b diff --git a/metadata/md5-cache/games-misc/doge-3.9.1 b/metadata/md5-cache/games-misc/doge-3.9.1 new file mode 100644 index 000000000000..de3f1ddd52d0 --- /dev/null +++ b/metadata/md5-cache/games-misc/doge-3.9.1 @@ -0,0 +1,16 @@ +BDEPEND=test? ( python_single_target_python3_10? ( dev-python/fullmoon[python_targets_python3_10(-)] dev-python/python-dateutil[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/fullmoon[python_targets_python3_11(-)] dev-python/python-dateutil[python_targets_python3_11(-)] ) python_single_target_python3_12? ( dev-python/fullmoon[python_targets_python3_12(-)] dev-python/python-dateutil[python_targets_python3_12(-)] ) python_single_target_python3_13? ( dev-python/fullmoon[python_targets_python3_13(-)] dev-python/python-dateutil[python_targets_python3_13(-)] ) python_single_target_python3_14? ( dev-python/fullmoon[python_targets_python3_14(-)] dev-python/python-dateutil[python_targets_python3_14(-)] ) sys-process/procps python_single_target_python3_10? ( >=dev-python/pytest-7.4.4[python_targets_python3_10(-)] ) python_single_target_python3_11? ( >=dev-python/pytest-7.4.4[python_targets_python3_11(-)] ) python_single_target_python3_12? ( >=dev-python/pytest-7.4.4[python_targets_python3_12(-)] ) python_single_target_python3_13? ( >=dev-python/pytest-7.4.4[python_targets_python3_13(-)] ) python_single_target_python3_14? ( >=dev-python/pytest-7.4.4[python_targets_python3_14(-)] ) ) python_single_target_python3_10? ( dev-lang/python:3.10 ) python_single_target_python3_11? ( dev-lang/python:3.11 ) python_single_target_python3_12? ( dev-lang/python:3.12 ) python_single_target_python3_13? ( dev-lang/python:3.13 ) python_single_target_python3_14? ( dev-lang/python:3.14 ) python_single_target_python3_10? ( >=dev-python/gpep517-16[python_targets_python3_10(-)] >=dev-python/hatchling-1.27.0[python_targets_python3_10(-)] ) python_single_target_python3_11? ( >=dev-python/gpep517-16[python_targets_python3_11(-)] >=dev-python/hatchling-1.27.0[python_targets_python3_11(-)] ) python_single_target_python3_12? ( >=dev-python/gpep517-16[python_targets_python3_12(-)] >=dev-python/hatchling-1.27.0[python_targets_python3_12(-)] ) python_single_target_python3_13? ( >=dev-python/gpep517-16[python_targets_python3_13(-)] >=dev-python/hatchling-1.27.0[python_targets_python3_13(-)] ) python_single_target_python3_14? ( >=dev-python/gpep517-16[python_targets_python3_14(-)] >=dev-python/hatchling-1.27.0[python_targets_python3_14(-)] ) +DEFINED_PHASES=compile configure install prepare setup test +DESCRIPTION=wow very terminal doge +EAPI=8 +HOMEPAGE=https://github.com/Olivia5k/doge/ +INHERIT=distutils-r1 pypi +IUSE=test python_single_target_python3_10 python_single_target_python3_11 python_single_target_python3_12 python_single_target_python3_13 python_single_target_python3_14 +KEYWORDS=~amd64 ~x86 +LICENSE=MIT +RDEPEND=python_single_target_python3_10? ( dev-python/fullmoon[python_targets_python3_10(-)] dev-python/python-dateutil[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/fullmoon[python_targets_python3_11(-)] dev-python/python-dateutil[python_targets_python3_11(-)] ) python_single_target_python3_12? ( dev-python/fullmoon[python_targets_python3_12(-)] dev-python/python-dateutil[python_targets_python3_12(-)] ) python_single_target_python3_13? ( dev-python/fullmoon[python_targets_python3_13(-)] dev-python/python-dateutil[python_targets_python3_13(-)] ) python_single_target_python3_14? ( dev-python/fullmoon[python_targets_python3_14(-)] dev-python/python-dateutil[python_targets_python3_14(-)] ) sys-process/procps python_single_target_python3_10? ( dev-lang/python:3.10 ) python_single_target_python3_11? ( dev-lang/python:3.11 ) python_single_target_python3_12? ( dev-lang/python:3.12 ) python_single_target_python3_13? ( dev-lang/python:3.13 ) python_single_target_python3_14? ( dev-lang/python:3.14 ) +REQUIRED_USE=^^ ( python_single_target_python3_10 python_single_target_python3_11 python_single_target_python3_12 python_single_target_python3_13 python_single_target_python3_14 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://files.pythonhosted.org/packages/source/d/doge/doge-3.9.1.tar.gz +_eclasses_=distutils-r1 776bbaa25e9fa0dc9ac6f039ca37f701 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multibuild 83db098a835f71feb71761f72a694aa2 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b out-of-source-utils 8e5093bd27b7f541a1913271f25d633a pypi d2befa41d10011e03e2158e065d5d6da python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_md5_=629cfb8a349419f68748e7e9d5357c2c diff --git a/metadata/md5-cache/gui-apps/deskflow-1.21.2 b/metadata/md5-cache/gui-apps/deskflow-1.21.2 deleted file mode 100644 index bad1ad81e0d8..000000000000 --- a/metadata/md5-cache/gui-apps/deskflow-1.21.2 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=virtual/pkgconfig gui? ( dev-qt/qttools:6[linguist] ) app-alternatives/ninja >=dev-build/cmake-3.28.5 test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) -DEFINED_PHASES=compile configure install postinst postrm preinst prepare test -DEPEND=dev-cpp/tomlplusplus dev-libs/glib:2 dev-libs/libei dev-libs/libportal:= dev-libs/openssl:0= dev-qt/qtbase:6[dbus,network,xml] x11-libs/libxkbcommon x11-libs/libxkbfile gui? ( dev-qt/qtbase:6[gui,widgets] ) x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXext x11-libs/libXi x11-libs/libXinerama x11-libs/libXrandr x11-libs/libXtst dev-cpp/cli11 x11-base/xorg-proto test? ( dev-cpp/gtest ) -DESCRIPTION=Share a mouse and keyboard between computers (FOSS version of Synergy) -EAPI=8 -HOMEPAGE=https://github.com/deskflow/deskflow -IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info -INHERIT=cmake virtualx xdg -IUSE=gui test test -KEYWORDS=amd64 -LICENSE=GPL-2 -RDEPEND=dev-cpp/tomlplusplus dev-libs/glib:2 dev-libs/libei dev-libs/libportal:= dev-libs/openssl:0= dev-qt/qtbase:6[dbus,network,xml] x11-libs/libxkbcommon x11-libs/libxkbfile gui? ( dev-qt/qtbase:6[gui,widgets] ) x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXext x11-libs/libXi x11-libs/libXinerama x11-libs/libXrandr x11-libs/libXtst -RESTRICT=!test? ( test ) !test? ( test ) -SLOT=0 -SRC_URI=https://github.com/deskflow/deskflow/archive/refs/tags/v1.21.2.tar.gz -> deskflow-1.21.2.tar.gz -_eclasses_=cmake 5691a3da96eac88f135cf3596b8c2c3c flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b toolchain-funcs 7e440a20ac11dece04e3334622e6e5da virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=12d69fb3f13717c1071a033e85b01cf1 diff --git a/metadata/md5-cache/gui-apps/deskflow-1.26.0 b/metadata/md5-cache/gui-apps/deskflow-1.26.0 new file mode 100644 index 000000000000..b834e46c7e95 --- /dev/null +++ b/metadata/md5-cache/gui-apps/deskflow-1.26.0 @@ -0,0 +1,17 @@ +BDEPEND=virtual/pkgconfig dev-qt/qttools:6[linguist] app-alternatives/ninja >=dev-build/cmake-3.28.5 test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) +DEFINED_PHASES=compile configure install postinst postrm preinst prepare test +DEPEND=dev-libs/glib:2 >=dev-libs/libei-0.99.1 dev-libs/libportal:= dev-libs/openssl:0= dev-qt/qtbase:6[dbus,gui,network,widgets,xml] x11-libs/libxkbcommon X? ( x11-libs/libxkbfile x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXext x11-libs/libXi x11-libs/libXinerama x11-libs/libXrandr x11-libs/libXtst ) test? ( dev-cpp/gtest ) X? ( x11-base/xorg-proto ) +DESCRIPTION=Share a mouse and keyboard between computers (FOSS version of Synergy) +EAPI=8 +HOMEPAGE=https://github.com/deskflow/deskflow +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=cmake virtualx xdg +IUSE=test X test +KEYWORDS=~amd64 +LICENSE=GPL-2 +RDEPEND=dev-libs/glib:2 >=dev-libs/libei-0.99.1 dev-libs/libportal:= dev-libs/openssl:0= dev-qt/qtbase:6[dbus,gui,network,widgets,xml] x11-libs/libxkbcommon X? ( x11-libs/libxkbfile x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXext x11-libs/libXi x11-libs/libXinerama x11-libs/libXrandr x11-libs/libXtst ) +RESTRICT=!test? ( test ) !test? ( test ) +SLOT=0 +SRC_URI=https://github.com/deskflow/deskflow/archive/refs/tags/v1.26.0.tar.gz -> deskflow-1.26.0.tar.gz +_eclasses_=cmake 5691a3da96eac88f135cf3596b8c2c3c flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b toolchain-funcs 7e440a20ac11dece04e3334622e6e5da virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_md5_=03dd981cabd5ae6bcf468f89aaf08425 diff --git a/metadata/md5-cache/gui-libs/qt-color-widgets-3.0.0 b/metadata/md5-cache/gui-libs/qt-color-widgets-3.0.0 new file mode 100644 index 000000000000..9d87e5ecf176 --- /dev/null +++ b/metadata/md5-cache/gui-libs/qt-color-widgets-3.0.0 @@ -0,0 +1,15 @@ +BDEPEND=app-alternatives/ninja >=dev-build/cmake-3.28.5 +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-qt/qtbase:6[widgets] designer? ( dev-qt/qttools:6[designer] ) +DESCRIPTION=Qt (C++) widgets to manage color inputs +EAPI=8 +HOMEPAGE=https://gitlab.com/mattbas/Qt-Color-Widgets/ +INHERIT=cmake +IUSE=designer +KEYWORDS=~amd64 ~arm64 ~x86 +LICENSE=LGPL-3+ +RDEPEND=dev-qt/qtbase:6[widgets] designer? ( dev-qt/qttools:6[designer] ) +SLOT=0/2 +SRC_URI=https://gitlab.com/mattbas/Qt-Color-Widgets/-/archive/3.0.0/Qt-Color-Widgets-3.0.0.tar.bz2 +_eclasses_=cmake 5691a3da96eac88f135cf3596b8c2c3c flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b toolchain-funcs 7e440a20ac11dece04e3334622e6e5da xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_md5_=ead6800dcb09e87d4ccc34213c54cb21 diff --git a/metadata/md5-cache/gui-wm/gamescope-3.16.19 b/metadata/md5-cache/gui-wm/gamescope-3.16.20 index 3aa9998c158f..a442955c1889 100644 --- a/metadata/md5-cache/gui-wm/gamescope-3.16.19 +++ b/metadata/md5-cache/gui-wm/gamescope-3.16.20 @@ -11,6 +11,6 @@ KEYWORDS=~amd64 LICENSE=BSD-2 RDEPEND=dev-lang/luajit:2= >=dev-libs/libinput-1.14.0:= >=dev-libs/wayland-1.23.1 gui-libs/libdecor <media-libs/libdisplay-info-0.4:= media-libs/vulkan-loader sys-apps/hwdata sys-libs/libcap >=x11-libs/libdrm-2.4.109 x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXcursor x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXi >=x11-libs/libxkbcommon-1.8.0 x11-libs/libXmu x11-libs/libXrender x11-libs/libXres x11-libs/libXtst x11-libs/libXxf86vm >=x11-libs/pixman-0.43.0 virtual/libudev avif? ( >=media-libs/libavif-1.0.0:= ) libei? ( dev-libs/libei ) pipewire? ( >=media-video/pipewire-0.3:= ) sdl? ( media-libs/libsdl2[video,vulkan] ) systemd? ( sys-apps/systemd:= ) wsi-layer? ( x11-libs/libxcb ) media-libs/libglvnd >=media-libs/mesa-24.1.0_rc1[opengl] sys-auth/seatd:= x11-base/xwayland x11-libs/libxcb:= x11-libs/xcb-util-wm SLOT=0 -SRC_URI=https://github.com/ValveSoftware/gamescope/archive/refs/tags/3.16.19.tar.gz -> gamescope-3.16.19.tar.gz https://gitlab.freedesktop.org/emersion/libliftoff/-/releases/v0.5.0/downloads/libliftoff-0.5.0.tar.gz https://github.com/Joshua-Ashton/reshade/archive/696b14cd6006ae9ca174e6164450619ace043283.tar.gz -> reshade-696b14cd6006ae9ca174e6164450619ace043283.tar.gz https://github.com/Joshua-Ashton/vkroots/archive/5106d8a0df95de66cc58dc1ea37e69c99afc9540.tar.gz -> vkroots-5106d8a0df95de66cc58dc1ea37e69c99afc9540.tar.gz https://github.com/Joshua-Ashton/wlroots/archive/54e844748029d4874e14d0c086d50092c04c8899.tar.gz -> wlroots-54e844748029d4874e14d0c086d50092c04c8899.tar.gz +SRC_URI=https://github.com/ValveSoftware/gamescope/archive/refs/tags/3.16.20.tar.gz -> gamescope-3.16.20.tar.gz https://gitlab.freedesktop.org/emersion/libliftoff/-/releases/v0.5.0/downloads/libliftoff-0.5.0.tar.gz https://github.com/Joshua-Ashton/reshade/archive/696b14cd6006ae9ca174e6164450619ace043283.tar.gz -> reshade-696b14cd6006ae9ca174e6164450619ace043283.tar.gz https://github.com/Joshua-Ashton/vkroots/archive/5106d8a0df95de66cc58dc1ea37e69c99afc9540.tar.gz -> vkroots-5106d8a0df95de66cc58dc1ea37e69c99afc9540.tar.gz https://github.com/Joshua-Ashton/wlroots/archive/54e844748029d4874e14d0c086d50092c04c8899.tar.gz -> wlroots-54e844748029d4874e14d0c086d50092c04c8899.tar.gz _eclasses_=fcaps c94316d02a37fb5cbe79b7d41c729119 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 meson ee14b47f310c323b82e6655787cd65ed multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot b9348e4d36f160f6d2556bea5b59f99c toolchain-funcs 7e440a20ac11dece04e3334622e6e5da -_md5_=4bc50f268934547e8c091aff68932297 +_md5_=b3b9586ad82ac31e0287b93c2e83459a diff --git a/metadata/md5-cache/kde-frameworks/kguiaddons-6.23.0 b/metadata/md5-cache/kde-frameworks/kguiaddons-6.23.0 index 8e37fac80aab..3a62091837c8 100644 --- a/metadata/md5-cache/kde-frameworks/kguiaddons-6.23.0 +++ b/metadata/md5-cache/kde-frameworks/kguiaddons-6.23.0 @@ -1,6 +1,6 @@ BDEPEND=wayland? ( >=dev-qt/qtbase-6.10.1:6[wayland] dev-util/wayland-scanner ) app-alternatives/ninja >=dev-build/cmake-3.28.5 dev-libs/libpcre2:* >=kde-frameworks/extra-cmake-modules-6.23:* DEFINED_PHASES=compile configure info install nofetch postinst postrm preinst prepare test unpack -DEPEND=>=dev-qt/qtbase-6.10.1:6[dbus?,gui] >=dev-qt/qtdeclarative-6.10.1:6 wayland? ( dev-libs/wayland >=dev-qt/qtbase-6.10.1:6=[wayland] ) X? ( >=dev-qt/qtbase-6.10.1:6[X] x11-libs/libX11 ) wayland? ( >=dev-libs/plasma-wayland-protocols-1.15.0 >=dev-libs/wayland-protocols-1.39 ) X? ( x11-base/xorg-proto x11-libs/libxcb ) dev-qt/qtbase:6 +DEPEND=>=dev-qt/qtbase-6.10.1:6[gui] >=dev-qt/qtdeclarative-6.10.1:6 dbus? ( >=dev-qt/qtbase-6.10.1:6=[dbus] ) wayland? ( dev-libs/wayland >=dev-qt/qtbase-6.10.1:6=[wayland] ) X? ( >=dev-qt/qtbase-6.10.1:6[X] x11-libs/libX11 ) wayland? ( >=dev-libs/plasma-wayland-protocols-1.15.0 >=dev-libs/wayland-protocols-1.39 ) X? ( x11-base/xorg-proto x11-libs/libxcb ) dev-qt/qtbase:6 DESCRIPTION=Framework providing assorted high-level user interface components EAPI=8 HOMEPAGE=https://develop.kde.org/products/frameworks/ @@ -9,9 +9,9 @@ INHERIT=ecm frameworks.kde.org xdg IUSE=dbus wayland X debug test KEYWORDS=~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86 LICENSE=LGPL-2+ -RDEPEND=>=dev-qt/qtbase-6.10.1:6[dbus?,gui] >=dev-qt/qtdeclarative-6.10.1:6 wayland? ( dev-libs/wayland >=dev-qt/qtbase-6.10.1:6=[wayland] ) X? ( >=dev-qt/qtbase-6.10.1:6[X] x11-libs/libX11 ) !<kde-frameworks/kguiaddons-5.116.0-r2:5[-kf6compat(-)] >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 +RDEPEND=>=dev-qt/qtbase-6.10.1:6[gui] >=dev-qt/qtdeclarative-6.10.1:6 dbus? ( >=dev-qt/qtbase-6.10.1:6=[dbus] ) wayland? ( dev-libs/wayland >=dev-qt/qtbase-6.10.1:6=[wayland] ) X? ( >=dev-qt/qtbase-6.10.1:6[X] x11-libs/libX11 ) !<kde-frameworks/kguiaddons-5.116.0-r2:5[-kf6compat(-)] >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 RESTRICT=!test? ( test ) SLOT=6/6.23 SRC_URI=mirror://kde/stable/frameworks/6.23/kguiaddons-6.23.0.tar.xz _eclasses_=cmake 5691a3da96eac88f135cf3596b8c2c3c ecm a5537691c00fd7549c8b90300f679185 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 frameworks.kde.org c3e97d56f2422e7f729ed13f859352f1 kde.org 2eea56ed41440913be4caa3d255d2db3 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b toolchain-funcs 7e440a20ac11dece04e3334622e6e5da virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=1d0dba66210321bfadc09889f1048030 +_md5_=3cf6fea1f650f0ff3753e7748339c153 diff --git a/metadata/md5-cache/kde-misc/tellico-4.1.4 b/metadata/md5-cache/kde-misc/tellico-4.1.4 deleted file mode 100644 index 08d05ccd0a61..000000000000 --- a/metadata/md5-cache/kde-misc/tellico-4.1.4 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=sys-devel/gettext app-alternatives/ninja >=dev-build/cmake-3.28.5 handbook? ( >=kde-frameworks/kdoctools-6.9.0:6 ) dev-libs/libpcre2:* >=kde-frameworks/extra-cmake-modules-6.9.0:* -DEFINED_PHASES=compile configure info install nofetch postinst postrm preinst prepare test unpack -DEPEND=dev-libs/libxml2:= dev-libs/libxslt >=dev-qt/qtbase-6.7.2:6[dbus,gui,network,widgets,xml] >=dev-qt/qtcharts-6.7.2:6 >=dev-qt/qtwebengine-6.7.2:6[widgets] >=kde-frameworks/karchive-6.9.0:6 >=kde-frameworks/kcodecs-6.9.0:6 >=kde-frameworks/kcompletion-6.9.0:6 >=kde-frameworks/kconfig-6.9.0:6 >=kde-frameworks/kconfigwidgets-6.9.0:6 >=kde-frameworks/kcoreaddons-6.9.0:6 >=kde-frameworks/kcrash-6.9.0:6 >=kde-frameworks/kguiaddons-6.9.0:6 >=kde-frameworks/kiconthemes-6.9.0:6 >=kde-frameworks/kitemmodels-6.9.0:6 >=kde-frameworks/ki18n-6.9.0:6 >=kde-frameworks/kjobwidgets-6.9.0:6 >=kde-frameworks/kio-6.9.0:6 >=kde-frameworks/knewstuff-6.9.0:6 >=kde-frameworks/kparts-6.9.0:6 >=kde-frameworks/kservice-6.9.0:6 >=kde-frameworks/ktextwidgets-6.9.0:6 >=kde-frameworks/kwidgetsaddons-6.9.0:6 >=kde-frameworks/kxmlgui-6.9.0:6 >=kde-frameworks/solid-6.9.0:6 >=kde-frameworks/sonnet-6.9.0:6 bibtex? ( >=dev-perl/Text-BibTeX-0.780.0-r1 ) cddb? ( kde-apps/libkcddb:6 ) discid? ( dev-libs/libcdio:= ) pdf? ( app-text/poppler[qt6] ) scanner? ( kde-apps/libksane:6 ) semantic-desktop? ( >=kde-frameworks/kfilemetadata-6.9.0:6 ) taglib? ( >=media-libs/taglib-1.5:= ) v4l? ( >=media-libs/libv4l-0.8.3 ) xmp? ( >=media-libs/exempi-2:= ) yaz? ( >=dev-libs/yaz-2:0= ) dev-qt/qtbase:6 -DESCRIPTION=Collection manager based on KDE Frameworks -EAPI=8 -HOMEPAGE=https://tellico-project.org/ -IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info -INHERIT=ecm kde.org xdg -IUSE=bibtex cddb discid pdf scanner semantic-desktop taglib v4l xmp yaz debug +handbook test -KEYWORDS=amd64 ~arm64 -LICENSE=|| ( GPL-2 GPL-3 ) -RDEPEND=dev-libs/libxml2:= dev-libs/libxslt >=dev-qt/qtbase-6.7.2:6[dbus,gui,network,widgets,xml] >=dev-qt/qtcharts-6.7.2:6 >=dev-qt/qtwebengine-6.7.2:6[widgets] >=kde-frameworks/karchive-6.9.0:6 >=kde-frameworks/kcodecs-6.9.0:6 >=kde-frameworks/kcompletion-6.9.0:6 >=kde-frameworks/kconfig-6.9.0:6 >=kde-frameworks/kconfigwidgets-6.9.0:6 >=kde-frameworks/kcoreaddons-6.9.0:6 >=kde-frameworks/kcrash-6.9.0:6 >=kde-frameworks/kguiaddons-6.9.0:6 >=kde-frameworks/kiconthemes-6.9.0:6 >=kde-frameworks/kitemmodels-6.9.0:6 >=kde-frameworks/ki18n-6.9.0:6 >=kde-frameworks/kjobwidgets-6.9.0:6 >=kde-frameworks/kio-6.9.0:6 >=kde-frameworks/knewstuff-6.9.0:6 >=kde-frameworks/kparts-6.9.0:6 >=kde-frameworks/kservice-6.9.0:6 >=kde-frameworks/ktextwidgets-6.9.0:6 >=kde-frameworks/kwidgetsaddons-6.9.0:6 >=kde-frameworks/kxmlgui-6.9.0:6 >=kde-frameworks/solid-6.9.0:6 >=kde-frameworks/sonnet-6.9.0:6 bibtex? ( >=dev-perl/Text-BibTeX-0.780.0-r1 ) cddb? ( kde-apps/libkcddb:6 ) discid? ( dev-libs/libcdio:= ) pdf? ( app-text/poppler[qt6] ) scanner? ( kde-apps/libksane:6 ) semantic-desktop? ( >=kde-frameworks/kfilemetadata-6.9.0:6 ) taglib? ( >=media-libs/taglib-1.5:= ) v4l? ( >=media-libs/libv4l-0.8.3 ) xmp? ( >=media-libs/exempi-2:= ) yaz? ( >=dev-libs/yaz-2:0= ) !kde-misc/tellico:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 -RESTRICT=test !test? ( test ) -SLOT=0 -SRC_URI=https://tellico-project.org/files/tellico-4.1.4.tar.xz -_eclasses_=cmake 5691a3da96eac88f135cf3596b8c2c3c ecm a5537691c00fd7549c8b90300f679185 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 kde.org 2eea56ed41440913be4caa3d255d2db3 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b toolchain-funcs 7e440a20ac11dece04e3334622e6e5da virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=d0d1b7e1b7f114f92f629d9f012e50af diff --git a/metadata/md5-cache/kde-misc/tellico-4.2 b/metadata/md5-cache/kde-misc/tellico-4.2 new file mode 100644 index 000000000000..273892e46933 --- /dev/null +++ b/metadata/md5-cache/kde-misc/tellico-4.2 @@ -0,0 +1,17 @@ +BDEPEND=sys-devel/gettext app-alternatives/ninja >=dev-build/cmake-3.28.5 handbook? ( >=kde-frameworks/kdoctools-6.9.0:6 ) dev-libs/libpcre2:* >=kde-frameworks/extra-cmake-modules-6.9.0:* +DEFINED_PHASES=compile configure info install nofetch postinst postrm preinst prepare test unpack +DEPEND=dev-libs/libxml2:= dev-libs/libxslt >=dev-qt/qtbase-6.7.2:6[concurrent,dbus,gui,network,widgets,xml] >=dev-qt/qtcharts-6.7.2:6 >=dev-qt/qtwebengine-6.7.2:6[widgets] >=kde-frameworks/karchive-6.9.0:6 >=kde-frameworks/kcodecs-6.9.0:6 >=kde-frameworks/kcolorscheme-6.9.0:6 >=kde-frameworks/kcompletion-6.9.0:6 >=kde-frameworks/kconfig-6.9.0:6 >=kde-frameworks/kconfigwidgets-6.9.0:6 >=kde-frameworks/kcoreaddons-6.9.0:6 >=kde-frameworks/kcrash-6.9.0:6 >=kde-frameworks/kguiaddons-6.9.0:6 >=kde-frameworks/kiconthemes-6.9.0:6 >=kde-frameworks/kitemmodels-6.9.0:6 >=kde-frameworks/ki18n-6.9.0:6 >=kde-frameworks/kjobwidgets-6.9.0:6 >=kde-frameworks/kio-6.9.0:6 >=kde-frameworks/knewstuff-6.9.0:6 >=kde-frameworks/kparts-6.9.0:6 >=kde-frameworks/kservice-6.9.0:6 >=kde-frameworks/ktextwidgets-6.9.0:6 >=kde-frameworks/kwidgetsaddons-6.9.0:6 >=kde-frameworks/kxmlgui-6.9.0:6 >=kde-frameworks/solid-6.9.0:6 >=kde-frameworks/sonnet-6.9.0:6 bibtex? ( >=dev-perl/Text-BibTeX-0.780.0-r1 ) cddb? ( kde-apps/libkcddb:6 ) discid? ( dev-libs/libcdio:= ) pdf? ( app-text/poppler[qt6] ) scanner? ( kde-apps/libksane:6 ) semantic-desktop? ( >=kde-frameworks/kfilemetadata-6.9.0:6 ) taglib? ( >=media-libs/taglib-1.5:= ) v4l? ( >=media-libs/libv4l-0.8.3 ) xmp? ( >=media-libs/exempi-2:= ) yaz? ( >=dev-libs/yaz-2:0= ) dev-qt/qtbase:6 +DESCRIPTION=Collection manager based on KDE Frameworks +EAPI=8 +HOMEPAGE=https://tellico-project.org/ +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=ecm kde.org xdg +IUSE=bibtex cddb discid pdf scanner semantic-desktop taglib v4l xmp yaz debug +handbook test +KEYWORDS=~amd64 ~arm64 +LICENSE=|| ( GPL-2 GPL-3 ) +RDEPEND=dev-libs/libxml2:= dev-libs/libxslt >=dev-qt/qtbase-6.7.2:6[concurrent,dbus,gui,network,widgets,xml] >=dev-qt/qtcharts-6.7.2:6 >=dev-qt/qtwebengine-6.7.2:6[widgets] >=kde-frameworks/karchive-6.9.0:6 >=kde-frameworks/kcodecs-6.9.0:6 >=kde-frameworks/kcolorscheme-6.9.0:6 >=kde-frameworks/kcompletion-6.9.0:6 >=kde-frameworks/kconfig-6.9.0:6 >=kde-frameworks/kconfigwidgets-6.9.0:6 >=kde-frameworks/kcoreaddons-6.9.0:6 >=kde-frameworks/kcrash-6.9.0:6 >=kde-frameworks/kguiaddons-6.9.0:6 >=kde-frameworks/kiconthemes-6.9.0:6 >=kde-frameworks/kitemmodels-6.9.0:6 >=kde-frameworks/ki18n-6.9.0:6 >=kde-frameworks/kjobwidgets-6.9.0:6 >=kde-frameworks/kio-6.9.0:6 >=kde-frameworks/knewstuff-6.9.0:6 >=kde-frameworks/kparts-6.9.0:6 >=kde-frameworks/kservice-6.9.0:6 >=kde-frameworks/ktextwidgets-6.9.0:6 >=kde-frameworks/kwidgetsaddons-6.9.0:6 >=kde-frameworks/kxmlgui-6.9.0:6 >=kde-frameworks/solid-6.9.0:6 >=kde-frameworks/sonnet-6.9.0:6 bibtex? ( >=dev-perl/Text-BibTeX-0.780.0-r1 ) cddb? ( kde-apps/libkcddb:6 ) discid? ( dev-libs/libcdio:= ) pdf? ( app-text/poppler[qt6] ) scanner? ( kde-apps/libksane:6 ) semantic-desktop? ( >=kde-frameworks/kfilemetadata-6.9.0:6 ) taglib? ( >=media-libs/taglib-1.5:= ) v4l? ( >=media-libs/libv4l-0.8.3 ) xmp? ( >=media-libs/exempi-2:= ) yaz? ( >=dev-libs/yaz-2:0= ) !kde-misc/tellico:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 +RESTRICT=test !test? ( test ) +SLOT=0 +SRC_URI=https://tellico-project.org/files/tellico-4.2.tar.xz +_eclasses_=cmake 5691a3da96eac88f135cf3596b8c2c3c ecm a5537691c00fd7549c8b90300f679185 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 kde.org 2eea56ed41440913be4caa3d255d2db3 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b toolchain-funcs 7e440a20ac11dece04e3334622e6e5da virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_md5_=a98fdec1c6d2991bbb5b67b3d5cf69c1 diff --git a/metadata/md5-cache/mail-client/thunderbird-140.6.0 b/metadata/md5-cache/mail-client/thunderbird-140.6.0 deleted file mode 100644 index f997270c7fc6..000000000000 --- a/metadata/md5-cache/mail-client/thunderbird-140.6.0 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=|| ( dev-lang/python:3.14[ncurses,sqlite,ssl] dev-lang/python:3.13[ncurses,sqlite,ssl] dev-lang/python:3.12[ncurses,sqlite,ssl] dev-lang/python:3.11[ncurses,sqlite,ssl] ) llvm_slot_19? ( llvm-core/clang:19 llvm-core/llvm:19 clang? ( llvm-core/lld:19 pgo? ( llvm-runtimes/compiler-rt-sanitizers:19[profile] ) ) ) llvm_slot_20? ( llvm-core/clang:20 llvm-core/llvm:20 clang? ( llvm-core/lld:20 pgo? ( llvm-runtimes/compiler-rt-sanitizers:20[profile] ) ) ) llvm_slot_21? ( llvm-core/clang:21 llvm-core/llvm:21 clang? ( llvm-core/lld:21 pgo? ( llvm-runtimes/compiler-rt-sanitizers:21[profile] ) ) ) app-alternatives/awk app-arch/unzip app-arch/zip >=dev-util/cbindgen-0.27.0 net-libs/nodejs virtual/pkgconfig amd64? ( >=dev-lang/nasm-2.14 ) x86? ( >=dev-lang/nasm-2.14 ) pgo? ( X? ( sys-devel/gettext x11-base/xorg-server[xvfb] x11-apps/xhost ) !X? ( gui-wm/tinywl x11-misc/xkeyboard-config ) ) llvm_slot_19? ( || ( dev-lang/rust-bin:1.86.0[llvm_slot_19] dev-lang/rust:1.86.0[llvm_slot_19] dev-lang/rust-bin:1.85.1[llvm_slot_19] dev-lang/rust:1.85.1[llvm_slot_19] dev-lang/rust-bin:1.85.0[llvm_slot_19] dev-lang/rust:1.85.0[llvm_slot_19] dev-lang/rust-bin:1.84.1[llvm_slot_19] dev-lang/rust:1.84.1[llvm_slot_19] dev-lang/rust-bin:1.84.0[llvm_slot_19] dev-lang/rust:1.84.0[llvm_slot_19] dev-lang/rust-bin:1.83.0[llvm_slot_19] dev-lang/rust:1.83.0[llvm_slot_19] dev-lang/rust-bin:1.82.0[llvm_slot_19] dev-lang/rust:1.82.0[llvm_slot_19] ) ) llvm_slot_20? ( || ( dev-lang/rust-bin:1.90.0[llvm_slot_20] dev-lang/rust:1.90.0[llvm_slot_20] dev-lang/rust-bin:1.89.0[llvm_slot_20] dev-lang/rust:1.89.0[llvm_slot_20] dev-lang/rust-bin:1.88.0[llvm_slot_20] dev-lang/rust:1.88.0[llvm_slot_20] dev-lang/rust-bin:1.87.0[llvm_slot_20] dev-lang/rust:1.87.0[llvm_slot_20] ) ) llvm_slot_21? ( || ( dev-lang/rust-bin:1.94.0[llvm_slot_21] dev-lang/rust:1.94.0[llvm_slot_21] dev-lang/rust-bin:1.93.1[llvm_slot_21] dev-lang/rust:1.93.1[llvm_slot_21] dev-lang/rust-bin:1.93.0[llvm_slot_21] dev-lang/rust:1.93.0[llvm_slot_21] dev-lang/rust-bin:1.92.0[llvm_slot_21] dev-lang/rust:1.92.0[llvm_slot_21] dev-lang/rust-bin:1.91.0[llvm_slot_21] dev-lang/rust:1.91.0[llvm_slot_21] ) ) -DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend setup unpack -DEPEND=selinux? ( sec-policy/selinux-thunderbird ) !system-librnp? ( dev-libs/jsoncpp ) system-librnp? ( >=dev-util/librnp-0.17.1 ) >=app-accessibility/at-spi2-core-2.46.0:2 dev-libs/expat dev-libs/glib:2 dev-libs/libffi:= >=dev-libs/nss-3.112.2 >=dev-libs/nspr-4.36 media-libs/alsa-lib media-libs/fontconfig media-libs/freetype media-libs/mesa media-video/ffmpeg sys-apps/dbus virtual/zlib:= virtual/freedesktop-icon-theme x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/libdrm x11-libs/pango x11-libs/pixman jack? ( virtual/jack ) pulseaudio? ( || ( media-libs/libpulse >=media-sound/apulse-0.1.12-r4[sdk] ) ) libproxy? ( net-libs/libproxy ) selinux? ( sec-policy/selinux-mozilla ) sndio? ( >=media-sound/sndio-1.8.0-r1 ) system-av1? ( >=media-libs/dav1d-1.0.0:= >=media-libs/libaom-1.0.0:= ) system-harfbuzz? ( >=media-gfx/graphite2-1.3.13 >=media-libs/harfbuzz-2.8.1:0= ) system-icu? ( >=dev-libs/icu-76.1:= ) system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1:= ) system-libevent? ( >=dev-libs/libevent-2.1.12:0=[threads(+)] ) system-libvpx? ( >=media-libs/libvpx-1.8.2:0=[postproc] ) system-pipewire? ( >=media-video/pipewire-1.4.7-r2:= ) system-png? ( >=media-libs/libpng-1.6.45:0=[apng] ) system-webp? ( >=media-libs/libwebp-1.1.0:0= ) wayland? ( >=media-libs/libepoxy-1.5.10-r1 x11-libs/gtk+:3[wayland] ) wifi? ( kernel_linux? ( || ( net-misc/networkmanager net-misc/connman[networkmanager] ) ) ) X? ( virtual/opengl x11-libs/cairo[X] x11-libs/gtk+:3[X] x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrandr x11-libs/libxcb:= ) X? ( x11-base/xorg-proto x11-libs/libICE x11-libs/libSM ) -DESCRIPTION=Thunderbird Mail Client -EAPI=8 -HOMEPAGE=https://www.thunderbird.net/ -IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info -INHERIT=check-reqs desktop eapi9-ver flag-o-matic gnome2-utils linux-info llvm-r1 multiprocessing optfeature pax-utils python-any-r1 rust toolchain-funcs virtualx xdg -IUSE=+clang debug eme-free hardened hwaccel jack libproxy pgo pulseaudio selinux sndio +system-av1 +system-harfbuzz +system-icu +system-jpeg +system-libevent +system-libvpx system-pipewire system-png +system-webp wayland wifi +X +system-librnp 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_es-MX 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 +llvm_slot_21 llvm_slot_19 llvm_slot_20 -KEYWORDS=amd64 arm64 ~loong ~ppc64 ~x86 -LICENSE=MPL-2.0 GPL-2 LGPL-2.1 -RDEPEND=selinux? ( sec-policy/selinux-thunderbird ) !system-librnp? ( dev-libs/jsoncpp ) system-librnp? ( >=dev-util/librnp-0.17.1 ) >=app-accessibility/at-spi2-core-2.46.0:2 dev-libs/expat dev-libs/glib:2 dev-libs/libffi:= >=dev-libs/nss-3.112.2 >=dev-libs/nspr-4.36 media-libs/alsa-lib media-libs/fontconfig media-libs/freetype media-libs/mesa media-video/ffmpeg sys-apps/dbus virtual/zlib:= virtual/freedesktop-icon-theme x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/libdrm x11-libs/pango x11-libs/pixman jack? ( virtual/jack ) pulseaudio? ( || ( media-libs/libpulse >=media-sound/apulse-0.1.12-r4[sdk] ) ) libproxy? ( net-libs/libproxy ) selinux? ( sec-policy/selinux-mozilla ) sndio? ( >=media-sound/sndio-1.8.0-r1 ) system-av1? ( >=media-libs/dav1d-1.0.0:= >=media-libs/libaom-1.0.0:= ) system-harfbuzz? ( >=media-gfx/graphite2-1.3.13 >=media-libs/harfbuzz-2.8.1:0= ) system-icu? ( >=dev-libs/icu-76.1:= ) system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1:= ) system-libevent? ( >=dev-libs/libevent-2.1.12:0=[threads(+)] ) system-libvpx? ( >=media-libs/libvpx-1.8.2:0=[postproc] ) system-pipewire? ( >=media-video/pipewire-1.4.7-r2:= ) system-png? ( >=media-libs/libpng-1.6.45:0=[apng] ) system-webp? ( >=media-libs/libwebp-1.1.0:0= ) wayland? ( >=media-libs/libepoxy-1.5.10-r1 x11-libs/gtk+:3[wayland] ) wifi? ( kernel_linux? ( || ( net-misc/networkmanager net-misc/connman[networkmanager] ) ) ) X? ( virtual/opengl x11-libs/cairo[X] x11-libs/gtk+:3[X] x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrandr x11-libs/libxcb:= ) jack? ( virtual/jack ) -REQUIRED_USE=|| ( X wayland ) debug? ( !system-av1 ) ^^ ( llvm_slot_19 llvm_slot_20 llvm_slot_21 ) -SLOT=0/esr -SRC_URI=https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/source/thunderbird-140.6.0esr.source.tar.xz -> thunderbird-140.6.0esr.source.tar.xz https://dev.gentoo.org/~juippis/mozilla/patchsets/firefox-140esr-patches-04.tar.xz loong? ( https://dev.gentoo.org/~xen0n/distfiles/www-client/thunderbird/firefox-139-loong-patches-02.tar.xz ) l10n_af? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/af.xpi -> thunderbird-140.6.0esr-af.xpi ) l10n_ar? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/ar.xpi -> thunderbird-140.6.0esr-ar.xpi ) l10n_ast? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/ast.xpi -> thunderbird-140.6.0esr-ast.xpi ) l10n_be? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/be.xpi -> thunderbird-140.6.0esr-be.xpi ) l10n_bg? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/bg.xpi -> thunderbird-140.6.0esr-bg.xpi ) l10n_br? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/br.xpi -> thunderbird-140.6.0esr-br.xpi ) l10n_ca? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/ca.xpi -> thunderbird-140.6.0esr-ca.xpi ) l10n_cak? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/cak.xpi -> thunderbird-140.6.0esr-cak.xpi ) l10n_cs? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/cs.xpi -> thunderbird-140.6.0esr-cs.xpi ) l10n_cy? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/cy.xpi -> thunderbird-140.6.0esr-cy.xpi ) l10n_da? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/da.xpi -> thunderbird-140.6.0esr-da.xpi ) l10n_de? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/de.xpi -> thunderbird-140.6.0esr-de.xpi ) l10n_dsb? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/dsb.xpi -> thunderbird-140.6.0esr-dsb.xpi ) l10n_el? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/el.xpi -> thunderbird-140.6.0esr-el.xpi ) l10n_en-CA? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/en-CA.xpi -> thunderbird-140.6.0esr-en-CA.xpi ) l10n_en-GB? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/en-GB.xpi -> thunderbird-140.6.0esr-en-GB.xpi ) l10n_es-AR? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/es-AR.xpi -> thunderbird-140.6.0esr-es-AR.xpi ) l10n_es-ES? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/es-ES.xpi -> thunderbird-140.6.0esr-es-ES.xpi ) l10n_es-MX? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/es-MX.xpi -> thunderbird-140.6.0esr-es-MX.xpi ) l10n_et? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/et.xpi -> thunderbird-140.6.0esr-et.xpi ) l10n_eu? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/eu.xpi -> thunderbird-140.6.0esr-eu.xpi ) l10n_fi? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/fi.xpi -> thunderbird-140.6.0esr-fi.xpi ) l10n_fr? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/fr.xpi -> thunderbird-140.6.0esr-fr.xpi ) l10n_fy? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/fy-NL.xpi -> thunderbird-140.6.0esr-fy-NL.xpi ) l10n_ga? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/ga-IE.xpi -> thunderbird-140.6.0esr-ga-IE.xpi ) l10n_gd? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/gd.xpi -> thunderbird-140.6.0esr-gd.xpi ) l10n_gl? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/gl.xpi -> thunderbird-140.6.0esr-gl.xpi ) l10n_he? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/he.xpi -> thunderbird-140.6.0esr-he.xpi ) l10n_hr? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/hr.xpi -> thunderbird-140.6.0esr-hr.xpi ) l10n_hsb? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/hsb.xpi -> thunderbird-140.6.0esr-hsb.xpi ) l10n_hu? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/hu.xpi -> thunderbird-140.6.0esr-hu.xpi ) l10n_id? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/id.xpi -> thunderbird-140.6.0esr-id.xpi ) l10n_is? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/is.xpi -> thunderbird-140.6.0esr-is.xpi ) l10n_it? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/it.xpi -> thunderbird-140.6.0esr-it.xpi ) l10n_ja? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/ja.xpi -> thunderbird-140.6.0esr-ja.xpi ) l10n_ka? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/ka.xpi -> thunderbird-140.6.0esr-ka.xpi ) l10n_kab? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/kab.xpi -> thunderbird-140.6.0esr-kab.xpi ) l10n_kk? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/kk.xpi -> thunderbird-140.6.0esr-kk.xpi ) l10n_ko? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/ko.xpi -> thunderbird-140.6.0esr-ko.xpi ) l10n_lt? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/lt.xpi -> thunderbird-140.6.0esr-lt.xpi ) l10n_lv? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/lv.xpi -> thunderbird-140.6.0esr-lv.xpi ) l10n_ms? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/ms.xpi -> thunderbird-140.6.0esr-ms.xpi ) l10n_nb? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/nb-NO.xpi -> thunderbird-140.6.0esr-nb-NO.xpi ) l10n_nl? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/nl.xpi -> thunderbird-140.6.0esr-nl.xpi ) l10n_nn? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/nn-NO.xpi -> thunderbird-140.6.0esr-nn-NO.xpi ) l10n_pa? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/pa-IN.xpi -> thunderbird-140.6.0esr-pa-IN.xpi ) l10n_pl? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/pl.xpi -> thunderbird-140.6.0esr-pl.xpi ) l10n_pt-BR? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/pt-BR.xpi -> thunderbird-140.6.0esr-pt-BR.xpi ) l10n_pt-PT? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/pt-PT.xpi -> thunderbird-140.6.0esr-pt-PT.xpi ) l10n_rm? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/rm.xpi -> thunderbird-140.6.0esr-rm.xpi ) l10n_ro? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/ro.xpi -> thunderbird-140.6.0esr-ro.xpi ) l10n_ru? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/ru.xpi -> thunderbird-140.6.0esr-ru.xpi ) l10n_sk? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/sk.xpi -> thunderbird-140.6.0esr-sk.xpi ) l10n_sl? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/sl.xpi -> thunderbird-140.6.0esr-sl.xpi ) l10n_sq? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/sq.xpi -> thunderbird-140.6.0esr-sq.xpi ) l10n_sr? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/sr.xpi -> thunderbird-140.6.0esr-sr.xpi ) l10n_sv? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/sv-SE.xpi -> thunderbird-140.6.0esr-sv-SE.xpi ) l10n_th? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/th.xpi -> thunderbird-140.6.0esr-th.xpi ) l10n_tr? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/tr.xpi -> thunderbird-140.6.0esr-tr.xpi ) l10n_uk? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/uk.xpi -> thunderbird-140.6.0esr-uk.xpi ) l10n_uz? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/uz.xpi -> thunderbird-140.6.0esr-uz.xpi ) l10n_vi? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/vi.xpi -> thunderbird-140.6.0esr-vi.xpi ) l10n_zh-CN? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/zh-CN.xpi -> thunderbird-140.6.0esr-zh-CN.xpi ) l10n_zh-TW? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/zh-TW.xpi -> thunderbird-140.6.0esr-zh-TW.xpi ) -_eclasses_=check-reqs 12ab9d3fc16bfe1f87c6fb652324b57c desktop 26d57169ca094c04be416993844ec8bc eapi9-ver 6a71fa30cdb3fe445114fdeab156c1f0 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnome2-utils a8cf148ec7f5ae0b1f1d33ae5f7f9e88 linux-info efd923656513c879204fec6638eadee5 llvm-r1 59c52dab9ddf3ca54e79003177507e97 llvm-utils e7edb4086e31c8537574b263d899f826 multiprocessing 1e32df7deee68372153dca65f4a7c21f optfeature 538bce96e5589935b57e178e8635f301 pax-utils 5555f2e75744739fe100ee62c22d28fe python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=931989780b286b82d6e571b172e2be33 diff --git a/metadata/md5-cache/mail-client/thunderbird-140.7.1 b/metadata/md5-cache/mail-client/thunderbird-140.7.1 deleted file mode 100644 index f1c6d60405cb..000000000000 --- a/metadata/md5-cache/mail-client/thunderbird-140.7.1 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=|| ( dev-lang/python:3.14[ncurses,sqlite,ssl] dev-lang/python:3.13[ncurses,sqlite,ssl] dev-lang/python:3.12[ncurses,sqlite,ssl] dev-lang/python:3.11[ncurses,sqlite,ssl] ) llvm_slot_19? ( llvm-core/clang:19 llvm-core/llvm:19 clang? ( llvm-core/lld:19 pgo? ( llvm-runtimes/compiler-rt-sanitizers:19[profile] ) ) ) llvm_slot_20? ( llvm-core/clang:20 llvm-core/llvm:20 clang? ( llvm-core/lld:20 pgo? ( llvm-runtimes/compiler-rt-sanitizers:20[profile] ) ) ) llvm_slot_21? ( llvm-core/clang:21 llvm-core/llvm:21 clang? ( llvm-core/lld:21 pgo? ( llvm-runtimes/compiler-rt-sanitizers:21[profile] ) ) ) app-alternatives/awk app-arch/unzip app-arch/zip >=dev-util/cbindgen-0.27.0 net-libs/nodejs virtual/pkgconfig amd64? ( >=dev-lang/nasm-2.14 ) x86? ( >=dev-lang/nasm-2.14 ) pgo? ( X? ( sys-devel/gettext x11-base/xorg-server[xvfb] x11-apps/xhost ) !X? ( gui-wm/tinywl x11-misc/xkeyboard-config ) ) llvm_slot_19? ( || ( dev-lang/rust-bin:1.86.0[llvm_slot_19] dev-lang/rust:1.86.0[llvm_slot_19] dev-lang/rust-bin:1.85.1[llvm_slot_19] dev-lang/rust:1.85.1[llvm_slot_19] dev-lang/rust-bin:1.85.0[llvm_slot_19] dev-lang/rust:1.85.0[llvm_slot_19] dev-lang/rust-bin:1.84.1[llvm_slot_19] dev-lang/rust:1.84.1[llvm_slot_19] dev-lang/rust-bin:1.84.0[llvm_slot_19] dev-lang/rust:1.84.0[llvm_slot_19] dev-lang/rust-bin:1.83.0[llvm_slot_19] dev-lang/rust:1.83.0[llvm_slot_19] dev-lang/rust-bin:1.82.0[llvm_slot_19] dev-lang/rust:1.82.0[llvm_slot_19] ) ) llvm_slot_20? ( || ( dev-lang/rust-bin:1.90.0[llvm_slot_20] dev-lang/rust:1.90.0[llvm_slot_20] dev-lang/rust-bin:1.89.0[llvm_slot_20] dev-lang/rust:1.89.0[llvm_slot_20] dev-lang/rust-bin:1.88.0[llvm_slot_20] dev-lang/rust:1.88.0[llvm_slot_20] dev-lang/rust-bin:1.87.0[llvm_slot_20] dev-lang/rust:1.87.0[llvm_slot_20] ) ) llvm_slot_21? ( || ( dev-lang/rust-bin:1.94.0[llvm_slot_21] dev-lang/rust:1.94.0[llvm_slot_21] dev-lang/rust-bin:1.93.1[llvm_slot_21] dev-lang/rust:1.93.1[llvm_slot_21] dev-lang/rust-bin:1.93.0[llvm_slot_21] dev-lang/rust:1.93.0[llvm_slot_21] dev-lang/rust-bin:1.92.0[llvm_slot_21] dev-lang/rust:1.92.0[llvm_slot_21] dev-lang/rust-bin:1.91.0[llvm_slot_21] dev-lang/rust:1.91.0[llvm_slot_21] ) ) -DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend setup unpack -DEPEND=selinux? ( sec-policy/selinux-thunderbird ) !system-librnp? ( dev-libs/jsoncpp ) system-librnp? ( >=dev-util/librnp-0.17.1 ) >=app-accessibility/at-spi2-core-2.46.0:2 dev-libs/glib:2 dev-libs/libffi:= >=dev-libs/nss-3.112.2 >=dev-libs/nspr-4.36 media-libs/alsa-lib media-libs/fontconfig media-libs/freetype media-libs/mesa media-video/ffmpeg sys-apps/dbus virtual/zlib:= virtual/freedesktop-icon-theme x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/libdrm x11-libs/pango x11-libs/pixman jack? ( virtual/jack ) pulseaudio? ( || ( media-libs/libpulse >=media-sound/apulse-0.1.12-r4[sdk] ) ) libproxy? ( net-libs/libproxy ) selinux? ( sec-policy/selinux-mozilla ) sndio? ( >=media-sound/sndio-1.8.0-r1 ) system-av1? ( >=media-libs/dav1d-1.0.0:= >=media-libs/libaom-1.0.0:= ) system-harfbuzz? ( >=media-gfx/graphite2-1.3.13 >=media-libs/harfbuzz-2.8.1:0= ) system-icu? ( >=dev-libs/icu-76.1:= ) system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1:= ) system-libevent? ( >=dev-libs/libevent-2.1.12:0=[threads(+)] ) system-libvpx? ( >=media-libs/libvpx-1.8.2:0=[postproc] ) system-pipewire? ( >=media-video/pipewire-1.4.7-r2:= ) system-png? ( >=media-libs/libpng-1.6.45:0=[apng] ) system-webp? ( >=media-libs/libwebp-1.1.0:0= ) wayland? ( >=media-libs/libepoxy-1.5.10-r1 x11-libs/gtk+:3[wayland] ) wifi? ( kernel_linux? ( || ( net-misc/networkmanager net-misc/connman[networkmanager] ) ) ) X? ( virtual/opengl x11-libs/cairo[X] x11-libs/gtk+:3[X] x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrandr x11-libs/libxcb:= ) X? ( x11-base/xorg-proto x11-libs/libICE x11-libs/libSM ) -DESCRIPTION=Thunderbird Mail Client -EAPI=8 -HOMEPAGE=https://www.thunderbird.net/ -IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info -INHERIT=check-reqs desktop eapi9-ver flag-o-matic gnome2-utils linux-info llvm-r1 multiprocessing optfeature pax-utils python-any-r1 rust toolchain-funcs virtualx xdg -IUSE=+clang debug eme-free hardened hwaccel jack libproxy pgo pulseaudio selinux sndio +system-av1 +system-harfbuzz +system-icu +system-jpeg +system-libevent +system-libvpx system-pipewire system-png +system-webp wayland wifi +X +system-librnp 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_es-MX 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 +llvm_slot_21 llvm_slot_19 llvm_slot_20 -KEYWORDS=amd64 arm64 ~loong ~ppc64 ~x86 -LICENSE=MPL-2.0 GPL-2 LGPL-2.1 -RDEPEND=selinux? ( sec-policy/selinux-thunderbird ) !system-librnp? ( dev-libs/jsoncpp ) system-librnp? ( >=dev-util/librnp-0.17.1 ) >=app-accessibility/at-spi2-core-2.46.0:2 dev-libs/glib:2 dev-libs/libffi:= >=dev-libs/nss-3.112.2 >=dev-libs/nspr-4.36 media-libs/alsa-lib media-libs/fontconfig media-libs/freetype media-libs/mesa media-video/ffmpeg sys-apps/dbus virtual/zlib:= virtual/freedesktop-icon-theme x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/libdrm x11-libs/pango x11-libs/pixman jack? ( virtual/jack ) pulseaudio? ( || ( media-libs/libpulse >=media-sound/apulse-0.1.12-r4[sdk] ) ) libproxy? ( net-libs/libproxy ) selinux? ( sec-policy/selinux-mozilla ) sndio? ( >=media-sound/sndio-1.8.0-r1 ) system-av1? ( >=media-libs/dav1d-1.0.0:= >=media-libs/libaom-1.0.0:= ) system-harfbuzz? ( >=media-gfx/graphite2-1.3.13 >=media-libs/harfbuzz-2.8.1:0= ) system-icu? ( >=dev-libs/icu-76.1:= ) system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1:= ) system-libevent? ( >=dev-libs/libevent-2.1.12:0=[threads(+)] ) system-libvpx? ( >=media-libs/libvpx-1.8.2:0=[postproc] ) system-pipewire? ( >=media-video/pipewire-1.4.7-r2:= ) system-png? ( >=media-libs/libpng-1.6.45:0=[apng] ) system-webp? ( >=media-libs/libwebp-1.1.0:0= ) wayland? ( >=media-libs/libepoxy-1.5.10-r1 x11-libs/gtk+:3[wayland] ) wifi? ( kernel_linux? ( || ( net-misc/networkmanager net-misc/connman[networkmanager] ) ) ) X? ( virtual/opengl x11-libs/cairo[X] x11-libs/gtk+:3[X] x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrandr x11-libs/libxcb:= ) jack? ( virtual/jack ) -REQUIRED_USE=|| ( X wayland ) debug? ( !system-av1 ) ^^ ( llvm_slot_19 llvm_slot_20 llvm_slot_21 ) -SLOT=0/esr -SRC_URI=https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/source/thunderbird-140.7.1esr.source.tar.xz -> thunderbird-140.7.1esr.source.tar.xz https://dev.gentoo.org/~juippis/mozilla/patchsets/firefox-140esr-patches-05.tar.xz loong? ( https://dev.gentoo.org/~xen0n/distfiles/www-client/thunderbird/firefox-139-loong-patches-02.tar.xz ) l10n_af? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/af.xpi -> thunderbird-140.7.1esr-af.xpi ) l10n_ar? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/ar.xpi -> thunderbird-140.7.1esr-ar.xpi ) l10n_ast? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/ast.xpi -> thunderbird-140.7.1esr-ast.xpi ) l10n_be? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/be.xpi -> thunderbird-140.7.1esr-be.xpi ) l10n_bg? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/bg.xpi -> thunderbird-140.7.1esr-bg.xpi ) l10n_br? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/br.xpi -> thunderbird-140.7.1esr-br.xpi ) l10n_ca? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/ca.xpi -> thunderbird-140.7.1esr-ca.xpi ) l10n_cak? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/cak.xpi -> thunderbird-140.7.1esr-cak.xpi ) l10n_cs? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/cs.xpi -> thunderbird-140.7.1esr-cs.xpi ) l10n_cy? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/cy.xpi -> thunderbird-140.7.1esr-cy.xpi ) l10n_da? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/da.xpi -> thunderbird-140.7.1esr-da.xpi ) l10n_de? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/de.xpi -> thunderbird-140.7.1esr-de.xpi ) l10n_dsb? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/dsb.xpi -> thunderbird-140.7.1esr-dsb.xpi ) l10n_el? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/el.xpi -> thunderbird-140.7.1esr-el.xpi ) l10n_en-CA? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/en-CA.xpi -> thunderbird-140.7.1esr-en-CA.xpi ) l10n_en-GB? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/en-GB.xpi -> thunderbird-140.7.1esr-en-GB.xpi ) l10n_es-AR? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/es-AR.xpi -> thunderbird-140.7.1esr-es-AR.xpi ) l10n_es-ES? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/es-ES.xpi -> thunderbird-140.7.1esr-es-ES.xpi ) l10n_es-MX? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/es-MX.xpi -> thunderbird-140.7.1esr-es-MX.xpi ) l10n_et? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/et.xpi -> thunderbird-140.7.1esr-et.xpi ) l10n_eu? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/eu.xpi -> thunderbird-140.7.1esr-eu.xpi ) l10n_fi? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/fi.xpi -> thunderbird-140.7.1esr-fi.xpi ) l10n_fr? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/fr.xpi -> thunderbird-140.7.1esr-fr.xpi ) l10n_fy? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/fy-NL.xpi -> thunderbird-140.7.1esr-fy-NL.xpi ) l10n_ga? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/ga-IE.xpi -> thunderbird-140.7.1esr-ga-IE.xpi ) l10n_gd? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/gd.xpi -> thunderbird-140.7.1esr-gd.xpi ) l10n_gl? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/gl.xpi -> thunderbird-140.7.1esr-gl.xpi ) l10n_he? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/he.xpi -> thunderbird-140.7.1esr-he.xpi ) l10n_hr? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/hr.xpi -> thunderbird-140.7.1esr-hr.xpi ) l10n_hsb? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/hsb.xpi -> thunderbird-140.7.1esr-hsb.xpi ) l10n_hu? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/hu.xpi -> thunderbird-140.7.1esr-hu.xpi ) l10n_id? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/id.xpi -> thunderbird-140.7.1esr-id.xpi ) l10n_is? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/is.xpi -> thunderbird-140.7.1esr-is.xpi ) l10n_it? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/it.xpi -> thunderbird-140.7.1esr-it.xpi ) l10n_ja? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/ja.xpi -> thunderbird-140.7.1esr-ja.xpi ) l10n_ka? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/ka.xpi -> thunderbird-140.7.1esr-ka.xpi ) l10n_kab? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/kab.xpi -> thunderbird-140.7.1esr-kab.xpi ) l10n_kk? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/kk.xpi -> thunderbird-140.7.1esr-kk.xpi ) l10n_ko? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/ko.xpi -> thunderbird-140.7.1esr-ko.xpi ) l10n_lt? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/lt.xpi -> thunderbird-140.7.1esr-lt.xpi ) l10n_lv? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/lv.xpi -> thunderbird-140.7.1esr-lv.xpi ) l10n_ms? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/ms.xpi -> thunderbird-140.7.1esr-ms.xpi ) l10n_nb? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/nb-NO.xpi -> thunderbird-140.7.1esr-nb-NO.xpi ) l10n_nl? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/nl.xpi -> thunderbird-140.7.1esr-nl.xpi ) l10n_nn? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/nn-NO.xpi -> thunderbird-140.7.1esr-nn-NO.xpi ) l10n_pa? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/pa-IN.xpi -> thunderbird-140.7.1esr-pa-IN.xpi ) l10n_pl? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/pl.xpi -> thunderbird-140.7.1esr-pl.xpi ) l10n_pt-BR? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/pt-BR.xpi -> thunderbird-140.7.1esr-pt-BR.xpi ) l10n_pt-PT? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/pt-PT.xpi -> thunderbird-140.7.1esr-pt-PT.xpi ) l10n_rm? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/rm.xpi -> thunderbird-140.7.1esr-rm.xpi ) l10n_ro? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/ro.xpi -> thunderbird-140.7.1esr-ro.xpi ) l10n_ru? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/ru.xpi -> thunderbird-140.7.1esr-ru.xpi ) l10n_sk? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/sk.xpi -> thunderbird-140.7.1esr-sk.xpi ) l10n_sl? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/sl.xpi -> thunderbird-140.7.1esr-sl.xpi ) l10n_sq? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/sq.xpi -> thunderbird-140.7.1esr-sq.xpi ) l10n_sr? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/sr.xpi -> thunderbird-140.7.1esr-sr.xpi ) l10n_sv? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/sv-SE.xpi -> thunderbird-140.7.1esr-sv-SE.xpi ) l10n_th? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/th.xpi -> thunderbird-140.7.1esr-th.xpi ) l10n_tr? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/tr.xpi -> thunderbird-140.7.1esr-tr.xpi ) l10n_uk? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/uk.xpi -> thunderbird-140.7.1esr-uk.xpi ) l10n_uz? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/uz.xpi -> thunderbird-140.7.1esr-uz.xpi ) l10n_vi? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/vi.xpi -> thunderbird-140.7.1esr-vi.xpi ) l10n_zh-CN? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/zh-CN.xpi -> thunderbird-140.7.1esr-zh-CN.xpi ) l10n_zh-TW? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/zh-TW.xpi -> thunderbird-140.7.1esr-zh-TW.xpi ) -_eclasses_=check-reqs 12ab9d3fc16bfe1f87c6fb652324b57c desktop 26d57169ca094c04be416993844ec8bc eapi9-ver 6a71fa30cdb3fe445114fdeab156c1f0 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnome2-utils a8cf148ec7f5ae0b1f1d33ae5f7f9e88 linux-info efd923656513c879204fec6638eadee5 llvm-r1 59c52dab9ddf3ca54e79003177507e97 llvm-utils e7edb4086e31c8537574b263d899f826 multiprocessing 1e32df7deee68372153dca65f4a7c21f optfeature 538bce96e5589935b57e178e8635f301 pax-utils 5555f2e75744739fe100ee62c22d28fe python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=3aa683400457765966801838a786f975 diff --git a/metadata/md5-cache/mail-client/thunderbird-140.7.0 b/metadata/md5-cache/mail-client/thunderbird-140.7.2 index 10bcdf3884f5..601a93d210b0 100644 --- a/metadata/md5-cache/mail-client/thunderbird-140.7.0 +++ b/metadata/md5-cache/mail-client/thunderbird-140.7.2 @@ -12,6 +12,6 @@ LICENSE=MPL-2.0 GPL-2 LGPL-2.1 RDEPEND=selinux? ( sec-policy/selinux-thunderbird ) !system-librnp? ( dev-libs/jsoncpp ) system-librnp? ( >=dev-util/librnp-0.17.1 ) >=app-accessibility/at-spi2-core-2.46.0:2 dev-libs/glib:2 dev-libs/libffi:= >=dev-libs/nss-3.112.2 >=dev-libs/nspr-4.36 media-libs/alsa-lib media-libs/fontconfig media-libs/freetype media-libs/mesa media-video/ffmpeg sys-apps/dbus virtual/zlib:= virtual/freedesktop-icon-theme x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/libdrm x11-libs/pango x11-libs/pixman jack? ( virtual/jack ) pulseaudio? ( || ( media-libs/libpulse >=media-sound/apulse-0.1.12-r4[sdk] ) ) libproxy? ( net-libs/libproxy ) selinux? ( sec-policy/selinux-mozilla ) sndio? ( >=media-sound/sndio-1.8.0-r1 ) system-av1? ( >=media-libs/dav1d-1.0.0:= >=media-libs/libaom-1.0.0:= ) system-harfbuzz? ( >=media-gfx/graphite2-1.3.13 >=media-libs/harfbuzz-2.8.1:0= ) system-icu? ( >=dev-libs/icu-76.1:= ) system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1:= ) system-libevent? ( >=dev-libs/libevent-2.1.12:0=[threads(+)] ) system-libvpx? ( >=media-libs/libvpx-1.8.2:0=[postproc] ) system-pipewire? ( >=media-video/pipewire-1.4.7-r2:= ) system-png? ( >=media-libs/libpng-1.6.45:0=[apng] ) system-webp? ( >=media-libs/libwebp-1.1.0:0= ) wayland? ( >=media-libs/libepoxy-1.5.10-r1 x11-libs/gtk+:3[wayland] ) wifi? ( kernel_linux? ( || ( net-misc/networkmanager net-misc/connman[networkmanager] ) ) ) X? ( virtual/opengl x11-libs/cairo[X] x11-libs/gtk+:3[X] x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrandr x11-libs/libxcb:= ) jack? ( virtual/jack ) REQUIRED_USE=|| ( X wayland ) debug? ( !system-av1 ) ^^ ( llvm_slot_19 llvm_slot_20 llvm_slot_21 ) SLOT=0/esr -SRC_URI=https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/source/thunderbird-140.7.0esr.source.tar.xz -> thunderbird-140.7.0esr.source.tar.xz https://dev.gentoo.org/~juippis/mozilla/patchsets/firefox-140esr-patches-05.tar.xz loong? ( https://dev.gentoo.org/~xen0n/distfiles/www-client/thunderbird/firefox-139-loong-patches-02.tar.xz ) l10n_af? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/af.xpi -> thunderbird-140.7.0esr-af.xpi ) l10n_ar? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/ar.xpi -> thunderbird-140.7.0esr-ar.xpi ) l10n_ast? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/ast.xpi -> thunderbird-140.7.0esr-ast.xpi ) l10n_be? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/be.xpi -> thunderbird-140.7.0esr-be.xpi ) l10n_bg? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/bg.xpi -> thunderbird-140.7.0esr-bg.xpi ) l10n_br? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/br.xpi -> thunderbird-140.7.0esr-br.xpi ) l10n_ca? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/ca.xpi -> thunderbird-140.7.0esr-ca.xpi ) l10n_cak? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/cak.xpi -> thunderbird-140.7.0esr-cak.xpi ) l10n_cs? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/cs.xpi -> thunderbird-140.7.0esr-cs.xpi ) l10n_cy? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/cy.xpi -> thunderbird-140.7.0esr-cy.xpi ) l10n_da? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/da.xpi -> thunderbird-140.7.0esr-da.xpi ) l10n_de? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/de.xpi -> thunderbird-140.7.0esr-de.xpi ) l10n_dsb? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/dsb.xpi -> thunderbird-140.7.0esr-dsb.xpi ) l10n_el? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/el.xpi -> thunderbird-140.7.0esr-el.xpi ) l10n_en-CA? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/en-CA.xpi -> thunderbird-140.7.0esr-en-CA.xpi ) l10n_en-GB? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/en-GB.xpi -> thunderbird-140.7.0esr-en-GB.xpi ) l10n_es-AR? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/es-AR.xpi -> thunderbird-140.7.0esr-es-AR.xpi ) l10n_es-ES? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/es-ES.xpi -> thunderbird-140.7.0esr-es-ES.xpi ) l10n_es-MX? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/es-MX.xpi -> thunderbird-140.7.0esr-es-MX.xpi ) l10n_et? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/et.xpi -> thunderbird-140.7.0esr-et.xpi ) l10n_eu? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/eu.xpi -> thunderbird-140.7.0esr-eu.xpi ) l10n_fi? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/fi.xpi -> thunderbird-140.7.0esr-fi.xpi ) l10n_fr? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/fr.xpi -> thunderbird-140.7.0esr-fr.xpi ) l10n_fy? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/fy-NL.xpi -> thunderbird-140.7.0esr-fy-NL.xpi ) l10n_ga? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/ga-IE.xpi -> thunderbird-140.7.0esr-ga-IE.xpi ) l10n_gd? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/gd.xpi -> thunderbird-140.7.0esr-gd.xpi ) l10n_gl? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/gl.xpi -> thunderbird-140.7.0esr-gl.xpi ) l10n_he? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/he.xpi -> thunderbird-140.7.0esr-he.xpi ) l10n_hr? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/hr.xpi -> thunderbird-140.7.0esr-hr.xpi ) l10n_hsb? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/hsb.xpi -> thunderbird-140.7.0esr-hsb.xpi ) l10n_hu? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/hu.xpi -> thunderbird-140.7.0esr-hu.xpi ) l10n_id? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/id.xpi -> thunderbird-140.7.0esr-id.xpi ) l10n_is? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/is.xpi -> thunderbird-140.7.0esr-is.xpi ) l10n_it? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/it.xpi -> thunderbird-140.7.0esr-it.xpi ) l10n_ja? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/ja.xpi -> thunderbird-140.7.0esr-ja.xpi ) l10n_ka? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/ka.xpi -> thunderbird-140.7.0esr-ka.xpi ) l10n_kab? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/kab.xpi -> thunderbird-140.7.0esr-kab.xpi ) l10n_kk? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/kk.xpi -> thunderbird-140.7.0esr-kk.xpi ) l10n_ko? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/ko.xpi -> thunderbird-140.7.0esr-ko.xpi ) l10n_lt? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/lt.xpi -> thunderbird-140.7.0esr-lt.xpi ) l10n_lv? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/lv.xpi -> thunderbird-140.7.0esr-lv.xpi ) l10n_ms? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/ms.xpi -> thunderbird-140.7.0esr-ms.xpi ) l10n_nb? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/nb-NO.xpi -> thunderbird-140.7.0esr-nb-NO.xpi ) l10n_nl? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/nl.xpi -> thunderbird-140.7.0esr-nl.xpi ) l10n_nn? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/nn-NO.xpi -> thunderbird-140.7.0esr-nn-NO.xpi ) l10n_pa? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/pa-IN.xpi -> thunderbird-140.7.0esr-pa-IN.xpi ) l10n_pl? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/pl.xpi -> thunderbird-140.7.0esr-pl.xpi ) l10n_pt-BR? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/pt-BR.xpi -> thunderbird-140.7.0esr-pt-BR.xpi ) l10n_pt-PT? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/pt-PT.xpi -> thunderbird-140.7.0esr-pt-PT.xpi ) l10n_rm? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/rm.xpi -> thunderbird-140.7.0esr-rm.xpi ) l10n_ro? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/ro.xpi -> thunderbird-140.7.0esr-ro.xpi ) l10n_ru? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/ru.xpi -> thunderbird-140.7.0esr-ru.xpi ) l10n_sk? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/sk.xpi -> thunderbird-140.7.0esr-sk.xpi ) l10n_sl? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/sl.xpi -> thunderbird-140.7.0esr-sl.xpi ) l10n_sq? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/sq.xpi -> thunderbird-140.7.0esr-sq.xpi ) l10n_sr? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/sr.xpi -> thunderbird-140.7.0esr-sr.xpi ) l10n_sv? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/sv-SE.xpi -> thunderbird-140.7.0esr-sv-SE.xpi ) l10n_th? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/th.xpi -> thunderbird-140.7.0esr-th.xpi ) l10n_tr? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/tr.xpi -> thunderbird-140.7.0esr-tr.xpi ) l10n_uk? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/uk.xpi -> thunderbird-140.7.0esr-uk.xpi ) l10n_uz? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/uz.xpi -> thunderbird-140.7.0esr-uz.xpi ) l10n_vi? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/vi.xpi -> thunderbird-140.7.0esr-vi.xpi ) l10n_zh-CN? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/zh-CN.xpi -> thunderbird-140.7.0esr-zh-CN.xpi ) l10n_zh-TW? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/zh-TW.xpi -> thunderbird-140.7.0esr-zh-TW.xpi ) +SRC_URI=https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/source/thunderbird-140.7.2esr.source.tar.xz -> thunderbird-140.7.2esr.source.tar.xz https://dev.gentoo.org/~juippis/mozilla/patchsets/firefox-140esr-patches-05.tar.xz loong? ( https://dev.gentoo.org/~xen0n/distfiles/www-client/thunderbird/firefox-139-loong-patches-02.tar.xz ) l10n_af? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/af.xpi -> thunderbird-140.7.2esr-af.xpi ) l10n_ar? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/ar.xpi -> thunderbird-140.7.2esr-ar.xpi ) l10n_ast? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/ast.xpi -> thunderbird-140.7.2esr-ast.xpi ) l10n_be? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/be.xpi -> thunderbird-140.7.2esr-be.xpi ) l10n_bg? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/bg.xpi -> thunderbird-140.7.2esr-bg.xpi ) l10n_br? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/br.xpi -> thunderbird-140.7.2esr-br.xpi ) l10n_ca? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/ca.xpi -> thunderbird-140.7.2esr-ca.xpi ) l10n_cak? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/cak.xpi -> thunderbird-140.7.2esr-cak.xpi ) l10n_cs? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/cs.xpi -> thunderbird-140.7.2esr-cs.xpi ) l10n_cy? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/cy.xpi -> thunderbird-140.7.2esr-cy.xpi ) l10n_da? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/da.xpi -> thunderbird-140.7.2esr-da.xpi ) l10n_de? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/de.xpi -> thunderbird-140.7.2esr-de.xpi ) l10n_dsb? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/dsb.xpi -> thunderbird-140.7.2esr-dsb.xpi ) l10n_el? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/el.xpi -> thunderbird-140.7.2esr-el.xpi ) l10n_en-CA? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/en-CA.xpi -> thunderbird-140.7.2esr-en-CA.xpi ) l10n_en-GB? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/en-GB.xpi -> thunderbird-140.7.2esr-en-GB.xpi ) l10n_es-AR? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/es-AR.xpi -> thunderbird-140.7.2esr-es-AR.xpi ) l10n_es-ES? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/es-ES.xpi -> thunderbird-140.7.2esr-es-ES.xpi ) l10n_es-MX? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/es-MX.xpi -> thunderbird-140.7.2esr-es-MX.xpi ) l10n_et? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/et.xpi -> thunderbird-140.7.2esr-et.xpi ) l10n_eu? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/eu.xpi -> thunderbird-140.7.2esr-eu.xpi ) l10n_fi? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/fi.xpi -> thunderbird-140.7.2esr-fi.xpi ) l10n_fr? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/fr.xpi -> thunderbird-140.7.2esr-fr.xpi ) l10n_fy? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/fy-NL.xpi -> thunderbird-140.7.2esr-fy-NL.xpi ) l10n_ga? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/ga-IE.xpi -> thunderbird-140.7.2esr-ga-IE.xpi ) l10n_gd? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/gd.xpi -> thunderbird-140.7.2esr-gd.xpi ) l10n_gl? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/gl.xpi -> thunderbird-140.7.2esr-gl.xpi ) l10n_he? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/he.xpi -> thunderbird-140.7.2esr-he.xpi ) l10n_hr? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/hr.xpi -> thunderbird-140.7.2esr-hr.xpi ) l10n_hsb? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/hsb.xpi -> thunderbird-140.7.2esr-hsb.xpi ) l10n_hu? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/hu.xpi -> thunderbird-140.7.2esr-hu.xpi ) l10n_id? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/id.xpi -> thunderbird-140.7.2esr-id.xpi ) l10n_is? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/is.xpi -> thunderbird-140.7.2esr-is.xpi ) l10n_it? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/it.xpi -> thunderbird-140.7.2esr-it.xpi ) l10n_ja? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/ja.xpi -> thunderbird-140.7.2esr-ja.xpi ) l10n_ka? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/ka.xpi -> thunderbird-140.7.2esr-ka.xpi ) l10n_kab? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/kab.xpi -> thunderbird-140.7.2esr-kab.xpi ) l10n_kk? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/kk.xpi -> thunderbird-140.7.2esr-kk.xpi ) l10n_ko? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/ko.xpi -> thunderbird-140.7.2esr-ko.xpi ) l10n_lt? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/lt.xpi -> thunderbird-140.7.2esr-lt.xpi ) l10n_lv? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/lv.xpi -> thunderbird-140.7.2esr-lv.xpi ) l10n_ms? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/ms.xpi -> thunderbird-140.7.2esr-ms.xpi ) l10n_nb? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/nb-NO.xpi -> thunderbird-140.7.2esr-nb-NO.xpi ) l10n_nl? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/nl.xpi -> thunderbird-140.7.2esr-nl.xpi ) l10n_nn? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/nn-NO.xpi -> thunderbird-140.7.2esr-nn-NO.xpi ) l10n_pa? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/pa-IN.xpi -> thunderbird-140.7.2esr-pa-IN.xpi ) l10n_pl? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/pl.xpi -> thunderbird-140.7.2esr-pl.xpi ) l10n_pt-BR? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/pt-BR.xpi -> thunderbird-140.7.2esr-pt-BR.xpi ) l10n_pt-PT? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/pt-PT.xpi -> thunderbird-140.7.2esr-pt-PT.xpi ) l10n_rm? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/rm.xpi -> thunderbird-140.7.2esr-rm.xpi ) l10n_ro? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/ro.xpi -> thunderbird-140.7.2esr-ro.xpi ) l10n_ru? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/ru.xpi -> thunderbird-140.7.2esr-ru.xpi ) l10n_sk? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/sk.xpi -> thunderbird-140.7.2esr-sk.xpi ) l10n_sl? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/sl.xpi -> thunderbird-140.7.2esr-sl.xpi ) l10n_sq? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/sq.xpi -> thunderbird-140.7.2esr-sq.xpi ) l10n_sr? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/sr.xpi -> thunderbird-140.7.2esr-sr.xpi ) l10n_sv? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/sv-SE.xpi -> thunderbird-140.7.2esr-sv-SE.xpi ) l10n_th? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/th.xpi -> thunderbird-140.7.2esr-th.xpi ) l10n_tr? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/tr.xpi -> thunderbird-140.7.2esr-tr.xpi ) l10n_uk? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/uk.xpi -> thunderbird-140.7.2esr-uk.xpi ) l10n_uz? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/uz.xpi -> thunderbird-140.7.2esr-uz.xpi ) l10n_vi? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/vi.xpi -> thunderbird-140.7.2esr-vi.xpi ) l10n_zh-CN? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/zh-CN.xpi -> thunderbird-140.7.2esr-zh-CN.xpi ) l10n_zh-TW? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/zh-TW.xpi -> thunderbird-140.7.2esr-zh-TW.xpi ) _eclasses_=check-reqs 12ab9d3fc16bfe1f87c6fb652324b57c desktop 26d57169ca094c04be416993844ec8bc eapi9-ver 6a71fa30cdb3fe445114fdeab156c1f0 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnome2-utils a8cf148ec7f5ae0b1f1d33ae5f7f9e88 linux-info efd923656513c879204fec6638eadee5 llvm-r1 59c52dab9ddf3ca54e79003177507e97 llvm-utils e7edb4086e31c8537574b263d899f826 multiprocessing 1e32df7deee68372153dca65f4a7c21f optfeature 538bce96e5589935b57e178e8635f301 pax-utils 5555f2e75744739fe100ee62c22d28fe python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=3aa683400457765966801838a786f975 diff --git a/metadata/md5-cache/mail-client/thunderbird-146.0 b/metadata/md5-cache/mail-client/thunderbird-146.0 deleted file mode 100644 index c26aaa91a4e2..000000000000 --- a/metadata/md5-cache/mail-client/thunderbird-146.0 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=|| ( dev-lang/python:3.14[ncurses,sqlite,ssl] dev-lang/python:3.13[ncurses,sqlite,ssl] dev-lang/python:3.12[ncurses,sqlite,ssl] dev-lang/python:3.11[ncurses,sqlite,ssl] ) llvm_slot_19? ( llvm-core/clang:19 llvm-core/llvm:19 clang? ( llvm-core/lld:19 pgo? ( llvm-runtimes/compiler-rt-sanitizers:19[profile] ) ) ) llvm_slot_20? ( llvm-core/clang:20 llvm-core/llvm:20 clang? ( llvm-core/lld:20 pgo? ( llvm-runtimes/compiler-rt-sanitizers:20[profile] ) ) ) llvm_slot_21? ( llvm-core/clang:21 llvm-core/llvm:21 clang? ( llvm-core/lld:21 pgo? ( llvm-runtimes/compiler-rt-sanitizers:21[profile] ) ) ) app-alternatives/awk app-arch/unzip app-arch/zip >=dev-util/cbindgen-0.29.1 net-libs/nodejs virtual/pkgconfig amd64? ( >=dev-lang/nasm-2.14 ) x86? ( >=dev-lang/nasm-2.14 ) pgo? ( X? ( sys-devel/gettext x11-base/xorg-server[xvfb] x11-apps/xhost ) !X? ( gui-wm/tinywl x11-misc/xkeyboard-config ) ) llvm_slot_19? ( || ( dev-lang/rust-bin:1.86.0[llvm_slot_19] dev-lang/rust:1.86.0[llvm_slot_19] dev-lang/rust-bin:1.85.1[llvm_slot_19] dev-lang/rust:1.85.1[llvm_slot_19] dev-lang/rust-bin:1.85.0[llvm_slot_19] dev-lang/rust:1.85.0[llvm_slot_19] dev-lang/rust-bin:1.84.1[llvm_slot_19] dev-lang/rust:1.84.1[llvm_slot_19] dev-lang/rust-bin:1.84.0[llvm_slot_19] dev-lang/rust:1.84.0[llvm_slot_19] dev-lang/rust-bin:1.83.0[llvm_slot_19] dev-lang/rust:1.83.0[llvm_slot_19] dev-lang/rust-bin:1.82.0[llvm_slot_19] dev-lang/rust:1.82.0[llvm_slot_19] ) ) llvm_slot_20? ( || ( dev-lang/rust-bin:1.90.0[llvm_slot_20] dev-lang/rust:1.90.0[llvm_slot_20] dev-lang/rust-bin:1.89.0[llvm_slot_20] dev-lang/rust:1.89.0[llvm_slot_20] dev-lang/rust-bin:1.88.0[llvm_slot_20] dev-lang/rust:1.88.0[llvm_slot_20] dev-lang/rust-bin:1.87.0[llvm_slot_20] dev-lang/rust:1.87.0[llvm_slot_20] ) ) llvm_slot_21? ( || ( dev-lang/rust-bin:1.94.0[llvm_slot_21] dev-lang/rust:1.94.0[llvm_slot_21] dev-lang/rust-bin:1.93.1[llvm_slot_21] dev-lang/rust:1.93.1[llvm_slot_21] dev-lang/rust-bin:1.93.0[llvm_slot_21] dev-lang/rust:1.93.0[llvm_slot_21] dev-lang/rust-bin:1.92.0[llvm_slot_21] dev-lang/rust:1.92.0[llvm_slot_21] dev-lang/rust-bin:1.91.0[llvm_slot_21] dev-lang/rust:1.91.0[llvm_slot_21] ) ) -DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend setup unpack -DEPEND=selinux? ( sec-policy/selinux-thunderbird ) !system-librnp? ( dev-libs/jsoncpp ) system-librnp? ( >=dev-util/librnp-0.17.1 ) >=app-accessibility/at-spi2-core-2.46.0:2 dev-libs/expat dev-libs/glib:2 dev-libs/libffi:= >=dev-libs/nss-3.118 >=dev-libs/nspr-4.38 media-libs/alsa-lib media-libs/fontconfig media-libs/freetype media-libs/mesa media-video/ffmpeg sys-apps/dbus virtual/zlib:= virtual/freedesktop-icon-theme x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/libdrm x11-libs/pango x11-libs/pixman jack? ( virtual/jack ) pulseaudio? ( || ( media-libs/libpulse >=media-sound/apulse-0.1.12-r4[sdk] ) ) libproxy? ( net-libs/libproxy ) selinux? ( sec-policy/selinux-mozilla ) sndio? ( >=media-sound/sndio-1.8.0-r1 ) system-av1? ( >=media-libs/dav1d-1.0.0:= >=media-libs/libaom-1.0.0:= ) system-harfbuzz? ( >=media-gfx/graphite2-1.3.13 >=media-libs/harfbuzz-2.8.1:0= ) system-icu? ( >=dev-libs/icu-76.1:= ) system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1:= ) system-libevent? ( >=dev-libs/libevent-2.1.12:0=[threads(+)] ) system-libvpx? ( >=media-libs/libvpx-1.8.2:0=[postproc] ) system-pipewire? ( media-video/pipewire:= ) system-png? ( >=media-libs/libpng-1.6.45:0=[apng] ) system-webp? ( >=media-libs/libwebp-1.1.0:0= ) wayland? ( >=media-libs/libepoxy-1.5.10-r1 x11-libs/gtk+:3[wayland] ) wifi? ( kernel_linux? ( || ( net-misc/networkmanager net-misc/connman[networkmanager] ) ) ) X? ( virtual/opengl x11-libs/cairo[X] x11-libs/gtk+:3[X] x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrandr x11-libs/libxcb:= ) X? ( x11-base/xorg-proto x11-libs/libICE x11-libs/libSM ) -DESCRIPTION=Thunderbird Mail Client -EAPI=8 -HOMEPAGE=https://www.thunderbird.net/ -IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info -INHERIT=check-reqs desktop eapi9-ver flag-o-matic gnome2-utils linux-info llvm-r1 multiprocessing optfeature pax-utils python-any-r1 rust toolchain-funcs virtualx xdg -IUSE=+clang debug eme-free hardened hwaccel jack libproxy pgo pulseaudio sndio selinux +system-av1 +system-harfbuzz +system-icu +system-jpeg +system-libevent +system-libvpx system-pipewire system-png +system-webp wayland wifi +X +system-librnp 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_es-MX 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 +llvm_slot_21 llvm_slot_19 llvm_slot_20 -KEYWORDS=~amd64 ~arm64 ~loong ~ppc64 ~x86 -LICENSE=MPL-2.0 GPL-2 LGPL-2.1 -RDEPEND=selinux? ( sec-policy/selinux-thunderbird ) !system-librnp? ( dev-libs/jsoncpp ) system-librnp? ( >=dev-util/librnp-0.17.1 ) >=app-accessibility/at-spi2-core-2.46.0:2 dev-libs/expat dev-libs/glib:2 dev-libs/libffi:= >=dev-libs/nss-3.118 >=dev-libs/nspr-4.38 media-libs/alsa-lib media-libs/fontconfig media-libs/freetype media-libs/mesa media-video/ffmpeg sys-apps/dbus virtual/zlib:= virtual/freedesktop-icon-theme x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/libdrm x11-libs/pango x11-libs/pixman jack? ( virtual/jack ) pulseaudio? ( || ( media-libs/libpulse >=media-sound/apulse-0.1.12-r4[sdk] ) ) libproxy? ( net-libs/libproxy ) selinux? ( sec-policy/selinux-mozilla ) sndio? ( >=media-sound/sndio-1.8.0-r1 ) system-av1? ( >=media-libs/dav1d-1.0.0:= >=media-libs/libaom-1.0.0:= ) system-harfbuzz? ( >=media-gfx/graphite2-1.3.13 >=media-libs/harfbuzz-2.8.1:0= ) system-icu? ( >=dev-libs/icu-76.1:= ) system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1:= ) system-libevent? ( >=dev-libs/libevent-2.1.12:0=[threads(+)] ) system-libvpx? ( >=media-libs/libvpx-1.8.2:0=[postproc] ) system-pipewire? ( media-video/pipewire:= ) system-png? ( >=media-libs/libpng-1.6.45:0=[apng] ) system-webp? ( >=media-libs/libwebp-1.1.0:0= ) wayland? ( >=media-libs/libepoxy-1.5.10-r1 x11-libs/gtk+:3[wayland] ) wifi? ( kernel_linux? ( || ( net-misc/networkmanager net-misc/connman[networkmanager] ) ) ) X? ( virtual/opengl x11-libs/cairo[X] x11-libs/gtk+:3[X] x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrandr x11-libs/libxcb:= ) jack? ( virtual/jack ) -REQUIRED_USE=|| ( X wayland ) debug? ( !system-av1 ) ^^ ( llvm_slot_19 llvm_slot_20 llvm_slot_21 ) -SLOT=0/stable -SRC_URI=https://archive.mozilla.org/pub/thunderbird/releases/146.0/source/thunderbird-146.0.source.tar.xz -> thunderbird-146.0.source.tar.xz https://dev.gentoo.org/~juippis/mozilla/patchsets/firefox-146-patches-01.tar.xz l10n_af? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/af.xpi -> thunderbird-146.0-af.xpi ) l10n_ar? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/ar.xpi -> thunderbird-146.0-ar.xpi ) l10n_ast? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/ast.xpi -> thunderbird-146.0-ast.xpi ) l10n_be? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/be.xpi -> thunderbird-146.0-be.xpi ) l10n_bg? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/bg.xpi -> thunderbird-146.0-bg.xpi ) l10n_br? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/br.xpi -> thunderbird-146.0-br.xpi ) l10n_ca? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/ca.xpi -> thunderbird-146.0-ca.xpi ) l10n_cak? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/cak.xpi -> thunderbird-146.0-cak.xpi ) l10n_cs? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/cs.xpi -> thunderbird-146.0-cs.xpi ) l10n_cy? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/cy.xpi -> thunderbird-146.0-cy.xpi ) l10n_da? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/da.xpi -> thunderbird-146.0-da.xpi ) l10n_de? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/de.xpi -> thunderbird-146.0-de.xpi ) l10n_dsb? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/dsb.xpi -> thunderbird-146.0-dsb.xpi ) l10n_el? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/el.xpi -> thunderbird-146.0-el.xpi ) l10n_en-CA? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/en-CA.xpi -> thunderbird-146.0-en-CA.xpi ) l10n_en-GB? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/en-GB.xpi -> thunderbird-146.0-en-GB.xpi ) l10n_es-AR? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/es-AR.xpi -> thunderbird-146.0-es-AR.xpi ) l10n_es-ES? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/es-ES.xpi -> thunderbird-146.0-es-ES.xpi ) l10n_es-MX? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/es-MX.xpi -> thunderbird-146.0-es-MX.xpi ) l10n_et? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/et.xpi -> thunderbird-146.0-et.xpi ) l10n_eu? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/eu.xpi -> thunderbird-146.0-eu.xpi ) l10n_fi? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/fi.xpi -> thunderbird-146.0-fi.xpi ) l10n_fr? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/fr.xpi -> thunderbird-146.0-fr.xpi ) l10n_fy? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/fy-NL.xpi -> thunderbird-146.0-fy-NL.xpi ) l10n_ga? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/ga-IE.xpi -> thunderbird-146.0-ga-IE.xpi ) l10n_gd? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/gd.xpi -> thunderbird-146.0-gd.xpi ) l10n_gl? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/gl.xpi -> thunderbird-146.0-gl.xpi ) l10n_he? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/he.xpi -> thunderbird-146.0-he.xpi ) l10n_hr? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/hr.xpi -> thunderbird-146.0-hr.xpi ) l10n_hsb? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/hsb.xpi -> thunderbird-146.0-hsb.xpi ) l10n_hu? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/hu.xpi -> thunderbird-146.0-hu.xpi ) l10n_id? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/id.xpi -> thunderbird-146.0-id.xpi ) l10n_is? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/is.xpi -> thunderbird-146.0-is.xpi ) l10n_it? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/it.xpi -> thunderbird-146.0-it.xpi ) l10n_ja? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/ja.xpi -> thunderbird-146.0-ja.xpi ) l10n_ka? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/ka.xpi -> thunderbird-146.0-ka.xpi ) l10n_kab? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/kab.xpi -> thunderbird-146.0-kab.xpi ) l10n_kk? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/kk.xpi -> thunderbird-146.0-kk.xpi ) l10n_ko? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/ko.xpi -> thunderbird-146.0-ko.xpi ) l10n_lt? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/lt.xpi -> thunderbird-146.0-lt.xpi ) l10n_lv? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/lv.xpi -> thunderbird-146.0-lv.xpi ) l10n_ms? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/ms.xpi -> thunderbird-146.0-ms.xpi ) l10n_nb? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/nb-NO.xpi -> thunderbird-146.0-nb-NO.xpi ) l10n_nl? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/nl.xpi -> thunderbird-146.0-nl.xpi ) l10n_nn? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/nn-NO.xpi -> thunderbird-146.0-nn-NO.xpi ) l10n_pa? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/pa-IN.xpi -> thunderbird-146.0-pa-IN.xpi ) l10n_pl? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/pl.xpi -> thunderbird-146.0-pl.xpi ) l10n_pt-BR? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/pt-BR.xpi -> thunderbird-146.0-pt-BR.xpi ) l10n_pt-PT? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/pt-PT.xpi -> thunderbird-146.0-pt-PT.xpi ) l10n_rm? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/rm.xpi -> thunderbird-146.0-rm.xpi ) l10n_ro? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/ro.xpi -> thunderbird-146.0-ro.xpi ) l10n_ru? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/ru.xpi -> thunderbird-146.0-ru.xpi ) l10n_sk? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/sk.xpi -> thunderbird-146.0-sk.xpi ) l10n_sl? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/sl.xpi -> thunderbird-146.0-sl.xpi ) l10n_sq? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/sq.xpi -> thunderbird-146.0-sq.xpi ) l10n_sr? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/sr.xpi -> thunderbird-146.0-sr.xpi ) l10n_sv? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/sv-SE.xpi -> thunderbird-146.0-sv-SE.xpi ) l10n_th? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/th.xpi -> thunderbird-146.0-th.xpi ) l10n_tr? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/tr.xpi -> thunderbird-146.0-tr.xpi ) l10n_uk? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/uk.xpi -> thunderbird-146.0-uk.xpi ) l10n_uz? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/uz.xpi -> thunderbird-146.0-uz.xpi ) l10n_vi? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/vi.xpi -> thunderbird-146.0-vi.xpi ) l10n_zh-CN? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/zh-CN.xpi -> thunderbird-146.0-zh-CN.xpi ) l10n_zh-TW? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/zh-TW.xpi -> thunderbird-146.0-zh-TW.xpi ) -_eclasses_=check-reqs 12ab9d3fc16bfe1f87c6fb652324b57c desktop 26d57169ca094c04be416993844ec8bc eapi9-ver 6a71fa30cdb3fe445114fdeab156c1f0 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnome2-utils a8cf148ec7f5ae0b1f1d33ae5f7f9e88 linux-info efd923656513c879204fec6638eadee5 llvm-r1 59c52dab9ddf3ca54e79003177507e97 llvm-utils e7edb4086e31c8537574b263d899f826 multiprocessing 1e32df7deee68372153dca65f4a7c21f optfeature 538bce96e5589935b57e178e8635f301 pax-utils 5555f2e75744739fe100ee62c22d28fe python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=39181607ba60ba09793b6ef51b6a0bdb diff --git a/metadata/md5-cache/mail-client/thunderbird-146.0.1 b/metadata/md5-cache/mail-client/thunderbird-146.0.1 deleted file mode 100644 index c8606ba30558..000000000000 --- a/metadata/md5-cache/mail-client/thunderbird-146.0.1 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=|| ( dev-lang/python:3.14[ncurses,sqlite,ssl] dev-lang/python:3.13[ncurses,sqlite,ssl] dev-lang/python:3.12[ncurses,sqlite,ssl] dev-lang/python:3.11[ncurses,sqlite,ssl] ) llvm_slot_19? ( llvm-core/clang:19 llvm-core/llvm:19 clang? ( llvm-core/lld:19 pgo? ( llvm-runtimes/compiler-rt-sanitizers:19[profile] ) ) ) llvm_slot_20? ( llvm-core/clang:20 llvm-core/llvm:20 clang? ( llvm-core/lld:20 pgo? ( llvm-runtimes/compiler-rt-sanitizers:20[profile] ) ) ) llvm_slot_21? ( llvm-core/clang:21 llvm-core/llvm:21 clang? ( llvm-core/lld:21 pgo? ( llvm-runtimes/compiler-rt-sanitizers:21[profile] ) ) ) app-alternatives/awk app-arch/unzip app-arch/zip >=dev-util/cbindgen-0.29.1 net-libs/nodejs virtual/pkgconfig amd64? ( >=dev-lang/nasm-2.14 ) x86? ( >=dev-lang/nasm-2.14 ) pgo? ( X? ( sys-devel/gettext x11-base/xorg-server[xvfb] x11-apps/xhost ) !X? ( gui-wm/tinywl x11-misc/xkeyboard-config ) ) llvm_slot_19? ( || ( dev-lang/rust-bin:1.86.0[llvm_slot_19] dev-lang/rust:1.86.0[llvm_slot_19] dev-lang/rust-bin:1.85.1[llvm_slot_19] dev-lang/rust:1.85.1[llvm_slot_19] dev-lang/rust-bin:1.85.0[llvm_slot_19] dev-lang/rust:1.85.0[llvm_slot_19] dev-lang/rust-bin:1.84.1[llvm_slot_19] dev-lang/rust:1.84.1[llvm_slot_19] dev-lang/rust-bin:1.84.0[llvm_slot_19] dev-lang/rust:1.84.0[llvm_slot_19] dev-lang/rust-bin:1.83.0[llvm_slot_19] dev-lang/rust:1.83.0[llvm_slot_19] dev-lang/rust-bin:1.82.0[llvm_slot_19] dev-lang/rust:1.82.0[llvm_slot_19] ) ) llvm_slot_20? ( || ( dev-lang/rust-bin:1.90.0[llvm_slot_20] dev-lang/rust:1.90.0[llvm_slot_20] dev-lang/rust-bin:1.89.0[llvm_slot_20] dev-lang/rust:1.89.0[llvm_slot_20] dev-lang/rust-bin:1.88.0[llvm_slot_20] dev-lang/rust:1.88.0[llvm_slot_20] dev-lang/rust-bin:1.87.0[llvm_slot_20] dev-lang/rust:1.87.0[llvm_slot_20] ) ) llvm_slot_21? ( || ( dev-lang/rust-bin:1.94.0[llvm_slot_21] dev-lang/rust:1.94.0[llvm_slot_21] dev-lang/rust-bin:1.93.1[llvm_slot_21] dev-lang/rust:1.93.1[llvm_slot_21] dev-lang/rust-bin:1.93.0[llvm_slot_21] dev-lang/rust:1.93.0[llvm_slot_21] dev-lang/rust-bin:1.92.0[llvm_slot_21] dev-lang/rust:1.92.0[llvm_slot_21] dev-lang/rust-bin:1.91.0[llvm_slot_21] dev-lang/rust:1.91.0[llvm_slot_21] ) ) -DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend setup unpack -DEPEND=selinux? ( sec-policy/selinux-thunderbird ) !system-librnp? ( dev-libs/jsoncpp ) system-librnp? ( >=dev-util/librnp-0.17.1 ) >=app-accessibility/at-spi2-core-2.46.0:2 dev-libs/expat dev-libs/glib:2 dev-libs/libffi:= >=dev-libs/nss-3.118 >=dev-libs/nspr-4.38 media-libs/alsa-lib media-libs/fontconfig media-libs/freetype media-libs/mesa media-video/ffmpeg sys-apps/dbus virtual/zlib:= virtual/freedesktop-icon-theme x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/libdrm x11-libs/pango x11-libs/pixman jack? ( virtual/jack ) pulseaudio? ( || ( media-libs/libpulse >=media-sound/apulse-0.1.12-r4[sdk] ) ) libproxy? ( net-libs/libproxy ) selinux? ( sec-policy/selinux-mozilla ) sndio? ( >=media-sound/sndio-1.8.0-r1 ) system-av1? ( >=media-libs/dav1d-1.0.0:= >=media-libs/libaom-1.0.0:= ) system-harfbuzz? ( >=media-gfx/graphite2-1.3.13 >=media-libs/harfbuzz-2.8.1:0= ) system-icu? ( >=dev-libs/icu-76.1:= ) system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1:= ) system-libevent? ( >=dev-libs/libevent-2.1.12:0=[threads(+)] ) system-libvpx? ( >=media-libs/libvpx-1.8.2:0=[postproc] ) system-pipewire? ( media-video/pipewire:= ) system-png? ( >=media-libs/libpng-1.6.45:0=[apng] ) system-webp? ( >=media-libs/libwebp-1.1.0:0= ) wayland? ( >=media-libs/libepoxy-1.5.10-r1 x11-libs/gtk+:3[wayland] ) wifi? ( kernel_linux? ( || ( net-misc/networkmanager net-misc/connman[networkmanager] ) ) ) X? ( virtual/opengl x11-libs/cairo[X] x11-libs/gtk+:3[X] x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrandr x11-libs/libxcb:= ) X? ( x11-base/xorg-proto x11-libs/libICE x11-libs/libSM ) -DESCRIPTION=Thunderbird Mail Client -EAPI=8 -HOMEPAGE=https://www.thunderbird.net/ -IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info -INHERIT=check-reqs desktop eapi9-ver flag-o-matic gnome2-utils linux-info llvm-r1 multiprocessing optfeature pax-utils python-any-r1 rust toolchain-funcs virtualx xdg -IUSE=+clang debug eme-free hardened hwaccel jack libproxy pgo pulseaudio sndio selinux +system-av1 +system-harfbuzz +system-icu +system-jpeg +system-libevent +system-libvpx system-pipewire system-png +system-webp wayland wifi +X +system-librnp 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_es-MX 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 +llvm_slot_21 llvm_slot_19 llvm_slot_20 -KEYWORDS=~amd64 ~arm64 ~loong ~ppc64 ~x86 -LICENSE=MPL-2.0 GPL-2 LGPL-2.1 -RDEPEND=selinux? ( sec-policy/selinux-thunderbird ) !system-librnp? ( dev-libs/jsoncpp ) system-librnp? ( >=dev-util/librnp-0.17.1 ) >=app-accessibility/at-spi2-core-2.46.0:2 dev-libs/expat dev-libs/glib:2 dev-libs/libffi:= >=dev-libs/nss-3.118 >=dev-libs/nspr-4.38 media-libs/alsa-lib media-libs/fontconfig media-libs/freetype media-libs/mesa media-video/ffmpeg sys-apps/dbus virtual/zlib:= virtual/freedesktop-icon-theme x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/libdrm x11-libs/pango x11-libs/pixman jack? ( virtual/jack ) pulseaudio? ( || ( media-libs/libpulse >=media-sound/apulse-0.1.12-r4[sdk] ) ) libproxy? ( net-libs/libproxy ) selinux? ( sec-policy/selinux-mozilla ) sndio? ( >=media-sound/sndio-1.8.0-r1 ) system-av1? ( >=media-libs/dav1d-1.0.0:= >=media-libs/libaom-1.0.0:= ) system-harfbuzz? ( >=media-gfx/graphite2-1.3.13 >=media-libs/harfbuzz-2.8.1:0= ) system-icu? ( >=dev-libs/icu-76.1:= ) system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1:= ) system-libevent? ( >=dev-libs/libevent-2.1.12:0=[threads(+)] ) system-libvpx? ( >=media-libs/libvpx-1.8.2:0=[postproc] ) system-pipewire? ( media-video/pipewire:= ) system-png? ( >=media-libs/libpng-1.6.45:0=[apng] ) system-webp? ( >=media-libs/libwebp-1.1.0:0= ) wayland? ( >=media-libs/libepoxy-1.5.10-r1 x11-libs/gtk+:3[wayland] ) wifi? ( kernel_linux? ( || ( net-misc/networkmanager net-misc/connman[networkmanager] ) ) ) X? ( virtual/opengl x11-libs/cairo[X] x11-libs/gtk+:3[X] x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrandr x11-libs/libxcb:= ) jack? ( virtual/jack ) -REQUIRED_USE=|| ( X wayland ) !system-librnp? ( clang ) debug? ( !system-av1 ) ^^ ( llvm_slot_19 llvm_slot_20 llvm_slot_21 ) -SLOT=0/stable -SRC_URI=https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/source/thunderbird-146.0.1.source.tar.xz -> thunderbird-146.0.1.source.tar.xz https://dev.gentoo.org/~juippis/mozilla/patchsets/firefox-146-patches-01.tar.xz l10n_af? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/af.xpi -> thunderbird-146.0.1-af.xpi ) l10n_ar? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/ar.xpi -> thunderbird-146.0.1-ar.xpi ) l10n_ast? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/ast.xpi -> thunderbird-146.0.1-ast.xpi ) l10n_be? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/be.xpi -> thunderbird-146.0.1-be.xpi ) l10n_bg? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/bg.xpi -> thunderbird-146.0.1-bg.xpi ) l10n_br? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/br.xpi -> thunderbird-146.0.1-br.xpi ) l10n_ca? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/ca.xpi -> thunderbird-146.0.1-ca.xpi ) l10n_cak? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/cak.xpi -> thunderbird-146.0.1-cak.xpi ) l10n_cs? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/cs.xpi -> thunderbird-146.0.1-cs.xpi ) l10n_cy? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/cy.xpi -> thunderbird-146.0.1-cy.xpi ) l10n_da? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/da.xpi -> thunderbird-146.0.1-da.xpi ) l10n_de? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/de.xpi -> thunderbird-146.0.1-de.xpi ) l10n_dsb? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/dsb.xpi -> thunderbird-146.0.1-dsb.xpi ) l10n_el? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/el.xpi -> thunderbird-146.0.1-el.xpi ) l10n_en-CA? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/en-CA.xpi -> thunderbird-146.0.1-en-CA.xpi ) l10n_en-GB? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/en-GB.xpi -> thunderbird-146.0.1-en-GB.xpi ) l10n_es-AR? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/es-AR.xpi -> thunderbird-146.0.1-es-AR.xpi ) l10n_es-ES? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/es-ES.xpi -> thunderbird-146.0.1-es-ES.xpi ) l10n_es-MX? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/es-MX.xpi -> thunderbird-146.0.1-es-MX.xpi ) l10n_et? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/et.xpi -> thunderbird-146.0.1-et.xpi ) l10n_eu? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/eu.xpi -> thunderbird-146.0.1-eu.xpi ) l10n_fi? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/fi.xpi -> thunderbird-146.0.1-fi.xpi ) l10n_fr? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/fr.xpi -> thunderbird-146.0.1-fr.xpi ) l10n_fy? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/fy-NL.xpi -> thunderbird-146.0.1-fy-NL.xpi ) l10n_ga? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/ga-IE.xpi -> thunderbird-146.0.1-ga-IE.xpi ) l10n_gd? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/gd.xpi -> thunderbird-146.0.1-gd.xpi ) l10n_gl? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/gl.xpi -> thunderbird-146.0.1-gl.xpi ) l10n_he? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/he.xpi -> thunderbird-146.0.1-he.xpi ) l10n_hr? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/hr.xpi -> thunderbird-146.0.1-hr.xpi ) l10n_hsb? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/hsb.xpi -> thunderbird-146.0.1-hsb.xpi ) l10n_hu? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/hu.xpi -> thunderbird-146.0.1-hu.xpi ) l10n_id? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/id.xpi -> thunderbird-146.0.1-id.xpi ) l10n_is? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/is.xpi -> thunderbird-146.0.1-is.xpi ) l10n_it? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/it.xpi -> thunderbird-146.0.1-it.xpi ) l10n_ja? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/ja.xpi -> thunderbird-146.0.1-ja.xpi ) l10n_ka? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/ka.xpi -> thunderbird-146.0.1-ka.xpi ) l10n_kab? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/kab.xpi -> thunderbird-146.0.1-kab.xpi ) l10n_kk? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/kk.xpi -> thunderbird-146.0.1-kk.xpi ) l10n_ko? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/ko.xpi -> thunderbird-146.0.1-ko.xpi ) l10n_lt? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/lt.xpi -> thunderbird-146.0.1-lt.xpi ) l10n_lv? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/lv.xpi -> thunderbird-146.0.1-lv.xpi ) l10n_ms? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/ms.xpi -> thunderbird-146.0.1-ms.xpi ) l10n_nb? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/nb-NO.xpi -> thunderbird-146.0.1-nb-NO.xpi ) l10n_nl? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/nl.xpi -> thunderbird-146.0.1-nl.xpi ) l10n_nn? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/nn-NO.xpi -> thunderbird-146.0.1-nn-NO.xpi ) l10n_pa? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/pa-IN.xpi -> thunderbird-146.0.1-pa-IN.xpi ) l10n_pl? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/pl.xpi -> thunderbird-146.0.1-pl.xpi ) l10n_pt-BR? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/pt-BR.xpi -> thunderbird-146.0.1-pt-BR.xpi ) l10n_pt-PT? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/pt-PT.xpi -> thunderbird-146.0.1-pt-PT.xpi ) l10n_rm? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/rm.xpi -> thunderbird-146.0.1-rm.xpi ) l10n_ro? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/ro.xpi -> thunderbird-146.0.1-ro.xpi ) l10n_ru? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/ru.xpi -> thunderbird-146.0.1-ru.xpi ) l10n_sk? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/sk.xpi -> thunderbird-146.0.1-sk.xpi ) l10n_sl? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/sl.xpi -> thunderbird-146.0.1-sl.xpi ) l10n_sq? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/sq.xpi -> thunderbird-146.0.1-sq.xpi ) l10n_sr? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/sr.xpi -> thunderbird-146.0.1-sr.xpi ) l10n_sv? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/sv-SE.xpi -> thunderbird-146.0.1-sv-SE.xpi ) l10n_th? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/th.xpi -> thunderbird-146.0.1-th.xpi ) l10n_tr? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/tr.xpi -> thunderbird-146.0.1-tr.xpi ) l10n_uk? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/uk.xpi -> thunderbird-146.0.1-uk.xpi ) l10n_uz? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/uz.xpi -> thunderbird-146.0.1-uz.xpi ) l10n_vi? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/vi.xpi -> thunderbird-146.0.1-vi.xpi ) l10n_zh-CN? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/zh-CN.xpi -> thunderbird-146.0.1-zh-CN.xpi ) l10n_zh-TW? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/zh-TW.xpi -> thunderbird-146.0.1-zh-TW.xpi ) -_eclasses_=check-reqs 12ab9d3fc16bfe1f87c6fb652324b57c desktop 26d57169ca094c04be416993844ec8bc eapi9-ver 6a71fa30cdb3fe445114fdeab156c1f0 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnome2-utils a8cf148ec7f5ae0b1f1d33ae5f7f9e88 linux-info efd923656513c879204fec6638eadee5 llvm-r1 59c52dab9ddf3ca54e79003177507e97 llvm-utils e7edb4086e31c8537574b263d899f826 multiprocessing 1e32df7deee68372153dca65f4a7c21f optfeature 538bce96e5589935b57e178e8635f301 pax-utils 5555f2e75744739fe100ee62c22d28fe python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=4ee519ca76f3a2d9699f15fada82ba0b diff --git a/metadata/md5-cache/mail-client/thunderbird-147.0 b/metadata/md5-cache/mail-client/thunderbird-147.0 deleted file mode 100644 index d3b8570c4473..000000000000 --- a/metadata/md5-cache/mail-client/thunderbird-147.0 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=|| ( dev-lang/python:3.14[ncurses,sqlite,ssl] dev-lang/python:3.13[ncurses,sqlite,ssl] dev-lang/python:3.12[ncurses,sqlite,ssl] dev-lang/python:3.11[ncurses,sqlite,ssl] ) llvm_slot_19? ( llvm-core/clang:19 llvm-core/llvm:19 clang? ( llvm-core/lld:19 pgo? ( llvm-runtimes/compiler-rt-sanitizers:19[profile] ) ) ) llvm_slot_20? ( llvm-core/clang:20 llvm-core/llvm:20 clang? ( llvm-core/lld:20 pgo? ( llvm-runtimes/compiler-rt-sanitizers:20[profile] ) ) ) llvm_slot_21? ( llvm-core/clang:21 llvm-core/llvm:21 clang? ( llvm-core/lld:21 pgo? ( llvm-runtimes/compiler-rt-sanitizers:21[profile] ) ) ) app-alternatives/awk app-arch/unzip app-arch/zip >=dev-util/cbindgen-0.29.1 net-libs/nodejs virtual/pkgconfig amd64? ( >=dev-lang/nasm-2.14 ) x86? ( >=dev-lang/nasm-2.14 ) pgo? ( X? ( sys-devel/gettext x11-base/xorg-server[xvfb] x11-apps/xhost ) !X? ( gui-wm/tinywl x11-misc/xkeyboard-config ) ) llvm_slot_19? ( || ( dev-lang/rust-bin:1.86.0[llvm_slot_19] dev-lang/rust:1.86.0[llvm_slot_19] dev-lang/rust-bin:1.85.1[llvm_slot_19] dev-lang/rust:1.85.1[llvm_slot_19] dev-lang/rust-bin:1.85.0[llvm_slot_19] dev-lang/rust:1.85.0[llvm_slot_19] dev-lang/rust-bin:1.84.1[llvm_slot_19] dev-lang/rust:1.84.1[llvm_slot_19] dev-lang/rust-bin:1.84.0[llvm_slot_19] dev-lang/rust:1.84.0[llvm_slot_19] dev-lang/rust-bin:1.83.0[llvm_slot_19] dev-lang/rust:1.83.0[llvm_slot_19] dev-lang/rust-bin:1.82.0[llvm_slot_19] dev-lang/rust:1.82.0[llvm_slot_19] ) ) llvm_slot_20? ( || ( dev-lang/rust-bin:1.90.0[llvm_slot_20] dev-lang/rust:1.90.0[llvm_slot_20] dev-lang/rust-bin:1.89.0[llvm_slot_20] dev-lang/rust:1.89.0[llvm_slot_20] dev-lang/rust-bin:1.88.0[llvm_slot_20] dev-lang/rust:1.88.0[llvm_slot_20] dev-lang/rust-bin:1.87.0[llvm_slot_20] dev-lang/rust:1.87.0[llvm_slot_20] ) ) llvm_slot_21? ( || ( dev-lang/rust-bin:1.94.0[llvm_slot_21] dev-lang/rust:1.94.0[llvm_slot_21] dev-lang/rust-bin:1.93.1[llvm_slot_21] dev-lang/rust:1.93.1[llvm_slot_21] dev-lang/rust-bin:1.93.0[llvm_slot_21] dev-lang/rust:1.93.0[llvm_slot_21] dev-lang/rust-bin:1.92.0[llvm_slot_21] dev-lang/rust:1.92.0[llvm_slot_21] dev-lang/rust-bin:1.91.0[llvm_slot_21] dev-lang/rust:1.91.0[llvm_slot_21] ) ) -DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend setup unpack -DEPEND=selinux? ( sec-policy/selinux-thunderbird ) !system-librnp? ( dev-libs/jsoncpp ) system-librnp? ( >=dev-util/librnp-0.17.1 ) >=app-accessibility/at-spi2-core-2.46.0:2 dev-libs/glib:2 dev-libs/libffi:= >=dev-libs/nss-3.119 >=dev-libs/nspr-4.38 media-libs/alsa-lib media-libs/fontconfig media-libs/freetype media-libs/mesa media-video/ffmpeg sys-apps/dbus virtual/zlib:= virtual/freedesktop-icon-theme x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/libdrm x11-libs/pango x11-libs/pixman jack? ( virtual/jack ) pulseaudio? ( || ( media-libs/libpulse >=media-sound/apulse-0.1.12-r4[sdk] ) ) libproxy? ( net-libs/libproxy ) selinux? ( sec-policy/selinux-mozilla ) sndio? ( >=media-sound/sndio-1.8.0-r1 ) system-av1? ( >=media-libs/dav1d-1.0.0:= >=media-libs/libaom-1.0.0:= ) system-harfbuzz? ( >=media-gfx/graphite2-1.3.13 >=media-libs/harfbuzz-2.8.1:0= ) system-icu? ( >=dev-libs/icu-78.1:= ) system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1:= ) system-libevent? ( >=dev-libs/libevent-2.1.12:0=[threads(+)] ) system-libvpx? ( >=media-libs/libvpx-1.8.2:0=[postproc] ) system-pipewire? ( media-video/pipewire:= ) system-png? ( >=media-libs/libpng-1.6.45:0=[apng] ) system-webp? ( >=media-libs/libwebp-1.1.0:0= ) wayland? ( >=media-libs/libepoxy-1.5.10-r1 x11-libs/gtk+:3[wayland] ) wifi? ( kernel_linux? ( || ( net-misc/networkmanager net-misc/connman[networkmanager] ) ) ) X? ( virtual/opengl x11-libs/cairo[X] x11-libs/gtk+:3[X] x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrandr x11-libs/libxcb:= ) X? ( x11-base/xorg-proto x11-libs/libICE x11-libs/libSM ) -DESCRIPTION=Thunderbird Mail Client -EAPI=8 -HOMEPAGE=https://www.thunderbird.net/ -IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info -INHERIT=check-reqs desktop eapi9-ver flag-o-matic gnome2-utils linux-info llvm-r1 multiprocessing optfeature pax-utils python-any-r1 rust toolchain-funcs virtualx xdg -IUSE=+clang debug eme-free hardened hwaccel jack libproxy pgo pulseaudio sndio selinux +system-av1 +system-harfbuzz +system-icu +system-jpeg +system-libevent +system-libvpx system-pipewire system-png +system-webp wayland wifi +X +system-librnp 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_es-MX 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 +llvm_slot_21 llvm_slot_19 llvm_slot_20 -KEYWORDS=~amd64 ~arm64 ~loong ~ppc64 ~x86 -LICENSE=MPL-2.0 GPL-2 LGPL-2.1 -RDEPEND=selinux? ( sec-policy/selinux-thunderbird ) !system-librnp? ( dev-libs/jsoncpp ) system-librnp? ( >=dev-util/librnp-0.17.1 ) >=app-accessibility/at-spi2-core-2.46.0:2 dev-libs/glib:2 dev-libs/libffi:= >=dev-libs/nss-3.119 >=dev-libs/nspr-4.38 media-libs/alsa-lib media-libs/fontconfig media-libs/freetype media-libs/mesa media-video/ffmpeg sys-apps/dbus virtual/zlib:= virtual/freedesktop-icon-theme x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/libdrm x11-libs/pango x11-libs/pixman jack? ( virtual/jack ) pulseaudio? ( || ( media-libs/libpulse >=media-sound/apulse-0.1.12-r4[sdk] ) ) libproxy? ( net-libs/libproxy ) selinux? ( sec-policy/selinux-mozilla ) sndio? ( >=media-sound/sndio-1.8.0-r1 ) system-av1? ( >=media-libs/dav1d-1.0.0:= >=media-libs/libaom-1.0.0:= ) system-harfbuzz? ( >=media-gfx/graphite2-1.3.13 >=media-libs/harfbuzz-2.8.1:0= ) system-icu? ( >=dev-libs/icu-78.1:= ) system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1:= ) system-libevent? ( >=dev-libs/libevent-2.1.12:0=[threads(+)] ) system-libvpx? ( >=media-libs/libvpx-1.8.2:0=[postproc] ) system-pipewire? ( media-video/pipewire:= ) system-png? ( >=media-libs/libpng-1.6.45:0=[apng] ) system-webp? ( >=media-libs/libwebp-1.1.0:0= ) wayland? ( >=media-libs/libepoxy-1.5.10-r1 x11-libs/gtk+:3[wayland] ) wifi? ( kernel_linux? ( || ( net-misc/networkmanager net-misc/connman[networkmanager] ) ) ) X? ( virtual/opengl x11-libs/cairo[X] x11-libs/gtk+:3[X] x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrandr x11-libs/libxcb:= ) jack? ( virtual/jack ) -REQUIRED_USE=|| ( X wayland ) !system-librnp? ( clang ) debug? ( !system-av1 ) ^^ ( llvm_slot_19 llvm_slot_20 llvm_slot_21 ) -SLOT=0/stable -SRC_URI=https://archive.mozilla.org/pub/thunderbird/releases/147.0/source/thunderbird-147.0.source.tar.xz -> thunderbird-147.0.source.tar.xz https://dev.gentoo.org/~juippis/mozilla/patchsets/firefox-147-patches-01t.tar.xz l10n_af? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/af.xpi -> thunderbird-147.0-af.xpi ) l10n_ar? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/ar.xpi -> thunderbird-147.0-ar.xpi ) l10n_ast? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/ast.xpi -> thunderbird-147.0-ast.xpi ) l10n_be? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/be.xpi -> thunderbird-147.0-be.xpi ) l10n_bg? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/bg.xpi -> thunderbird-147.0-bg.xpi ) l10n_br? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/br.xpi -> thunderbird-147.0-br.xpi ) l10n_ca? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/ca.xpi -> thunderbird-147.0-ca.xpi ) l10n_cak? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/cak.xpi -> thunderbird-147.0-cak.xpi ) l10n_cs? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/cs.xpi -> thunderbird-147.0-cs.xpi ) l10n_cy? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/cy.xpi -> thunderbird-147.0-cy.xpi ) l10n_da? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/da.xpi -> thunderbird-147.0-da.xpi ) l10n_de? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/de.xpi -> thunderbird-147.0-de.xpi ) l10n_dsb? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/dsb.xpi -> thunderbird-147.0-dsb.xpi ) l10n_el? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/el.xpi -> thunderbird-147.0-el.xpi ) l10n_en-CA? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/en-CA.xpi -> thunderbird-147.0-en-CA.xpi ) l10n_en-GB? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/en-GB.xpi -> thunderbird-147.0-en-GB.xpi ) l10n_es-AR? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/es-AR.xpi -> thunderbird-147.0-es-AR.xpi ) l10n_es-ES? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/es-ES.xpi -> thunderbird-147.0-es-ES.xpi ) l10n_es-MX? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/es-MX.xpi -> thunderbird-147.0-es-MX.xpi ) l10n_et? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/et.xpi -> thunderbird-147.0-et.xpi ) l10n_eu? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/eu.xpi -> thunderbird-147.0-eu.xpi ) l10n_fi? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/fi.xpi -> thunderbird-147.0-fi.xpi ) l10n_fr? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/fr.xpi -> thunderbird-147.0-fr.xpi ) l10n_fy? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/fy-NL.xpi -> thunderbird-147.0-fy-NL.xpi ) l10n_ga? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/ga-IE.xpi -> thunderbird-147.0-ga-IE.xpi ) l10n_gd? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/gd.xpi -> thunderbird-147.0-gd.xpi ) l10n_gl? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/gl.xpi -> thunderbird-147.0-gl.xpi ) l10n_he? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/he.xpi -> thunderbird-147.0-he.xpi ) l10n_hr? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/hr.xpi -> thunderbird-147.0-hr.xpi ) l10n_hsb? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/hsb.xpi -> thunderbird-147.0-hsb.xpi ) l10n_hu? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/hu.xpi -> thunderbird-147.0-hu.xpi ) l10n_id? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/id.xpi -> thunderbird-147.0-id.xpi ) l10n_is? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/is.xpi -> thunderbird-147.0-is.xpi ) l10n_it? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/it.xpi -> thunderbird-147.0-it.xpi ) l10n_ja? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/ja.xpi -> thunderbird-147.0-ja.xpi ) l10n_ka? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/ka.xpi -> thunderbird-147.0-ka.xpi ) l10n_kab? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/kab.xpi -> thunderbird-147.0-kab.xpi ) l10n_kk? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/kk.xpi -> thunderbird-147.0-kk.xpi ) l10n_ko? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/ko.xpi -> thunderbird-147.0-ko.xpi ) l10n_lt? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/lt.xpi -> thunderbird-147.0-lt.xpi ) l10n_lv? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/lv.xpi -> thunderbird-147.0-lv.xpi ) l10n_ms? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/ms.xpi -> thunderbird-147.0-ms.xpi ) l10n_nb? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/nb-NO.xpi -> thunderbird-147.0-nb-NO.xpi ) l10n_nl? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/nl.xpi -> thunderbird-147.0-nl.xpi ) l10n_nn? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/nn-NO.xpi -> thunderbird-147.0-nn-NO.xpi ) l10n_pa? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/pa-IN.xpi -> thunderbird-147.0-pa-IN.xpi ) l10n_pl? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/pl.xpi -> thunderbird-147.0-pl.xpi ) l10n_pt-BR? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/pt-BR.xpi -> thunderbird-147.0-pt-BR.xpi ) l10n_pt-PT? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/pt-PT.xpi -> thunderbird-147.0-pt-PT.xpi ) l10n_rm? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/rm.xpi -> thunderbird-147.0-rm.xpi ) l10n_ro? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/ro.xpi -> thunderbird-147.0-ro.xpi ) l10n_ru? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/ru.xpi -> thunderbird-147.0-ru.xpi ) l10n_sk? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/sk.xpi -> thunderbird-147.0-sk.xpi ) l10n_sl? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/sl.xpi -> thunderbird-147.0-sl.xpi ) l10n_sq? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/sq.xpi -> thunderbird-147.0-sq.xpi ) l10n_sr? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/sr.xpi -> thunderbird-147.0-sr.xpi ) l10n_sv? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/sv-SE.xpi -> thunderbird-147.0-sv-SE.xpi ) l10n_th? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/th.xpi -> thunderbird-147.0-th.xpi ) l10n_tr? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/tr.xpi -> thunderbird-147.0-tr.xpi ) l10n_uk? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/uk.xpi -> thunderbird-147.0-uk.xpi ) l10n_uz? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/uz.xpi -> thunderbird-147.0-uz.xpi ) l10n_vi? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/vi.xpi -> thunderbird-147.0-vi.xpi ) l10n_zh-CN? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/zh-CN.xpi -> thunderbird-147.0-zh-CN.xpi ) l10n_zh-TW? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/zh-TW.xpi -> thunderbird-147.0-zh-TW.xpi ) -_eclasses_=check-reqs 12ab9d3fc16bfe1f87c6fb652324b57c desktop 26d57169ca094c04be416993844ec8bc eapi9-ver 6a71fa30cdb3fe445114fdeab156c1f0 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnome2-utils a8cf148ec7f5ae0b1f1d33ae5f7f9e88 linux-info efd923656513c879204fec6638eadee5 llvm-r1 59c52dab9ddf3ca54e79003177507e97 llvm-utils e7edb4086e31c8537574b263d899f826 multiprocessing 1e32df7deee68372153dca65f4a7c21f optfeature 538bce96e5589935b57e178e8635f301 pax-utils 5555f2e75744739fe100ee62c22d28fe python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=e59c6f1a1da89f710ae357c3cee38323 diff --git a/metadata/md5-cache/mail-client/thunderbird-147.0.1 b/metadata/md5-cache/mail-client/thunderbird-147.0.1 deleted file mode 100644 index 73609367ac32..000000000000 --- a/metadata/md5-cache/mail-client/thunderbird-147.0.1 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=|| ( dev-lang/python:3.14[ncurses,sqlite,ssl] dev-lang/python:3.13[ncurses,sqlite,ssl] dev-lang/python:3.12[ncurses,sqlite,ssl] dev-lang/python:3.11[ncurses,sqlite,ssl] ) llvm_slot_19? ( llvm-core/clang:19 llvm-core/llvm:19 clang? ( llvm-core/lld:19 pgo? ( llvm-runtimes/compiler-rt-sanitizers:19[profile] ) ) ) llvm_slot_20? ( llvm-core/clang:20 llvm-core/llvm:20 clang? ( llvm-core/lld:20 pgo? ( llvm-runtimes/compiler-rt-sanitizers:20[profile] ) ) ) llvm_slot_21? ( llvm-core/clang:21 llvm-core/llvm:21 clang? ( llvm-core/lld:21 pgo? ( llvm-runtimes/compiler-rt-sanitizers:21[profile] ) ) ) app-alternatives/awk app-arch/unzip app-arch/zip >=dev-util/cbindgen-0.29.1 net-libs/nodejs virtual/pkgconfig amd64? ( >=dev-lang/nasm-2.14 ) x86? ( >=dev-lang/nasm-2.14 ) pgo? ( X? ( sys-devel/gettext x11-base/xorg-server[xvfb] x11-apps/xhost ) !X? ( gui-wm/tinywl x11-misc/xkeyboard-config ) ) llvm_slot_19? ( || ( dev-lang/rust-bin:1.86.0[llvm_slot_19] dev-lang/rust:1.86.0[llvm_slot_19] dev-lang/rust-bin:1.85.1[llvm_slot_19] dev-lang/rust:1.85.1[llvm_slot_19] dev-lang/rust-bin:1.85.0[llvm_slot_19] dev-lang/rust:1.85.0[llvm_slot_19] dev-lang/rust-bin:1.84.1[llvm_slot_19] dev-lang/rust:1.84.1[llvm_slot_19] dev-lang/rust-bin:1.84.0[llvm_slot_19] dev-lang/rust:1.84.0[llvm_slot_19] dev-lang/rust-bin:1.83.0[llvm_slot_19] dev-lang/rust:1.83.0[llvm_slot_19] dev-lang/rust-bin:1.82.0[llvm_slot_19] dev-lang/rust:1.82.0[llvm_slot_19] ) ) llvm_slot_20? ( || ( dev-lang/rust-bin:1.90.0[llvm_slot_20] dev-lang/rust:1.90.0[llvm_slot_20] dev-lang/rust-bin:1.89.0[llvm_slot_20] dev-lang/rust:1.89.0[llvm_slot_20] dev-lang/rust-bin:1.88.0[llvm_slot_20] dev-lang/rust:1.88.0[llvm_slot_20] dev-lang/rust-bin:1.87.0[llvm_slot_20] dev-lang/rust:1.87.0[llvm_slot_20] ) ) llvm_slot_21? ( || ( dev-lang/rust-bin:1.94.0[llvm_slot_21] dev-lang/rust:1.94.0[llvm_slot_21] dev-lang/rust-bin:1.93.1[llvm_slot_21] dev-lang/rust:1.93.1[llvm_slot_21] dev-lang/rust-bin:1.93.0[llvm_slot_21] dev-lang/rust:1.93.0[llvm_slot_21] dev-lang/rust-bin:1.92.0[llvm_slot_21] dev-lang/rust:1.92.0[llvm_slot_21] dev-lang/rust-bin:1.91.0[llvm_slot_21] dev-lang/rust:1.91.0[llvm_slot_21] ) ) -DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend setup unpack -DEPEND=selinux? ( sec-policy/selinux-thunderbird ) !system-librnp? ( dev-libs/jsoncpp ) system-librnp? ( >=dev-util/librnp-0.17.1 ) >=app-accessibility/at-spi2-core-2.46.0:2 dev-libs/glib:2 dev-libs/libffi:= >=dev-libs/nss-3.119 >=dev-libs/nspr-4.38 media-libs/alsa-lib media-libs/fontconfig media-libs/freetype media-libs/mesa media-video/ffmpeg sys-apps/dbus virtual/zlib:= virtual/freedesktop-icon-theme x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/libdrm x11-libs/pango x11-libs/pixman jack? ( virtual/jack ) pulseaudio? ( || ( media-libs/libpulse >=media-sound/apulse-0.1.12-r4[sdk] ) ) libproxy? ( net-libs/libproxy ) selinux? ( sec-policy/selinux-mozilla ) sndio? ( >=media-sound/sndio-1.8.0-r1 ) system-av1? ( >=media-libs/dav1d-1.0.0:= >=media-libs/libaom-1.0.0:= ) system-harfbuzz? ( >=media-gfx/graphite2-1.3.13 >=media-libs/harfbuzz-2.8.1:0= ) system-icu? ( >=dev-libs/icu-78.1:= ) system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1:= ) system-libevent? ( >=dev-libs/libevent-2.1.12:0=[threads(+)] ) system-libvpx? ( >=media-libs/libvpx-1.8.2:0=[postproc] ) system-pipewire? ( media-video/pipewire:= ) system-png? ( >=media-libs/libpng-1.6.45:0=[apng] ) system-webp? ( >=media-libs/libwebp-1.1.0:0= ) wayland? ( >=media-libs/libepoxy-1.5.10-r1 x11-libs/gtk+:3[wayland] ) wifi? ( kernel_linux? ( || ( net-misc/networkmanager net-misc/connman[networkmanager] ) ) ) X? ( virtual/opengl x11-libs/cairo[X] x11-libs/gtk+:3[X] x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrandr x11-libs/libxcb:= ) X? ( x11-base/xorg-proto x11-libs/libICE x11-libs/libSM ) -DESCRIPTION=Thunderbird Mail Client -EAPI=8 -HOMEPAGE=https://www.thunderbird.net/ -IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info -INHERIT=check-reqs desktop eapi9-ver flag-o-matic gnome2-utils linux-info llvm-r1 multiprocessing optfeature pax-utils python-any-r1 rust toolchain-funcs virtualx xdg -IUSE=+clang debug eme-free hardened hwaccel jack libproxy pgo pulseaudio sndio selinux +system-av1 +system-harfbuzz +system-icu +system-jpeg +system-libevent +system-libvpx system-pipewire system-png +system-webp wayland wifi +X +system-librnp 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_es-MX 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 +llvm_slot_21 llvm_slot_19 llvm_slot_20 -KEYWORDS=~amd64 ~arm64 ~loong ~ppc64 ~x86 -LICENSE=MPL-2.0 GPL-2 LGPL-2.1 -RDEPEND=selinux? ( sec-policy/selinux-thunderbird ) !system-librnp? ( dev-libs/jsoncpp ) system-librnp? ( >=dev-util/librnp-0.17.1 ) >=app-accessibility/at-spi2-core-2.46.0:2 dev-libs/glib:2 dev-libs/libffi:= >=dev-libs/nss-3.119 >=dev-libs/nspr-4.38 media-libs/alsa-lib media-libs/fontconfig media-libs/freetype media-libs/mesa media-video/ffmpeg sys-apps/dbus virtual/zlib:= virtual/freedesktop-icon-theme x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/libdrm x11-libs/pango x11-libs/pixman jack? ( virtual/jack ) pulseaudio? ( || ( media-libs/libpulse >=media-sound/apulse-0.1.12-r4[sdk] ) ) libproxy? ( net-libs/libproxy ) selinux? ( sec-policy/selinux-mozilla ) sndio? ( >=media-sound/sndio-1.8.0-r1 ) system-av1? ( >=media-libs/dav1d-1.0.0:= >=media-libs/libaom-1.0.0:= ) system-harfbuzz? ( >=media-gfx/graphite2-1.3.13 >=media-libs/harfbuzz-2.8.1:0= ) system-icu? ( >=dev-libs/icu-78.1:= ) system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1:= ) system-libevent? ( >=dev-libs/libevent-2.1.12:0=[threads(+)] ) system-libvpx? ( >=media-libs/libvpx-1.8.2:0=[postproc] ) system-pipewire? ( media-video/pipewire:= ) system-png? ( >=media-libs/libpng-1.6.45:0=[apng] ) system-webp? ( >=media-libs/libwebp-1.1.0:0= ) wayland? ( >=media-libs/libepoxy-1.5.10-r1 x11-libs/gtk+:3[wayland] ) wifi? ( kernel_linux? ( || ( net-misc/networkmanager net-misc/connman[networkmanager] ) ) ) X? ( virtual/opengl x11-libs/cairo[X] x11-libs/gtk+:3[X] x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrandr x11-libs/libxcb:= ) jack? ( virtual/jack ) -REQUIRED_USE=|| ( X wayland ) !system-librnp? ( clang ) debug? ( !system-av1 ) ^^ ( llvm_slot_19 llvm_slot_20 llvm_slot_21 ) -SLOT=0/stable -SRC_URI=https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/source/thunderbird-147.0.1.source.tar.xz -> thunderbird-147.0.1.source.tar.xz https://dev.gentoo.org/~juippis/mozilla/patchsets/firefox-147-patches-02t.tar.xz l10n_af? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/af.xpi -> thunderbird-147.0.1-af.xpi ) l10n_ar? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/ar.xpi -> thunderbird-147.0.1-ar.xpi ) l10n_ast? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/ast.xpi -> thunderbird-147.0.1-ast.xpi ) l10n_be? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/be.xpi -> thunderbird-147.0.1-be.xpi ) l10n_bg? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/bg.xpi -> thunderbird-147.0.1-bg.xpi ) l10n_br? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/br.xpi -> thunderbird-147.0.1-br.xpi ) l10n_ca? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/ca.xpi -> thunderbird-147.0.1-ca.xpi ) l10n_cak? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/cak.xpi -> thunderbird-147.0.1-cak.xpi ) l10n_cs? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/cs.xpi -> thunderbird-147.0.1-cs.xpi ) l10n_cy? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/cy.xpi -> thunderbird-147.0.1-cy.xpi ) l10n_da? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/da.xpi -> thunderbird-147.0.1-da.xpi ) l10n_de? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/de.xpi -> thunderbird-147.0.1-de.xpi ) l10n_dsb? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/dsb.xpi -> thunderbird-147.0.1-dsb.xpi ) l10n_el? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/el.xpi -> thunderbird-147.0.1-el.xpi ) l10n_en-CA? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/en-CA.xpi -> thunderbird-147.0.1-en-CA.xpi ) l10n_en-GB? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/en-GB.xpi -> thunderbird-147.0.1-en-GB.xpi ) l10n_es-AR? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/es-AR.xpi -> thunderbird-147.0.1-es-AR.xpi ) l10n_es-ES? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/es-ES.xpi -> thunderbird-147.0.1-es-ES.xpi ) l10n_es-MX? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/es-MX.xpi -> thunderbird-147.0.1-es-MX.xpi ) l10n_et? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/et.xpi -> thunderbird-147.0.1-et.xpi ) l10n_eu? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/eu.xpi -> thunderbird-147.0.1-eu.xpi ) l10n_fi? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/fi.xpi -> thunderbird-147.0.1-fi.xpi ) l10n_fr? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/fr.xpi -> thunderbird-147.0.1-fr.xpi ) l10n_fy? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/fy-NL.xpi -> thunderbird-147.0.1-fy-NL.xpi ) l10n_ga? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/ga-IE.xpi -> thunderbird-147.0.1-ga-IE.xpi ) l10n_gd? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/gd.xpi -> thunderbird-147.0.1-gd.xpi ) l10n_gl? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/gl.xpi -> thunderbird-147.0.1-gl.xpi ) l10n_he? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/he.xpi -> thunderbird-147.0.1-he.xpi ) l10n_hr? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/hr.xpi -> thunderbird-147.0.1-hr.xpi ) l10n_hsb? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/hsb.xpi -> thunderbird-147.0.1-hsb.xpi ) l10n_hu? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/hu.xpi -> thunderbird-147.0.1-hu.xpi ) l10n_id? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/id.xpi -> thunderbird-147.0.1-id.xpi ) l10n_is? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/is.xpi -> thunderbird-147.0.1-is.xpi ) l10n_it? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/it.xpi -> thunderbird-147.0.1-it.xpi ) l10n_ja? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/ja.xpi -> thunderbird-147.0.1-ja.xpi ) l10n_ka? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/ka.xpi -> thunderbird-147.0.1-ka.xpi ) l10n_kab? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/kab.xpi -> thunderbird-147.0.1-kab.xpi ) l10n_kk? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/kk.xpi -> thunderbird-147.0.1-kk.xpi ) l10n_ko? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/ko.xpi -> thunderbird-147.0.1-ko.xpi ) l10n_lt? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/lt.xpi -> thunderbird-147.0.1-lt.xpi ) l10n_lv? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/lv.xpi -> thunderbird-147.0.1-lv.xpi ) l10n_ms? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/ms.xpi -> thunderbird-147.0.1-ms.xpi ) l10n_nb? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/nb-NO.xpi -> thunderbird-147.0.1-nb-NO.xpi ) l10n_nl? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/nl.xpi -> thunderbird-147.0.1-nl.xpi ) l10n_nn? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/nn-NO.xpi -> thunderbird-147.0.1-nn-NO.xpi ) l10n_pa? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/pa-IN.xpi -> thunderbird-147.0.1-pa-IN.xpi ) l10n_pl? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/pl.xpi -> thunderbird-147.0.1-pl.xpi ) l10n_pt-BR? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/pt-BR.xpi -> thunderbird-147.0.1-pt-BR.xpi ) l10n_pt-PT? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/pt-PT.xpi -> thunderbird-147.0.1-pt-PT.xpi ) l10n_rm? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/rm.xpi -> thunderbird-147.0.1-rm.xpi ) l10n_ro? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/ro.xpi -> thunderbird-147.0.1-ro.xpi ) l10n_ru? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/ru.xpi -> thunderbird-147.0.1-ru.xpi ) l10n_sk? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/sk.xpi -> thunderbird-147.0.1-sk.xpi ) l10n_sl? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/sl.xpi -> thunderbird-147.0.1-sl.xpi ) l10n_sq? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/sq.xpi -> thunderbird-147.0.1-sq.xpi ) l10n_sr? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/sr.xpi -> thunderbird-147.0.1-sr.xpi ) l10n_sv? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/sv-SE.xpi -> thunderbird-147.0.1-sv-SE.xpi ) l10n_th? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/th.xpi -> thunderbird-147.0.1-th.xpi ) l10n_tr? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/tr.xpi -> thunderbird-147.0.1-tr.xpi ) l10n_uk? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/uk.xpi -> thunderbird-147.0.1-uk.xpi ) l10n_uz? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/uz.xpi -> thunderbird-147.0.1-uz.xpi ) l10n_vi? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/vi.xpi -> thunderbird-147.0.1-vi.xpi ) l10n_zh-CN? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/zh-CN.xpi -> thunderbird-147.0.1-zh-CN.xpi ) l10n_zh-TW? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/zh-TW.xpi -> thunderbird-147.0.1-zh-TW.xpi ) -_eclasses_=check-reqs 12ab9d3fc16bfe1f87c6fb652324b57c desktop 26d57169ca094c04be416993844ec8bc eapi9-ver 6a71fa30cdb3fe445114fdeab156c1f0 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnome2-utils a8cf148ec7f5ae0b1f1d33ae5f7f9e88 linux-info efd923656513c879204fec6638eadee5 llvm-r1 59c52dab9ddf3ca54e79003177507e97 llvm-utils e7edb4086e31c8537574b263d899f826 multiprocessing 1e32df7deee68372153dca65f4a7c21f optfeature 538bce96e5589935b57e178e8635f301 pax-utils 5555f2e75744739fe100ee62c22d28fe python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=c657a0689bc84ca9b032b00c4b3d0906 diff --git a/metadata/md5-cache/mail-client/thunderbird-147.0.2 b/metadata/md5-cache/mail-client/thunderbird-147.0.2 new file mode 100644 index 000000000000..b916ed0160cc --- /dev/null +++ b/metadata/md5-cache/mail-client/thunderbird-147.0.2 @@ -0,0 +1,17 @@ +BDEPEND=|| ( dev-lang/python:3.14[ncurses,sqlite,ssl] dev-lang/python:3.13[ncurses,sqlite,ssl] dev-lang/python:3.12[ncurses,sqlite,ssl] dev-lang/python:3.11[ncurses,sqlite,ssl] ) llvm_slot_19? ( llvm-core/clang:19 llvm-core/llvm:19 clang? ( llvm-core/lld:19 pgo? ( llvm-runtimes/compiler-rt-sanitizers:19[profile] ) ) ) llvm_slot_20? ( llvm-core/clang:20 llvm-core/llvm:20 clang? ( llvm-core/lld:20 pgo? ( llvm-runtimes/compiler-rt-sanitizers:20[profile] ) ) ) llvm_slot_21? ( llvm-core/clang:21 llvm-core/llvm:21 clang? ( llvm-core/lld:21 pgo? ( llvm-runtimes/compiler-rt-sanitizers:21[profile] ) ) ) app-alternatives/awk app-arch/unzip app-arch/zip >=dev-util/cbindgen-0.29.1 net-libs/nodejs virtual/pkgconfig amd64? ( >=dev-lang/nasm-2.14 ) x86? ( >=dev-lang/nasm-2.14 ) pgo? ( X? ( sys-devel/gettext x11-base/xorg-server[xvfb] x11-apps/xhost ) !X? ( gui-wm/tinywl x11-misc/xkeyboard-config ) ) llvm_slot_19? ( || ( dev-lang/rust-bin:1.86.0[llvm_slot_19] dev-lang/rust:1.86.0[llvm_slot_19] dev-lang/rust-bin:1.85.1[llvm_slot_19] dev-lang/rust:1.85.1[llvm_slot_19] dev-lang/rust-bin:1.85.0[llvm_slot_19] dev-lang/rust:1.85.0[llvm_slot_19] dev-lang/rust-bin:1.84.1[llvm_slot_19] dev-lang/rust:1.84.1[llvm_slot_19] dev-lang/rust-bin:1.84.0[llvm_slot_19] dev-lang/rust:1.84.0[llvm_slot_19] dev-lang/rust-bin:1.83.0[llvm_slot_19] dev-lang/rust:1.83.0[llvm_slot_19] dev-lang/rust-bin:1.82.0[llvm_slot_19] dev-lang/rust:1.82.0[llvm_slot_19] ) ) llvm_slot_20? ( || ( dev-lang/rust-bin:1.90.0[llvm_slot_20] dev-lang/rust:1.90.0[llvm_slot_20] dev-lang/rust-bin:1.89.0[llvm_slot_20] dev-lang/rust:1.89.0[llvm_slot_20] dev-lang/rust-bin:1.88.0[llvm_slot_20] dev-lang/rust:1.88.0[llvm_slot_20] dev-lang/rust-bin:1.87.0[llvm_slot_20] dev-lang/rust:1.87.0[llvm_slot_20] ) ) llvm_slot_21? ( || ( dev-lang/rust-bin:1.94.0[llvm_slot_21] dev-lang/rust:1.94.0[llvm_slot_21] dev-lang/rust-bin:1.93.1[llvm_slot_21] dev-lang/rust:1.93.1[llvm_slot_21] dev-lang/rust-bin:1.93.0[llvm_slot_21] dev-lang/rust:1.93.0[llvm_slot_21] dev-lang/rust-bin:1.92.0[llvm_slot_21] dev-lang/rust:1.92.0[llvm_slot_21] dev-lang/rust-bin:1.91.0[llvm_slot_21] dev-lang/rust:1.91.0[llvm_slot_21] ) ) +DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend setup unpack +DEPEND=selinux? ( sec-policy/selinux-thunderbird ) !system-librnp? ( dev-libs/jsoncpp ) system-librnp? ( >=dev-util/librnp-0.17.1 ) >=app-accessibility/at-spi2-core-2.46.0:2 dev-libs/glib:2 dev-libs/libffi:= >=dev-libs/nss-3.119 >=dev-libs/nspr-4.38 media-libs/alsa-lib media-libs/fontconfig media-libs/freetype media-libs/mesa media-video/ffmpeg sys-apps/dbus virtual/zlib:= virtual/freedesktop-icon-theme x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/libdrm x11-libs/pango x11-libs/pixman jack? ( virtual/jack ) pulseaudio? ( || ( media-libs/libpulse >=media-sound/apulse-0.1.12-r4[sdk] ) ) libproxy? ( net-libs/libproxy ) selinux? ( sec-policy/selinux-mozilla ) sndio? ( >=media-sound/sndio-1.8.0-r1 ) system-av1? ( >=media-libs/dav1d-1.0.0:= >=media-libs/libaom-1.0.0:= ) system-harfbuzz? ( >=media-gfx/graphite2-1.3.13 >=media-libs/harfbuzz-2.8.1:0= ) system-icu? ( >=dev-libs/icu-78.1:= ) system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1:= ) system-libevent? ( >=dev-libs/libevent-2.1.12:0=[threads(+)] ) system-libvpx? ( >=media-libs/libvpx-1.8.2:0=[postproc] ) system-pipewire? ( media-video/pipewire:= ) system-png? ( >=media-libs/libpng-1.6.45:0=[apng] ) system-webp? ( >=media-libs/libwebp-1.1.0:0= ) wayland? ( >=media-libs/libepoxy-1.5.10-r1 x11-libs/gtk+:3[wayland] ) wifi? ( kernel_linux? ( || ( net-misc/networkmanager net-misc/connman[networkmanager] ) ) ) X? ( virtual/opengl x11-libs/cairo[X] x11-libs/gtk+:3[X] x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrandr x11-libs/libxcb:= ) X? ( x11-base/xorg-proto x11-libs/libICE x11-libs/libSM ) +DESCRIPTION=Thunderbird Mail Client +EAPI=8 +HOMEPAGE=https://www.thunderbird.net/ +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=check-reqs desktop eapi9-ver flag-o-matic gnome2-utils linux-info llvm-r1 multiprocessing optfeature pax-utils python-any-r1 rust toolchain-funcs virtualx xdg +IUSE=+clang debug eme-free hardened hwaccel jack libproxy pgo pulseaudio sndio selinux +system-av1 +system-harfbuzz +system-icu +system-jpeg +system-libevent +system-libvpx system-pipewire system-png +system-webp wayland wifi +X +system-librnp 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_es-MX 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 +llvm_slot_21 llvm_slot_19 llvm_slot_20 +KEYWORDS=~amd64 ~arm64 ~loong ~ppc64 ~x86 +LICENSE=MPL-2.0 GPL-2 LGPL-2.1 +RDEPEND=selinux? ( sec-policy/selinux-thunderbird ) !system-librnp? ( dev-libs/jsoncpp ) system-librnp? ( >=dev-util/librnp-0.17.1 ) >=app-accessibility/at-spi2-core-2.46.0:2 dev-libs/glib:2 dev-libs/libffi:= >=dev-libs/nss-3.119 >=dev-libs/nspr-4.38 media-libs/alsa-lib media-libs/fontconfig media-libs/freetype media-libs/mesa media-video/ffmpeg sys-apps/dbus virtual/zlib:= virtual/freedesktop-icon-theme x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/libdrm x11-libs/pango x11-libs/pixman jack? ( virtual/jack ) pulseaudio? ( || ( media-libs/libpulse >=media-sound/apulse-0.1.12-r4[sdk] ) ) libproxy? ( net-libs/libproxy ) selinux? ( sec-policy/selinux-mozilla ) sndio? ( >=media-sound/sndio-1.8.0-r1 ) system-av1? ( >=media-libs/dav1d-1.0.0:= >=media-libs/libaom-1.0.0:= ) system-harfbuzz? ( >=media-gfx/graphite2-1.3.13 >=media-libs/harfbuzz-2.8.1:0= ) system-icu? ( >=dev-libs/icu-78.1:= ) system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1:= ) system-libevent? ( >=dev-libs/libevent-2.1.12:0=[threads(+)] ) system-libvpx? ( >=media-libs/libvpx-1.8.2:0=[postproc] ) system-pipewire? ( media-video/pipewire:= ) system-png? ( >=media-libs/libpng-1.6.45:0=[apng] ) system-webp? ( >=media-libs/libwebp-1.1.0:0= ) wayland? ( >=media-libs/libepoxy-1.5.10-r1 x11-libs/gtk+:3[wayland] ) wifi? ( kernel_linux? ( || ( net-misc/networkmanager net-misc/connman[networkmanager] ) ) ) X? ( virtual/opengl x11-libs/cairo[X] x11-libs/gtk+:3[X] x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrandr x11-libs/libxcb:= ) jack? ( virtual/jack ) +REQUIRED_USE=|| ( X wayland ) !system-librnp? ( clang ) debug? ( !system-av1 ) ^^ ( llvm_slot_19 llvm_slot_20 llvm_slot_21 ) +SLOT=0/stable +SRC_URI=https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/source/thunderbird-147.0.2.source.tar.xz -> thunderbird-147.0.2.source.tar.xz https://dev.gentoo.org/~juippis/mozilla/patchsets/firefox-147-patches-02t.tar.xz l10n_af? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/af.xpi -> thunderbird-147.0.2-af.xpi ) l10n_ar? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/ar.xpi -> thunderbird-147.0.2-ar.xpi ) l10n_ast? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/ast.xpi -> thunderbird-147.0.2-ast.xpi ) l10n_be? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/be.xpi -> thunderbird-147.0.2-be.xpi ) l10n_bg? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/bg.xpi -> thunderbird-147.0.2-bg.xpi ) l10n_br? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/br.xpi -> thunderbird-147.0.2-br.xpi ) l10n_ca? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/ca.xpi -> thunderbird-147.0.2-ca.xpi ) l10n_cak? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/cak.xpi -> thunderbird-147.0.2-cak.xpi ) l10n_cs? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/cs.xpi -> thunderbird-147.0.2-cs.xpi ) l10n_cy? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/cy.xpi -> thunderbird-147.0.2-cy.xpi ) l10n_da? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/da.xpi -> thunderbird-147.0.2-da.xpi ) l10n_de? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/de.xpi -> thunderbird-147.0.2-de.xpi ) l10n_dsb? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/dsb.xpi -> thunderbird-147.0.2-dsb.xpi ) l10n_el? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/el.xpi -> thunderbird-147.0.2-el.xpi ) l10n_en-CA? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/en-CA.xpi -> thunderbird-147.0.2-en-CA.xpi ) l10n_en-GB? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/en-GB.xpi -> thunderbird-147.0.2-en-GB.xpi ) l10n_es-AR? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/es-AR.xpi -> thunderbird-147.0.2-es-AR.xpi ) l10n_es-ES? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/es-ES.xpi -> thunderbird-147.0.2-es-ES.xpi ) l10n_es-MX? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/es-MX.xpi -> thunderbird-147.0.2-es-MX.xpi ) l10n_et? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/et.xpi -> thunderbird-147.0.2-et.xpi ) l10n_eu? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/eu.xpi -> thunderbird-147.0.2-eu.xpi ) l10n_fi? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/fi.xpi -> thunderbird-147.0.2-fi.xpi ) l10n_fr? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/fr.xpi -> thunderbird-147.0.2-fr.xpi ) l10n_fy? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/fy-NL.xpi -> thunderbird-147.0.2-fy-NL.xpi ) l10n_ga? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/ga-IE.xpi -> thunderbird-147.0.2-ga-IE.xpi ) l10n_gd? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/gd.xpi -> thunderbird-147.0.2-gd.xpi ) l10n_gl? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/gl.xpi -> thunderbird-147.0.2-gl.xpi ) l10n_he? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/he.xpi -> thunderbird-147.0.2-he.xpi ) l10n_hr? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/hr.xpi -> thunderbird-147.0.2-hr.xpi ) l10n_hsb? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/hsb.xpi -> thunderbird-147.0.2-hsb.xpi ) l10n_hu? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/hu.xpi -> thunderbird-147.0.2-hu.xpi ) l10n_id? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/id.xpi -> thunderbird-147.0.2-id.xpi ) l10n_is? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/is.xpi -> thunderbird-147.0.2-is.xpi ) l10n_it? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/it.xpi -> thunderbird-147.0.2-it.xpi ) l10n_ja? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/ja.xpi -> thunderbird-147.0.2-ja.xpi ) l10n_ka? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/ka.xpi -> thunderbird-147.0.2-ka.xpi ) l10n_kab? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/kab.xpi -> thunderbird-147.0.2-kab.xpi ) l10n_kk? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/kk.xpi -> thunderbird-147.0.2-kk.xpi ) l10n_ko? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/ko.xpi -> thunderbird-147.0.2-ko.xpi ) l10n_lt? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/lt.xpi -> thunderbird-147.0.2-lt.xpi ) l10n_lv? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/lv.xpi -> thunderbird-147.0.2-lv.xpi ) l10n_ms? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/ms.xpi -> thunderbird-147.0.2-ms.xpi ) l10n_nb? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/nb-NO.xpi -> thunderbird-147.0.2-nb-NO.xpi ) l10n_nl? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/nl.xpi -> thunderbird-147.0.2-nl.xpi ) l10n_nn? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/nn-NO.xpi -> thunderbird-147.0.2-nn-NO.xpi ) l10n_pa? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/pa-IN.xpi -> thunderbird-147.0.2-pa-IN.xpi ) l10n_pl? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/pl.xpi -> thunderbird-147.0.2-pl.xpi ) l10n_pt-BR? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/pt-BR.xpi -> thunderbird-147.0.2-pt-BR.xpi ) l10n_pt-PT? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/pt-PT.xpi -> thunderbird-147.0.2-pt-PT.xpi ) l10n_rm? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/rm.xpi -> thunderbird-147.0.2-rm.xpi ) l10n_ro? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/ro.xpi -> thunderbird-147.0.2-ro.xpi ) l10n_ru? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/ru.xpi -> thunderbird-147.0.2-ru.xpi ) l10n_sk? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/sk.xpi -> thunderbird-147.0.2-sk.xpi ) l10n_sl? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/sl.xpi -> thunderbird-147.0.2-sl.xpi ) l10n_sq? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/sq.xpi -> thunderbird-147.0.2-sq.xpi ) l10n_sr? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/sr.xpi -> thunderbird-147.0.2-sr.xpi ) l10n_sv? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/sv-SE.xpi -> thunderbird-147.0.2-sv-SE.xpi ) l10n_th? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/th.xpi -> thunderbird-147.0.2-th.xpi ) l10n_tr? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/tr.xpi -> thunderbird-147.0.2-tr.xpi ) l10n_uk? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/uk.xpi -> thunderbird-147.0.2-uk.xpi ) l10n_uz? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/uz.xpi -> thunderbird-147.0.2-uz.xpi ) l10n_vi? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/vi.xpi -> thunderbird-147.0.2-vi.xpi ) l10n_zh-CN? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/zh-CN.xpi -> thunderbird-147.0.2-zh-CN.xpi ) l10n_zh-TW? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/zh-TW.xpi -> thunderbird-147.0.2-zh-TW.xpi ) +_eclasses_=check-reqs 12ab9d3fc16bfe1f87c6fb652324b57c desktop 26d57169ca094c04be416993844ec8bc eapi9-ver 6a71fa30cdb3fe445114fdeab156c1f0 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnome2-utils a8cf148ec7f5ae0b1f1d33ae5f7f9e88 linux-info efd923656513c879204fec6638eadee5 llvm-r1 59c52dab9ddf3ca54e79003177507e97 llvm-utils e7edb4086e31c8537574b263d899f826 multiprocessing 1e32df7deee68372153dca65f4a7c21f optfeature 538bce96e5589935b57e178e8635f301 pax-utils 5555f2e75744739fe100ee62c22d28fe python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_md5_=c657a0689bc84ca9b032b00c4b3d0906 diff --git a/metadata/md5-cache/mail-client/thunderbird-bin-140.6.0 b/metadata/md5-cache/mail-client/thunderbird-bin-140.6.0 deleted file mode 100644 index dfbd63f1dfc0..000000000000 --- a/metadata/md5-cache/mail-client/thunderbird-bin-140.6.0 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=app-arch/unzip -DEFINED_PHASES=install postinst postrm preinst unpack -DESCRIPTION=Thunderbird Mail Client -EAPI=8 -HOMEPAGE=https://www.thunderbird.net/ -IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info -INHERIT=desktop optfeature pax-utils xdg -IUSE=selinux wayland 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_es-MX 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 -KEYWORDS=-* amd64 ~x86 -LICENSE=MPL-2.0 GPL-2 LGPL-2.1 -RDEPEND=|| ( media-libs/libpulse media-sound/apulse ) >=app-accessibility/at-spi2-core-2.46.0:2 >=dev-libs/glib-2.26:2 media-libs/alsa-lib media-libs/fontconfig >=media-libs/freetype-2.4.10 sys-apps/dbus virtual/freedesktop-icon-theme >=x11-libs/cairo-1.10[X] x11-libs/gdk-pixbuf:2 >=x11-libs/gtk+-3.11:3[X,wayland?] x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXcursor x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXi x11-libs/libXrandr x11-libs/libXrender x11-libs/libxcb >=x11-libs/pango-1.22.0 selinux? ( sec-policy/selinux-thunderbird ) -RESTRICT=strip -SLOT=0/esr -SRC_URI=amd64? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/en-US/thunderbird-140.6.0esr.tar.xz -> thunderbird-bin_x86_64-140.6.0.tar.xz ) x86? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-i686/en-US/thunderbird-140.6.0esr.tar.xz -> thunderbird-bin_i686-140.6.0.tar.xz ) l10n_af? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/af.xpi -> thunderbird-140.6.0esr-af.xpi ) l10n_ar? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/ar.xpi -> thunderbird-140.6.0esr-ar.xpi ) l10n_ast? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/ast.xpi -> thunderbird-140.6.0esr-ast.xpi ) l10n_be? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/be.xpi -> thunderbird-140.6.0esr-be.xpi ) l10n_bg? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/bg.xpi -> thunderbird-140.6.0esr-bg.xpi ) l10n_br? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/br.xpi -> thunderbird-140.6.0esr-br.xpi ) l10n_ca? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/ca.xpi -> thunderbird-140.6.0esr-ca.xpi ) l10n_cak? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/cak.xpi -> thunderbird-140.6.0esr-cak.xpi ) l10n_cs? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/cs.xpi -> thunderbird-140.6.0esr-cs.xpi ) l10n_cy? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/cy.xpi -> thunderbird-140.6.0esr-cy.xpi ) l10n_da? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/da.xpi -> thunderbird-140.6.0esr-da.xpi ) l10n_de? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/de.xpi -> thunderbird-140.6.0esr-de.xpi ) l10n_dsb? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/dsb.xpi -> thunderbird-140.6.0esr-dsb.xpi ) l10n_el? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/el.xpi -> thunderbird-140.6.0esr-el.xpi ) l10n_en-CA? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/en-CA.xpi -> thunderbird-140.6.0esr-en-CA.xpi ) l10n_en-GB? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/en-GB.xpi -> thunderbird-140.6.0esr-en-GB.xpi ) l10n_es-AR? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/es-AR.xpi -> thunderbird-140.6.0esr-es-AR.xpi ) l10n_es-ES? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/es-ES.xpi -> thunderbird-140.6.0esr-es-ES.xpi ) l10n_es-MX? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/es-MX.xpi -> thunderbird-140.6.0esr-es-MX.xpi ) l10n_et? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/et.xpi -> thunderbird-140.6.0esr-et.xpi ) l10n_eu? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/eu.xpi -> thunderbird-140.6.0esr-eu.xpi ) l10n_fi? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/fi.xpi -> thunderbird-140.6.0esr-fi.xpi ) l10n_fr? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/fr.xpi -> thunderbird-140.6.0esr-fr.xpi ) l10n_fy? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/fy-NL.xpi -> thunderbird-140.6.0esr-fy-NL.xpi ) l10n_ga? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/ga-IE.xpi -> thunderbird-140.6.0esr-ga-IE.xpi ) l10n_gd? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/gd.xpi -> thunderbird-140.6.0esr-gd.xpi ) l10n_gl? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/gl.xpi -> thunderbird-140.6.0esr-gl.xpi ) l10n_he? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/he.xpi -> thunderbird-140.6.0esr-he.xpi ) l10n_hr? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/hr.xpi -> thunderbird-140.6.0esr-hr.xpi ) l10n_hsb? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/hsb.xpi -> thunderbird-140.6.0esr-hsb.xpi ) l10n_hu? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/hu.xpi -> thunderbird-140.6.0esr-hu.xpi ) l10n_id? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/id.xpi -> thunderbird-140.6.0esr-id.xpi ) l10n_is? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/is.xpi -> thunderbird-140.6.0esr-is.xpi ) l10n_it? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/it.xpi -> thunderbird-140.6.0esr-it.xpi ) l10n_ja? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/ja.xpi -> thunderbird-140.6.0esr-ja.xpi ) l10n_ka? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/ka.xpi -> thunderbird-140.6.0esr-ka.xpi ) l10n_kab? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/kab.xpi -> thunderbird-140.6.0esr-kab.xpi ) l10n_kk? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/kk.xpi -> thunderbird-140.6.0esr-kk.xpi ) l10n_ko? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/ko.xpi -> thunderbird-140.6.0esr-ko.xpi ) l10n_lt? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/lt.xpi -> thunderbird-140.6.0esr-lt.xpi ) l10n_lv? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/lv.xpi -> thunderbird-140.6.0esr-lv.xpi ) l10n_ms? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/ms.xpi -> thunderbird-140.6.0esr-ms.xpi ) l10n_nb? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/nb-NO.xpi -> thunderbird-140.6.0esr-nb-NO.xpi ) l10n_nl? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/nl.xpi -> thunderbird-140.6.0esr-nl.xpi ) l10n_nn? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/nn-NO.xpi -> thunderbird-140.6.0esr-nn-NO.xpi ) l10n_pa? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/pa-IN.xpi -> thunderbird-140.6.0esr-pa-IN.xpi ) l10n_pl? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/pl.xpi -> thunderbird-140.6.0esr-pl.xpi ) l10n_pt-BR? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/pt-BR.xpi -> thunderbird-140.6.0esr-pt-BR.xpi ) l10n_pt-PT? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/pt-PT.xpi -> thunderbird-140.6.0esr-pt-PT.xpi ) l10n_rm? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/rm.xpi -> thunderbird-140.6.0esr-rm.xpi ) l10n_ro? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/ro.xpi -> thunderbird-140.6.0esr-ro.xpi ) l10n_ru? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/ru.xpi -> thunderbird-140.6.0esr-ru.xpi ) l10n_sk? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/sk.xpi -> thunderbird-140.6.0esr-sk.xpi ) l10n_sl? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/sl.xpi -> thunderbird-140.6.0esr-sl.xpi ) l10n_sq? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/sq.xpi -> thunderbird-140.6.0esr-sq.xpi ) l10n_sr? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/sr.xpi -> thunderbird-140.6.0esr-sr.xpi ) l10n_sv? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/sv-SE.xpi -> thunderbird-140.6.0esr-sv-SE.xpi ) l10n_th? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/th.xpi -> thunderbird-140.6.0esr-th.xpi ) l10n_tr? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/tr.xpi -> thunderbird-140.6.0esr-tr.xpi ) l10n_uk? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/uk.xpi -> thunderbird-140.6.0esr-uk.xpi ) l10n_uz? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/uz.xpi -> thunderbird-140.6.0esr-uz.xpi ) l10n_vi? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/vi.xpi -> thunderbird-140.6.0esr-vi.xpi ) l10n_zh-CN? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/zh-CN.xpi -> thunderbird-140.6.0esr-zh-CN.xpi ) l10n_zh-TW? ( https://archive.mozilla.org/pub/thunderbird/releases/140.6.0esr/linux-x86_64/xpi/zh-TW.xpi -> thunderbird-140.6.0esr-zh-TW.xpi ) -_eclasses_=desktop 26d57169ca094c04be416993844ec8bc optfeature 538bce96e5589935b57e178e8635f301 pax-utils 5555f2e75744739fe100ee62c22d28fe xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=0f68aa8dcfc32f4dbfb4f0398149fc08 diff --git a/metadata/md5-cache/mail-client/thunderbird-bin-140.7.0 b/metadata/md5-cache/mail-client/thunderbird-bin-140.7.0 deleted file mode 100644 index 6921ed961994..000000000000 --- a/metadata/md5-cache/mail-client/thunderbird-bin-140.7.0 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=app-arch/unzip -DEFINED_PHASES=install postinst postrm preinst unpack -DESCRIPTION=Thunderbird Mail Client -EAPI=8 -HOMEPAGE=https://www.thunderbird.net/ -IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info -INHERIT=desktop optfeature pax-utils xdg -IUSE=selinux wayland 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_es-MX 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 -KEYWORDS=-* amd64 ~x86 -LICENSE=MPL-2.0 GPL-2 LGPL-2.1 -RDEPEND=|| ( media-libs/libpulse media-sound/apulse ) >=app-accessibility/at-spi2-core-2.46.0:2 >=dev-libs/glib-2.26:2 media-libs/alsa-lib media-libs/fontconfig >=media-libs/freetype-2.4.10 sys-apps/dbus virtual/freedesktop-icon-theme >=x11-libs/cairo-1.10[X] x11-libs/gdk-pixbuf:2 >=x11-libs/gtk+-3.11:3[X,wayland?] x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXcursor x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXi x11-libs/libXrandr x11-libs/libXrender x11-libs/libxcb >=x11-libs/pango-1.22.0 selinux? ( sec-policy/selinux-thunderbird ) -RESTRICT=strip -SLOT=0/esr -SRC_URI=amd64? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/en-US/thunderbird-140.7.0esr.tar.xz -> thunderbird-bin_x86_64-140.7.0.tar.xz ) x86? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-i686/en-US/thunderbird-140.7.0esr.tar.xz -> thunderbird-bin_i686-140.7.0.tar.xz ) l10n_af? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/af.xpi -> thunderbird-140.7.0esr-af.xpi ) l10n_ar? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/ar.xpi -> thunderbird-140.7.0esr-ar.xpi ) l10n_ast? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/ast.xpi -> thunderbird-140.7.0esr-ast.xpi ) l10n_be? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/be.xpi -> thunderbird-140.7.0esr-be.xpi ) l10n_bg? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/bg.xpi -> thunderbird-140.7.0esr-bg.xpi ) l10n_br? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/br.xpi -> thunderbird-140.7.0esr-br.xpi ) l10n_ca? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/ca.xpi -> thunderbird-140.7.0esr-ca.xpi ) l10n_cak? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/cak.xpi -> thunderbird-140.7.0esr-cak.xpi ) l10n_cs? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/cs.xpi -> thunderbird-140.7.0esr-cs.xpi ) l10n_cy? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/cy.xpi -> thunderbird-140.7.0esr-cy.xpi ) l10n_da? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/da.xpi -> thunderbird-140.7.0esr-da.xpi ) l10n_de? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/de.xpi -> thunderbird-140.7.0esr-de.xpi ) l10n_dsb? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/dsb.xpi -> thunderbird-140.7.0esr-dsb.xpi ) l10n_el? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/el.xpi -> thunderbird-140.7.0esr-el.xpi ) l10n_en-CA? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/en-CA.xpi -> thunderbird-140.7.0esr-en-CA.xpi ) l10n_en-GB? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/en-GB.xpi -> thunderbird-140.7.0esr-en-GB.xpi ) l10n_es-AR? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/es-AR.xpi -> thunderbird-140.7.0esr-es-AR.xpi ) l10n_es-ES? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/es-ES.xpi -> thunderbird-140.7.0esr-es-ES.xpi ) l10n_es-MX? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/es-MX.xpi -> thunderbird-140.7.0esr-es-MX.xpi ) l10n_et? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/et.xpi -> thunderbird-140.7.0esr-et.xpi ) l10n_eu? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/eu.xpi -> thunderbird-140.7.0esr-eu.xpi ) l10n_fi? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/fi.xpi -> thunderbird-140.7.0esr-fi.xpi ) l10n_fr? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/fr.xpi -> thunderbird-140.7.0esr-fr.xpi ) l10n_fy? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/fy-NL.xpi -> thunderbird-140.7.0esr-fy-NL.xpi ) l10n_ga? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/ga-IE.xpi -> thunderbird-140.7.0esr-ga-IE.xpi ) l10n_gd? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/gd.xpi -> thunderbird-140.7.0esr-gd.xpi ) l10n_gl? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/gl.xpi -> thunderbird-140.7.0esr-gl.xpi ) l10n_he? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/he.xpi -> thunderbird-140.7.0esr-he.xpi ) l10n_hr? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/hr.xpi -> thunderbird-140.7.0esr-hr.xpi ) l10n_hsb? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/hsb.xpi -> thunderbird-140.7.0esr-hsb.xpi ) l10n_hu? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/hu.xpi -> thunderbird-140.7.0esr-hu.xpi ) l10n_id? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/id.xpi -> thunderbird-140.7.0esr-id.xpi ) l10n_is? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/is.xpi -> thunderbird-140.7.0esr-is.xpi ) l10n_it? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/it.xpi -> thunderbird-140.7.0esr-it.xpi ) l10n_ja? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/ja.xpi -> thunderbird-140.7.0esr-ja.xpi ) l10n_ka? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/ka.xpi -> thunderbird-140.7.0esr-ka.xpi ) l10n_kab? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/kab.xpi -> thunderbird-140.7.0esr-kab.xpi ) l10n_kk? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/kk.xpi -> thunderbird-140.7.0esr-kk.xpi ) l10n_ko? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/ko.xpi -> thunderbird-140.7.0esr-ko.xpi ) l10n_lt? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/lt.xpi -> thunderbird-140.7.0esr-lt.xpi ) l10n_lv? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/lv.xpi -> thunderbird-140.7.0esr-lv.xpi ) l10n_ms? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/ms.xpi -> thunderbird-140.7.0esr-ms.xpi ) l10n_nb? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/nb-NO.xpi -> thunderbird-140.7.0esr-nb-NO.xpi ) l10n_nl? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/nl.xpi -> thunderbird-140.7.0esr-nl.xpi ) l10n_nn? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/nn-NO.xpi -> thunderbird-140.7.0esr-nn-NO.xpi ) l10n_pa? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/pa-IN.xpi -> thunderbird-140.7.0esr-pa-IN.xpi ) l10n_pl? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/pl.xpi -> thunderbird-140.7.0esr-pl.xpi ) l10n_pt-BR? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/pt-BR.xpi -> thunderbird-140.7.0esr-pt-BR.xpi ) l10n_pt-PT? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/pt-PT.xpi -> thunderbird-140.7.0esr-pt-PT.xpi ) l10n_rm? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/rm.xpi -> thunderbird-140.7.0esr-rm.xpi ) l10n_ro? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/ro.xpi -> thunderbird-140.7.0esr-ro.xpi ) l10n_ru? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/ru.xpi -> thunderbird-140.7.0esr-ru.xpi ) l10n_sk? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/sk.xpi -> thunderbird-140.7.0esr-sk.xpi ) l10n_sl? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/sl.xpi -> thunderbird-140.7.0esr-sl.xpi ) l10n_sq? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/sq.xpi -> thunderbird-140.7.0esr-sq.xpi ) l10n_sr? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/sr.xpi -> thunderbird-140.7.0esr-sr.xpi ) l10n_sv? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/sv-SE.xpi -> thunderbird-140.7.0esr-sv-SE.xpi ) l10n_th? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/th.xpi -> thunderbird-140.7.0esr-th.xpi ) l10n_tr? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/tr.xpi -> thunderbird-140.7.0esr-tr.xpi ) l10n_uk? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/uk.xpi -> thunderbird-140.7.0esr-uk.xpi ) l10n_uz? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/uz.xpi -> thunderbird-140.7.0esr-uz.xpi ) l10n_vi? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/vi.xpi -> thunderbird-140.7.0esr-vi.xpi ) l10n_zh-CN? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/zh-CN.xpi -> thunderbird-140.7.0esr-zh-CN.xpi ) l10n_zh-TW? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/linux-x86_64/xpi/zh-TW.xpi -> thunderbird-140.7.0esr-zh-TW.xpi ) -_eclasses_=desktop 26d57169ca094c04be416993844ec8bc optfeature 538bce96e5589935b57e178e8635f301 pax-utils 5555f2e75744739fe100ee62c22d28fe xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=67ae2dba94e99d1664abbd63ba51c0a7 diff --git a/metadata/md5-cache/mail-client/thunderbird-bin-140.7.1 b/metadata/md5-cache/mail-client/thunderbird-bin-140.7.1 deleted file mode 100644 index 4fa71d7d61b9..000000000000 --- a/metadata/md5-cache/mail-client/thunderbird-bin-140.7.1 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=app-arch/unzip -DEFINED_PHASES=install postinst postrm preinst unpack -DESCRIPTION=Thunderbird Mail Client -EAPI=8 -HOMEPAGE=https://www.thunderbird.net/ -IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info -INHERIT=desktop optfeature pax-utils xdg -IUSE=selinux wayland 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_es-MX 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 -KEYWORDS=-* amd64 ~x86 -LICENSE=MPL-2.0 GPL-2 LGPL-2.1 -RDEPEND=|| ( media-libs/libpulse media-sound/apulse ) >=app-accessibility/at-spi2-core-2.46.0:2 >=dev-libs/glib-2.26:2 media-libs/alsa-lib media-libs/fontconfig >=media-libs/freetype-2.4.10 sys-apps/dbus virtual/freedesktop-icon-theme >=x11-libs/cairo-1.10[X] x11-libs/gdk-pixbuf:2 >=x11-libs/gtk+-3.11:3[X,wayland?] x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXcursor x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXi x11-libs/libXrandr x11-libs/libXrender x11-libs/libxcb >=x11-libs/pango-1.22.0 selinux? ( sec-policy/selinux-thunderbird ) -RESTRICT=strip -SLOT=0/esr -SRC_URI=amd64? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/en-US/thunderbird-140.7.1esr.tar.xz -> thunderbird-bin_x86_64-140.7.1.tar.xz ) x86? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-i686/en-US/thunderbird-140.7.1esr.tar.xz -> thunderbird-bin_i686-140.7.1.tar.xz ) l10n_af? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/af.xpi -> thunderbird-140.7.1esr-af.xpi ) l10n_ar? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/ar.xpi -> thunderbird-140.7.1esr-ar.xpi ) l10n_ast? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/ast.xpi -> thunderbird-140.7.1esr-ast.xpi ) l10n_be? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/be.xpi -> thunderbird-140.7.1esr-be.xpi ) l10n_bg? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/bg.xpi -> thunderbird-140.7.1esr-bg.xpi ) l10n_br? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/br.xpi -> thunderbird-140.7.1esr-br.xpi ) l10n_ca? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/ca.xpi -> thunderbird-140.7.1esr-ca.xpi ) l10n_cak? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/cak.xpi -> thunderbird-140.7.1esr-cak.xpi ) l10n_cs? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/cs.xpi -> thunderbird-140.7.1esr-cs.xpi ) l10n_cy? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/cy.xpi -> thunderbird-140.7.1esr-cy.xpi ) l10n_da? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/da.xpi -> thunderbird-140.7.1esr-da.xpi ) l10n_de? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/de.xpi -> thunderbird-140.7.1esr-de.xpi ) l10n_dsb? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/dsb.xpi -> thunderbird-140.7.1esr-dsb.xpi ) l10n_el? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/el.xpi -> thunderbird-140.7.1esr-el.xpi ) l10n_en-CA? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/en-CA.xpi -> thunderbird-140.7.1esr-en-CA.xpi ) l10n_en-GB? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/en-GB.xpi -> thunderbird-140.7.1esr-en-GB.xpi ) l10n_es-AR? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/es-AR.xpi -> thunderbird-140.7.1esr-es-AR.xpi ) l10n_es-ES? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/es-ES.xpi -> thunderbird-140.7.1esr-es-ES.xpi ) l10n_es-MX? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/es-MX.xpi -> thunderbird-140.7.1esr-es-MX.xpi ) l10n_et? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/et.xpi -> thunderbird-140.7.1esr-et.xpi ) l10n_eu? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/eu.xpi -> thunderbird-140.7.1esr-eu.xpi ) l10n_fi? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/fi.xpi -> thunderbird-140.7.1esr-fi.xpi ) l10n_fr? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/fr.xpi -> thunderbird-140.7.1esr-fr.xpi ) l10n_fy? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/fy-NL.xpi -> thunderbird-140.7.1esr-fy-NL.xpi ) l10n_ga? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/ga-IE.xpi -> thunderbird-140.7.1esr-ga-IE.xpi ) l10n_gd? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/gd.xpi -> thunderbird-140.7.1esr-gd.xpi ) l10n_gl? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/gl.xpi -> thunderbird-140.7.1esr-gl.xpi ) l10n_he? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/he.xpi -> thunderbird-140.7.1esr-he.xpi ) l10n_hr? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/hr.xpi -> thunderbird-140.7.1esr-hr.xpi ) l10n_hsb? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/hsb.xpi -> thunderbird-140.7.1esr-hsb.xpi ) l10n_hu? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/hu.xpi -> thunderbird-140.7.1esr-hu.xpi ) l10n_id? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/id.xpi -> thunderbird-140.7.1esr-id.xpi ) l10n_is? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/is.xpi -> thunderbird-140.7.1esr-is.xpi ) l10n_it? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/it.xpi -> thunderbird-140.7.1esr-it.xpi ) l10n_ja? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/ja.xpi -> thunderbird-140.7.1esr-ja.xpi ) l10n_ka? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/ka.xpi -> thunderbird-140.7.1esr-ka.xpi ) l10n_kab? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/kab.xpi -> thunderbird-140.7.1esr-kab.xpi ) l10n_kk? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/kk.xpi -> thunderbird-140.7.1esr-kk.xpi ) l10n_ko? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/ko.xpi -> thunderbird-140.7.1esr-ko.xpi ) l10n_lt? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/lt.xpi -> thunderbird-140.7.1esr-lt.xpi ) l10n_lv? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/lv.xpi -> thunderbird-140.7.1esr-lv.xpi ) l10n_ms? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/ms.xpi -> thunderbird-140.7.1esr-ms.xpi ) l10n_nb? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/nb-NO.xpi -> thunderbird-140.7.1esr-nb-NO.xpi ) l10n_nl? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/nl.xpi -> thunderbird-140.7.1esr-nl.xpi ) l10n_nn? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/nn-NO.xpi -> thunderbird-140.7.1esr-nn-NO.xpi ) l10n_pa? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/pa-IN.xpi -> thunderbird-140.7.1esr-pa-IN.xpi ) l10n_pl? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/pl.xpi -> thunderbird-140.7.1esr-pl.xpi ) l10n_pt-BR? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/pt-BR.xpi -> thunderbird-140.7.1esr-pt-BR.xpi ) l10n_pt-PT? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/pt-PT.xpi -> thunderbird-140.7.1esr-pt-PT.xpi ) l10n_rm? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/rm.xpi -> thunderbird-140.7.1esr-rm.xpi ) l10n_ro? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/ro.xpi -> thunderbird-140.7.1esr-ro.xpi ) l10n_ru? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/ru.xpi -> thunderbird-140.7.1esr-ru.xpi ) l10n_sk? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/sk.xpi -> thunderbird-140.7.1esr-sk.xpi ) l10n_sl? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/sl.xpi -> thunderbird-140.7.1esr-sl.xpi ) l10n_sq? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/sq.xpi -> thunderbird-140.7.1esr-sq.xpi ) l10n_sr? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/sr.xpi -> thunderbird-140.7.1esr-sr.xpi ) l10n_sv? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/sv-SE.xpi -> thunderbird-140.7.1esr-sv-SE.xpi ) l10n_th? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/th.xpi -> thunderbird-140.7.1esr-th.xpi ) l10n_tr? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/tr.xpi -> thunderbird-140.7.1esr-tr.xpi ) l10n_uk? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/uk.xpi -> thunderbird-140.7.1esr-uk.xpi ) l10n_uz? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/uz.xpi -> thunderbird-140.7.1esr-uz.xpi ) l10n_vi? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/vi.xpi -> thunderbird-140.7.1esr-vi.xpi ) l10n_zh-CN? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/zh-CN.xpi -> thunderbird-140.7.1esr-zh-CN.xpi ) l10n_zh-TW? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.1esr/linux-x86_64/xpi/zh-TW.xpi -> thunderbird-140.7.1esr-zh-TW.xpi ) -_eclasses_=desktop 26d57169ca094c04be416993844ec8bc optfeature 538bce96e5589935b57e178e8635f301 pax-utils 5555f2e75744739fe100ee62c22d28fe xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=67ae2dba94e99d1664abbd63ba51c0a7 diff --git a/metadata/md5-cache/mail-client/thunderbird-bin-140.7.2 b/metadata/md5-cache/mail-client/thunderbird-bin-140.7.2 new file mode 100644 index 000000000000..19289718ff12 --- /dev/null +++ b/metadata/md5-cache/mail-client/thunderbird-bin-140.7.2 @@ -0,0 +1,16 @@ +BDEPEND=app-arch/unzip +DEFINED_PHASES=install postinst postrm preinst unpack +DESCRIPTION=Thunderbird Mail Client +EAPI=8 +HOMEPAGE=https://www.thunderbird.net/ +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=desktop optfeature pax-utils xdg +IUSE=selinux wayland 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_es-MX 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 +KEYWORDS=-* amd64 ~x86 +LICENSE=MPL-2.0 GPL-2 LGPL-2.1 +RDEPEND=|| ( media-libs/libpulse media-sound/apulse ) >=app-accessibility/at-spi2-core-2.46.0:2 >=dev-libs/glib-2.26:2 media-libs/alsa-lib media-libs/fontconfig >=media-libs/freetype-2.4.10 sys-apps/dbus virtual/freedesktop-icon-theme >=x11-libs/cairo-1.10[X] x11-libs/gdk-pixbuf:2 >=x11-libs/gtk+-3.11:3[X,wayland?] x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXcursor x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXi x11-libs/libXrandr x11-libs/libXrender x11-libs/libxcb >=x11-libs/pango-1.22.0 selinux? ( sec-policy/selinux-thunderbird ) +RESTRICT=strip +SLOT=0/esr +SRC_URI=amd64? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/en-US/thunderbird-140.7.2esr.tar.xz -> thunderbird-bin_x86_64-140.7.2.tar.xz ) x86? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-i686/en-US/thunderbird-140.7.2esr.tar.xz -> thunderbird-bin_i686-140.7.2.tar.xz ) l10n_af? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/af.xpi -> thunderbird-140.7.2esr-af.xpi ) l10n_ar? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/ar.xpi -> thunderbird-140.7.2esr-ar.xpi ) l10n_ast? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/ast.xpi -> thunderbird-140.7.2esr-ast.xpi ) l10n_be? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/be.xpi -> thunderbird-140.7.2esr-be.xpi ) l10n_bg? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/bg.xpi -> thunderbird-140.7.2esr-bg.xpi ) l10n_br? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/br.xpi -> thunderbird-140.7.2esr-br.xpi ) l10n_ca? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/ca.xpi -> thunderbird-140.7.2esr-ca.xpi ) l10n_cak? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/cak.xpi -> thunderbird-140.7.2esr-cak.xpi ) l10n_cs? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/cs.xpi -> thunderbird-140.7.2esr-cs.xpi ) l10n_cy? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/cy.xpi -> thunderbird-140.7.2esr-cy.xpi ) l10n_da? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/da.xpi -> thunderbird-140.7.2esr-da.xpi ) l10n_de? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/de.xpi -> thunderbird-140.7.2esr-de.xpi ) l10n_dsb? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/dsb.xpi -> thunderbird-140.7.2esr-dsb.xpi ) l10n_el? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/el.xpi -> thunderbird-140.7.2esr-el.xpi ) l10n_en-CA? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/en-CA.xpi -> thunderbird-140.7.2esr-en-CA.xpi ) l10n_en-GB? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/en-GB.xpi -> thunderbird-140.7.2esr-en-GB.xpi ) l10n_es-AR? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/es-AR.xpi -> thunderbird-140.7.2esr-es-AR.xpi ) l10n_es-ES? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/es-ES.xpi -> thunderbird-140.7.2esr-es-ES.xpi ) l10n_es-MX? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/es-MX.xpi -> thunderbird-140.7.2esr-es-MX.xpi ) l10n_et? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/et.xpi -> thunderbird-140.7.2esr-et.xpi ) l10n_eu? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/eu.xpi -> thunderbird-140.7.2esr-eu.xpi ) l10n_fi? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/fi.xpi -> thunderbird-140.7.2esr-fi.xpi ) l10n_fr? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/fr.xpi -> thunderbird-140.7.2esr-fr.xpi ) l10n_fy? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/fy-NL.xpi -> thunderbird-140.7.2esr-fy-NL.xpi ) l10n_ga? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/ga-IE.xpi -> thunderbird-140.7.2esr-ga-IE.xpi ) l10n_gd? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/gd.xpi -> thunderbird-140.7.2esr-gd.xpi ) l10n_gl? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/gl.xpi -> thunderbird-140.7.2esr-gl.xpi ) l10n_he? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/he.xpi -> thunderbird-140.7.2esr-he.xpi ) l10n_hr? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/hr.xpi -> thunderbird-140.7.2esr-hr.xpi ) l10n_hsb? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/hsb.xpi -> thunderbird-140.7.2esr-hsb.xpi ) l10n_hu? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/hu.xpi -> thunderbird-140.7.2esr-hu.xpi ) l10n_id? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/id.xpi -> thunderbird-140.7.2esr-id.xpi ) l10n_is? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/is.xpi -> thunderbird-140.7.2esr-is.xpi ) l10n_it? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/it.xpi -> thunderbird-140.7.2esr-it.xpi ) l10n_ja? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/ja.xpi -> thunderbird-140.7.2esr-ja.xpi ) l10n_ka? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/ka.xpi -> thunderbird-140.7.2esr-ka.xpi ) l10n_kab? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/kab.xpi -> thunderbird-140.7.2esr-kab.xpi ) l10n_kk? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/kk.xpi -> thunderbird-140.7.2esr-kk.xpi ) l10n_ko? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/ko.xpi -> thunderbird-140.7.2esr-ko.xpi ) l10n_lt? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/lt.xpi -> thunderbird-140.7.2esr-lt.xpi ) l10n_lv? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/lv.xpi -> thunderbird-140.7.2esr-lv.xpi ) l10n_ms? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/ms.xpi -> thunderbird-140.7.2esr-ms.xpi ) l10n_nb? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/nb-NO.xpi -> thunderbird-140.7.2esr-nb-NO.xpi ) l10n_nl? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/nl.xpi -> thunderbird-140.7.2esr-nl.xpi ) l10n_nn? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/nn-NO.xpi -> thunderbird-140.7.2esr-nn-NO.xpi ) l10n_pa? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/pa-IN.xpi -> thunderbird-140.7.2esr-pa-IN.xpi ) l10n_pl? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/pl.xpi -> thunderbird-140.7.2esr-pl.xpi ) l10n_pt-BR? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/pt-BR.xpi -> thunderbird-140.7.2esr-pt-BR.xpi ) l10n_pt-PT? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/pt-PT.xpi -> thunderbird-140.7.2esr-pt-PT.xpi ) l10n_rm? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/rm.xpi -> thunderbird-140.7.2esr-rm.xpi ) l10n_ro? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/ro.xpi -> thunderbird-140.7.2esr-ro.xpi ) l10n_ru? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/ru.xpi -> thunderbird-140.7.2esr-ru.xpi ) l10n_sk? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/sk.xpi -> thunderbird-140.7.2esr-sk.xpi ) l10n_sl? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/sl.xpi -> thunderbird-140.7.2esr-sl.xpi ) l10n_sq? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/sq.xpi -> thunderbird-140.7.2esr-sq.xpi ) l10n_sr? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/sr.xpi -> thunderbird-140.7.2esr-sr.xpi ) l10n_sv? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/sv-SE.xpi -> thunderbird-140.7.2esr-sv-SE.xpi ) l10n_th? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/th.xpi -> thunderbird-140.7.2esr-th.xpi ) l10n_tr? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/tr.xpi -> thunderbird-140.7.2esr-tr.xpi ) l10n_uk? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/uk.xpi -> thunderbird-140.7.2esr-uk.xpi ) l10n_uz? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/uz.xpi -> thunderbird-140.7.2esr-uz.xpi ) l10n_vi? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/vi.xpi -> thunderbird-140.7.2esr-vi.xpi ) l10n_zh-CN? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/zh-CN.xpi -> thunderbird-140.7.2esr-zh-CN.xpi ) l10n_zh-TW? ( https://archive.mozilla.org/pub/thunderbird/releases/140.7.2esr/linux-x86_64/xpi/zh-TW.xpi -> thunderbird-140.7.2esr-zh-TW.xpi ) +_eclasses_=desktop 26d57169ca094c04be416993844ec8bc optfeature 538bce96e5589935b57e178e8635f301 pax-utils 5555f2e75744739fe100ee62c22d28fe xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_md5_=67ae2dba94e99d1664abbd63ba51c0a7 diff --git a/metadata/md5-cache/mail-client/thunderbird-bin-146.0 b/metadata/md5-cache/mail-client/thunderbird-bin-146.0 deleted file mode 100644 index f791fc8d37ab..000000000000 --- a/metadata/md5-cache/mail-client/thunderbird-bin-146.0 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=app-arch/unzip -DEFINED_PHASES=install postinst postrm preinst unpack -DESCRIPTION=Thunderbird Mail Client -EAPI=8 -HOMEPAGE=https://www.thunderbird.net/ -IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info -INHERIT=desktop optfeature pax-utils xdg -IUSE=selinux wayland 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_es-MX 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 -KEYWORDS=-* amd64 -LICENSE=MPL-2.0 GPL-2 LGPL-2.1 -RDEPEND=|| ( media-libs/libpulse media-sound/apulse ) >=app-accessibility/at-spi2-core-2.46.0:2 >=dev-libs/glib-2.26:2 media-libs/alsa-lib media-libs/fontconfig >=media-libs/freetype-2.4.10 sys-apps/dbus virtual/freedesktop-icon-theme >=x11-libs/cairo-1.10[X] x11-libs/gdk-pixbuf:2 >=x11-libs/gtk+-3.11:3[X,wayland?] x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXcursor x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXi x11-libs/libXrandr x11-libs/libXrender x11-libs/libxcb >=x11-libs/pango-1.22.0 selinux? ( sec-policy/selinux-thunderbird ) -RESTRICT=strip -SLOT=0/stable -SRC_URI=amd64? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/en-US/thunderbird-146.0.tar.xz -> thunderbird-bin_x86_64-146.0.tar.xz ) l10n_af? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/af.xpi -> thunderbird-146.0-af.xpi ) l10n_ar? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/ar.xpi -> thunderbird-146.0-ar.xpi ) l10n_ast? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/ast.xpi -> thunderbird-146.0-ast.xpi ) l10n_be? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/be.xpi -> thunderbird-146.0-be.xpi ) l10n_bg? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/bg.xpi -> thunderbird-146.0-bg.xpi ) l10n_br? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/br.xpi -> thunderbird-146.0-br.xpi ) l10n_ca? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/ca.xpi -> thunderbird-146.0-ca.xpi ) l10n_cak? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/cak.xpi -> thunderbird-146.0-cak.xpi ) l10n_cs? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/cs.xpi -> thunderbird-146.0-cs.xpi ) l10n_cy? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/cy.xpi -> thunderbird-146.0-cy.xpi ) l10n_da? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/da.xpi -> thunderbird-146.0-da.xpi ) l10n_de? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/de.xpi -> thunderbird-146.0-de.xpi ) l10n_dsb? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/dsb.xpi -> thunderbird-146.0-dsb.xpi ) l10n_el? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/el.xpi -> thunderbird-146.0-el.xpi ) l10n_en-CA? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/en-CA.xpi -> thunderbird-146.0-en-CA.xpi ) l10n_en-GB? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/en-GB.xpi -> thunderbird-146.0-en-GB.xpi ) l10n_es-AR? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/es-AR.xpi -> thunderbird-146.0-es-AR.xpi ) l10n_es-ES? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/es-ES.xpi -> thunderbird-146.0-es-ES.xpi ) l10n_es-MX? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/es-MX.xpi -> thunderbird-146.0-es-MX.xpi ) l10n_et? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/et.xpi -> thunderbird-146.0-et.xpi ) l10n_eu? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/eu.xpi -> thunderbird-146.0-eu.xpi ) l10n_fi? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/fi.xpi -> thunderbird-146.0-fi.xpi ) l10n_fr? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/fr.xpi -> thunderbird-146.0-fr.xpi ) l10n_fy? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/fy-NL.xpi -> thunderbird-146.0-fy-NL.xpi ) l10n_ga? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/ga-IE.xpi -> thunderbird-146.0-ga-IE.xpi ) l10n_gd? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/gd.xpi -> thunderbird-146.0-gd.xpi ) l10n_gl? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/gl.xpi -> thunderbird-146.0-gl.xpi ) l10n_he? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/he.xpi -> thunderbird-146.0-he.xpi ) l10n_hr? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/hr.xpi -> thunderbird-146.0-hr.xpi ) l10n_hsb? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/hsb.xpi -> thunderbird-146.0-hsb.xpi ) l10n_hu? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/hu.xpi -> thunderbird-146.0-hu.xpi ) l10n_id? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/id.xpi -> thunderbird-146.0-id.xpi ) l10n_is? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/is.xpi -> thunderbird-146.0-is.xpi ) l10n_it? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/it.xpi -> thunderbird-146.0-it.xpi ) l10n_ja? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/ja.xpi -> thunderbird-146.0-ja.xpi ) l10n_ka? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/ka.xpi -> thunderbird-146.0-ka.xpi ) l10n_kab? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/kab.xpi -> thunderbird-146.0-kab.xpi ) l10n_kk? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/kk.xpi -> thunderbird-146.0-kk.xpi ) l10n_ko? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/ko.xpi -> thunderbird-146.0-ko.xpi ) l10n_lt? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/lt.xpi -> thunderbird-146.0-lt.xpi ) l10n_lv? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/lv.xpi -> thunderbird-146.0-lv.xpi ) l10n_ms? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/ms.xpi -> thunderbird-146.0-ms.xpi ) l10n_nb? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/nb-NO.xpi -> thunderbird-146.0-nb-NO.xpi ) l10n_nl? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/nl.xpi -> thunderbird-146.0-nl.xpi ) l10n_nn? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/nn-NO.xpi -> thunderbird-146.0-nn-NO.xpi ) l10n_pa? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/pa-IN.xpi -> thunderbird-146.0-pa-IN.xpi ) l10n_pl? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/pl.xpi -> thunderbird-146.0-pl.xpi ) l10n_pt-BR? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/pt-BR.xpi -> thunderbird-146.0-pt-BR.xpi ) l10n_pt-PT? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/pt-PT.xpi -> thunderbird-146.0-pt-PT.xpi ) l10n_rm? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/rm.xpi -> thunderbird-146.0-rm.xpi ) l10n_ro? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/ro.xpi -> thunderbird-146.0-ro.xpi ) l10n_ru? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/ru.xpi -> thunderbird-146.0-ru.xpi ) l10n_sk? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/sk.xpi -> thunderbird-146.0-sk.xpi ) l10n_sl? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/sl.xpi -> thunderbird-146.0-sl.xpi ) l10n_sq? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/sq.xpi -> thunderbird-146.0-sq.xpi ) l10n_sr? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/sr.xpi -> thunderbird-146.0-sr.xpi ) l10n_sv? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/sv-SE.xpi -> thunderbird-146.0-sv-SE.xpi ) l10n_th? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/th.xpi -> thunderbird-146.0-th.xpi ) l10n_tr? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/tr.xpi -> thunderbird-146.0-tr.xpi ) l10n_uk? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/uk.xpi -> thunderbird-146.0-uk.xpi ) l10n_uz? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/uz.xpi -> thunderbird-146.0-uz.xpi ) l10n_vi? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/vi.xpi -> thunderbird-146.0-vi.xpi ) l10n_zh-CN? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/zh-CN.xpi -> thunderbird-146.0-zh-CN.xpi ) l10n_zh-TW? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0/linux-x86_64/xpi/zh-TW.xpi -> thunderbird-146.0-zh-TW.xpi ) -_eclasses_=desktop 26d57169ca094c04be416993844ec8bc optfeature 538bce96e5589935b57e178e8635f301 pax-utils 5555f2e75744739fe100ee62c22d28fe xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=a81632944ed1384ad86af8d75cd6930a diff --git a/metadata/md5-cache/mail-client/thunderbird-bin-146.0.1 b/metadata/md5-cache/mail-client/thunderbird-bin-146.0.1 deleted file mode 100644 index f5964a2f8471..000000000000 --- a/metadata/md5-cache/mail-client/thunderbird-bin-146.0.1 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=app-arch/unzip -DEFINED_PHASES=install postinst postrm preinst unpack -DESCRIPTION=Thunderbird Mail Client -EAPI=8 -HOMEPAGE=https://www.thunderbird.net/ -IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info -INHERIT=desktop optfeature pax-utils xdg -IUSE=selinux wayland 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_es-MX 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 -KEYWORDS=-* amd64 -LICENSE=MPL-2.0 GPL-2 LGPL-2.1 -RDEPEND=|| ( media-libs/libpulse media-sound/apulse ) >=app-accessibility/at-spi2-core-2.46.0:2 >=dev-libs/glib-2.26:2 media-libs/alsa-lib media-libs/fontconfig >=media-libs/freetype-2.4.10 sys-apps/dbus virtual/freedesktop-icon-theme >=x11-libs/cairo-1.10[X] x11-libs/gdk-pixbuf:2 >=x11-libs/gtk+-3.11:3[X,wayland?] x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXcursor x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXi x11-libs/libXrandr x11-libs/libXrender x11-libs/libxcb >=x11-libs/pango-1.22.0 selinux? ( sec-policy/selinux-thunderbird ) -RESTRICT=strip -SLOT=0/stable -SRC_URI=amd64? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/en-US/thunderbird-146.0.1.tar.xz -> thunderbird-bin_x86_64-146.0.1.tar.xz ) l10n_af? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/af.xpi -> thunderbird-146.0.1-af.xpi ) l10n_ar? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/ar.xpi -> thunderbird-146.0.1-ar.xpi ) l10n_ast? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/ast.xpi -> thunderbird-146.0.1-ast.xpi ) l10n_be? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/be.xpi -> thunderbird-146.0.1-be.xpi ) l10n_bg? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/bg.xpi -> thunderbird-146.0.1-bg.xpi ) l10n_br? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/br.xpi -> thunderbird-146.0.1-br.xpi ) l10n_ca? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/ca.xpi -> thunderbird-146.0.1-ca.xpi ) l10n_cak? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/cak.xpi -> thunderbird-146.0.1-cak.xpi ) l10n_cs? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/cs.xpi -> thunderbird-146.0.1-cs.xpi ) l10n_cy? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/cy.xpi -> thunderbird-146.0.1-cy.xpi ) l10n_da? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/da.xpi -> thunderbird-146.0.1-da.xpi ) l10n_de? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/de.xpi -> thunderbird-146.0.1-de.xpi ) l10n_dsb? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/dsb.xpi -> thunderbird-146.0.1-dsb.xpi ) l10n_el? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/el.xpi -> thunderbird-146.0.1-el.xpi ) l10n_en-CA? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/en-CA.xpi -> thunderbird-146.0.1-en-CA.xpi ) l10n_en-GB? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/en-GB.xpi -> thunderbird-146.0.1-en-GB.xpi ) l10n_es-AR? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/es-AR.xpi -> thunderbird-146.0.1-es-AR.xpi ) l10n_es-ES? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/es-ES.xpi -> thunderbird-146.0.1-es-ES.xpi ) l10n_es-MX? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/es-MX.xpi -> thunderbird-146.0.1-es-MX.xpi ) l10n_et? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/et.xpi -> thunderbird-146.0.1-et.xpi ) l10n_eu? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/eu.xpi -> thunderbird-146.0.1-eu.xpi ) l10n_fi? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/fi.xpi -> thunderbird-146.0.1-fi.xpi ) l10n_fr? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/fr.xpi -> thunderbird-146.0.1-fr.xpi ) l10n_fy? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/fy-NL.xpi -> thunderbird-146.0.1-fy-NL.xpi ) l10n_ga? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/ga-IE.xpi -> thunderbird-146.0.1-ga-IE.xpi ) l10n_gd? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/gd.xpi -> thunderbird-146.0.1-gd.xpi ) l10n_gl? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/gl.xpi -> thunderbird-146.0.1-gl.xpi ) l10n_he? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/he.xpi -> thunderbird-146.0.1-he.xpi ) l10n_hr? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/hr.xpi -> thunderbird-146.0.1-hr.xpi ) l10n_hsb? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/hsb.xpi -> thunderbird-146.0.1-hsb.xpi ) l10n_hu? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/hu.xpi -> thunderbird-146.0.1-hu.xpi ) l10n_id? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/id.xpi -> thunderbird-146.0.1-id.xpi ) l10n_is? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/is.xpi -> thunderbird-146.0.1-is.xpi ) l10n_it? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/it.xpi -> thunderbird-146.0.1-it.xpi ) l10n_ja? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/ja.xpi -> thunderbird-146.0.1-ja.xpi ) l10n_ka? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/ka.xpi -> thunderbird-146.0.1-ka.xpi ) l10n_kab? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/kab.xpi -> thunderbird-146.0.1-kab.xpi ) l10n_kk? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/kk.xpi -> thunderbird-146.0.1-kk.xpi ) l10n_ko? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/ko.xpi -> thunderbird-146.0.1-ko.xpi ) l10n_lt? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/lt.xpi -> thunderbird-146.0.1-lt.xpi ) l10n_lv? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/lv.xpi -> thunderbird-146.0.1-lv.xpi ) l10n_ms? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/ms.xpi -> thunderbird-146.0.1-ms.xpi ) l10n_nb? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/nb-NO.xpi -> thunderbird-146.0.1-nb-NO.xpi ) l10n_nl? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/nl.xpi -> thunderbird-146.0.1-nl.xpi ) l10n_nn? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/nn-NO.xpi -> thunderbird-146.0.1-nn-NO.xpi ) l10n_pa? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/pa-IN.xpi -> thunderbird-146.0.1-pa-IN.xpi ) l10n_pl? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/pl.xpi -> thunderbird-146.0.1-pl.xpi ) l10n_pt-BR? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/pt-BR.xpi -> thunderbird-146.0.1-pt-BR.xpi ) l10n_pt-PT? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/pt-PT.xpi -> thunderbird-146.0.1-pt-PT.xpi ) l10n_rm? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/rm.xpi -> thunderbird-146.0.1-rm.xpi ) l10n_ro? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/ro.xpi -> thunderbird-146.0.1-ro.xpi ) l10n_ru? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/ru.xpi -> thunderbird-146.0.1-ru.xpi ) l10n_sk? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/sk.xpi -> thunderbird-146.0.1-sk.xpi ) l10n_sl? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/sl.xpi -> thunderbird-146.0.1-sl.xpi ) l10n_sq? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/sq.xpi -> thunderbird-146.0.1-sq.xpi ) l10n_sr? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/sr.xpi -> thunderbird-146.0.1-sr.xpi ) l10n_sv? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/sv-SE.xpi -> thunderbird-146.0.1-sv-SE.xpi ) l10n_th? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/th.xpi -> thunderbird-146.0.1-th.xpi ) l10n_tr? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/tr.xpi -> thunderbird-146.0.1-tr.xpi ) l10n_uk? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/uk.xpi -> thunderbird-146.0.1-uk.xpi ) l10n_uz? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/uz.xpi -> thunderbird-146.0.1-uz.xpi ) l10n_vi? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/vi.xpi -> thunderbird-146.0.1-vi.xpi ) l10n_zh-CN? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/zh-CN.xpi -> thunderbird-146.0.1-zh-CN.xpi ) l10n_zh-TW? ( https://archive.mozilla.org/pub/thunderbird/releases/146.0.1/linux-x86_64/xpi/zh-TW.xpi -> thunderbird-146.0.1-zh-TW.xpi ) -_eclasses_=desktop 26d57169ca094c04be416993844ec8bc optfeature 538bce96e5589935b57e178e8635f301 pax-utils 5555f2e75744739fe100ee62c22d28fe xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=a81632944ed1384ad86af8d75cd6930a diff --git a/metadata/md5-cache/mail-client/thunderbird-bin-147.0 b/metadata/md5-cache/mail-client/thunderbird-bin-147.0 deleted file mode 100644 index aa8d1af50fff..000000000000 --- a/metadata/md5-cache/mail-client/thunderbird-bin-147.0 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=app-arch/unzip -DEFINED_PHASES=install postinst postrm preinst unpack -DESCRIPTION=Thunderbird Mail Client -EAPI=8 -HOMEPAGE=https://www.thunderbird.net/ -IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info -INHERIT=desktop optfeature pax-utils xdg -IUSE=selinux wayland 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_es-MX 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 -KEYWORDS=-* amd64 -LICENSE=MPL-2.0 GPL-2 LGPL-2.1 -RDEPEND=|| ( media-libs/libpulse media-sound/apulse ) >=app-accessibility/at-spi2-core-2.46.0:2 >=dev-libs/glib-2.26:2 media-libs/alsa-lib media-libs/fontconfig >=media-libs/freetype-2.4.10 sys-apps/dbus virtual/freedesktop-icon-theme >=x11-libs/cairo-1.10[X] x11-libs/gdk-pixbuf:2 >=x11-libs/gtk+-3.11:3[X,wayland?] x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXcursor x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXi x11-libs/libXrandr x11-libs/libXrender x11-libs/libxcb >=x11-libs/pango-1.22.0 selinux? ( sec-policy/selinux-thunderbird ) -RESTRICT=strip -SLOT=0/stable -SRC_URI=amd64? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/en-US/thunderbird-147.0.tar.xz -> thunderbird-bin_x86_64-147.0.tar.xz ) l10n_af? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/af.xpi -> thunderbird-147.0-af.xpi ) l10n_ar? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/ar.xpi -> thunderbird-147.0-ar.xpi ) l10n_ast? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/ast.xpi -> thunderbird-147.0-ast.xpi ) l10n_be? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/be.xpi -> thunderbird-147.0-be.xpi ) l10n_bg? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/bg.xpi -> thunderbird-147.0-bg.xpi ) l10n_br? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/br.xpi -> thunderbird-147.0-br.xpi ) l10n_ca? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/ca.xpi -> thunderbird-147.0-ca.xpi ) l10n_cak? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/cak.xpi -> thunderbird-147.0-cak.xpi ) l10n_cs? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/cs.xpi -> thunderbird-147.0-cs.xpi ) l10n_cy? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/cy.xpi -> thunderbird-147.0-cy.xpi ) l10n_da? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/da.xpi -> thunderbird-147.0-da.xpi ) l10n_de? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/de.xpi -> thunderbird-147.0-de.xpi ) l10n_dsb? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/dsb.xpi -> thunderbird-147.0-dsb.xpi ) l10n_el? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/el.xpi -> thunderbird-147.0-el.xpi ) l10n_en-CA? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/en-CA.xpi -> thunderbird-147.0-en-CA.xpi ) l10n_en-GB? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/en-GB.xpi -> thunderbird-147.0-en-GB.xpi ) l10n_es-AR? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/es-AR.xpi -> thunderbird-147.0-es-AR.xpi ) l10n_es-ES? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/es-ES.xpi -> thunderbird-147.0-es-ES.xpi ) l10n_es-MX? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/es-MX.xpi -> thunderbird-147.0-es-MX.xpi ) l10n_et? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/et.xpi -> thunderbird-147.0-et.xpi ) l10n_eu? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/eu.xpi -> thunderbird-147.0-eu.xpi ) l10n_fi? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/fi.xpi -> thunderbird-147.0-fi.xpi ) l10n_fr? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/fr.xpi -> thunderbird-147.0-fr.xpi ) l10n_fy? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/fy-NL.xpi -> thunderbird-147.0-fy-NL.xpi ) l10n_ga? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/ga-IE.xpi -> thunderbird-147.0-ga-IE.xpi ) l10n_gd? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/gd.xpi -> thunderbird-147.0-gd.xpi ) l10n_gl? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/gl.xpi -> thunderbird-147.0-gl.xpi ) l10n_he? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/he.xpi -> thunderbird-147.0-he.xpi ) l10n_hr? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/hr.xpi -> thunderbird-147.0-hr.xpi ) l10n_hsb? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/hsb.xpi -> thunderbird-147.0-hsb.xpi ) l10n_hu? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/hu.xpi -> thunderbird-147.0-hu.xpi ) l10n_id? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/id.xpi -> thunderbird-147.0-id.xpi ) l10n_is? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/is.xpi -> thunderbird-147.0-is.xpi ) l10n_it? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/it.xpi -> thunderbird-147.0-it.xpi ) l10n_ja? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/ja.xpi -> thunderbird-147.0-ja.xpi ) l10n_ka? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/ka.xpi -> thunderbird-147.0-ka.xpi ) l10n_kab? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/kab.xpi -> thunderbird-147.0-kab.xpi ) l10n_kk? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/kk.xpi -> thunderbird-147.0-kk.xpi ) l10n_ko? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/ko.xpi -> thunderbird-147.0-ko.xpi ) l10n_lt? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/lt.xpi -> thunderbird-147.0-lt.xpi ) l10n_lv? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/lv.xpi -> thunderbird-147.0-lv.xpi ) l10n_ms? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/ms.xpi -> thunderbird-147.0-ms.xpi ) l10n_nb? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/nb-NO.xpi -> thunderbird-147.0-nb-NO.xpi ) l10n_nl? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/nl.xpi -> thunderbird-147.0-nl.xpi ) l10n_nn? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/nn-NO.xpi -> thunderbird-147.0-nn-NO.xpi ) l10n_pa? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/pa-IN.xpi -> thunderbird-147.0-pa-IN.xpi ) l10n_pl? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/pl.xpi -> thunderbird-147.0-pl.xpi ) l10n_pt-BR? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/pt-BR.xpi -> thunderbird-147.0-pt-BR.xpi ) l10n_pt-PT? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/pt-PT.xpi -> thunderbird-147.0-pt-PT.xpi ) l10n_rm? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/rm.xpi -> thunderbird-147.0-rm.xpi ) l10n_ro? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/ro.xpi -> thunderbird-147.0-ro.xpi ) l10n_ru? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/ru.xpi -> thunderbird-147.0-ru.xpi ) l10n_sk? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/sk.xpi -> thunderbird-147.0-sk.xpi ) l10n_sl? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/sl.xpi -> thunderbird-147.0-sl.xpi ) l10n_sq? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/sq.xpi -> thunderbird-147.0-sq.xpi ) l10n_sr? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/sr.xpi -> thunderbird-147.0-sr.xpi ) l10n_sv? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/sv-SE.xpi -> thunderbird-147.0-sv-SE.xpi ) l10n_th? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/th.xpi -> thunderbird-147.0-th.xpi ) l10n_tr? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/tr.xpi -> thunderbird-147.0-tr.xpi ) l10n_uk? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/uk.xpi -> thunderbird-147.0-uk.xpi ) l10n_uz? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/uz.xpi -> thunderbird-147.0-uz.xpi ) l10n_vi? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/vi.xpi -> thunderbird-147.0-vi.xpi ) l10n_zh-CN? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/zh-CN.xpi -> thunderbird-147.0-zh-CN.xpi ) l10n_zh-TW? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0/linux-x86_64/xpi/zh-TW.xpi -> thunderbird-147.0-zh-TW.xpi ) -_eclasses_=desktop 26d57169ca094c04be416993844ec8bc optfeature 538bce96e5589935b57e178e8635f301 pax-utils 5555f2e75744739fe100ee62c22d28fe xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=560098d790d0a86bc950e0c947389a52 diff --git a/metadata/md5-cache/mail-client/thunderbird-bin-147.0.1 b/metadata/md5-cache/mail-client/thunderbird-bin-147.0.1 deleted file mode 100644 index 6872012ecf23..000000000000 --- a/metadata/md5-cache/mail-client/thunderbird-bin-147.0.1 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=app-arch/unzip -DEFINED_PHASES=install postinst postrm preinst unpack -DESCRIPTION=Thunderbird Mail Client -EAPI=8 -HOMEPAGE=https://www.thunderbird.net/ -IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info -INHERIT=desktop optfeature pax-utils xdg -IUSE=selinux wayland 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_es-MX 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 -KEYWORDS=-* amd64 -LICENSE=MPL-2.0 GPL-2 LGPL-2.1 -RDEPEND=|| ( media-libs/libpulse media-sound/apulse ) >=app-accessibility/at-spi2-core-2.46.0:2 >=dev-libs/glib-2.26:2 media-libs/alsa-lib media-libs/fontconfig >=media-libs/freetype-2.4.10 sys-apps/dbus virtual/freedesktop-icon-theme >=x11-libs/cairo-1.10[X] x11-libs/gdk-pixbuf:2 >=x11-libs/gtk+-3.11:3[X,wayland?] x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXcursor x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXi x11-libs/libXrandr x11-libs/libXrender x11-libs/libxcb >=x11-libs/pango-1.22.0 selinux? ( sec-policy/selinux-thunderbird ) -RESTRICT=strip -SLOT=0/stable -SRC_URI=amd64? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/en-US/thunderbird-147.0.1.tar.xz -> thunderbird-bin_x86_64-147.0.1.tar.xz ) l10n_af? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/af.xpi -> thunderbird-147.0.1-af.xpi ) l10n_ar? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/ar.xpi -> thunderbird-147.0.1-ar.xpi ) l10n_ast? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/ast.xpi -> thunderbird-147.0.1-ast.xpi ) l10n_be? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/be.xpi -> thunderbird-147.0.1-be.xpi ) l10n_bg? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/bg.xpi -> thunderbird-147.0.1-bg.xpi ) l10n_br? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/br.xpi -> thunderbird-147.0.1-br.xpi ) l10n_ca? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/ca.xpi -> thunderbird-147.0.1-ca.xpi ) l10n_cak? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/cak.xpi -> thunderbird-147.0.1-cak.xpi ) l10n_cs? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/cs.xpi -> thunderbird-147.0.1-cs.xpi ) l10n_cy? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/cy.xpi -> thunderbird-147.0.1-cy.xpi ) l10n_da? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/da.xpi -> thunderbird-147.0.1-da.xpi ) l10n_de? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/de.xpi -> thunderbird-147.0.1-de.xpi ) l10n_dsb? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/dsb.xpi -> thunderbird-147.0.1-dsb.xpi ) l10n_el? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/el.xpi -> thunderbird-147.0.1-el.xpi ) l10n_en-CA? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/en-CA.xpi -> thunderbird-147.0.1-en-CA.xpi ) l10n_en-GB? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/en-GB.xpi -> thunderbird-147.0.1-en-GB.xpi ) l10n_es-AR? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/es-AR.xpi -> thunderbird-147.0.1-es-AR.xpi ) l10n_es-ES? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/es-ES.xpi -> thunderbird-147.0.1-es-ES.xpi ) l10n_es-MX? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/es-MX.xpi -> thunderbird-147.0.1-es-MX.xpi ) l10n_et? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/et.xpi -> thunderbird-147.0.1-et.xpi ) l10n_eu? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/eu.xpi -> thunderbird-147.0.1-eu.xpi ) l10n_fi? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/fi.xpi -> thunderbird-147.0.1-fi.xpi ) l10n_fr? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/fr.xpi -> thunderbird-147.0.1-fr.xpi ) l10n_fy? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/fy-NL.xpi -> thunderbird-147.0.1-fy-NL.xpi ) l10n_ga? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/ga-IE.xpi -> thunderbird-147.0.1-ga-IE.xpi ) l10n_gd? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/gd.xpi -> thunderbird-147.0.1-gd.xpi ) l10n_gl? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/gl.xpi -> thunderbird-147.0.1-gl.xpi ) l10n_he? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/he.xpi -> thunderbird-147.0.1-he.xpi ) l10n_hr? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/hr.xpi -> thunderbird-147.0.1-hr.xpi ) l10n_hsb? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/hsb.xpi -> thunderbird-147.0.1-hsb.xpi ) l10n_hu? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/hu.xpi -> thunderbird-147.0.1-hu.xpi ) l10n_id? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/id.xpi -> thunderbird-147.0.1-id.xpi ) l10n_is? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/is.xpi -> thunderbird-147.0.1-is.xpi ) l10n_it? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/it.xpi -> thunderbird-147.0.1-it.xpi ) l10n_ja? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/ja.xpi -> thunderbird-147.0.1-ja.xpi ) l10n_ka? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/ka.xpi -> thunderbird-147.0.1-ka.xpi ) l10n_kab? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/kab.xpi -> thunderbird-147.0.1-kab.xpi ) l10n_kk? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/kk.xpi -> thunderbird-147.0.1-kk.xpi ) l10n_ko? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/ko.xpi -> thunderbird-147.0.1-ko.xpi ) l10n_lt? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/lt.xpi -> thunderbird-147.0.1-lt.xpi ) l10n_lv? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/lv.xpi -> thunderbird-147.0.1-lv.xpi ) l10n_ms? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/ms.xpi -> thunderbird-147.0.1-ms.xpi ) l10n_nb? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/nb-NO.xpi -> thunderbird-147.0.1-nb-NO.xpi ) l10n_nl? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/nl.xpi -> thunderbird-147.0.1-nl.xpi ) l10n_nn? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/nn-NO.xpi -> thunderbird-147.0.1-nn-NO.xpi ) l10n_pa? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/pa-IN.xpi -> thunderbird-147.0.1-pa-IN.xpi ) l10n_pl? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/pl.xpi -> thunderbird-147.0.1-pl.xpi ) l10n_pt-BR? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/pt-BR.xpi -> thunderbird-147.0.1-pt-BR.xpi ) l10n_pt-PT? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/pt-PT.xpi -> thunderbird-147.0.1-pt-PT.xpi ) l10n_rm? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/rm.xpi -> thunderbird-147.0.1-rm.xpi ) l10n_ro? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/ro.xpi -> thunderbird-147.0.1-ro.xpi ) l10n_ru? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/ru.xpi -> thunderbird-147.0.1-ru.xpi ) l10n_sk? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/sk.xpi -> thunderbird-147.0.1-sk.xpi ) l10n_sl? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/sl.xpi -> thunderbird-147.0.1-sl.xpi ) l10n_sq? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/sq.xpi -> thunderbird-147.0.1-sq.xpi ) l10n_sr? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/sr.xpi -> thunderbird-147.0.1-sr.xpi ) l10n_sv? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/sv-SE.xpi -> thunderbird-147.0.1-sv-SE.xpi ) l10n_th? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/th.xpi -> thunderbird-147.0.1-th.xpi ) l10n_tr? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/tr.xpi -> thunderbird-147.0.1-tr.xpi ) l10n_uk? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/uk.xpi -> thunderbird-147.0.1-uk.xpi ) l10n_uz? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/uz.xpi -> thunderbird-147.0.1-uz.xpi ) l10n_vi? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/vi.xpi -> thunderbird-147.0.1-vi.xpi ) l10n_zh-CN? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/zh-CN.xpi -> thunderbird-147.0.1-zh-CN.xpi ) l10n_zh-TW? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.1/linux-x86_64/xpi/zh-TW.xpi -> thunderbird-147.0.1-zh-TW.xpi ) -_eclasses_=desktop 26d57169ca094c04be416993844ec8bc optfeature 538bce96e5589935b57e178e8635f301 pax-utils 5555f2e75744739fe100ee62c22d28fe xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=560098d790d0a86bc950e0c947389a52 diff --git a/metadata/md5-cache/mail-client/thunderbird-bin-147.0.2 b/metadata/md5-cache/mail-client/thunderbird-bin-147.0.2 new file mode 100644 index 000000000000..e17abe63a1d9 --- /dev/null +++ b/metadata/md5-cache/mail-client/thunderbird-bin-147.0.2 @@ -0,0 +1,16 @@ +BDEPEND=app-arch/unzip +DEFINED_PHASES=install postinst postrm preinst unpack +DESCRIPTION=Thunderbird Mail Client +EAPI=8 +HOMEPAGE=https://www.thunderbird.net/ +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=desktop optfeature pax-utils xdg +IUSE=selinux wayland 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_es-MX 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 +KEYWORDS=-* amd64 +LICENSE=MPL-2.0 GPL-2 LGPL-2.1 +RDEPEND=|| ( media-libs/libpulse media-sound/apulse ) >=app-accessibility/at-spi2-core-2.46.0:2 >=dev-libs/glib-2.26:2 media-libs/alsa-lib media-libs/fontconfig >=media-libs/freetype-2.4.10 sys-apps/dbus virtual/freedesktop-icon-theme >=x11-libs/cairo-1.10[X] x11-libs/gdk-pixbuf:2 >=x11-libs/gtk+-3.11:3[X,wayland?] x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXcursor x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXi x11-libs/libXrandr x11-libs/libXrender x11-libs/libxcb >=x11-libs/pango-1.22.0 selinux? ( sec-policy/selinux-thunderbird ) +RESTRICT=strip +SLOT=0/stable +SRC_URI=amd64? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/en-US/thunderbird-147.0.2.tar.xz -> thunderbird-bin_x86_64-147.0.2.tar.xz ) l10n_af? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/af.xpi -> thunderbird-147.0.2-af.xpi ) l10n_ar? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/ar.xpi -> thunderbird-147.0.2-ar.xpi ) l10n_ast? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/ast.xpi -> thunderbird-147.0.2-ast.xpi ) l10n_be? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/be.xpi -> thunderbird-147.0.2-be.xpi ) l10n_bg? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/bg.xpi -> thunderbird-147.0.2-bg.xpi ) l10n_br? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/br.xpi -> thunderbird-147.0.2-br.xpi ) l10n_ca? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/ca.xpi -> thunderbird-147.0.2-ca.xpi ) l10n_cak? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/cak.xpi -> thunderbird-147.0.2-cak.xpi ) l10n_cs? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/cs.xpi -> thunderbird-147.0.2-cs.xpi ) l10n_cy? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/cy.xpi -> thunderbird-147.0.2-cy.xpi ) l10n_da? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/da.xpi -> thunderbird-147.0.2-da.xpi ) l10n_de? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/de.xpi -> thunderbird-147.0.2-de.xpi ) l10n_dsb? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/dsb.xpi -> thunderbird-147.0.2-dsb.xpi ) l10n_el? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/el.xpi -> thunderbird-147.0.2-el.xpi ) l10n_en-CA? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/en-CA.xpi -> thunderbird-147.0.2-en-CA.xpi ) l10n_en-GB? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/en-GB.xpi -> thunderbird-147.0.2-en-GB.xpi ) l10n_es-AR? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/es-AR.xpi -> thunderbird-147.0.2-es-AR.xpi ) l10n_es-ES? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/es-ES.xpi -> thunderbird-147.0.2-es-ES.xpi ) l10n_es-MX? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/es-MX.xpi -> thunderbird-147.0.2-es-MX.xpi ) l10n_et? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/et.xpi -> thunderbird-147.0.2-et.xpi ) l10n_eu? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/eu.xpi -> thunderbird-147.0.2-eu.xpi ) l10n_fi? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/fi.xpi -> thunderbird-147.0.2-fi.xpi ) l10n_fr? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/fr.xpi -> thunderbird-147.0.2-fr.xpi ) l10n_fy? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/fy-NL.xpi -> thunderbird-147.0.2-fy-NL.xpi ) l10n_ga? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/ga-IE.xpi -> thunderbird-147.0.2-ga-IE.xpi ) l10n_gd? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/gd.xpi -> thunderbird-147.0.2-gd.xpi ) l10n_gl? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/gl.xpi -> thunderbird-147.0.2-gl.xpi ) l10n_he? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/he.xpi -> thunderbird-147.0.2-he.xpi ) l10n_hr? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/hr.xpi -> thunderbird-147.0.2-hr.xpi ) l10n_hsb? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/hsb.xpi -> thunderbird-147.0.2-hsb.xpi ) l10n_hu? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/hu.xpi -> thunderbird-147.0.2-hu.xpi ) l10n_id? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/id.xpi -> thunderbird-147.0.2-id.xpi ) l10n_is? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/is.xpi -> thunderbird-147.0.2-is.xpi ) l10n_it? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/it.xpi -> thunderbird-147.0.2-it.xpi ) l10n_ja? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/ja.xpi -> thunderbird-147.0.2-ja.xpi ) l10n_ka? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/ka.xpi -> thunderbird-147.0.2-ka.xpi ) l10n_kab? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/kab.xpi -> thunderbird-147.0.2-kab.xpi ) l10n_kk? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/kk.xpi -> thunderbird-147.0.2-kk.xpi ) l10n_ko? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/ko.xpi -> thunderbird-147.0.2-ko.xpi ) l10n_lt? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/lt.xpi -> thunderbird-147.0.2-lt.xpi ) l10n_lv? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/lv.xpi -> thunderbird-147.0.2-lv.xpi ) l10n_ms? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/ms.xpi -> thunderbird-147.0.2-ms.xpi ) l10n_nb? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/nb-NO.xpi -> thunderbird-147.0.2-nb-NO.xpi ) l10n_nl? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/nl.xpi -> thunderbird-147.0.2-nl.xpi ) l10n_nn? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/nn-NO.xpi -> thunderbird-147.0.2-nn-NO.xpi ) l10n_pa? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/pa-IN.xpi -> thunderbird-147.0.2-pa-IN.xpi ) l10n_pl? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/pl.xpi -> thunderbird-147.0.2-pl.xpi ) l10n_pt-BR? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/pt-BR.xpi -> thunderbird-147.0.2-pt-BR.xpi ) l10n_pt-PT? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/pt-PT.xpi -> thunderbird-147.0.2-pt-PT.xpi ) l10n_rm? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/rm.xpi -> thunderbird-147.0.2-rm.xpi ) l10n_ro? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/ro.xpi -> thunderbird-147.0.2-ro.xpi ) l10n_ru? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/ru.xpi -> thunderbird-147.0.2-ru.xpi ) l10n_sk? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/sk.xpi -> thunderbird-147.0.2-sk.xpi ) l10n_sl? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/sl.xpi -> thunderbird-147.0.2-sl.xpi ) l10n_sq? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/sq.xpi -> thunderbird-147.0.2-sq.xpi ) l10n_sr? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/sr.xpi -> thunderbird-147.0.2-sr.xpi ) l10n_sv? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/sv-SE.xpi -> thunderbird-147.0.2-sv-SE.xpi ) l10n_th? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/th.xpi -> thunderbird-147.0.2-th.xpi ) l10n_tr? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/tr.xpi -> thunderbird-147.0.2-tr.xpi ) l10n_uk? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/uk.xpi -> thunderbird-147.0.2-uk.xpi ) l10n_uz? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/uz.xpi -> thunderbird-147.0.2-uz.xpi ) l10n_vi? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/vi.xpi -> thunderbird-147.0.2-vi.xpi ) l10n_zh-CN? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/zh-CN.xpi -> thunderbird-147.0.2-zh-CN.xpi ) l10n_zh-TW? ( https://archive.mozilla.org/pub/thunderbird/releases/147.0.2/linux-x86_64/xpi/zh-TW.xpi -> thunderbird-147.0.2-zh-TW.xpi ) +_eclasses_=desktop 26d57169ca094c04be416993844ec8bc optfeature 538bce96e5589935b57e178e8635f301 pax-utils 5555f2e75744739fe100ee62c22d28fe xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_md5_=560098d790d0a86bc950e0c947389a52 diff --git a/metadata/md5-cache/media-gfx/asymptote-3.05 b/metadata/md5-cache/media-gfx/asymptote-3.05 deleted file mode 100644 index fb899a4e5b7f..000000000000 --- a/metadata/md5-cache/media-gfx/asymptote-3.05 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=sys-devel/gnuconfig >=app-portage/elt-patches-20250306 || ( >=dev-build/automake-1.18:1.18 >=dev-build/automake-1.17-r1:1.17 ) || ( >=dev-build/autoconf-2.72-r1:2.72 ) >=dev-build/libtool-2.4.7-r3 virtual/latex-base >=sys-apps/texinfo-4.2-r5 -DEFINED_PHASES=compile configure install postinst postrm prepare -DEPEND=>=sys-libs/ncurses-5.4-r5:0= >=sys-libs/readline-4.3-r5:0= net-libs/libtirpc:= imagemagick? ( media-gfx/imagemagick[png] ) opengl? ( media-libs/mesa[X] media-libs/freeglut media-libs/glew:0 media-libs/glm ) svg? ( app-text/dvisvgm ) sigsegv? ( dev-libs/libsigsegv ) fftw? ( >=sci-libs/fftw-3.0.1:= ) gsl? ( sci-libs/gsl:= ) python? ( python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) ) curl? ( net-misc/curl ) lsp? ( dev-libs/boost dev-libs/rapidjson dev-libs/utfcpp ) gui? ( python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) dev-python/pyqt5[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?,gui,widgets,svg] dev-python/cson dev-python/numpy >=gnome-base/librsvg-2.40 ) latex? ( virtual/latex-base dev-texlive/texlive-latexextra ) context? ( dev-texlive/texlive-context ) emacs? ( >=app-editors/emacs-23.1:* ) vim-syntax? ( || ( app-editors/vim app-editors/gvim ) ) dev-lang/perl doc? ( media-gfx/imagemagick[png] virtual/texi2dvi virtual/latex-base dev-texlive/texlive-latexextra app-text/ghostscript-gpl ) test? ( app-text/ghostscript-gpl ) -DESCRIPTION=A vector graphics language that provides a framework for technical drawing -EAPI=8 -HOMEPAGE=https://asymptote.sourceforge.io/ https://github.com/vectorgraphics/asymptote/ -INHERIT=autotools elisp-common latex-package python-r1 -IUSE=context curl doc emacs examples fftw gsl gui +imagemagick latex lsp +opengl python sigsegv svg test vim-syntax python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 -KEYWORDS=amd64 ~ppc ~riscv ~x86 -LICENSE=GPL-3 -RDEPEND=>=sys-libs/ncurses-5.4-r5:0= >=sys-libs/readline-4.3-r5:0= net-libs/libtirpc:= imagemagick? ( media-gfx/imagemagick[png] ) opengl? ( media-libs/mesa[X] media-libs/freeglut media-libs/glew:0 media-libs/glm ) svg? ( app-text/dvisvgm ) sigsegv? ( dev-libs/libsigsegv ) fftw? ( >=sci-libs/fftw-3.0.1:= ) gsl? ( sci-libs/gsl:= ) python? ( python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) ) curl? ( net-misc/curl ) lsp? ( dev-libs/boost dev-libs/rapidjson dev-libs/utfcpp ) gui? ( python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) dev-python/pyqt5[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?,python_targets_python3_13(-)?,python_targets_python3_14(-)?,gui,widgets,svg] dev-python/cson dev-python/numpy >=gnome-base/librsvg-2.40 ) latex? ( virtual/latex-base dev-texlive/texlive-latexextra ) context? ( dev-texlive/texlive-context ) emacs? ( >=app-editors/emacs-23.1:* ) vim-syntax? ( || ( app-editors/vim app-editors/gvim ) ) virtual/latex-base -REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://downloads.sourceforge.net/asymptote/asymptote-3.05.src.tgz -_eclasses_=autotools 955b29ccd82c1df4755e5f37748d2fa6 edo a5e294016aa84979fcb2459749eb80b2 elisp-common ce20c7e2fc0c52b58ddabcd536b7310b gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 latex-package f6529cd874a632d3343b4d264a70a0bc libtool c81bd096be5f4c82f4e8f156ef112402 multibuild 83db098a835f71feb71761f72a694aa2 multiprocessing 1e32df7deee68372153dca65f4a7c21f out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 0e15b2ab9cfc87d7474678201d6bca38 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da -_md5_=f5ad5bfcdb8efe52d6e3db91197d7feb diff --git a/metadata/md5-cache/media-gfx/flameshot-13.3.0 b/metadata/md5-cache/media-gfx/flameshot-13.3.0 new file mode 100644 index 000000000000..08be737cf3a9 --- /dev/null +++ b/metadata/md5-cache/media-gfx/flameshot-13.3.0 @@ -0,0 +1,16 @@ +BDEPEND=dev-qt/qttools:6[linguist] app-alternatives/ninja >=dev-build/cmake-3.28.5 +DEFINED_PHASES=compile configure install postinst postrm preinst prepare test +DEPEND=dev-libs/kdsingleapplication:= dev-qt/qtbase:6[dbus,gui,network,widgets] dev-qt/qtsvg:6 gui-libs/qt-color-widgets:= sys-apps/dbus wayland? ( kde-frameworks/kguiaddons:6 ) +DESCRIPTION=Powerful yet simple to use screenshot software +EAPI=8 +HOMEPAGE=https://flameshot.org https://github.com/flameshot-org/flameshot +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=cmake flag-o-matic xdg +IUSE=imgur wayland +KEYWORDS=~amd64 ~arm64 ~x86 +LICENSE=Apache-2.0 Free-Art-1.3 GPL-3+ +RDEPEND=dev-libs/kdsingleapplication:= dev-qt/qtbase:6[dbus,gui,network,widgets] dev-qt/qtsvg:6 gui-libs/qt-color-widgets:= sys-apps/dbus wayland? ( kde-frameworks/kguiaddons:6 ) +SLOT=0 +SRC_URI=https://github.com/flameshot-org/flameshot/archive/refs/tags/v13.3.0.tar.gz -> flameshot-13.3.0.tar.gz +_eclasses_=cmake 5691a3da96eac88f135cf3596b8c2c3c flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b toolchain-funcs 7e440a20ac11dece04e3334622e6e5da xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_md5_=ed6388190c1f9cf76ac1cbe7407e588c diff --git a/metadata/md5-cache/media-gfx/kphotoalbum-6.1.0-r1 b/metadata/md5-cache/media-gfx/kphotoalbum-6.1.0-r1 index a478a0539845..e83446fd2b35 100644 --- a/metadata/md5-cache/media-gfx/kphotoalbum-6.1.0-r1 +++ b/metadata/md5-cache/media-gfx/kphotoalbum-6.1.0-r1 @@ -7,11 +7,11 @@ HOMEPAGE=https://www.kphotoalbum.org/ IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info INHERIT=ecm kde.org xdg IUSE=+map +raw share debug +handbook test -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 ~x86 LICENSE=GPL-2+ FDL-1.2 CC-BY-SA-4.0 RDEPEND=>=dev-qt/qtbase-6.8.1:6[dbus,gui,sql,sqlite,widgets,xml] >=dev-qt/qtmultimedia-6.8.1:6 >=kde-frameworks/karchive-6.9.0:6 >=kde-frameworks/kcolorscheme-6.9.0:6 >=kde-frameworks/kcompletion-6.9.0:6 >=kde-frameworks/kconfig-6.9.0:6 >=kde-frameworks/kconfigwidgets-6.9.0:6 >=kde-frameworks/kcoreaddons-6.9.0:6 >=kde-frameworks/ki18n-6.9.0:6 >=kde-frameworks/kiconthemes-6.9.0:6 >=kde-frameworks/kio-6.9.0:6 >=kde-frameworks/kjobwidgets-6.9.0:6 >=kde-frameworks/kservice-6.9.0:6 >=kde-frameworks/ktextwidgets-6.9.0:6 >=kde-frameworks/kwidgetsaddons-6.9.0:6 >=kde-frameworks/kxmlgui-6.9.0:6 media-gfx/exiv2:= media-libs/libjpeg-turbo:= map? ( kde-apps/marble:6 ) raw? ( kde-apps/libkdcraw:6 ) share? ( >=kde-frameworks/purpose-6.9.0:6 ) !media-gfx/kphotoalbum:5 media-video/ffmpeg || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-6 dev-qt/qtbase:6 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://kde/stable/kphotoalbum/6.1.0/kphotoalbum-6.1.0.tar.xz https://dev.gentoo.org/~asturm/distfiles/kphotoalbum-6.1.0-backport-qtmultimedia.tar.xz _eclasses_=cmake 5691a3da96eac88f135cf3596b8c2c3c ecm a5537691c00fd7549c8b90300f679185 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 kde.org 2eea56ed41440913be4caa3d255d2db3 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b toolchain-funcs 7e440a20ac11dece04e3334622e6e5da virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=7cc6e50fc1e35d214eec3996b77a4999 +_md5_=4493dae06e07317f1016d6d9e3cbee27 diff --git a/metadata/md5-cache/media-libs/lilv-0.24.26 b/metadata/md5-cache/media-libs/lilv-0.24.26 deleted file mode 100644 index 184fd20c92e4..000000000000 --- a/metadata/md5-cache/media-libs/lilv-0.24.26 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=virtual/pkgconfig doc? ( app-text/doxygen dev-python/sphinx dev-python/sphinx-lv2-theme dev-python/sphinxygen ) >=dev-build/meson-1.2.3 app-alternatives/ninja dev-build/meson-format-array -DEFINED_PHASES=compile configure install prepare setup test -DEPEND=python_single_target_python3_10? ( dev-lang/python:3.10[threads(+)] ) python_single_target_python3_11? ( dev-lang/python:3.11[threads(+)] ) python_single_target_python3_12? ( dev-lang/python:3.12[threads(+)] ) python_single_target_python3_13? ( dev-lang/python:3.13[threads(+)] ) python_single_target_python3_14? ( dev-lang/python:3.14[threads(+)] ) >=dev-libs/serd-0.30.10[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=dev-libs/sord-0.16.16[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=dev-libs/zix-0.6.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] media-libs/libsndfile >=media-libs/lv2-1.18.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=media-libs/sratom-0.6.10[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] -DESCRIPTION=Library to make the use of LV2 plugins as simple as possible for applications -EAPI=8 -HOMEPAGE=https://drobilla.net/software/lilv.html -INHERIT=meson-multilib python-single-r1 -IUSE=doc python test tools abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 python_single_target_python3_10 python_single_target_python3_11 python_single_target_python3_12 python_single_target_python3_13 python_single_target_python3_14 -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~sparc x86 -LICENSE=ISC -RDEPEND=python_single_target_python3_10? ( dev-lang/python:3.10[threads(+)] ) python_single_target_python3_11? ( dev-lang/python:3.11[threads(+)] ) python_single_target_python3_12? ( dev-lang/python:3.12[threads(+)] ) python_single_target_python3_13? ( dev-lang/python:3.13[threads(+)] ) python_single_target_python3_14? ( dev-lang/python:3.14[threads(+)] ) >=dev-libs/serd-0.30.10[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=dev-libs/sord-0.16.16[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=dev-libs/zix-0.6.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] media-libs/libsndfile >=media-libs/lv2-1.18.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=media-libs/sratom-0.6.10[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] -REQUIRED_USE=^^ ( python_single_target_python3_10 python_single_target_python3_11 python_single_target_python3_12 python_single_target_python3_13 python_single_target_python3_14 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://download.drobilla.net/lilv-0.24.26.tar.xz -_eclasses_=flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 meson ee14b47f310c323b82e6655787cd65ed meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild 83db098a835f71feb71761f72a694aa2 multilib 404b65bd5212cff83b3935c685419d08 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot b9348e4d36f160f6d2556bea5b59f99c toolchain-funcs 7e440a20ac11dece04e3334622e6e5da -_md5_=3555067728210f8212fb8aa79b6ac5d0 diff --git a/metadata/md5-cache/media-libs/lilv-0.24.26-r1 b/metadata/md5-cache/media-libs/lilv-0.24.26-r1 new file mode 100644 index 000000000000..43676b891956 --- /dev/null +++ b/metadata/md5-cache/media-libs/lilv-0.24.26-r1 @@ -0,0 +1,17 @@ +BDEPEND=virtual/pkgconfig doc? ( app-text/doxygen dev-python/sphinx dev-python/sphinx-lv2-theme dev-python/sphinxygen ) >=dev-build/meson-1.2.3 app-alternatives/ninja dev-build/meson-format-array +DEFINED_PHASES=compile configure install prepare setup test +DEPEND=python? ( python_single_target_python3_10? ( dev-lang/python:3.10[threads(+)] ) python_single_target_python3_11? ( dev-lang/python:3.11[threads(+)] ) python_single_target_python3_12? ( dev-lang/python:3.12[threads(+)] ) python_single_target_python3_13? ( dev-lang/python:3.13[threads(+)] ) python_single_target_python3_14? ( dev-lang/python:3.14[threads(+)] ) ) >=dev-libs/serd-0.30.10[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=dev-libs/sord-0.16.16[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=dev-libs/zix-0.6.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] media-libs/libsndfile >=media-libs/lv2-1.18.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=media-libs/sratom-0.6.10[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] +DESCRIPTION=Library to make the use of LV2 plugins as simple as possible for applications +EAPI=8 +HOMEPAGE=https://drobilla.net/software/lilv.html +INHERIT=meson-multilib python-single-r1 +IUSE=doc python test tools abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 python_single_target_python3_10 python_single_target_python3_11 python_single_target_python3_12 python_single_target_python3_13 python_single_target_python3_14 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~sparc x86 +LICENSE=ISC +RDEPEND=python? ( python_single_target_python3_10? ( dev-lang/python:3.10[threads(+)] ) python_single_target_python3_11? ( dev-lang/python:3.11[threads(+)] ) python_single_target_python3_12? ( dev-lang/python:3.12[threads(+)] ) python_single_target_python3_13? ( dev-lang/python:3.13[threads(+)] ) python_single_target_python3_14? ( dev-lang/python:3.14[threads(+)] ) ) >=dev-libs/serd-0.30.10[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=dev-libs/sord-0.16.16[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=dev-libs/zix-0.6.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] media-libs/libsndfile >=media-libs/lv2-1.18.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=media-libs/sratom-0.6.10[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] +REQUIRED_USE=python? ( ^^ ( python_single_target_python3_10 python_single_target_python3_11 python_single_target_python3_12 python_single_target_python3_13 python_single_target_python3_14 ) ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://download.drobilla.net/lilv-0.24.26.tar.xz +_eclasses_=flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 meson ee14b47f310c323b82e6655787cd65ed meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild 83db098a835f71feb71761f72a694aa2 multilib 404b65bd5212cff83b3935c685419d08 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot b9348e4d36f160f6d2556bea5b59f99c toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_md5_=61f7cc3ac5ce4a3db5e4b9f7294477b1 diff --git a/metadata/md5-cache/media-libs/lvtk-1.2.0-r3 b/metadata/md5-cache/media-libs/lvtk-1.2.0-r3 deleted file mode 100644 index e717656d3d97..000000000000 --- a/metadata/md5-cache/media-libs/lvtk-1.2.0-r3 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=|| ( dev-lang/python:3.14[threads(+)] dev-lang/python:3.13[threads(+)] dev-lang/python:3.12[threads(+)] dev-lang/python:3.11[threads(+)] dev-lang/python:3.10[threads(+)] ) virtual/pkgconfig -DEFINED_PHASES=compile configure install setup unpack -DEPEND=media-libs/lv2 dev-libs/boost gtk2? ( dev-cpp/gtkmm:2.4 ) doc? ( app-text/doxygen media-gfx/graphviz ) -DESCRIPTION=A set of C++ wrappers around the LV2 C API -EAPI=8 -HOMEPAGE=https://lvtk.org/ -INHERIT=dot-a python-any-r1 waf-utils -IUSE=debug doc examples +gtk2 +tools -KEYWORDS=amd64 x86 -LICENSE=GPL-3+ -RDEPEND=media-libs/lv2 dev-libs/boost gtk2? ( dev-cpp/gtkmm:2.4 ) -SLOT=0 -SRC_URI=https://github.com/lvtk/lvtk/archive/1.2.0.tar.gz -> lvtk-1.2.0.tar.gz https://waf.io/waf-2.0.20 -_eclasses_=dot-a e5200fe17cfd2ed6fa66edd80201763a flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 sysroot b9348e4d36f160f6d2556bea5b59f99c toolchain-funcs 7e440a20ac11dece04e3334622e6e5da waf-utils 04842f6fb79b876b079301eff0764e2d -_md5_=4703aef5022622779f7fe86dc7aa6e39 diff --git a/metadata/md5-cache/media-sound/snapcast-0.31.0 b/metadata/md5-cache/media-sound/snapcast-0.31.0 deleted file mode 100644 index afed383d73b0..000000000000 --- a/metadata/md5-cache/media-sound/snapcast-0.31.0 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=app-alternatives/ninja >=dev-build/cmake-3.28.5 -DEFINED_PHASES=compile configure install prepare test -DEPEND=dev-libs/boost:= dev-libs/openssl:= media-libs/alsa-lib client? ( acct-user/snapclient ) expat? ( dev-libs/expat ) flac? ( media-libs/flac:= ) jack? ( virtual/jack ) opus? ( media-libs/opus ) server? ( acct-group/snapserver acct-user/snapserver ) tremor? ( media-libs/tremor ) vorbis? ( media-libs/libvorbis ) zeroconf? ( net-dns/avahi[dbus] ) >=dev-cpp/aixlog-1.2.1 >=dev-cpp/asio-1.12.1 >=dev-cpp/popl-1.2.0 test? ( >=dev-cpp/catch-3:0 ) -DESCRIPTION=Synchronous multi-room audio player -EAPI=8 -HOMEPAGE=https://github.com/badaix/snapcast -INHERIT=edo cmake -IUSE=+client +expat +flac jack +opus +server test tremor +vorbis +zeroconf -KEYWORDS=amd64 ~arm ppc ppc64 ~riscv x86 -LICENSE=GPL-3+ -RDEPEND=dev-libs/boost:= dev-libs/openssl:= media-libs/alsa-lib client? ( acct-user/snapclient ) expat? ( dev-libs/expat ) flac? ( media-libs/flac:= ) jack? ( virtual/jack ) opus? ( media-libs/opus ) server? ( acct-group/snapserver acct-user/snapserver ) tremor? ( media-libs/tremor ) vorbis? ( media-libs/libvorbis ) zeroconf? ( net-dns/avahi[dbus] ) -REQUIRED_USE=|| ( server client ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/badaix/snapcast/archive/v0.31.0.tar.gz -> snapcast-0.31.0.tar.gz -_eclasses_=cmake 5691a3da96eac88f135cf3596b8c2c3c edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b toolchain-funcs 7e440a20ac11dece04e3334622e6e5da xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=7d51ee5beafe219c54abaf33f3fcc2cf diff --git a/metadata/md5-cache/media-sound/sox-14.4.4.1 b/metadata/md5-cache/media-sound/sox-14.4.4.1-r1 index 903709825949..b78ab33921f9 100644 --- a/metadata/md5-cache/media-sound/sox-14.4.4.1 +++ b/metadata/md5-cache/media-sound/sox-14.4.4.1-r1 @@ -12,4 +12,4 @@ RDEPEND=dev-libs/libltdl:0= >=media-sound/gsm-1.0.12-r1 sys-apps/file alsa? ( me SLOT=0/3 SRC_URI=https://codeberg.org/sox_ng/sox_ng/releases/download/sox_ng-14.4.4.1/sox_ng-14.4.4.1.tar.gz _eclasses_=autotools 955b29ccd82c1df4755e5f37748d2fa6 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da -_md5_=f2f860e30b583787125888214bc76730 +_md5_=b11d20050e7ef97a9228630e4c7c2269 diff --git a/metadata/md5-cache/media-sound/sox-14.6.0.4 b/metadata/md5-cache/media-sound/sox-14.6.0.4-r1 index 75ea21af1f2d..f6aa4617f17f 100644 --- a/metadata/md5-cache/media-sound/sox-14.6.0.4 +++ b/metadata/md5-cache/media-sound/sox-14.6.0.4-r1 @@ -12,4 +12,4 @@ RDEPEND=dev-libs/libltdl:0= >=media-sound/gsm-1.0.12-r1 sys-apps/file alsa? ( me SLOT=0/3 SRC_URI=https://codeberg.org/sox_ng/sox_ng/releases/download/sox_ng-14.6.0.4/sox_ng-14.6.0.4.tar.gz _eclasses_=autotools 955b29ccd82c1df4755e5f37748d2fa6 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da -_md5_=e5dc57ed09a41379244ffa671b676729 +_md5_=303f0ef334c8af8f2f13cb9ce621f2d0 diff --git a/metadata/md5-cache/media-tv/plex-media-server-1.42.2.10156 b/metadata/md5-cache/media-tv/plex-media-server-1.43.0.10492 index 2fbe0914aa9a..15de14ccaff3 100644 --- a/metadata/md5-cache/media-tv/plex-media-server-1.42.2.10156 +++ b/metadata/md5-cache/media-tv/plex-media-server-1.43.0.10492 @@ -10,6 +10,6 @@ LICENSE=all-rights-reserved RDEPEND=acct-group/plex acct-user/plex RESTRICT=bindist SLOT=0 -SRC_URI=amd64? ( https://downloads.plex.tv/plex-media-server-new/1.42.2.10156-f737b826c/debian/plexmediaserver_1.42.2.10156-f737b826c_amd64.deb ) arm? ( https://downloads.plex.tv/plex-media-server-new/1.42.2.10156-f737b826c/debian/plexmediaserver_1.42.2.10156-f737b826c_armhf.deb ) arm64? ( https://downloads.plex.tv/plex-media-server-new/1.42.2.10156-f737b826c/debian/plexmediaserver_1.42.2.10156-f737b826c_arm64.deb ) x86? ( https://downloads.plex.tv/plex-media-server-new/1.42.2.10156-f737b826c/debian/plexmediaserver_1.42.2.10156-f737b826c_i386.deb ) +SRC_URI=amd64? ( https://downloads.plex.tv/plex-media-server-new/1.43.0.10492-121068a07/debian/plexmediaserver_1.43.0.10492-121068a07_amd64.deb ) arm? ( https://downloads.plex.tv/plex-media-server-new/1.43.0.10492-121068a07/debian/plexmediaserver_1.43.0.10492-121068a07_armhf.deb ) arm64? ( https://downloads.plex.tv/plex-media-server-new/1.43.0.10492-121068a07/debian/plexmediaserver_1.43.0.10492-121068a07_arm64.deb ) x86? ( https://downloads.plex.tv/plex-media-server-new/1.43.0.10492-121068a07/debian/plexmediaserver_1.43.0.10492-121068a07_i386.deb ) _eclasses_=multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe readme.gentoo-r1 b045f3acf546393ab6b3170781875358 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da unpacker 3b4ee72d1e2e0374fd8cd3eddfa00627 -_md5_=c5acfd03463bbd3eac1505dc7c66de4f +_md5_=cee082e3a3f94996fa2a2fda727df0d5 diff --git a/metadata/md5-cache/media-video/wireplumber-0.5.13 b/metadata/md5-cache/media-video/wireplumber-0.5.13 index 3a178f6ddcfa..3f7f8946689b 100644 --- a/metadata/md5-cache/media-video/wireplumber-0.5.13 +++ b/metadata/md5-cache/media-video/wireplumber-0.5.13 @@ -6,7 +6,7 @@ EAPI=8 HOMEPAGE=https://gitlab.freedesktop.org/pipewire/wireplumber INHERIT=lua-single meson python-any-r1 systemd IUSE=doc doc elogind system-service systemd test lua_single_target_luajit lua_single_target_lua5-1 lua_single_target_lua5-3 lua_single_target_lua5-4 -KEYWORDS=~amd64 ~arm ~arm64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 +KEYWORDS=amd64 arm arm64 ~loong ~mips ppc ppc64 ~riscv ~sparc x86 LICENSE=MIT RDEPEND=lua_single_target_luajit? ( dev-lang/luajit:= ) lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) lua_single_target_lua5-3? ( dev-lang/lua:5.3 ) lua_single_target_lua5-4? ( dev-lang/lua:5.4 ) >=dev-libs/glib-2.68 >=media-video/pipewire-1.0.5-r1:= virtual/libintl elogind? ( sys-auth/elogind ) systemd? ( sys-apps/systemd ) system-service? ( acct-user/pipewire acct-group/pipewire ) REQUIRED_USE=^^ ( lua_single_target_luajit lua_single_target_lua5-1 lua_single_target_lua5-3 lua_single_target_lua5-4 ) ?? ( elogind systemd ) system-service? ( systemd ) @@ -14,4 +14,4 @@ RESTRICT=!test? ( test ) SLOT=0/0.5 SRC_URI=https://gitlab.freedesktop.org/pipewire/wireplumber/-/archive/0.5.13/wireplumber-0.5.13.tar.bz2 !doc? ( https://dev.gentoo.org/~sam/distfiles/media-video/wireplumber/wireplumber-0.5.13-docs.tar.xz ) _eclasses_=flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 lua-single 75fe955a36b18e199213c8739eaebdbb lua-utils 7c89927eda6f21c4c48136247077ab37 meson ee14b47f310c323b82e6655787cd65ed multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust-toolchain 76468983281b0a7fc167ca224f84ecfd sysroot b9348e4d36f160f6d2556bea5b59f99c systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da -_md5_=0bdc5eb6f1c20e49bac43b5fa818b293 +_md5_=8c7363a02d6d6fdf0aaa2d66a537e23a diff --git a/metadata/md5-cache/net-analyzer/fail2ban-1.1.0-r3 b/metadata/md5-cache/net-analyzer/fail2ban-1.1.0-r3 index 3d3e1ea8c5bf..10d68e443fb7 100644 --- a/metadata/md5-cache/net-analyzer/fail2ban-1.1.0-r3 +++ b/metadata/md5-cache/net-analyzer/fail2ban-1.1.0-r3 @@ -5,7 +5,7 @@ EAPI=8 HOMEPAGE=https://www.fail2ban.org/ INHERIT=bash-completion-r1 edo python-single-r1 systemd tmpfiles IUSE=selinux systemd test python_single_target_python3_10 python_single_target_python3_11 python_single_target_python3_12 python_single_target_python3_13 python_single_target_python3_14 -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv ~sparc x86 +KEYWORDS=amd64 arm arm64 ~loong ppc ppc64 ~riscv ~sparc x86 LICENSE=GPL-2 RDEPEND=python_single_target_python3_10? ( dev-lang/python:3.10 ) python_single_target_python3_11? ( dev-lang/python:3.11 ) python_single_target_python3_12? ( dev-lang/python:3.12 ) python_single_target_python3_13? ( dev-lang/python:3.13 ) python_single_target_python3_14? ( dev-lang/python:3.14 ) python_single_target_python3_12? ( dev-python/pyasyncore[python_targets_python3_12(-)] dev-python/pyasynchat[python_targets_python3_12(-)] ) virtual/logger virtual/mta selinux? ( sec-policy/selinux-fail2ban ) systemd? ( python_single_target_python3_10? ( dev-python/python-systemd[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/python-systemd[python_targets_python3_11(-)] ) python_single_target_python3_12? ( dev-python/python-systemd[python_targets_python3_12(-)] ) python_single_target_python3_13? ( dev-python/python-systemd[python_targets_python3_13(-)] ) python_single_target_python3_14? ( dev-python/python-systemd[python_targets_python3_14(-)] ) ) virtual/tmpfiles REQUIRED_USE=^^ ( python_single_target_python3_10 python_single_target_python3_11 python_single_target_python3_12 python_single_target_python3_13 python_single_target_python3_14 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/fail2ban/fail2ban/archive/1.1.0.tar.gz -> fail2ban-1.1.0.tar.gz _eclasses_=bash-completion-r1 767861f3744f589ee5291c1698b1c082 edo a5e294016aa84979fcb2459749eb80b2 multiprocessing 1e32df7deee68372153dca65f4a7c21f python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 systemd a964c0cbe818b5729da1dbfcee5be861 tmpfiles 9a9814db5a3fbd4f1e921c05297e7735 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da -_md5_=514d37f291dab97698d395e1038a4f54 +_md5_=21f54517eafa1bc6bb2f3b7f22c2bbac diff --git a/metadata/md5-cache/net-analyzer/fail2ban-1.1.0-r4 b/metadata/md5-cache/net-analyzer/fail2ban-1.1.0-r4 index c8a36178e488..999b3d9b87f2 100644 --- a/metadata/md5-cache/net-analyzer/fail2ban-1.1.0-r4 +++ b/metadata/md5-cache/net-analyzer/fail2ban-1.1.0-r4 @@ -5,7 +5,7 @@ EAPI=8 HOMEPAGE=https://www.fail2ban.org/ INHERIT=bash-completion-r1 edo python-single-r1 systemd tmpfiles IUSE=selinux systemd test python_single_target_python3_10 python_single_target_python3_11 python_single_target_python3_12 python_single_target_python3_13 python_single_target_python3_14 -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv ~sparc x86 +KEYWORDS=amd64 arm arm64 ~loong ppc ppc64 ~riscv ~sparc x86 LICENSE=GPL-2 RDEPEND=python_single_target_python3_10? ( dev-lang/python:3.10 ) python_single_target_python3_11? ( dev-lang/python:3.11 ) python_single_target_python3_12? ( dev-lang/python:3.12 ) python_single_target_python3_13? ( dev-lang/python:3.13 ) python_single_target_python3_14? ( dev-lang/python:3.14 ) python_single_target_python3_12? ( dev-python/pyasyncore[python_targets_python3_12(-)] dev-python/pyasynchat[python_targets_python3_12(-)] ) virtual/logger virtual/mta selinux? ( sec-policy/selinux-fail2ban ) systemd? ( python_single_target_python3_10? ( dev-python/python-systemd[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/python-systemd[python_targets_python3_11(-)] ) python_single_target_python3_12? ( dev-python/python-systemd[python_targets_python3_12(-)] ) python_single_target_python3_13? ( dev-python/python-systemd[python_targets_python3_13(-)] ) python_single_target_python3_14? ( dev-python/python-systemd[python_targets_python3_14(-)] ) ) virtual/tmpfiles REQUIRED_USE=^^ ( python_single_target_python3_10 python_single_target_python3_11 python_single_target_python3_12 python_single_target_python3_13 python_single_target_python3_14 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/fail2ban/fail2ban/archive/1.1.0.tar.gz -> fail2ban-1.1.0.tar.gz _eclasses_=bash-completion-r1 767861f3744f589ee5291c1698b1c082 edo a5e294016aa84979fcb2459749eb80b2 multiprocessing 1e32df7deee68372153dca65f4a7c21f python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 systemd a964c0cbe818b5729da1dbfcee5be861 tmpfiles 9a9814db5a3fbd4f1e921c05297e7735 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da -_md5_=a2b69bce51b542a079e6495fcb74921b +_md5_=0f7c94b3af4c24bc6c2c4d8157e4b2ca diff --git a/metadata/md5-cache/net-analyzer/fail2ban-1.1.0-r6 b/metadata/md5-cache/net-analyzer/fail2ban-1.1.0-r6 index 787626c9b7c0..9d361bd8309b 100644 --- a/metadata/md5-cache/net-analyzer/fail2ban-1.1.0-r6 +++ b/metadata/md5-cache/net-analyzer/fail2ban-1.1.0-r6 @@ -5,7 +5,7 @@ EAPI=8 HOMEPAGE=https://www.fail2ban.org/ INHERIT=bash-completion-r1 edo python-single-r1 systemd tmpfiles IUSE=selinux systemd test python_single_target_python3_10 python_single_target_python3_11 python_single_target_python3_12 python_single_target_python3_13 python_single_target_python3_14 -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv ~sparc x86 +KEYWORDS=amd64 arm arm64 ~loong ppc ppc64 ~riscv ~sparc x86 LICENSE=GPL-2 RDEPEND=python_single_target_python3_10? ( dev-lang/python:3.10 ) python_single_target_python3_11? ( dev-lang/python:3.11 ) python_single_target_python3_12? ( dev-lang/python:3.12 ) python_single_target_python3_13? ( dev-lang/python:3.13 ) python_single_target_python3_14? ( dev-lang/python:3.14 ) python_single_target_python3_12? ( dev-python/pyasyncore[python_targets_python3_12(-)] dev-python/pyasynchat[python_targets_python3_12(-)] ) virtual/logger virtual/mta selinux? ( sec-policy/selinux-fail2ban ) systemd? ( python_single_target_python3_10? ( dev-python/python-systemd[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/python-systemd[python_targets_python3_11(-)] ) python_single_target_python3_12? ( dev-python/python-systemd[python_targets_python3_12(-)] ) python_single_target_python3_13? ( dev-python/python-systemd[python_targets_python3_13(-)] ) python_single_target_python3_14? ( dev-python/python-systemd[python_targets_python3_14(-)] ) ) virtual/tmpfiles REQUIRED_USE=^^ ( python_single_target_python3_10 python_single_target_python3_11 python_single_target_python3_12 python_single_target_python3_13 python_single_target_python3_14 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/fail2ban/fail2ban/archive/1.1.0.tar.gz -> fail2ban-1.1.0.tar.gz _eclasses_=bash-completion-r1 767861f3744f589ee5291c1698b1c082 edo a5e294016aa84979fcb2459749eb80b2 multiprocessing 1e32df7deee68372153dca65f4a7c21f python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 systemd a964c0cbe818b5729da1dbfcee5be861 tmpfiles 9a9814db5a3fbd4f1e921c05297e7735 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da -_md5_=4ecf3b1c11d9d951883fdc936c6ec976 +_md5_=0fb274c1fb8b1b6d202a139c906130a3 diff --git a/metadata/md5-cache/net-analyzer/fail2ban-9999 b/metadata/md5-cache/net-analyzer/fail2ban-9999 index 87cd7c7050e3..a5907b709b11 100644 --- a/metadata/md5-cache/net-analyzer/fail2ban-9999 +++ b/metadata/md5-cache/net-analyzer/fail2ban-9999 @@ -12,4 +12,4 @@ REQUIRED_USE=^^ ( python_single_target_python3_10 python_single_target_python3_1 RESTRICT=!test? ( test ) SLOT=0 _eclasses_=bash-completion-r1 767861f3744f589ee5291c1698b1c082 edo a5e294016aa84979fcb2459749eb80b2 git-r3 875eb471682d3e1f18da124be97dcc81 multiprocessing 1e32df7deee68372153dca65f4a7c21f python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 systemd a964c0cbe818b5729da1dbfcee5be861 tmpfiles 9a9814db5a3fbd4f1e921c05297e7735 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da -_md5_=20c403538b447ef16ac1ddd770a49acf +_md5_=7391a8c90cf3cc6f72af44d6281920b2 diff --git a/metadata/md5-cache/net-analyzer/openvas-scanner-23.40.0 b/metadata/md5-cache/net-analyzer/openvas-scanner-23.40.0 new file mode 100644 index 000000000000..30f0aa9a5107 --- /dev/null +++ b/metadata/md5-cache/net-analyzer/openvas-scanner-23.40.0 @@ -0,0 +1,16 @@ +BDEPEND=>=sys-devel/bison-2.5 app-alternatives/lex virtual/pkgconfig doc? ( app-text/doxygen[dot] app-text/xmltoman app-text/htmldoc virtual/pandoc ) test? ( dev-libs/cgreen ) app-alternatives/ninja >=dev-build/cmake-3.28.5 virtual/pkgconfig +DEFINED_PHASES=compile configure install postinst preinst prepare test +DEPEND=acct-user/gvm app-crypt/gpgme:= app-crypt/mit-krb5:= >=dev-db/redis-5.0.3 >=dev-libs/glib-2.42:2 >=dev-libs/libgcrypt-1.6:= dev-libs/libgpg-error >=dev-libs/libksba-1.0.7 dev-libs/libbsd >=net-libs/libssh-0.6.0:= >=dev-libs/json-glib-1.4.4 >=net-analyzer/gvm-libs-22.4 >=net-libs/gnutls-3.6.4:= net-libs/libpcap >=net-misc/curl-7.74.0[ssl] snmp? ( net-analyzer/net-snmp:= ) +DESCRIPTION=Open Vulnerability Assessment Scanner +EAPI=8 +HOMEPAGE=https://www.greenbone.net https://github.com/greenbone/openvas-scanner/ +INHERIT=cmake systemd tmpfiles toolchain-funcs greadme optfeature +IUSE=doc snmp test +KEYWORDS=~amd64 +LICENSE=GPL-2 GPL-2+ +RDEPEND=acct-user/gvm app-crypt/gpgme:= app-crypt/mit-krb5:= >=dev-db/redis-5.0.3 >=dev-libs/glib-2.42:2 >=dev-libs/libgcrypt-1.6:= dev-libs/libgpg-error >=dev-libs/libksba-1.0.7 dev-libs/libbsd >=net-libs/libssh-0.6.0:= >=dev-libs/json-glib-1.4.4 >=net-analyzer/gvm-libs-22.4 >=net-libs/gnutls-3.6.4:= net-libs/libpcap >=net-misc/curl-7.74.0[ssl] snmp? ( net-analyzer/net-snmp:= ) virtual/tmpfiles +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/greenbone/openvas-scanner/archive/v23.40.0.tar.gz -> openvas-scanner-23.40.0.tar.gz +_eclasses_=cmake 5691a3da96eac88f135cf3596b8c2c3c flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 greadme a8eea52f1e4068ec2222c2cb3ab7417e multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b optfeature 538bce96e5589935b57e178e8635f301 systemd a964c0cbe818b5729da1dbfcee5be861 tmpfiles 9a9814db5a3fbd4f1e921c05297e7735 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_md5_=0539e50a99babd587ee970c5069b3fbe diff --git a/metadata/md5-cache/net-libs/libquotient-0.9.6 b/metadata/md5-cache/net-libs/libquotient-0.9.6 new file mode 100644 index 000000000000..c015821c2da9 --- /dev/null +++ b/metadata/md5-cache/net-libs/libquotient-0.9.6 @@ -0,0 +1,16 @@ +BDEPEND=app-alternatives/ninja >=dev-build/cmake-3.28.5 +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-libs/olm dev-libs/openssl:= >=dev-libs/qtkeychain-0.14.2:=[qt6(+)] dev-qt/qtbase:6=[gui,network,sql,ssl] dev-qt/qtmultimedia:6 test? ( dev-qt/qtbase:6[concurrent] ) +DESCRIPTION=Qt-based SDK to develop applications for Matrix +EAPI=8 +HOMEPAGE=https://github.com/quotient-im/libQuotient +INHERIT=cmake +IUSE=test +KEYWORDS=~amd64 ~arm64 ~ppc64 ~x86 +LICENSE=LGPL-2+ +RDEPEND=dev-libs/olm dev-libs/openssl:= >=dev-libs/qtkeychain-0.14.2:=[qt6(+)] dev-qt/qtbase:6=[gui,network,sql,ssl] dev-qt/qtmultimedia:6 +RESTRICT=!test? ( test ) +SLOT=0/0.9.6 +SRC_URI=https://github.com/quotient-im/libQuotient/archive/0.9.6.tar.gz -> libquotient-0.9.6.tar.gz +_eclasses_=cmake 5691a3da96eac88f135cf3596b8c2c3c flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b toolchain-funcs 7e440a20ac11dece04e3334622e6e5da xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_md5_=9f9d9f5a6c1fe9c01492a8b059c7bd0a diff --git a/metadata/md5-cache/net-libs/libssh-0.11.4 b/metadata/md5-cache/net-libs/libssh-0.11.4 index b9c94a6ecaea..9c4fa6b7157a 100644 --- a/metadata/md5-cache/net-libs/libssh-0.11.4 +++ b/metadata/md5-cache/net-libs/libssh-0.11.4 @@ -6,11 +6,11 @@ EAPI=8 HOMEPAGE=https://www.libssh.org/ INHERIT=cmake-multilib dot-a verify-sig IUSE=debug doc examples gssapi mbedtls pcap server +sftp static-libs test zlib abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 verify-sig -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 LICENSE=LGPL-2.1 RDEPEND=!mbedtls? ( >=dev-libs/openssl-1.0.1h-r2:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gssapi? ( >=virtual/krb5-0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) mbedtls? ( net-libs/mbedtls:3=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?,threads] ) zlib? ( >=virtual/zlib-1.2.8-r1:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) RESTRICT=!test? ( test ) SLOT=0/4 SRC_URI=https://www.libssh.org/files/0.11/libssh-0.11.4.tar.xz verify-sig? ( https://www.libssh.org/files/0.11/libssh-0.11.4.tar.xz.asc ) _eclasses_=cmake 5691a3da96eac88f135cf3596b8c2c3c cmake-multilib 3f19d8d5fccba52076cdeb2281ad349f dot-a e5200fe17cfd2ed6fa66edd80201763a eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multibuild 83db098a835f71feb71761f72a694aa2 multilib 404b65bd5212cff83b3935c685419d08 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b out-of-source-utils 8e5093bd27b7f541a1913271f25d633a toolchain-funcs 7e440a20ac11dece04e3334622e6e5da verify-sig ece4c893b6bd62eacbc4d25958e857f8 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=968293b84218ae2203cc94b18867f279 +_md5_=9adec9cc0edb432eff0c3524257b1ea2 diff --git a/metadata/md5-cache/sci-mathematics/cadabra-2.4.5.7 b/metadata/md5-cache/sci-mathematics/cadabra-2.4.5.7 deleted file mode 100644 index 624a73bda98b..000000000000 --- a/metadata/md5-cache/sci-mathematics/cadabra-2.4.5.7 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=python_single_target_python3_10? ( dev-python/pybind11[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/pybind11[python_targets_python3_11(-)] ) python_single_target_python3_12? ( dev-python/pybind11[python_targets_python3_12(-)] ) python_single_target_python3_13? ( dev-python/pybind11[python_targets_python3_13(-)] ) python_single_target_python3_14? ( dev-python/pybind11[python_targets_python3_14(-)] ) app-alternatives/ninja >=dev-build/cmake-3.28.5 -DEFINED_PHASES=compile configure install postinst postrm prepare setup test -DEPEND=python_single_target_python3_10? ( dev-lang/python:3.10 ) python_single_target_python3_11? ( dev-lang/python:3.11 ) python_single_target_python3_12? ( dev-lang/python:3.12 ) python_single_target_python3_13? ( dev-lang/python:3.13 ) python_single_target_python3_14? ( dev-lang/python:3.14 ) app-text/dvipng dev-cpp/glibmm:2 dev-db/sqlite:3= dev-libs/boost:= dev-libs/gmp:=[cxx] dev-libs/jsoncpp:= dev-libs/libsigc++:2 dev-texlive/texlive-basic python_single_target_python3_10? ( dev-python/gmpy2:2[python_targets_python3_10(-)] dev-python/matplotlib[python_targets_python3_10(-)] dev-python/sympy[python_targets_python3_10(-)] jupyter? ( dev-python/jupyter[python_targets_python3_10(-)] ) ) python_single_target_python3_11? ( dev-python/gmpy2:2[python_targets_python3_11(-)] dev-python/matplotlib[python_targets_python3_11(-)] dev-python/sympy[python_targets_python3_11(-)] jupyter? ( dev-python/jupyter[python_targets_python3_11(-)] ) ) python_single_target_python3_12? ( dev-python/gmpy2:2[python_targets_python3_12(-)] dev-python/matplotlib[python_targets_python3_12(-)] dev-python/sympy[python_targets_python3_12(-)] jupyter? ( dev-python/jupyter[python_targets_python3_12(-)] ) ) python_single_target_python3_13? ( dev-python/gmpy2:2[python_targets_python3_13(-)] dev-python/matplotlib[python_targets_python3_13(-)] dev-python/sympy[python_targets_python3_13(-)] jupyter? ( dev-python/jupyter[python_targets_python3_13(-)] ) ) python_single_target_python3_14? ( dev-python/gmpy2:2[python_targets_python3_14(-)] dev-python/matplotlib[python_targets_python3_14(-)] dev-python/sympy[python_targets_python3_14(-)] jupyter? ( dev-python/jupyter[python_targets_python3_14(-)] ) ) gui? ( dev-cpp/gtkmm:3.0 ) -DESCRIPTION=Field-theory motivated approach to computer algebra -EAPI=8 -HOMEPAGE=https://cadabra.science/ https://github.com/kpeeters/cadabra2/ -INHERIT=xdg-utils python-single-r1 cmake -IUSE=gui +jupyter test python_single_target_python3_10 python_single_target_python3_11 python_single_target_python3_12 python_single_target_python3_13 python_single_target_python3_14 -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-3 -RDEPEND=python_single_target_python3_10? ( dev-lang/python:3.10 ) python_single_target_python3_11? ( dev-lang/python:3.11 ) python_single_target_python3_12? ( dev-lang/python:3.12 ) python_single_target_python3_13? ( dev-lang/python:3.13 ) python_single_target_python3_14? ( dev-lang/python:3.14 ) app-text/dvipng dev-cpp/glibmm:2 dev-db/sqlite:3= dev-libs/boost:= dev-libs/gmp:=[cxx] dev-libs/jsoncpp:= dev-libs/libsigc++:2 dev-texlive/texlive-basic python_single_target_python3_10? ( dev-python/gmpy2:2[python_targets_python3_10(-)] dev-python/matplotlib[python_targets_python3_10(-)] dev-python/sympy[python_targets_python3_10(-)] jupyter? ( dev-python/jupyter[python_targets_python3_10(-)] ) ) python_single_target_python3_11? ( dev-python/gmpy2:2[python_targets_python3_11(-)] dev-python/matplotlib[python_targets_python3_11(-)] dev-python/sympy[python_targets_python3_11(-)] jupyter? ( dev-python/jupyter[python_targets_python3_11(-)] ) ) python_single_target_python3_12? ( dev-python/gmpy2:2[python_targets_python3_12(-)] dev-python/matplotlib[python_targets_python3_12(-)] dev-python/sympy[python_targets_python3_12(-)] jupyter? ( dev-python/jupyter[python_targets_python3_12(-)] ) ) python_single_target_python3_13? ( dev-python/gmpy2:2[python_targets_python3_13(-)] dev-python/matplotlib[python_targets_python3_13(-)] dev-python/sympy[python_targets_python3_13(-)] jupyter? ( dev-python/jupyter[python_targets_python3_13(-)] ) ) python_single_target_python3_14? ( dev-python/gmpy2:2[python_targets_python3_14(-)] dev-python/matplotlib[python_targets_python3_14(-)] dev-python/sympy[python_targets_python3_14(-)] jupyter? ( dev-python/jupyter[python_targets_python3_14(-)] ) ) gui? ( dev-cpp/gtkmm:3.0 ) -REQUIRED_USE=^^ ( python_single_target_python3_10 python_single_target_python3_11 python_single_target_python3_12 python_single_target_python3_13 python_single_target_python3_14 ) -RESTRICT=!test? ( test ) -SLOT=0/2 -SRC_URI=https://github.com/kpeeters/cadabra2/archive/2.4.5.7.tar.gz -> cadabra-2.4.5.7.tar.gz -_eclasses_=cmake 5691a3da96eac88f135cf3596b8c2c3c flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=713202cfdf1cc0b816b6f0a4e3013be7 diff --git a/metadata/md5-cache/sci-mathematics/glpk-5.0-r4 b/metadata/md5-cache/sci-mathematics/glpk-5.0-r4 new file mode 100644 index 000000000000..ead6d421ba8c --- /dev/null +++ b/metadata/md5-cache/sci-mathematics/glpk-5.0-r4 @@ -0,0 +1,15 @@ +BDEPEND=virtual/pkgconfig sys-devel/gnuconfig >=app-portage/elt-patches-20250306 || ( >=dev-build/automake-1.18:1.18 >=dev-build/automake-1.17-r1:1.17 ) || ( >=dev-build/autoconf-2.72-r1:2.72 ) >=dev-build/libtool-2.4.7-r3 +DEFINED_PHASES=configure install prepare +DEPEND=sci-libs/amd:0= sci-libs/colamd:= virtual/zlib:= gmp? ( dev-libs/gmp:0= ) mysql? ( dev-db/mysql-connector-c dev-libs/libltdl ) +DESCRIPTION=GNU Linear Programming Kit +EAPI=8 +HOMEPAGE=https://www.gnu.org/software/glpk/ +INHERIT=autotools flag-o-matic +IUSE=doc examples gmp mysql +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86 +LICENSE=GPL-3 +RDEPEND=sci-libs/amd:0= sci-libs/colamd:= virtual/zlib:= gmp? ( dev-libs/gmp:0= ) mysql? ( dev-db/mysql-connector-c dev-libs/libltdl ) +SLOT=0/40 +SRC_URI=mirror://gnu/glpk/glpk-5.0.tar.gz +_eclasses_=autotools 955b29ccd82c1df4755e5f37748d2fa6 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_md5_=dfb6357549a9cfbd7da2ec8dac1d0666 diff --git a/metadata/md5-cache/sec-keys/openpgp-keys-gentoo-developers-20260216 b/metadata/md5-cache/sec-keys/openpgp-keys-gentoo-developers-20260216 new file mode 100644 index 000000000000..fb6dcff7aec3 --- /dev/null +++ b/metadata/md5-cache/sec-keys/openpgp-keys-gentoo-developers-20260216 @@ -0,0 +1,14 @@ +BDEPEND=|| ( ( dev-lang/python:3.14 dev-python/python-gnupg[python_targets_python3_14(-)] ) ( dev-lang/python:3.13 dev-python/python-gnupg[python_targets_python3_13(-)] ) ( dev-lang/python:3.12 dev-python/python-gnupg[python_targets_python3_12(-)] ) ( dev-lang/python:3.11 dev-python/python-gnupg[python_targets_python3_11(-)] ) ( dev-lang/python:3.10 dev-python/python-gnupg[python_targets_python3_10(-)] ) ) || ( app-crypt/gnupg[nls] app-crypt/freepg[nls] ) >=sec-keys/openpgp-keys-gentoo-auth-20240703 test? ( sys-apps/grep[pcre] ) +DEFINED_PHASES=compile install setup test unpack +DESCRIPTION=Gentoo Authority Keys (GLEP 79) +EAPI=8 +HOMEPAGE=https://www.gentoo.org/downloads/signatures/ +INHERIT=edo python-any-r1 +IUSE=test +KEYWORDS=~alpha amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~sparc x86 +LICENSE=public-domain +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://qa-reports.gentoo.org/output/keys/active-devs-20260216.gpg -> openpgp-keys-gentoo-developers-20260216-active-devs.gpg +_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 multiprocessing 1e32df7deee68372153dca65f4a7c21f python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_md5_=15e5f8e390597a6e1ffa3f4a4d574388 diff --git a/metadata/md5-cache/sec-keys/openpgp-keys-marcusb-20260217 b/metadata/md5-cache/sec-keys/openpgp-keys-marcusb-20260217 new file mode 100644 index 000000000000..53aa1f2577fe --- /dev/null +++ b/metadata/md5-cache/sec-keys/openpgp-keys-marcusb-20260217 @@ -0,0 +1,15 @@ +BDEPEND=app-alternatives/gpg test? ( app-crypt/pgpdump ) +DEFINED_PHASES=compile install test +DESCRIPTION=OpenPGP key used by Marcus Butler (marcusb) +EAPI=8 +HOMEPAGE=https://marcusb.org/contact.html +INHERIT=sec-keys +IUSE=test +KEYWORDS=~alpha amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 +LICENSE=public-domain +PROPERTIES=test_network +RESTRICT=!test? ( test ) test +SLOT=0 +SRC_URI=https://keys.openpgp.org/vks/v1/by-fingerprint/9FCFF9AEE365B2A8918FD3576CA3CD34C6363576 -> openpgp-keys-marcusb-openpgp-20260217.asc https://marcusb.org/9FCFF9AEE365B2A8918FD3576CA3CD34C6363576.asc +_eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 sec-keys ceb4d3181e42bf20ca66d74129d9e848 +_md5_=62c505cc1cfcc755b9ba5ac77f21053b diff --git a/metadata/md5-cache/sys-apps/gawk-5.3.67 b/metadata/md5-cache/sys-apps/gawk-5.3.67 new file mode 100644 index 000000000000..5c444c2240de --- /dev/null +++ b/metadata/md5-cache/sys-apps/gawk-5.3.67 @@ -0,0 +1,12 @@ +BDEPEND=>=sys-apps/texinfo-7.1 >=sys-devel/bison-3.5.4 nls? ( sys-devel/gettext ) +DEFINED_PHASES=configure install prepare +DEPEND=mpfr? ( dev-libs/gmp:= dev-libs/mpfr:= ) readline? ( sys-libs/readline:= ) +DESCRIPTION=GNU awk pattern-matching language +EAPI=8 +HOMEPAGE=https://www.gnu.org/software/gawk/gawk.html +IUSE=+mpfr pma nls readline +LICENSE=GPL-3+ pma? ( AGPL-3+ ) +RDEPEND=mpfr? ( dev-libs/gmp:= dev-libs/mpfr:= ) readline? ( sys-libs/readline:= ) +SLOT=0 +SRC_URI=https://www.skeeve.com/gawk/gawk-5.3.67.tar.gz +_md5_=95f062d5c93c429e6a98c9a3878c97db diff --git a/metadata/md5-cache/sys-auth/polkit-qt-0.200.0-r1 b/metadata/md5-cache/sys-auth/polkit-qt-0.200.0-r1 index 15eb638975af..cc24dad2d630 100644 --- a/metadata/md5-cache/sys-auth/polkit-qt-0.200.0-r1 +++ b/metadata/md5-cache/sys-auth/polkit-qt-0.200.0-r1 @@ -5,10 +5,10 @@ DESCRIPTION=Qt wrapper around polkit-1 client libraries EAPI=8 HOMEPAGE=https://api.kde.org/legacy/polkit-qt-1/html/index.html INHERIT=cmake kde.org -KEYWORDS=~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86 +KEYWORDS=~amd64 ~arm arm64 ~loong ~ppc ~ppc64 ~riscv ~x86 LICENSE=LGPL-2 RDEPEND=dev-libs/glib:2 dev-qt/qtbase:6[dbus,gui,widgets] >=sys-auth/polkit-0.103 SLOT=0 SRC_URI=mirror://kde/stable/polkit-qt-1/polkit-qt-1-0.200.0.tar.xz _eclasses_=cmake 5691a3da96eac88f135cf3596b8c2c3c flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 kde.org 2eea56ed41440913be4caa3d255d2db3 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b toolchain-funcs 7e440a20ac11dece04e3334622e6e5da xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=6c276f918105c30d952b9542891bcceb +_md5_=42d1f38677ffe006d08d505ec4ec9443 diff --git a/metadata/md5-cache/sys-devel/binutils-2.45.1 b/metadata/md5-cache/sys-devel/binutils-2.45.1 index bd63d44f1617..f1ae90d8d692 100644 --- a/metadata/md5-cache/sys-devel/binutils-2.45.1 +++ b/metadata/md5-cache/sys-devel/binutils-2.45.1 @@ -5,7 +5,7 @@ DESCRIPTION=Tools necessary to build programs EAPI=8 HOMEPAGE=https://sourceware.org/binutils/ INHERIT=dot-a libtool flag-o-matic gnuconfig strip-linguas toolchain-funcs -IUSE=cet debuginfod doc gprofng hardened multitarget +nls pgo +plugins static-libs test vanilla xxhash zstd +IUSE=cet +debuginfod doc gprofng hardened multitarget +nls pgo +plugins static-libs test vanilla xxhash zstd KEYWORDS=~alpha amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 LICENSE=GPL-3+ RDEPEND=>=sys-devel/binutils-config-3 virtual/zlib:= debuginfod? ( dev-libs/elfutils[debuginfod(-)] ) zstd? ( app-arch/zstd:= ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=2.45 SRC_URI=mirror://gnu/binutils/binutils-2.45.1.tar.xz https://sourceware.org/pub/binutils/releases/binutils-2.45.1.tar.xz https://dev.gentoo.org/~sam/distfiles/binutils-2.45.1.tar.xz https://dev.gentoo.org/~sam/distfiles/binutils-2.45.1-patches-1.tar.xz _eclasses_=dot-a e5200fe17cfd2ed6fa66edd80201763a flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 strip-linguas 3480f49d8ea2640d0398e69d20a2f45f toolchain-funcs 7e440a20ac11dece04e3334622e6e5da -_md5_=d593b0cc9a35c12f9dbb98f3f858a9bc +_md5_=9a20662f9f8522961e33ad7d77a72ecf diff --git a/metadata/md5-cache/sys-devel/binutils-2.45.9999 b/metadata/md5-cache/sys-devel/binutils-2.45.9999 index 747781a04305..26e044a2ae90 100644 --- a/metadata/md5-cache/sys-devel/binutils-2.45.9999 +++ b/metadata/md5-cache/sys-devel/binutils-2.45.9999 @@ -5,11 +5,11 @@ DESCRIPTION=Tools necessary to build programs EAPI=8 HOMEPAGE=https://sourceware.org/binutils/ INHERIT=dot-a libtool flag-o-matic gnuconfig strip-linguas toolchain-funcs git-r3 -IUSE=cet debuginfod doc gprofng hardened multitarget +nls pgo +plugins static-libs test vanilla xxhash zstd +IUSE=cet +debuginfod doc gprofng hardened multitarget +nls pgo +plugins static-libs test vanilla xxhash zstd LICENSE=GPL-3+ PROPERTIES=live RDEPEND=>=sys-devel/binutils-config-3 virtual/zlib:= debuginfod? ( dev-libs/elfutils[debuginfod(-)] ) zstd? ( app-arch/zstd:= ) RESTRICT=!test? ( test ) SLOT=2.45 _eclasses_=dot-a e5200fe17cfd2ed6fa66edd80201763a flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 git-r3 875eb471682d3e1f18da124be97dcc81 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 strip-linguas 3480f49d8ea2640d0398e69d20a2f45f toolchain-funcs 7e440a20ac11dece04e3334622e6e5da -_md5_=3ccf3ad8c14bb32acb0ec3d66f5cc73b +_md5_=dff4d9c91614cb94adb2cdf5d93479c3 diff --git a/metadata/md5-cache/sys-devel/binutils-2.46.0 b/metadata/md5-cache/sys-devel/binutils-2.46.0 index 893bebcd70e1..4b8bbbc1b781 100644 --- a/metadata/md5-cache/sys-devel/binutils-2.46.0 +++ b/metadata/md5-cache/sys-devel/binutils-2.46.0 @@ -5,7 +5,7 @@ DESCRIPTION=Tools necessary to build programs EAPI=8 HOMEPAGE=https://sourceware.org/binutils/ INHERIT=dot-a libtool flag-o-matic gnuconfig strip-linguas toolchain-funcs -IUSE=cet debuginfod doc gprofng hardened multitarget +nls pgo +plugins static-libs test vanilla xxhash zstd +IUSE=cet +debuginfod doc gprofng hardened multitarget +nls pgo +plugins static-libs test vanilla xxhash zstd KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 LICENSE=GPL-3+ RDEPEND=>=sys-devel/binutils-config-3 virtual/zlib:= debuginfod? ( dev-libs/elfutils[debuginfod(-)] ) zstd? ( app-arch/zstd:= ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=2.46 SRC_URI=mirror://gnu/binutils/binutils-2.46.0.tar.xz https://sourceware.org/pub/binutils/releases/binutils-2.46.0.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/binutils-2.46.0.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/binutils-2.46.0-patches-1.tar.xz _eclasses_=dot-a e5200fe17cfd2ed6fa66edd80201763a flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 strip-linguas 3480f49d8ea2640d0398e69d20a2f45f toolchain-funcs 7e440a20ac11dece04e3334622e6e5da -_md5_=b561eaea0ec37ce63bc68cf4ad59d3a5 +_md5_=02f731d863ee2695f4f25e19c2b11a95 diff --git a/metadata/md5-cache/sys-devel/binutils-9999 b/metadata/md5-cache/sys-devel/binutils-9999 index dc5f3a7ede57..41a8602ffec1 100644 --- a/metadata/md5-cache/sys-devel/binutils-9999 +++ b/metadata/md5-cache/sys-devel/binutils-9999 @@ -5,11 +5,11 @@ DESCRIPTION=Tools necessary to build programs EAPI=8 HOMEPAGE=https://sourceware.org/binutils/ INHERIT=dot-a libtool flag-o-matic gnuconfig strip-linguas toolchain-funcs git-r3 -IUSE=cet debuginfod doc gprofng hardened multitarget +nls pgo +plugins static-libs test vanilla xxhash zstd +IUSE=cet +debuginfod doc gprofng hardened multitarget +nls pgo +plugins static-libs test vanilla xxhash zstd LICENSE=GPL-3+ PROPERTIES=live RDEPEND=>=sys-devel/binutils-config-3 virtual/zlib:= debuginfod? ( dev-libs/elfutils[debuginfod(-)] ) zstd? ( app-arch/zstd:= ) RESTRICT=!test? ( test ) SLOT=9999 _eclasses_=dot-a e5200fe17cfd2ed6fa66edd80201763a flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 git-r3 875eb471682d3e1f18da124be97dcc81 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 strip-linguas 3480f49d8ea2640d0398e69d20a2f45f toolchain-funcs 7e440a20ac11dece04e3334622e6e5da -_md5_=c1ae680725dee866a36eb639c07444e1 +_md5_=91d12f8697d83db68a097906558f1193 diff --git a/metadata/md5-cache/sys-devel/binutils-hppa64-2.45.1 b/metadata/md5-cache/sys-devel/binutils-hppa64-2.45.1 index 8f68085cdece..8f66a5669f86 100644 --- a/metadata/md5-cache/sys-devel/binutils-hppa64-2.45.1 +++ b/metadata/md5-cache/sys-devel/binutils-hppa64-2.45.1 @@ -5,7 +5,7 @@ DESCRIPTION=Tools necessary to build programs EAPI=8 HOMEPAGE=https://sourceware.org/binutils/ INHERIT=libtool flag-o-matic gnuconfig strip-linguas toolchain-funcs -IUSE=cet debuginfod doc gprofng hardened multitarget +nls pgo +plugins static-libs test vanilla xxhash zstd +IUSE=cet +debuginfod doc gprofng hardened multitarget +nls pgo +plugins static-libs test vanilla xxhash zstd KEYWORDS=-* ~hppa LICENSE=GPL-3+ RDEPEND=>=sys-devel/binutils-config-3 virtual/zlib:= debuginfod? ( dev-libs/elfutils[debuginfod(-)] ) zstd? ( app-arch/zstd:= ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=2.45 SRC_URI=mirror://gnu/binutils/binutils-2.45.1.tar.xz https://sourceware.org/pub/binutils/releases/binutils-2.45.1.tar.xz https://dev.gentoo.org/~sam/distfiles/binutils-2.45.1.tar.xz https://dev.gentoo.org/~sam/distfiles/binutils-2.45.1-patches-1.tar.xz _eclasses_=flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 strip-linguas 3480f49d8ea2640d0398e69d20a2f45f toolchain-funcs 7e440a20ac11dece04e3334622e6e5da -_md5_=9f3f06332c8fa0cd30e894612986cb2f +_md5_=95bbf40c90ef61061e2cc2093535c814 diff --git a/metadata/md5-cache/sys-devel/binutils-hppa64-2.46.0 b/metadata/md5-cache/sys-devel/binutils-hppa64-2.46.0 index 83225fc5eabc..6e17e267be68 100644 --- a/metadata/md5-cache/sys-devel/binutils-hppa64-2.46.0 +++ b/metadata/md5-cache/sys-devel/binutils-hppa64-2.46.0 @@ -5,7 +5,7 @@ DESCRIPTION=Tools necessary to build programs EAPI=8 HOMEPAGE=https://sourceware.org/binutils/ INHERIT=libtool flag-o-matic gnuconfig strip-linguas toolchain-funcs -IUSE=cet debuginfod doc gprofng hardened multitarget +nls pgo +plugins static-libs test vanilla xxhash zstd +IUSE=cet +debuginfod doc gprofng hardened multitarget +nls pgo +plugins static-libs test vanilla xxhash zstd KEYWORDS=-* ~hppa LICENSE=GPL-3+ RDEPEND=>=sys-devel/binutils-config-3 virtual/zlib:= debuginfod? ( dev-libs/elfutils[debuginfod(-)] ) zstd? ( app-arch/zstd:= ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=2.46 SRC_URI=mirror://gnu/binutils/binutils-2.46.0.tar.xz https://sourceware.org/pub/binutils/releases/binutils-2.46.0.tar.xz https://dev.gentoo.org/~sam/distfiles/binutils-2.46.0.tar.xz https://dev.gentoo.org/~sam/distfiles/binutils-2.46.0-patches-1.tar.xz _eclasses_=flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 strip-linguas 3480f49d8ea2640d0398e69d20a2f45f toolchain-funcs 7e440a20ac11dece04e3334622e6e5da -_md5_=1049bd40dc31e233ac0e541028a5a32f +_md5_=95bbf40c90ef61061e2cc2093535c814 diff --git a/metadata/md5-cache/sys-devel/binutils-hppa64-9999 b/metadata/md5-cache/sys-devel/binutils-hppa64-9999 index f537b0f66f02..42f89cfc77e3 100644 --- a/metadata/md5-cache/sys-devel/binutils-hppa64-9999 +++ b/metadata/md5-cache/sys-devel/binutils-hppa64-9999 @@ -5,11 +5,11 @@ DESCRIPTION=Tools necessary to build programs EAPI=8 HOMEPAGE=https://sourceware.org/binutils/ INHERIT=libtool flag-o-matic gnuconfig strip-linguas toolchain-funcs git-r3 -IUSE=cet debuginfod doc gprofng hardened multitarget +nls pgo +plugins static-libs test vanilla xxhash zstd +IUSE=cet +debuginfod doc gprofng hardened multitarget +nls pgo +plugins static-libs test vanilla xxhash zstd LICENSE=GPL-3+ PROPERTIES=live RDEPEND=>=sys-devel/binutils-config-3 virtual/zlib:= debuginfod? ( dev-libs/elfutils[debuginfod(-)] ) zstd? ( app-arch/zstd:= ) RESTRICT=!test? ( test ) SLOT=9999 _eclasses_=flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 git-r3 875eb471682d3e1f18da124be97dcc81 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 strip-linguas 3480f49d8ea2640d0398e69d20a2f45f toolchain-funcs 7e440a20ac11dece04e3334622e6e5da -_md5_=002f115fce911c9901524e9a56ae5f74 +_md5_=52064fc4ecc7959cf394a82a08704435 diff --git a/metadata/md5-cache/sys-devel/dwz-0.16 b/metadata/md5-cache/sys-devel/dwz-0.16 index dc0c3e506cb6..5920297fdee9 100644 --- a/metadata/md5-cache/sys-devel/dwz-0.16 +++ b/metadata/md5-cache/sys-devel/dwz-0.16 @@ -6,11 +6,11 @@ EAPI=8 HOMEPAGE=https://sourceware.org/dwz INHERIT=toolchain-funcs verify-sig IUSE=test verify-sig -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~sparc x86 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 LICENSE=GPL-2+ GPL-3+ RDEPEND=dev-libs/elfutils dev-libs/xxhash elibc_musl? ( >=sys-libs/error-standalone-2.0 sys-libs/obstack-standalone ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://sourceware.org/ftp/dwz/releases/dwz-0.16.tar.xz verify-sig? ( https://sourceware.org/ftp/dwz/releases/dwz-0.16.tar.xz.asc ) _eclasses_=eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd toolchain-funcs 7e440a20ac11dece04e3334622e6e5da verify-sig ece4c893b6bd62eacbc4d25958e857f8 -_md5_=3cd03045207100ba1a140d62443aeb49 +_md5_=7e391ea58e2d5f2826c728fd359c66e4 diff --git a/metadata/md5-cache/sys-devel/dwz-9999 b/metadata/md5-cache/sys-devel/dwz-9999 index 3c5cea6e1106..d41f677e47c0 100644 --- a/metadata/md5-cache/sys-devel/dwz-9999 +++ b/metadata/md5-cache/sys-devel/dwz-9999 @@ -12,4 +12,4 @@ RDEPEND=dev-libs/elfutils dev-libs/xxhash elibc_musl? ( >=sys-libs/error-standal RESTRICT=!test? ( test ) SLOT=0 _eclasses_=git-r3 875eb471682d3e1f18da124be97dcc81 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da -_md5_=cd451c4d55c265d9970c97ada622d438 +_md5_=8ad15ed4a1bb5c7c83db4bee6e2e496e diff --git a/metadata/md5-cache/sys-devel/gcc-10.5.0 b/metadata/md5-cache/sys-devel/gcc-10.5.0 index 73bccf1463f9..dc3e8bc1a1c2 100644 --- a/metadata/md5-cache/sys-devel/gcc-10.5.0 +++ b/metadata/md5-cache/sys-devel/gcc-10.5.0 @@ -13,5 +13,5 @@ RDEPEND=virtual/zlib:= virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp- RESTRICT=!test? ( test ) SLOT=10 SRC_URI=mirror://gcc/releases/gcc-10.5.0/gcc-10.5.0.tar.xz mirror://gnu/gcc/gcc-10.5.0/gcc-10.5.0.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-10.5.0-patches-7.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-10.5.0-musl-patches-2.tar.xz test? ( https://gitweb.gentoo.org/proj/gcc-patches.git/plain/scripts/testsuite-management/validate_failures.py?id=a447cd6dee206facb66720bdacf0c765a8b09f33 -> gcc-validate-failures-a447cd6dee206facb66720bdacf0c765a8b09f33.py ) -_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain e15635b6438291094880d11f99690293 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain d4448740171744ee08361c1b39afb82b toolchain-funcs 7e440a20ac11dece04e3334622e6e5da _md5_=597d50b43ffe07b6f5d7f287c0e2bfcc diff --git a/metadata/md5-cache/sys-devel/gcc-11.5.0 b/metadata/md5-cache/sys-devel/gcc-11.5.0 index b62ddc6c23d4..fd75358008ed 100644 --- a/metadata/md5-cache/sys-devel/gcc-11.5.0 +++ b/metadata/md5-cache/sys-devel/gcc-11.5.0 @@ -13,5 +13,5 @@ RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) virtual/zlib:= virtual/libiconv RESTRICT=!test? ( test ) SLOT=11 SRC_URI=mirror://gcc/releases/gcc-11.5.0/gcc-11.5.0.tar.xz mirror://gnu/gcc/gcc-11.5.0/gcc-11.5.0.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-11.5.0-patches-2.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-11.5.0-musl-patches-4.tar.xz test? ( https://gitweb.gentoo.org/proj/gcc-patches.git/plain/scripts/testsuite-management/validate_failures.py?id=a447cd6dee206facb66720bdacf0c765a8b09f33 -> gcc-validate-failures-a447cd6dee206facb66720bdacf0c765a8b09f33.py ) -_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain e15635b6438291094880d11f99690293 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain d4448740171744ee08361c1b39afb82b toolchain-funcs 7e440a20ac11dece04e3334622e6e5da _md5_=6ce16ccdb7a1e4e6250bac60995e0156 diff --git a/metadata/md5-cache/sys-devel/gcc-12.5.0 b/metadata/md5-cache/sys-devel/gcc-12.5.0 index 8dc31f5ad0e4..707b1983335d 100644 --- a/metadata/md5-cache/sys-devel/gcc-12.5.0 +++ b/metadata/md5-cache/sys-devel/gcc-12.5.0 @@ -13,5 +13,5 @@ RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) virtual/zlib:= virtual/libiconv RESTRICT=!test? ( test ) SLOT=12 SRC_URI=mirror://gcc/releases/gcc-12.5.0/gcc-12.5.0.tar.xz mirror://gnu/gcc/gcc-12.5.0/gcc-12.5.0.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-12.4.0-patches-4.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-12.4.0-musl-patches-4.tar.xz test? ( https://gitweb.gentoo.org/proj/gcc-patches.git/plain/scripts/testsuite-management/validate_failures.py?id=a447cd6dee206facb66720bdacf0c765a8b09f33 -> gcc-validate-failures-a447cd6dee206facb66720bdacf0c765a8b09f33.py ) -_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain e15635b6438291094880d11f99690293 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain d4448740171744ee08361c1b39afb82b toolchain-funcs 7e440a20ac11dece04e3334622e6e5da _md5_=9d8cff5221aece309512440b6278c498 diff --git a/metadata/md5-cache/sys-devel/gcc-13.2.0 b/metadata/md5-cache/sys-devel/gcc-13.2.0 index 191b6aebce6f..c10a039aa893 100644 --- a/metadata/md5-cache/sys-devel/gcc-13.2.0 +++ b/metadata/md5-cache/sys-devel/gcc-13.2.0 @@ -13,5 +13,5 @@ RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) virtual/zlib:= virtual/libiconv RESTRICT=!test? ( test ) SLOT=13 SRC_URI=mirror://gcc/releases/gcc-13.2.0/gcc-13.2.0.tar.xz mirror://gnu/gcc/gcc-13.2.0/gcc-13.2.0.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-13.2.0-patches-3.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-13.2.0-musl-patches-2.tar.xz test? ( https://gitweb.gentoo.org/proj/gcc-patches.git/plain/scripts/testsuite-management/validate_failures.py?id=a447cd6dee206facb66720bdacf0c765a8b09f33 -> gcc-validate-failures-a447cd6dee206facb66720bdacf0c765a8b09f33.py ) -_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain e15635b6438291094880d11f99690293 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain d4448740171744ee08361c1b39afb82b toolchain-funcs 7e440a20ac11dece04e3334622e6e5da _md5_=d4d5df5bb78b800c28fdf0d8ab4fd21b diff --git a/metadata/md5-cache/sys-devel/gcc-13.4.1_p20250807 b/metadata/md5-cache/sys-devel/gcc-13.4.1_p20250807 index 566104412e3c..bc8cbbf1f8db 100644 --- a/metadata/md5-cache/sys-devel/gcc-13.4.1_p20250807 +++ b/metadata/md5-cache/sys-devel/gcc-13.4.1_p20250807 @@ -13,5 +13,5 @@ RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) virtual/zlib:= virtual/libiconv RESTRICT=!test? ( test ) SLOT=13 SRC_URI=mirror://gcc/snapshots/13-20250807/gcc-13-20250807.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-13.3.0-patches-8.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-13.3.0-musl-patches-3.tar.xz test? ( https://gitweb.gentoo.org/proj/gcc-patches.git/plain/scripts/testsuite-management/validate_failures.py?id=a447cd6dee206facb66720bdacf0c765a8b09f33 -> gcc-validate-failures-a447cd6dee206facb66720bdacf0c765a8b09f33.py ) -_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain e15635b6438291094880d11f99690293 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain d4448740171744ee08361c1b39afb82b toolchain-funcs 7e440a20ac11dece04e3334622e6e5da _md5_=5804c58eb2ff3dad56ca8abb5c393110 diff --git a/metadata/md5-cache/sys-devel/gcc-13.4.1_p20251016 b/metadata/md5-cache/sys-devel/gcc-13.4.1_p20251016 index c301590dda61..b06cdaa3ef96 100644 --- a/metadata/md5-cache/sys-devel/gcc-13.4.1_p20251016 +++ b/metadata/md5-cache/sys-devel/gcc-13.4.1_p20251016 @@ -13,5 +13,5 @@ RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) virtual/zlib:= virtual/libiconv RESTRICT=!test? ( test ) SLOT=13 SRC_URI=mirror://gcc/snapshots/13-20251016/gcc-13-20251016.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-13.3.0-patches-9.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-13.3.0-musl-patches-3.tar.xz test? ( https://gitweb.gentoo.org/proj/gcc-patches.git/plain/scripts/testsuite-management/validate_failures.py?id=a447cd6dee206facb66720bdacf0c765a8b09f33 -> gcc-validate-failures-a447cd6dee206facb66720bdacf0c765a8b09f33.py ) -_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain e15635b6438291094880d11f99690293 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain d4448740171744ee08361c1b39afb82b toolchain-funcs 7e440a20ac11dece04e3334622e6e5da _md5_=8d43534e6892818d3623f5a6b298b35c diff --git a/metadata/md5-cache/sys-devel/gcc-13.4.1_p20260122 b/metadata/md5-cache/sys-devel/gcc-13.4.1_p20260122 index cfbc2129c0df..1ac43cccb93a 100644 --- a/metadata/md5-cache/sys-devel/gcc-13.4.1_p20260122 +++ b/metadata/md5-cache/sys-devel/gcc-13.4.1_p20260122 @@ -12,5 +12,5 @@ RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) virtual/zlib:= virtual/libiconv RESTRICT=!test? ( test ) SLOT=13 SRC_URI=mirror://gcc/snapshots/13-20260122/gcc-13-20260122.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-13.3.0-patches-9.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-13.3.0-musl-patches-3.tar.xz test? ( https://gitweb.gentoo.org/proj/gcc-patches.git/plain/scripts/testsuite-management/validate_failures.py?id=a447cd6dee206facb66720bdacf0c765a8b09f33 -> gcc-validate-failures-a447cd6dee206facb66720bdacf0c765a8b09f33.py ) -_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain e15635b6438291094880d11f99690293 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain d4448740171744ee08361c1b39afb82b toolchain-funcs 7e440a20ac11dece04e3334622e6e5da _md5_=ff2edad410bc0ff4a1859b7482ed2774 diff --git a/metadata/md5-cache/sys-devel/gcc-13.4.1_p20260129 b/metadata/md5-cache/sys-devel/gcc-13.4.1_p20260129 index 0c19dbdb5a12..e871a1015035 100644 --- a/metadata/md5-cache/sys-devel/gcc-13.4.1_p20260129 +++ b/metadata/md5-cache/sys-devel/gcc-13.4.1_p20260129 @@ -12,5 +12,5 @@ RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) virtual/zlib:= virtual/libiconv RESTRICT=!test? ( test ) SLOT=13 SRC_URI=mirror://gcc/snapshots/13-20260129/gcc-13-20260129.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-13.3.0-patches-9.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-13.3.0-musl-patches-3.tar.xz test? ( https://gitweb.gentoo.org/proj/gcc-patches.git/plain/scripts/testsuite-management/validate_failures.py?id=a447cd6dee206facb66720bdacf0c765a8b09f33 -> gcc-validate-failures-a447cd6dee206facb66720bdacf0c765a8b09f33.py ) -_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain e15635b6438291094880d11f99690293 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain d4448740171744ee08361c1b39afb82b toolchain-funcs 7e440a20ac11dece04e3334622e6e5da _md5_=ff2edad410bc0ff4a1859b7482ed2774 diff --git a/metadata/md5-cache/sys-devel/gcc-13.4.1_p20260205 b/metadata/md5-cache/sys-devel/gcc-13.4.1_p20260205 index e8db1af4c198..057abec86008 100644 --- a/metadata/md5-cache/sys-devel/gcc-13.4.1_p20260205 +++ b/metadata/md5-cache/sys-devel/gcc-13.4.1_p20260205 @@ -12,5 +12,5 @@ RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) virtual/zlib:= virtual/libiconv RESTRICT=!test? ( test ) SLOT=13 SRC_URI=mirror://gcc/snapshots/13-20260205/gcc-13-20260205.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-13.3.0-patches-9.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-13.3.0-musl-patches-3.tar.xz test? ( https://gitweb.gentoo.org/proj/gcc-patches.git/plain/scripts/testsuite-management/validate_failures.py?id=a447cd6dee206facb66720bdacf0c765a8b09f33 -> gcc-validate-failures-a447cd6dee206facb66720bdacf0c765a8b09f33.py ) -_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain e15635b6438291094880d11f99690293 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain d4448740171744ee08361c1b39afb82b toolchain-funcs 7e440a20ac11dece04e3334622e6e5da _md5_=ff2edad410bc0ff4a1859b7482ed2774 diff --git a/metadata/md5-cache/sys-devel/gcc-13.4.1_p20260212 b/metadata/md5-cache/sys-devel/gcc-13.4.1_p20260212 index 34ba64db8d00..12168dee3d44 100644 --- a/metadata/md5-cache/sys-devel/gcc-13.4.1_p20260212 +++ b/metadata/md5-cache/sys-devel/gcc-13.4.1_p20260212 @@ -6,11 +6,12 @@ EAPI=8 HOMEPAGE=https://gcc.gnu.org/ INHERIT=toolchain IUSE=test vanilla +nls debug +cxx +fortran doc hardened multilib objc pgo objc-gc libssp objc++ openmp fixed-point go +sanitize graphite ada vtv jit +pie +ssp pch systemtap d lto cet zstd valgrind custom-cflags ieee-long-double default-znow default-stack-clash-protection modula2 time64 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 LICENSE=GPL-3+ LGPL-3+ || ( GPL-3+ libgcc libstdc++ gcc-runtime-library-exception-3.1 ) FDL-1.3+ PDEPEND=>=sys-devel/gcc-config-2.11 RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) virtual/zlib:= virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp-4.3.2:0= >=dev-libs/mpfr-2.4.2:0= >=dev-libs/mpc-0.8.1:0= objc-gc? ( >=dev-libs/boehm-gc-7.4.2 ) graphite? ( >=dev-libs/isl-0.14:0= ) zstd? ( app-arch/zstd:= ) RESTRICT=!test? ( test ) SLOT=13 SRC_URI=mirror://gcc/snapshots/13-20260212/gcc-13-20260212.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-13.3.0-patches-9.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-13.3.0-musl-patches-3.tar.xz test? ( https://gitweb.gentoo.org/proj/gcc-patches.git/plain/scripts/testsuite-management/validate_failures.py?id=a447cd6dee206facb66720bdacf0c765a8b09f33 -> gcc-validate-failures-a447cd6dee206facb66720bdacf0c765a8b09f33.py ) -_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain e15635b6438291094880d11f99690293 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da -_md5_=ff2edad410bc0ff4a1859b7482ed2774 +_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain d4448740171744ee08361c1b39afb82b toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_md5_=e0f2f93be1b655accc2099698e3daa15 diff --git a/metadata/md5-cache/sys-devel/gcc-13.5.9999 b/metadata/md5-cache/sys-devel/gcc-13.5.9999 index a5b8f702d614..1f7823e60278 100644 --- a/metadata/md5-cache/sys-devel/gcc-13.5.9999 +++ b/metadata/md5-cache/sys-devel/gcc-13.5.9999 @@ -13,5 +13,5 @@ RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) virtual/zlib:= virtual/libiconv RESTRICT=!test? ( test ) SLOT=13 SRC_URI=test? ( https://gitweb.gentoo.org/proj/gcc-patches.git/plain/scripts/testsuite-management/validate_failures.py?id=a447cd6dee206facb66720bdacf0c765a8b09f33 -> gcc-validate-failures-a447cd6dee206facb66720bdacf0c765a8b09f33.py ) -_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 git-r3 875eb471682d3e1f18da124be97dcc81 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain e15635b6438291094880d11f99690293 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 git-r3 875eb471682d3e1f18da124be97dcc81 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain d4448740171744ee08361c1b39afb82b toolchain-funcs 7e440a20ac11dece04e3334622e6e5da _md5_=6dedda39d769ea4246b82a3381fd8c28 diff --git a/metadata/md5-cache/sys-devel/gcc-14.3.1_p20250801 b/metadata/md5-cache/sys-devel/gcc-14.3.1_p20250801 index c17a802299f9..cabef7baf654 100644 --- a/metadata/md5-cache/sys-devel/gcc-14.3.1_p20250801 +++ b/metadata/md5-cache/sys-devel/gcc-14.3.1_p20250801 @@ -13,5 +13,5 @@ RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) virtual/zlib:= virtual/libiconv RESTRICT=!test? ( test ) SLOT=14 SRC_URI=mirror://gcc/snapshots/14-20250801/gcc-14-20250801.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-14.3.0-patches-4.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-14.3.0-musl-patches-2.tar.xz test? ( https://gitweb.gentoo.org/proj/gcc-patches.git/plain/scripts/testsuite-management/validate_failures.py?id=a447cd6dee206facb66720bdacf0c765a8b09f33 -> gcc-validate-failures-a447cd6dee206facb66720bdacf0c765a8b09f33.py ) -_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain e15635b6438291094880d11f99690293 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain d4448740171744ee08361c1b39afb82b toolchain-funcs 7e440a20ac11dece04e3334622e6e5da _md5_=534520f07e2fd16839c802bd158e78e6 diff --git a/metadata/md5-cache/sys-devel/gcc-14.3.1_p20251017 b/metadata/md5-cache/sys-devel/gcc-14.3.1_p20251017 index 4a867166b173..d6f7275d9652 100644 --- a/metadata/md5-cache/sys-devel/gcc-14.3.1_p20251017 +++ b/metadata/md5-cache/sys-devel/gcc-14.3.1_p20251017 @@ -13,5 +13,5 @@ RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) virtual/zlib:= virtual/libiconv RESTRICT=!test? ( test ) SLOT=14 SRC_URI=mirror://gcc/snapshots/14-20251017/gcc-14-20251017.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-14.3.0-patches-5.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-14.3.0-musl-patches-2.tar.xz test? ( https://gitweb.gentoo.org/proj/gcc-patches.git/plain/scripts/testsuite-management/validate_failures.py?id=a447cd6dee206facb66720bdacf0c765a8b09f33 -> gcc-validate-failures-a447cd6dee206facb66720bdacf0c765a8b09f33.py ) -_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain e15635b6438291094880d11f99690293 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain d4448740171744ee08361c1b39afb82b toolchain-funcs 7e440a20ac11dece04e3334622e6e5da _md5_=1ab7d5e4ab476cfe498bc21912188e6d diff --git a/metadata/md5-cache/sys-devel/gcc-14.3.1_p20260123 b/metadata/md5-cache/sys-devel/gcc-14.3.1_p20260123 index a91b953f675a..0a72b5f7bb8a 100644 --- a/metadata/md5-cache/sys-devel/gcc-14.3.1_p20260123 +++ b/metadata/md5-cache/sys-devel/gcc-14.3.1_p20260123 @@ -12,5 +12,5 @@ RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) virtual/zlib:= virtual/libiconv RESTRICT=!test? ( test ) SLOT=14 SRC_URI=mirror://gcc/snapshots/14-20260123/gcc-14-20260123.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-14.3.0-patches-5.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-14.3.0-musl-patches-2.tar.xz test? ( https://gitweb.gentoo.org/proj/gcc-patches.git/plain/scripts/testsuite-management/validate_failures.py?id=a447cd6dee206facb66720bdacf0c765a8b09f33 -> gcc-validate-failures-a447cd6dee206facb66720bdacf0c765a8b09f33.py ) -_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain e15635b6438291094880d11f99690293 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain d4448740171744ee08361c1b39afb82b toolchain-funcs 7e440a20ac11dece04e3334622e6e5da _md5_=58118f5ff23a07b77aa9b5707805036f diff --git a/metadata/md5-cache/sys-devel/gcc-14.3.1_p20260130 b/metadata/md5-cache/sys-devel/gcc-14.3.1_p20260130 index efa59cec3035..28b92ff40f93 100644 --- a/metadata/md5-cache/sys-devel/gcc-14.3.1_p20260130 +++ b/metadata/md5-cache/sys-devel/gcc-14.3.1_p20260130 @@ -12,5 +12,5 @@ RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) virtual/zlib:= virtual/libiconv RESTRICT=!test? ( test ) SLOT=14 SRC_URI=mirror://gcc/snapshots/14-20260130/gcc-14-20260130.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-14.3.0-patches-5.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-14.3.0-musl-patches-2.tar.xz test? ( https://gitweb.gentoo.org/proj/gcc-patches.git/plain/scripts/testsuite-management/validate_failures.py?id=a447cd6dee206facb66720bdacf0c765a8b09f33 -> gcc-validate-failures-a447cd6dee206facb66720bdacf0c765a8b09f33.py ) -_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain e15635b6438291094880d11f99690293 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain d4448740171744ee08361c1b39afb82b toolchain-funcs 7e440a20ac11dece04e3334622e6e5da _md5_=58118f5ff23a07b77aa9b5707805036f diff --git a/metadata/md5-cache/sys-devel/gcc-14.3.1_p20260206 b/metadata/md5-cache/sys-devel/gcc-14.3.1_p20260206 index b6724fab3bef..228c112034e8 100644 --- a/metadata/md5-cache/sys-devel/gcc-14.3.1_p20260206 +++ b/metadata/md5-cache/sys-devel/gcc-14.3.1_p20260206 @@ -12,5 +12,5 @@ RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) virtual/zlib:= virtual/libiconv RESTRICT=!test? ( test ) SLOT=14 SRC_URI=mirror://gcc/snapshots/14-20260206/gcc-14-20260206.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-14.3.0-patches-5.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-14.3.0-musl-patches-2.tar.xz test? ( https://gitweb.gentoo.org/proj/gcc-patches.git/plain/scripts/testsuite-management/validate_failures.py?id=a447cd6dee206facb66720bdacf0c765a8b09f33 -> gcc-validate-failures-a447cd6dee206facb66720bdacf0c765a8b09f33.py ) -_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain e15635b6438291094880d11f99690293 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain d4448740171744ee08361c1b39afb82b toolchain-funcs 7e440a20ac11dece04e3334622e6e5da _md5_=58118f5ff23a07b77aa9b5707805036f diff --git a/metadata/md5-cache/sys-devel/gcc-14.3.1_p20260213 b/metadata/md5-cache/sys-devel/gcc-14.3.1_p20260213 index 1a735ad1fd8f..ccc261d21979 100644 --- a/metadata/md5-cache/sys-devel/gcc-14.3.1_p20260213 +++ b/metadata/md5-cache/sys-devel/gcc-14.3.1_p20260213 @@ -6,11 +6,12 @@ EAPI=8 HOMEPAGE=https://gcc.gnu.org/ INHERIT=toolchain IUSE=test vanilla +nls debug +cxx +fortran doc hardened multilib objc pgo objc-gc libssp objc++ openmp fixed-point go +sanitize graphite ada vtv jit +pie +ssp pch systemtap d lto cet zstd valgrind custom-cflags ieee-long-double default-znow default-stack-clash-protection modula2 rust time64 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 LICENSE=GPL-3+ LGPL-3+ || ( GPL-3+ libgcc libstdc++ gcc-runtime-library-exception-3.1 ) FDL-1.3+ PDEPEND=>=sys-devel/gcc-config-2.11 RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) virtual/zlib:= virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp-4.3.2:0= >=dev-libs/mpfr-2.4.2:0= >=dev-libs/mpc-0.8.1:0= objc-gc? ( >=dev-libs/boehm-gc-7.4.2 ) graphite? ( >=dev-libs/isl-0.14:0= ) zstd? ( app-arch/zstd:= ) RESTRICT=!test? ( test ) SLOT=14 SRC_URI=mirror://gcc/snapshots/14-20260213/gcc-14-20260213.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-14.3.0-patches-5.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-14.3.0-musl-patches-2.tar.xz test? ( https://gitweb.gentoo.org/proj/gcc-patches.git/plain/scripts/testsuite-management/validate_failures.py?id=a447cd6dee206facb66720bdacf0c765a8b09f33 -> gcc-validate-failures-a447cd6dee206facb66720bdacf0c765a8b09f33.py ) -_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain e15635b6438291094880d11f99690293 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da -_md5_=58118f5ff23a07b77aa9b5707805036f +_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain d4448740171744ee08361c1b39afb82b toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_md5_=b361aa629da7edee4d23c97d9fce58b7 diff --git a/metadata/md5-cache/sys-devel/gcc-14.4.9999 b/metadata/md5-cache/sys-devel/gcc-14.4.9999 index c036aae4757f..6f87f1e3a72f 100644 --- a/metadata/md5-cache/sys-devel/gcc-14.4.9999 +++ b/metadata/md5-cache/sys-devel/gcc-14.4.9999 @@ -13,5 +13,5 @@ RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) virtual/zlib:= virtual/libiconv RESTRICT=!test? ( test ) SLOT=14 SRC_URI=test? ( https://gitweb.gentoo.org/proj/gcc-patches.git/plain/scripts/testsuite-management/validate_failures.py?id=a447cd6dee206facb66720bdacf0c765a8b09f33 -> gcc-validate-failures-a447cd6dee206facb66720bdacf0c765a8b09f33.py ) -_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 git-r3 875eb471682d3e1f18da124be97dcc81 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain e15635b6438291094880d11f99690293 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 git-r3 875eb471682d3e1f18da124be97dcc81 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain d4448740171744ee08361c1b39afb82b toolchain-funcs 7e440a20ac11dece04e3334622e6e5da _md5_=c258a0c0184013fe06d7f5646f04929e diff --git a/metadata/md5-cache/sys-devel/gcc-15.2.1_p20251108-r1 b/metadata/md5-cache/sys-devel/gcc-15.2.1_p20251108-r1 index aab4a7f7a59d..03c5e3af3c97 100644 --- a/metadata/md5-cache/sys-devel/gcc-15.2.1_p20251108-r1 +++ b/metadata/md5-cache/sys-devel/gcc-15.2.1_p20251108-r1 @@ -13,5 +13,5 @@ RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) virtual/zlib:= virtual/libiconv RESTRICT=!test? ( test ) SLOT=15 SRC_URI=mirror://gcc/snapshots/15-20251108/gcc-15-20251108.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-15.2.0-patches-2.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-15.2.0-musl-patches-1.tar.xz test? ( https://gitweb.gentoo.org/proj/gcc-patches.git/plain/scripts/testsuite-management/validate_failures.py?id=a447cd6dee206facb66720bdacf0c765a8b09f33 -> gcc-validate-failures-a447cd6dee206facb66720bdacf0c765a8b09f33.py ) -_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain e15635b6438291094880d11f99690293 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain d4448740171744ee08361c1b39afb82b toolchain-funcs 7e440a20ac11dece04e3334622e6e5da _md5_=bca2fb01f1f99c235f45de15b37f5e8b diff --git a/metadata/md5-cache/sys-devel/gcc-15.2.1_p20251115 b/metadata/md5-cache/sys-devel/gcc-15.2.1_p20251115 index ce83389e7902..c49024c5e8ab 100644 --- a/metadata/md5-cache/sys-devel/gcc-15.2.1_p20251115 +++ b/metadata/md5-cache/sys-devel/gcc-15.2.1_p20251115 @@ -12,5 +12,5 @@ RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) virtual/zlib:= virtual/libiconv RESTRICT=!test? ( test ) SLOT=15 SRC_URI=mirror://gcc/snapshots/15-20251115/gcc-15-20251115.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-15.2.0-patches-3.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-15.2.0-musl-patches-1.tar.xz test? ( https://gitweb.gentoo.org/proj/gcc-patches.git/plain/scripts/testsuite-management/validate_failures.py?id=a447cd6dee206facb66720bdacf0c765a8b09f33 -> gcc-validate-failures-a447cd6dee206facb66720bdacf0c765a8b09f33.py ) -_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain e15635b6438291094880d11f99690293 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain d4448740171744ee08361c1b39afb82b toolchain-funcs 7e440a20ac11dece04e3334622e6e5da _md5_=ffda0a1d30b47d957b510d536d918a77 diff --git a/metadata/md5-cache/sys-devel/gcc-15.2.1_p20251122 b/metadata/md5-cache/sys-devel/gcc-15.2.1_p20251122 index 95da8ef56393..d3fdf5982de3 100644 --- a/metadata/md5-cache/sys-devel/gcc-15.2.1_p20251122 +++ b/metadata/md5-cache/sys-devel/gcc-15.2.1_p20251122 @@ -13,5 +13,5 @@ RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) virtual/zlib:= virtual/libiconv RESTRICT=!test? ( test ) SLOT=15 SRC_URI=mirror://gcc/snapshots/15-20251122/gcc-15-20251122.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-15.2.0-patches-4.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-15.2.0-musl-patches-1.tar.xz test? ( https://gitweb.gentoo.org/proj/gcc-patches.git/plain/scripts/testsuite-management/validate_failures.py?id=a447cd6dee206facb66720bdacf0c765a8b09f33 -> gcc-validate-failures-a447cd6dee206facb66720bdacf0c765a8b09f33.py ) -_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain e15635b6438291094880d11f99690293 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain d4448740171744ee08361c1b39afb82b toolchain-funcs 7e440a20ac11dece04e3334622e6e5da _md5_=0cae518bb8590c060d23b8b423e835ce diff --git a/metadata/md5-cache/sys-devel/gcc-15.2.1_p20260124 b/metadata/md5-cache/sys-devel/gcc-15.2.1_p20260124 index c314b8e72ac3..955a932c3a72 100644 --- a/metadata/md5-cache/sys-devel/gcc-15.2.1_p20260124 +++ b/metadata/md5-cache/sys-devel/gcc-15.2.1_p20260124 @@ -12,5 +12,5 @@ RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) virtual/zlib:= virtual/libiconv RESTRICT=!test? ( test ) SLOT=15 SRC_URI=mirror://gcc/snapshots/15-20260124/gcc-15-20260124.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-15.2.0-patches-5.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-15.2.0-musl-patches-1.tar.xz test? ( https://gitweb.gentoo.org/proj/gcc-patches.git/plain/scripts/testsuite-management/validate_failures.py?id=a447cd6dee206facb66720bdacf0c765a8b09f33 -> gcc-validate-failures-a447cd6dee206facb66720bdacf0c765a8b09f33.py ) -_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain e15635b6438291094880d11f99690293 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain d4448740171744ee08361c1b39afb82b toolchain-funcs 7e440a20ac11dece04e3334622e6e5da _md5_=5967bb6b998b49d4e14edb7d0f4ba620 diff --git a/metadata/md5-cache/sys-devel/gcc-15.2.1_p20260131 b/metadata/md5-cache/sys-devel/gcc-15.2.1_p20260131 index 77f1d6570d75..86fbe4f6d585 100644 --- a/metadata/md5-cache/sys-devel/gcc-15.2.1_p20260131 +++ b/metadata/md5-cache/sys-devel/gcc-15.2.1_p20260131 @@ -12,5 +12,5 @@ RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) virtual/zlib:= virtual/libiconv RESTRICT=!test? ( test ) SLOT=15 SRC_URI=mirror://gcc/snapshots/15-20260131/gcc-15-20260131.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-15.2.0-patches-5.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-15.2.0-musl-patches-1.tar.xz test? ( https://gitweb.gentoo.org/proj/gcc-patches.git/plain/scripts/testsuite-management/validate_failures.py?id=a447cd6dee206facb66720bdacf0c765a8b09f33 -> gcc-validate-failures-a447cd6dee206facb66720bdacf0c765a8b09f33.py ) -_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain e15635b6438291094880d11f99690293 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain d4448740171744ee08361c1b39afb82b toolchain-funcs 7e440a20ac11dece04e3334622e6e5da _md5_=5967bb6b998b49d4e14edb7d0f4ba620 diff --git a/metadata/md5-cache/sys-devel/gcc-15.2.1_p20260207 b/metadata/md5-cache/sys-devel/gcc-15.2.1_p20260207 index 02bd3c3ee0b4..c3a9bb70c06b 100644 --- a/metadata/md5-cache/sys-devel/gcc-15.2.1_p20260207 +++ b/metadata/md5-cache/sys-devel/gcc-15.2.1_p20260207 @@ -12,5 +12,5 @@ RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) virtual/zlib:= virtual/libiconv RESTRICT=!test? ( test ) SLOT=15 SRC_URI=mirror://gcc/snapshots/15-20260207/gcc-15-20260207.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-15.2.0-patches-5.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-15.2.0-musl-patches-1.tar.xz test? ( https://gitweb.gentoo.org/proj/gcc-patches.git/plain/scripts/testsuite-management/validate_failures.py?id=a447cd6dee206facb66720bdacf0c765a8b09f33 -> gcc-validate-failures-a447cd6dee206facb66720bdacf0c765a8b09f33.py ) -_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain e15635b6438291094880d11f99690293 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain d4448740171744ee08361c1b39afb82b toolchain-funcs 7e440a20ac11dece04e3334622e6e5da _md5_=5967bb6b998b49d4e14edb7d0f4ba620 diff --git a/metadata/md5-cache/sys-devel/gcc-15.2.1_p20260214 b/metadata/md5-cache/sys-devel/gcc-15.2.1_p20260214 index 4e8f639707f7..38f9152bb91f 100644 --- a/metadata/md5-cache/sys-devel/gcc-15.2.1_p20260214 +++ b/metadata/md5-cache/sys-devel/gcc-15.2.1_p20260214 @@ -6,11 +6,12 @@ EAPI=8 HOMEPAGE=https://gcc.gnu.org/ INHERIT=toolchain IUSE=test vanilla +nls debug +cxx +fortran doc hardened multilib objc pgo objc-gc libssp objc++ openmp fixed-point go +sanitize graphite ada vtv jit +pie +ssp pch systemtap d lto cet zstd valgrind custom-cflags ieee-long-double default-znow default-stack-clash-protection modula2 rust time64 libgdiagnostics cobol +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 LICENSE=GPL-3+ LGPL-3+ || ( GPL-3+ libgcc libstdc++ gcc-runtime-library-exception-3.1 ) FDL-1.3+ PDEPEND=>=sys-devel/gcc-config-2.11 RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) virtual/zlib:= virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp-4.3.2:0= >=dev-libs/mpfr-2.4.2:0= >=dev-libs/mpc-0.8.1:0= objc-gc? ( >=dev-libs/boehm-gc-7.4.2 ) graphite? ( >=dev-libs/isl-0.14:0= ) zstd? ( app-arch/zstd:= ) RESTRICT=!test? ( test ) SLOT=15 SRC_URI=mirror://gcc/snapshots/15-20260214/gcc-15-20260214.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-15.2.0-patches-5.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-15.2.0-musl-patches-1.tar.xz test? ( https://gitweb.gentoo.org/proj/gcc-patches.git/plain/scripts/testsuite-management/validate_failures.py?id=a447cd6dee206facb66720bdacf0c765a8b09f33 -> gcc-validate-failures-a447cd6dee206facb66720bdacf0c765a8b09f33.py ) -_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain e15635b6438291094880d11f99690293 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da -_md5_=5967bb6b998b49d4e14edb7d0f4ba620 +_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain d4448740171744ee08361c1b39afb82b toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_md5_=48b4618ff7f48be7fca75e1f959e2b90 diff --git a/metadata/md5-cache/sys-devel/gcc-15.3.9999 b/metadata/md5-cache/sys-devel/gcc-15.3.9999 index e553a5286699..add3ce795b11 100644 --- a/metadata/md5-cache/sys-devel/gcc-15.3.9999 +++ b/metadata/md5-cache/sys-devel/gcc-15.3.9999 @@ -13,5 +13,5 @@ RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) virtual/zlib:= virtual/libiconv RESTRICT=!test? ( test ) SLOT=15 SRC_URI=test? ( https://gitweb.gentoo.org/proj/gcc-patches.git/plain/scripts/testsuite-management/validate_failures.py?id=a447cd6dee206facb66720bdacf0c765a8b09f33 -> gcc-validate-failures-a447cd6dee206facb66720bdacf0c765a8b09f33.py ) -_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 git-r3 875eb471682d3e1f18da124be97dcc81 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain e15635b6438291094880d11f99690293 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 git-r3 875eb471682d3e1f18da124be97dcc81 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain d4448740171744ee08361c1b39afb82b toolchain-funcs 7e440a20ac11dece04e3334622e6e5da _md5_=d921ddb32357508c9f5010cb016854b2 diff --git a/metadata/md5-cache/sys-devel/gcc-16.0.1_p20260125 b/metadata/md5-cache/sys-devel/gcc-16.0.1_p20260125 index 43796ddb093a..d566fc7d246b 100644 --- a/metadata/md5-cache/sys-devel/gcc-16.0.1_p20260125 +++ b/metadata/md5-cache/sys-devel/gcc-16.0.1_p20260125 @@ -12,5 +12,5 @@ RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) virtual/zlib:= virtual/libiconv RESTRICT=!test? ( test ) SLOT=16 SRC_URI=mirror://gcc/snapshots/16-20260125/gcc-16-20260125.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-16.0.0-patches-34.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-16.0.0-musl-patches-1.tar.xz test? ( https://gitweb.gentoo.org/proj/gcc-patches.git/plain/scripts/testsuite-management/validate_failures.py?id=a447cd6dee206facb66720bdacf0c765a8b09f33 -> gcc-validate-failures-a447cd6dee206facb66720bdacf0c765a8b09f33.py ) -_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain e15635b6438291094880d11f99690293 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain d4448740171744ee08361c1b39afb82b toolchain-funcs 7e440a20ac11dece04e3334622e6e5da _md5_=e8b9c260aa0956a2d8e2857dce97fb47 diff --git a/metadata/md5-cache/sys-devel/gcc-16.0.1_p20260201 b/metadata/md5-cache/sys-devel/gcc-16.0.1_p20260201 index dd30ce039a7d..198ade4e4697 100644 --- a/metadata/md5-cache/sys-devel/gcc-16.0.1_p20260201 +++ b/metadata/md5-cache/sys-devel/gcc-16.0.1_p20260201 @@ -12,5 +12,5 @@ RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) virtual/zlib:= virtual/libiconv RESTRICT=!test? ( test ) SLOT=16 SRC_URI=mirror://gcc/snapshots/16-20260201/gcc-16-20260201.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-16.0.0-patches-35.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-16.0.0-musl-patches-1.tar.xz test? ( https://gitweb.gentoo.org/proj/gcc-patches.git/plain/scripts/testsuite-management/validate_failures.py?id=a447cd6dee206facb66720bdacf0c765a8b09f33 -> gcc-validate-failures-a447cd6dee206facb66720bdacf0c765a8b09f33.py ) -_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain e15635b6438291094880d11f99690293 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain d4448740171744ee08361c1b39afb82b toolchain-funcs 7e440a20ac11dece04e3334622e6e5da _md5_=d734859b3ad476d6eb21de201d4b50ce diff --git a/metadata/md5-cache/sys-devel/gcc-16.0.1_p20260208-r1 b/metadata/md5-cache/sys-devel/gcc-16.0.1_p20260208-r1 index 87b0260b719d..2cbaefe8f5fd 100644 --- a/metadata/md5-cache/sys-devel/gcc-16.0.1_p20260208-r1 +++ b/metadata/md5-cache/sys-devel/gcc-16.0.1_p20260208-r1 @@ -12,5 +12,5 @@ RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) virtual/zlib:= virtual/libiconv RESTRICT=!test? ( test ) SLOT=16 SRC_URI=mirror://gcc/snapshots/16-20260208/gcc-16-20260208.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-16.0.0-patches-36.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-16.0.0-musl-patches-1.tar.xz test? ( https://gitweb.gentoo.org/proj/gcc-patches.git/plain/scripts/testsuite-management/validate_failures.py?id=a447cd6dee206facb66720bdacf0c765a8b09f33 -> gcc-validate-failures-a447cd6dee206facb66720bdacf0c765a8b09f33.py ) -_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain e15635b6438291094880d11f99690293 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain d4448740171744ee08361c1b39afb82b toolchain-funcs 7e440a20ac11dece04e3334622e6e5da _md5_=cd4561b08f91f8418e0c21c1e1fb9ffa diff --git a/metadata/md5-cache/sys-devel/gcc-16.0.1_p20260215 b/metadata/md5-cache/sys-devel/gcc-16.0.1_p20260215 index 20b99e4e4795..5b268a838807 100644 --- a/metadata/md5-cache/sys-devel/gcc-16.0.1_p20260215 +++ b/metadata/md5-cache/sys-devel/gcc-16.0.1_p20260215 @@ -12,5 +12,5 @@ RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) virtual/zlib:= virtual/libiconv RESTRICT=!test? ( test ) SLOT=16 SRC_URI=mirror://gcc/snapshots/16-20260215/gcc-16-20260215.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-16.0.0-patches-37.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-16.0.0-musl-patches-1.tar.xz test? ( https://gitweb.gentoo.org/proj/gcc-patches.git/plain/scripts/testsuite-management/validate_failures.py?id=a447cd6dee206facb66720bdacf0c765a8b09f33 -> gcc-validate-failures-a447cd6dee206facb66720bdacf0c765a8b09f33.py ) -_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain e15635b6438291094880d11f99690293 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain d4448740171744ee08361c1b39afb82b toolchain-funcs 7e440a20ac11dece04e3334622e6e5da _md5_=f656851b9bf34e5258b0d42fefc672dd diff --git a/metadata/md5-cache/sys-devel/gcc-16.0.9999 b/metadata/md5-cache/sys-devel/gcc-16.0.9999 index 8fc8dfc797ba..c69ad69e5085 100644 --- a/metadata/md5-cache/sys-devel/gcc-16.0.9999 +++ b/metadata/md5-cache/sys-devel/gcc-16.0.9999 @@ -13,5 +13,5 @@ RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) virtual/zlib:= virtual/libiconv RESTRICT=!test? ( test ) SLOT=16 SRC_URI=test? ( https://gitweb.gentoo.org/proj/gcc-patches.git/plain/scripts/testsuite-management/validate_failures.py?id=a447cd6dee206facb66720bdacf0c765a8b09f33 -> gcc-validate-failures-a447cd6dee206facb66720bdacf0c765a8b09f33.py ) -_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 git-r3 875eb471682d3e1f18da124be97dcc81 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain e15635b6438291094880d11f99690293 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 git-r3 875eb471682d3e1f18da124be97dcc81 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain d4448740171744ee08361c1b39afb82b toolchain-funcs 7e440a20ac11dece04e3334622e6e5da _md5_=1109477c0acbacf005ca72e3c169fcd2 diff --git a/metadata/md5-cache/sys-devel/gcc-9.5.0 b/metadata/md5-cache/sys-devel/gcc-9.5.0 index c06808edca50..90a4c416109e 100644 --- a/metadata/md5-cache/sys-devel/gcc-9.5.0 +++ b/metadata/md5-cache/sys-devel/gcc-9.5.0 @@ -13,5 +13,5 @@ RDEPEND=virtual/zlib:= virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp- RESTRICT=!test? ( test ) SLOT=9.5.0 SRC_URI=mirror://gcc/releases/gcc-9.5.0/gcc-9.5.0.tar.xz mirror://gnu/gcc/gcc-9.5.0/gcc-9.5.0.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-9.5.0-patches-3.tar.xz test? ( https://gitweb.gentoo.org/proj/gcc-patches.git/plain/scripts/testsuite-management/validate_failures.py?id=a447cd6dee206facb66720bdacf0c765a8b09f33 -> gcc-validate-failures-a447cd6dee206facb66720bdacf0c765a8b09f33.py ) -_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain e15635b6438291094880d11f99690293 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 multiprocessing 1e32df7deee68372153dca65f4a7c21f pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain d4448740171744ee08361c1b39afb82b toolchain-funcs 7e440a20ac11dece04e3334622e6e5da _md5_=c21c6834b3ef6c8786803858b6c5633d diff --git a/metadata/md5-cache/sys-devel/kgcc64-10.5.0 b/metadata/md5-cache/sys-devel/kgcc64-10.5.0 index 548cf401a524..73b7947e31cf 100644 --- a/metadata/md5-cache/sys-devel/kgcc64-10.5.0 +++ b/metadata/md5-cache/sys-devel/kgcc64-10.5.0 @@ -13,5 +13,5 @@ RDEPEND=virtual/zlib:= virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp- RESTRICT=!test? ( test ) test SLOT=10 SRC_URI=mirror://gcc/releases/gcc-10.5.0/gcc-10.5.0.tar.xz mirror://gnu/gcc/gcc-10.5.0/gcc-10.5.0.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-10.5.0-patches-6.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-10.5.0-musl-patches-2.tar.xz -_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain e15635b6438291094880d11f99690293 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain d4448740171744ee08361c1b39afb82b toolchain-funcs 7e440a20ac11dece04e3334622e6e5da _md5_=0003a1d0dfb83c2bd82f8c8e4d2af0c2 diff --git a/metadata/md5-cache/sys-devel/kgcc64-11.5.0 b/metadata/md5-cache/sys-devel/kgcc64-11.5.0 index d55939e94a30..c4687be6a36d 100644 --- a/metadata/md5-cache/sys-devel/kgcc64-11.5.0 +++ b/metadata/md5-cache/sys-devel/kgcc64-11.5.0 @@ -13,5 +13,5 @@ RDEPEND=virtual/zlib:= virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp- RESTRICT=!test? ( test ) test SLOT=11 SRC_URI=mirror://gcc/releases/gcc-11.5.0/gcc-11.5.0.tar.xz mirror://gnu/gcc/gcc-11.5.0/gcc-11.5.0.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-11.4.0-patches-12.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-11.4.0-musl-patches-2.tar.xz -_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain e15635b6438291094880d11f99690293 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain d4448740171744ee08361c1b39afb82b toolchain-funcs 7e440a20ac11dece04e3334622e6e5da _md5_=e6f6c1d12f54fc095eb2c1bfffd2cca4 diff --git a/metadata/md5-cache/sys-devel/kgcc64-12.5.0 b/metadata/md5-cache/sys-devel/kgcc64-12.5.0 index 3bfcc1eeaaa6..b82690c3cd91 100644 --- a/metadata/md5-cache/sys-devel/kgcc64-12.5.0 +++ b/metadata/md5-cache/sys-devel/kgcc64-12.5.0 @@ -13,5 +13,5 @@ RDEPEND=virtual/zlib:= virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp- RESTRICT=!test? ( test ) test SLOT=12 SRC_URI=mirror://gcc/releases/gcc-12.5.0/gcc-12.5.0.tar.xz mirror://gnu/gcc/gcc-12.5.0/gcc-12.5.0.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-12.4.0-patches-3.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-12.4.0-musl-patches-3.tar.xz -_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain e15635b6438291094880d11f99690293 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain d4448740171744ee08361c1b39afb82b toolchain-funcs 7e440a20ac11dece04e3334622e6e5da _md5_=3609b8278d1b819ee5ff7c2a84cee922 diff --git a/metadata/md5-cache/sys-devel/kgcc64-13.4.0 b/metadata/md5-cache/sys-devel/kgcc64-13.4.0 index acc53288f6d0..d35ea14254c6 100644 --- a/metadata/md5-cache/sys-devel/kgcc64-13.4.0 +++ b/metadata/md5-cache/sys-devel/kgcc64-13.4.0 @@ -13,5 +13,5 @@ RDEPEND=virtual/zlib:= virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp- RESTRICT=!test? ( test ) test SLOT=13 SRC_URI=mirror://gcc/releases/gcc-13.4.0/gcc-13.4.0.tar.xz mirror://gnu/gcc/gcc-13.4.0/gcc-13.4.0.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-13.3.0-patches-5.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-13.2.0-musl-patches-2.tar.xz -_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain e15635b6438291094880d11f99690293 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain d4448740171744ee08361c1b39afb82b toolchain-funcs 7e440a20ac11dece04e3334622e6e5da _md5_=1b8b0f0c785e928b61d161ab3d7f6f95 diff --git a/metadata/md5-cache/sys-devel/kgcc64-14.3.0 b/metadata/md5-cache/sys-devel/kgcc64-14.3.0 index 83ae77e1e06f..988729de4735 100644 --- a/metadata/md5-cache/sys-devel/kgcc64-14.3.0 +++ b/metadata/md5-cache/sys-devel/kgcc64-14.3.0 @@ -13,5 +13,5 @@ RDEPEND=virtual/zlib:= virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp- RESTRICT=!test? ( test ) test SLOT=14 SRC_URI=mirror://gcc/releases/gcc-14.3.0/gcc-14.3.0.tar.xz mirror://gnu/gcc/gcc-14.3.0/gcc-14.3.0.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-14.2.0-patches-8.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-14.1.0-musl-patches-1.tar.xz -_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain e15635b6438291094880d11f99690293 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain d4448740171744ee08361c1b39afb82b toolchain-funcs 7e440a20ac11dece04e3334622e6e5da _md5_=0c5c7ecc4a2b269ae02e65f9f93866e6 diff --git a/metadata/md5-cache/sys-devel/kgcc64-15.2.0 b/metadata/md5-cache/sys-devel/kgcc64-15.2.0 index 086f28dab62f..0a6bc22f6cda 100644 --- a/metadata/md5-cache/sys-devel/kgcc64-15.2.0 +++ b/metadata/md5-cache/sys-devel/kgcc64-15.2.0 @@ -13,5 +13,5 @@ RDEPEND=virtual/zlib:= virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp- RESTRICT=!test? ( test ) test SLOT=15 SRC_URI=mirror://gcc/releases/gcc-15.2.0/gcc-15.2.0.tar.xz mirror://gnu/gcc/gcc-15.2.0/gcc-15.2.0.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-15.2.0-patches-1.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-15.2.0-musl-patches-1.tar.xz -_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain e15635b6438291094880d11f99690293 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_eclasses_=edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multilib 404b65bd5212cff83b3935c685419d08 pax-utils 5555f2e75744739fe100ee62c22d28fe prefix c3c4c93ebda319c0fa7ed6f942ba1010 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain d4448740171744ee08361c1b39afb82b toolchain-funcs 7e440a20ac11dece04e3334622e6e5da _md5_=95ad250ad5088bb77ac75236241451bc diff --git a/metadata/md5-cache/sys-fs/zfs-kmod-2.3.4 b/metadata/md5-cache/sys-fs/zfs-kmod-2.3.4 index c9d707377024..dc2a4b486a98 100644 --- a/metadata/md5-cache/sys-fs/zfs-kmod-2.3.4 +++ b/metadata/md5-cache/sys-fs/zfs-kmod-2.3.4 @@ -7,7 +7,7 @@ HOMEPAGE=https://github.com/openzfs/zfs IDEPEND=sys-apps/kmod[tools] initramfs? ( sys-kernel/installkernel ) INHERIT=autotools flag-o-matic linux-mod-r1 multiprocessing verify-sig IUSE=custom-cflags debug +rootfs +dist-kernel-cap dist-kernel modules-compress modules-sign +strip +initramfs verify-sig -KEYWORDS=amd64 ~arm64 ~loong ~ppc64 ~riscv ~sparc +KEYWORDS=amd64 arm64 ~loong ppc64 ~riscv ~sparc LICENSE=CDDL MIT debug? ( GPL-2+ ) PDEPEND=dist-kernel? ( ~sys-fs/zfs-2.3.4[dist-kernel] ) RDEPEND=dist-kernel-cap? ( dist-kernel? ( <virtual/dist-kernel-6.17 ) ) sys-apps/kmod[tools] dist-kernel? ( virtual/dist-kernel:= ) @@ -15,4 +15,4 @@ RESTRICT=test SLOT=0/2.3.4 SRC_URI=https://github.com/openzfs/zfs/releases/download/zfs-2.3.4/zfs-2.3.4.tar.gz verify-sig? ( https://github.com/openzfs/zfs/releases/download/zfs-2.3.4/zfs-2.3.4.tar.gz.asc ) _eclasses_=autotools 955b29ccd82c1df4755e5f37748d2fa6 dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 linux-info efd923656513c879204fec6638eadee5 linux-mod-r1 a05ccbe6d8cfd872f001b7b98cb74068 mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multiprocessing 1e32df7deee68372153dca65f4a7c21f toolchain-funcs 7e440a20ac11dece04e3334622e6e5da verify-sig ece4c893b6bd62eacbc4d25958e857f8 -_md5_=32ad0743c87dac301d3d0348ff6a35c0 +_md5_=197a0007782a3a51c115598b819043f4 diff --git a/metadata/md5-cache/sys-kernel/genkernel-4.3.18 b/metadata/md5-cache/sys-kernel/genkernel-4.3.18 new file mode 100644 index 000000000000..76d7c85ac727 --- /dev/null +++ b/metadata/md5-cache/sys-kernel/genkernel-4.3.18 @@ -0,0 +1,15 @@ +DEFINED_PHASES=compile install postinst prepare setup unpack +DEPEND=app-text/asciidoc +DESCRIPTION=Gentoo automatic kernel building scripts +EAPI=8 +HOMEPAGE=https://wiki.gentoo.org/wiki/Genkernel https://gitweb.gentoo.org/proj/genkernel.git/ +INHERIT=bash-completion-r1 python-single-r1 +IUSE=ibm +firmware systemd python_single_target_python3_10 python_single_target_python3_11 python_single_target_python3_12 python_single_target_python3_13 python_single_target_python3_14 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +LICENSE=GPL-2 +RDEPEND=python_single_target_python3_10? ( dev-lang/python:3.10 ) python_single_target_python3_11? ( dev-lang/python:3.11 ) python_single_target_python3_12? ( dev-lang/python:3.12 ) python_single_target_python3_13? ( dev-lang/python:3.13 ) python_single_target_python3_14? ( dev-lang/python:3.14 ) app-alternatives/cpio app-alternatives/bc app-alternatives/yacc app-alternatives/lex >=app-misc/pax-utils-1.2.2 app-portage/elt-patches app-portage/portage-utils dev-build/autoconf dev-build/autoconf-archive dev-build/automake dev-build/cmake dev-build/libtool dev-util/gperf sys-apps/sandbox virtual/pkgconfig elibc_glibc? ( sys-libs/glibc[static-libs(+)] ) firmware? ( sys-kernel/linux-firmware ) +REQUIRED_USE=^^ ( python_single_target_python3_10 python_single_target_python3_11 python_single_target_python3_12 python_single_target_python3_13 python_single_target_python3_14 ) +SLOT=0 +SRC_URI=https://dev.gentoo.org/~bkohler/dist/genkernel-4.3.18.tar.xz https://git.kernel.org/pub/scm/linux/kernel/git/colyli/bcache-tools.git/snapshot/a5e3753516bd39c431def86c8dfec8a9cea1ddd4.tar.gz -> bcache-tools-1.1_p20230217.tar.gz https://boostorg.jfrog.io/artifactory/main/release/1.90.0/source/boost_1_90_0.tar.bz2 https://www.kernel.org/pub/linux/kernel/people/kdave/btrfs-progs/btrfs-progs-v6.7.1.tar.xz https://www.busybox.net/downloads/busybox-1.36.1.tar.bz2 https://github.com/bfgroup/b2/archive/refs/tags/5.4.2.tar.gz -> b2-5.4.2.tar.gz mirror://gnu/coreutils/coreutils-9.4.tar.xz https://www.kernel.org/pub/linux/utils/cryptsetup/v2.6/cryptsetup-2.6.1.tar.xz https://people.redhat.com/~heinzm/sw/dmraid/src/dmraid-1.0.0.rc16-3.tar.bz2 https://matt.ucc.asn.au/dropbear/releases/dropbear-2022.83.tar.bz2 https://github.com/eudev-project/eudev/releases/download/v3.2.14/eudev-3.2.14.tar.gz https://github.com/libexpat/libexpat/releases/download/R_2_5_0/expat-2.5.0.tar.xz https://www.kernel.org/pub/linux/kernel/people/tytso/e2fsprogs/v1.47.3/e2fsprogs-1.47.3.tar.xz https://github.com/libfuse/libfuse/releases/download/fuse-2.9.9/fuse-2.9.9.tar.gz mirror://gnupg/gnupg/gnupg-1.4.23.tar.bz2 https://github.com/gentoo/hwids/archive/hwids-20210613.tar.gz https://github.com/open-iscsi/open-iscsi/archive/2.1.8.tar.gz -> open-iscsi-2.1.8.tar.gz https://s3.amazonaws.com/json-c_releases/releases/json-c-0.18.tar.gz https://www.kernel.org/pub/linux/utils/kernel/kmod/kmod-31.tar.xz https://releases.pagure.org/libaio/libaio-0.3.113.tar.gz mirror://gnupg/libgcrypt/libgcrypt-1.10.3.tar.bz2 mirror://gnupg/libgpg-error/libgpg-error-1.51.tar.bz2 https://github.com/besser82/libxcrypt/releases/download/v4.4.38/libxcrypt-4.4.38.tar.xz https://mirrors.kernel.org/sourceware/lvm2/LVM2.2.03.22.tgz https://www.oberhumer.com/opensource/lzo/download/lzo-2.10.tar.gz https://www.kernel.org/pub/linux/utils/raid/mdadm/mdadm-4.2.tar.xz http://ftp.rpm.org/popt/releases/popt-1.x/popt-1.19.tar.gz https://github.com/strace/strace/releases/download/v6.15/strace-6.15.tar.xz https://github.com/jthornber/thin-provisioning-tools/archive/v0.9.0.tar.gz -> thin-provisioning-tools-0.9.0.tar.gz https://github.com/rpodgorny/unionfs-fuse/archive/v2.0.tar.gz -> unionfs-fuse-2.0.tar.gz https://lttng.org/files/urcu/userspace-rcu-0.14.0.tar.bz2 https://www.kernel.org/pub/linux/utils/util-linux/v2.39/util-linux-2.39.3.tar.xz https://www.kernel.org/pub/linux/utils/fs/xfs/xfsprogs/xfsprogs-6.4.0.tar.xz https://tukaani.org/xz/xz-5.4.2.tar.gz https://zlib.net/zlib-1.3.1.tar.gz https://github.com/facebook/zstd/archive/v1.5.5.tar.gz -> zstd-1.5.5.tar.gz https://git.kernel.org/pub/scm/linux/kernel/git/dhowells/keyutils.git/snapshot/keyutils-1.6.3.tar.gz +_eclasses_=bash-completion-r1 767861f3744f589ee5291c1698b1c082 multiprocessing 1e32df7deee68372153dca65f4a7c21f python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_md5_=c0d8272e23423db6f08fc821e5cd22c0 diff --git a/metadata/md5-cache/sys-kernel/genkernel-9999 b/metadata/md5-cache/sys-kernel/genkernel-9999 index 52a9c9f2208b..aa26da435e75 100644 --- a/metadata/md5-cache/sys-kernel/genkernel-9999 +++ b/metadata/md5-cache/sys-kernel/genkernel-9999 @@ -11,6 +11,6 @@ PROPERTIES=live RDEPEND=python_single_target_python3_10? ( dev-lang/python:3.10 ) python_single_target_python3_11? ( dev-lang/python:3.11 ) python_single_target_python3_12? ( dev-lang/python:3.12 ) python_single_target_python3_13? ( dev-lang/python:3.13 ) python_single_target_python3_14? ( dev-lang/python:3.14 ) app-alternatives/cpio app-alternatives/bc app-alternatives/yacc app-alternatives/lex >=app-misc/pax-utils-1.2.2 app-portage/elt-patches app-portage/portage-utils dev-build/autoconf dev-build/autoconf-archive dev-build/automake dev-build/cmake dev-build/libtool dev-util/gperf sys-apps/sandbox virtual/pkgconfig elibc_glibc? ( sys-libs/glibc[static-libs(+)] ) firmware? ( sys-kernel/linux-firmware ) REQUIRED_USE=^^ ( python_single_target_python3_10 python_single_target_python3_11 python_single_target_python3_12 python_single_target_python3_13 python_single_target_python3_14 ) SLOT=0 -SRC_URI=https://git.kernel.org/pub/scm/linux/kernel/git/colyli/bcache-tools.git/snapshot/a5e3753516bd39c431def86c8dfec8a9cea1ddd4.tar.gz -> bcache-tools-1.1_p20230217.tar.gz https://boostorg.jfrog.io/artifactory/main/release/1.79.0/source/boost_1_79_0.tar.bz2 https://www.kernel.org/pub/linux/kernel/people/kdave/btrfs-progs/btrfs-progs-v6.7.1.tar.xz https://www.busybox.net/downloads/busybox-1.36.1.tar.bz2 mirror://gnu/coreutils/coreutils-9.4.tar.xz https://www.kernel.org/pub/linux/utils/cryptsetup/v2.6/cryptsetup-2.6.1.tar.xz https://people.redhat.com/~heinzm/sw/dmraid/src/dmraid-1.0.0.rc16-3.tar.bz2 https://matt.ucc.asn.au/dropbear/releases/dropbear-2022.83.tar.bz2 https://github.com/eudev-project/eudev/releases/download/v3.2.14/eudev-3.2.14.tar.gz https://github.com/libexpat/libexpat/releases/download/R_2_5_0/expat-2.5.0.tar.xz https://www.kernel.org/pub/linux/kernel/people/tytso/e2fsprogs/v1.47.3/e2fsprogs-1.47.3.tar.xz https://github.com/libfuse/libfuse/releases/download/fuse-2.9.9/fuse-2.9.9.tar.gz mirror://gnupg/gnupg/gnupg-1.4.23.tar.bz2 https://github.com/gentoo/hwids/archive/hwids-20210613.tar.gz https://github.com/open-iscsi/open-iscsi/archive/2.1.8.tar.gz -> open-iscsi-2.1.8.tar.gz https://s3.amazonaws.com/json-c_releases/releases/json-c-0.18.tar.gz https://www.kernel.org/pub/linux/utils/kernel/kmod/kmod-31.tar.xz https://releases.pagure.org/libaio/libaio-0.3.113.tar.gz mirror://gnupg/libgcrypt/libgcrypt-1.10.3.tar.bz2 mirror://gnupg/libgpg-error/libgpg-error-1.51.tar.bz2 https://github.com/besser82/libxcrypt/releases/download/v4.4.38/libxcrypt-4.4.38.tar.xz https://mirrors.kernel.org/sourceware/lvm2/LVM2.2.03.22.tgz https://www.oberhumer.com/opensource/lzo/download/lzo-2.10.tar.gz https://www.kernel.org/pub/linux/utils/raid/mdadm/mdadm-4.2.tar.xz http://ftp.rpm.org/popt/releases/popt-1.x/popt-1.19.tar.gz https://github.com/strace/strace/releases/download/v6.15/strace-6.15.tar.xz https://github.com/jthornber/thin-provisioning-tools/archive/v0.9.0.tar.gz -> thin-provisioning-tools-0.9.0.tar.gz https://github.com/rpodgorny/unionfs-fuse/archive/v2.0.tar.gz -> unionfs-fuse-2.0.tar.gz https://lttng.org/files/urcu/userspace-rcu-0.14.0.tar.bz2 https://www.kernel.org/pub/linux/utils/util-linux/v2.39/util-linux-2.39.3.tar.xz https://www.kernel.org/pub/linux/utils/fs/xfs/xfsprogs/xfsprogs-6.4.0.tar.xz https://tukaani.org/xz/xz-5.4.2.tar.gz https://zlib.net/zlib-1.3.1.tar.gz https://github.com/facebook/zstd/archive/v1.5.5.tar.gz -> zstd-1.5.5.tar.gz https://git.kernel.org/pub/scm/linux/kernel/git/dhowells/keyutils.git/snapshot/keyutils-1.6.3.tar.gz +SRC_URI=https://git.kernel.org/pub/scm/linux/kernel/git/colyli/bcache-tools.git/snapshot/a5e3753516bd39c431def86c8dfec8a9cea1ddd4.tar.gz -> bcache-tools-1.1_p20230217.tar.gz https://boostorg.jfrog.io/artifactory/main/release/1.90.0/source/boost_1_90_0.tar.bz2 https://www.kernel.org/pub/linux/kernel/people/kdave/btrfs-progs/btrfs-progs-v6.7.1.tar.xz https://www.busybox.net/downloads/busybox-1.36.1.tar.bz2 https://github.com/bfgroup/b2/archive/refs/tags/5.4.2.tar.gz -> b2-5.4.2.tar.gz mirror://gnu/coreutils/coreutils-9.4.tar.xz https://www.kernel.org/pub/linux/utils/cryptsetup/v2.6/cryptsetup-2.6.1.tar.xz https://people.redhat.com/~heinzm/sw/dmraid/src/dmraid-1.0.0.rc16-3.tar.bz2 https://matt.ucc.asn.au/dropbear/releases/dropbear-2022.83.tar.bz2 https://github.com/eudev-project/eudev/releases/download/v3.2.14/eudev-3.2.14.tar.gz https://github.com/libexpat/libexpat/releases/download/R_2_5_0/expat-2.5.0.tar.xz https://www.kernel.org/pub/linux/kernel/people/tytso/e2fsprogs/v1.47.3/e2fsprogs-1.47.3.tar.xz https://github.com/libfuse/libfuse/releases/download/fuse-2.9.9/fuse-2.9.9.tar.gz mirror://gnupg/gnupg/gnupg-1.4.23.tar.bz2 https://github.com/gentoo/hwids/archive/hwids-20210613.tar.gz https://github.com/open-iscsi/open-iscsi/archive/2.1.8.tar.gz -> open-iscsi-2.1.8.tar.gz https://s3.amazonaws.com/json-c_releases/releases/json-c-0.18.tar.gz https://www.kernel.org/pub/linux/utils/kernel/kmod/kmod-31.tar.xz https://releases.pagure.org/libaio/libaio-0.3.113.tar.gz mirror://gnupg/libgcrypt/libgcrypt-1.10.3.tar.bz2 mirror://gnupg/libgpg-error/libgpg-error-1.51.tar.bz2 https://github.com/besser82/libxcrypt/releases/download/v4.4.38/libxcrypt-4.4.38.tar.xz https://mirrors.kernel.org/sourceware/lvm2/LVM2.2.03.22.tgz https://www.oberhumer.com/opensource/lzo/download/lzo-2.10.tar.gz https://www.kernel.org/pub/linux/utils/raid/mdadm/mdadm-4.2.tar.xz http://ftp.rpm.org/popt/releases/popt-1.x/popt-1.19.tar.gz https://github.com/strace/strace/releases/download/v6.15/strace-6.15.tar.xz https://github.com/jthornber/thin-provisioning-tools/archive/v0.9.0.tar.gz -> thin-provisioning-tools-0.9.0.tar.gz https://github.com/rpodgorny/unionfs-fuse/archive/v2.0.tar.gz -> unionfs-fuse-2.0.tar.gz https://lttng.org/files/urcu/userspace-rcu-0.14.0.tar.bz2 https://www.kernel.org/pub/linux/utils/util-linux/v2.39/util-linux-2.39.3.tar.xz https://www.kernel.org/pub/linux/utils/fs/xfs/xfsprogs/xfsprogs-6.4.0.tar.xz https://tukaani.org/xz/xz-5.4.2.tar.gz https://zlib.net/zlib-1.3.1.tar.gz https://github.com/facebook/zstd/archive/v1.5.5.tar.gz -> zstd-1.5.5.tar.gz https://git.kernel.org/pub/scm/linux/kernel/git/dhowells/keyutils.git/snapshot/keyutils-1.6.3.tar.gz _eclasses_=bash-completion-r1 767861f3744f589ee5291c1698b1c082 git-r3 875eb471682d3e1f18da124be97dcc81 multiprocessing 1e32df7deee68372153dca65f4a7c21f python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da -_md5_=5a15efd8d502b8fa52baa508d11522b3 +_md5_=c0d8272e23423db6f08fc821e5cd22c0 diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-6.12.73 b/metadata/md5-cache/sys-kernel/gentoo-kernel-6.12.73 new file mode 100644 index 000000000000..0e565be54119 --- /dev/null +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-6.12.73 @@ -0,0 +1,18 @@ +BDEPEND=debug? ( dev-util/pahole ) verify-sig? ( >=sec-keys/openpgp-keys-kernel-20250702 ) secureboot? ( app-crypt/sbsigntools dev-libs/openssl ) test? ( dev-tcltk/expect sys-apps/coreutils sys-kernel/dracut sys-fs/e2fsprogs amd64? ( app-emulation/qemu[qemu_softmmu_targets_x86_64] ) arm64? ( app-emulation/qemu[qemu_softmmu_targets_aarch64] ) ppc? ( app-emulation/qemu[qemu_softmmu_targets_ppc] ) ppc64? ( app-emulation/qemu[qemu_softmmu_targets_ppc64] ) sparc? ( app-emulation/qemu[qemu_softmmu_targets_sparc,qemu_softmmu_targets_sparc64] ) x86? ( app-emulation/qemu[qemu_softmmu_targets_i386] ) ) || ( dev-lang/python:3.14 dev-lang/python:3.13 dev-lang/python:3.12 dev-lang/python:3.11 ) app-alternatives/cpio app-alternatives/bc app-arch/tar dev-lang/perl sys-devel/bison sys-devel/flex virtual/libelf arm? ( sys-apps/dtc ) arm64? ( sys-apps/dtc ) modules-sign? ( dev-libs/openssl ) riscv? ( sys-apps/dtc ) generic-uki? ( net-misc/networkmanager[iwd] sys-libs/pam dev-libs/libp11 sys-libs/libcap net-fs/nfs-utils net-fs/cifs-utils sys-libs/readline net-libs/libmnl sys-apps/kmod app-arch/zstd media-libs/libmtp sys-fs/dosfstools sys-apps/coreutils dev-libs/libevent dev-libs/libpcre2 dev-libs/glib app-crypt/argon2 app-arch/bzip2 sys-libs/libxcrypt sys-block/nbd dev-libs/hidapi sys-apps/dbus dev-libs/libffi x11-libs/libdrm dev-libs/nss sys-boot/plymouth[drm,systemd(+),udev] sys-auth/polkit dev-libs/userspace-rcu app-arch/lz4 sys-apps/gawk app-crypt/gnupg[smartcard,tpm(-)] sys-apps/acl sys-apps/hwdata app-crypt/tpm2-tss net-misc/curl dev-libs/libaio app-alternatives/awk sys-libs/libapparmor dev-libs/lzo sys-fs/e2fsprogs sys-fs/mdadm app-crypt/tpm2-tools sys-libs/libseccomp sys-fs/lvm2[lvm] sys-apps/keyutils dev-libs/json-c sys-apps/util-linux x86? ( sys-firmware/intel-microcode ) dev-libs/libgpg-error dev-db/sqlite >=sys-apps/systemd-257[boot(-),cryptsetup,pkcs11,policykit,tpm,ukify(-)] virtual/zlib amd64? ( sys-firmware/intel-microcode ) sys-libs/ncurses sys-fs/cryptsetup sys-apps/rng-tools dev-libs/libassuan sys-fs/xfsprogs net-wireless/iwd net-libs/nghttp2 sys-apps/attr net-dns/libidn2 sys-kernel/dracut sys-apps/nvme-cli net-libs/libndp sys-process/procps dev-libs/npth net-nds/openldap sys-apps/baselayout sys-fs/dmraid net-libs/libtirpc sys-fs/multipath-tools sys-fs/btrfs-progs sys-apps/sed net-fs/samba dev-libs/oniguruma sys-libs/glibc dev-libs/icu app-arch/xz-utils app-alternatives/gzip dev-libs/cyrus-sasl sys-libs/libnvme app-misc/jq dev-libs/expat sys-apps/iproute2 media-libs/libv4l dev-libs/libusb net-wireless/bluez sys-devel/gcc dev-libs/libunistring app-arch/gzip dev-libs/openssl sys-apps/shadow app-misc/ddcutil sys-kernel/linux-firmware[redistributable,-unknown-license] sys-apps/less app-shells/bash dev-libs/opensc sys-apps/fwupd dev-libs/libgcrypt sys-apps/pcsc-lite dev-libs/libtasn1 app-crypt/p11-kit sys-libs/libcap-ng app-alternatives/sh net-dns/c-ares sys-apps/kbd ) verify-sig? ( || ( app-alternatives/gpg app-crypt/gnupg[-alternatives(-)] ) >=app-portage/gemato-20 ) +DEFINED_PHASES=compile config configure install postinst postrm preinst prepare pretend setup test unpack +DESCRIPTION=Linux kernel built with Gentoo patches +EAPI=8 +HOMEPAGE=https://wiki.gentoo.org/wiki/Project:Distribution_Kernel https://www.kernel.org/ +IDEPEND=generic-uki? ( app-crypt/sbsigntools >=sys-kernel/installkernel-14[-dracut(-),-ugrd(-),-ukify(-)] ) !generic-uki? ( !initramfs? ( >=sys-kernel/installkernel-14 ) initramfs? ( || ( >=sys-kernel/installkernel-14[dracut(-)] >=sys-kernel/installkernel-14[ugrd(-)] ) ) ) +INHERIT=kernel-build toolchain-funcs verify-sig +IUSE=debug experimental hardened savedconfig secureboot +initramfs test generic-uki modules-compress +strip modules-sign verify-sig +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86 +LICENSE=GPL-2 generic-uki? ( GPL-2+ LGPL-2.1+ || ( BSD GPL-2 ) LGPL-2.1 || ( GPL-2 BSD ) GPL-2 GPL-3 GPL-3+ LGPL-2.1 LGPL-2 || ( BSD GPL-2 ) LGPL-2.1 GPL-3 GPL-3+ BSD BSD LGPL-2.1+ || ( Apache-2.0 CC0-1.0 ) BZIP2 LGPL-2.1+ public-domain BSD BSD-2 GPL-2 || ( BSD GPL-3 HIDAPI ) || ( AFL-2.1 GPL-2 ) MIT MIT || ( MPL-2.0 GPL-2 LGPL-2.1 ) GPL-2+ LGPL-2 LGPL-2.1 BSD-2 GPL-2 GPL-3+ GPL-3+ LGPL-2.1 GPL-2+ BSD-2 BSD curl ISC LGPL-2 CC0-1.0 GPL-2 LGPL-2.1 GPL-2+ GPL-2 BSD GPL-2 BSD LGPL-2.1 GPL-2 GPL-2 LGPL-2.1 MIT GPL-2 GPL-3 LGPL-2.1 BSD-4 MIT public-domain x86? ( intel-ucode ) GPL-2 LGPL-2.1 public-domain GPL-2 LGPL-2.1 MIT public-domain ZLIB amd64? ( intel-ucode ) MIT GPL-2+ GPL-2 GPL-3 LGPL-2.1 LGPL-2.1 GPL-2 MIT LGPL-2.1 || ( GPL-2+ LGPL-3+ ) GPL-3+ unicode GPL-2 GPL-2 GPL-2+ LGPL-2.1+ GPL-2+ LGPL-2+ LGPL-2.1+ LGPL-2.1+ OPENLDAP GPL-2 GPL-2 GPL-2 BSD BSD-2 BSD-4 LGPL-2.1+ GPL-2 GPL-2 GPL-3+ GPL-3 BSD-2 LGPL-2.1+ BSD HPND ISC inner-net rc PCRE BSD public-domain LGPL-2.1+ GPL-2+ CC0-1.0 BSD-with-attribution LGPL-2.1+ MIT CC-BY-3.0 MIT GPL-2 LGPL-2.1+ LGPL-2.1 GPL-2+ LGPL-2.1+ GPL-3+ LGPL-3+ || ( GPL-3+ libgcc libstdc++ gcc-runtime-library-exception-3.1 ) FDL-1.3+ || ( LGPL-3+ GPL-2+ ) || ( FDL-1.2 GPL-3+ ) GPL-3+ Apache-2.0 BSD GPL-2 GPL-2 GPL-2 GPL-2+ GPL-3 BSD MIT || ( MPL-1.1 GPL-2 ) linux-fw-redistributable BSD-2 BSD BSD-4 ISC MIT || ( GPL-3 BSD-2 ) GPL-3+ LGPL-2.1 LGPL-2.1+ LGPL-2.1 MIT BSD ISC MIT GPL-3+ GPL-2 LGPL-2.1+ MIT LGPL-2.1 CC0-1.0 MIT ISC GPL-2 ) +PDEPEND=>=virtual/dist-kernel-6.12.73 +RDEPEND=!sys-kernel/gentoo-kernel-bin:6.12.73 sys-apps/kmod[lzma] virtual/libelf +REQUIRED_USE=arm? ( savedconfig ) hppa? ( savedconfig ) sparc? ( savedconfig ) secureboot? ( modules-sign ) +RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) +SLOT=6.12.73 +SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-6.12.tar.xz https://cdn.kernel.org/pub/linux/kernel/v6.x/patch-6.12.73.xz https://dev.gentoo.org/~mgorny/dist/linux/linux-gentoo-patches-6.12.68.tar.xz https://github.com/projg2/gentoo-kernel-config/archive/g18.tar.gz -> gentoo-kernel-config-g18.tar.gz verify-sig? ( https://cdn.kernel.org/pub/linux/kernel/v6.x/sha256sums.asc -> linux-6.x-sha256sums-20260217.asc ) amd64? ( https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/6.12.41-gentoo/kernel-x86_64-fedora.config -> kernel-x86_64-fedora.config.6.12.41-gentoo ) arm64? ( https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/6.12.41-gentoo/kernel-aarch64-fedora.config -> kernel-aarch64-fedora.config.6.12.41-gentoo ) ppc64? ( https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/6.12.41-gentoo/kernel-ppc64le-fedora.config -> kernel-ppc64le-fedora.config.6.12.41-gentoo ) riscv? ( https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/6.12.41-gentoo/kernel-riscv64-fedora.config -> kernel-riscv64-fedora.config.6.12.41-gentoo ) x86? ( https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/6.12.41-gentoo/kernel-i686-fedora.config -> kernel-i686-fedora.config.6.12.41-gentoo ) +_eclasses_=branding 7bcece3faa73dd0fc3e597013510d53a dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd kernel-build 3698f4fb23a8ac6f87fe072c9c5f62f4 kernel-install cb345a05455b82a973741f204fabf3b4 linux-info efd923656513c879204fec6638eadee5 mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multiprocessing 1e32df7deee68372153dca65f4a7c21f portability a39e3d646f76cb45d06b44cc1144b8d4 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 savedconfig b9131abe556ad2ea96c01b06d658d363 secureboot d98b63e30a9468e1f1c06d3d7c66e760 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da verify-sig ece4c893b6bd62eacbc4d25958e857f8 +_md5_=4ad70331319dba3fcdac0736b3fd7c9c diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-6.18.12 b/metadata/md5-cache/sys-kernel/gentoo-kernel-6.18.12 new file mode 100644 index 000000000000..e1f9c075e2a7 --- /dev/null +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-6.18.12 @@ -0,0 +1,18 @@ +BDEPEND=debug? ( dev-util/pahole ) verify-sig? ( >=sec-keys/openpgp-keys-kernel-20250702 ) secureboot? ( app-crypt/sbsigntools dev-libs/openssl ) test? ( dev-tcltk/expect sys-apps/coreutils sys-kernel/dracut sys-fs/e2fsprogs amd64? ( app-emulation/qemu[qemu_softmmu_targets_x86_64] ) arm64? ( app-emulation/qemu[qemu_softmmu_targets_aarch64] ) ppc? ( app-emulation/qemu[qemu_softmmu_targets_ppc] ) ppc64? ( app-emulation/qemu[qemu_softmmu_targets_ppc64] ) sparc? ( app-emulation/qemu[qemu_softmmu_targets_sparc,qemu_softmmu_targets_sparc64] ) x86? ( app-emulation/qemu[qemu_softmmu_targets_i386] ) ) || ( dev-lang/python:3.14 dev-lang/python:3.13 dev-lang/python:3.12 dev-lang/python:3.11 ) app-alternatives/cpio app-alternatives/bc app-arch/tar dev-lang/perl sys-devel/bison sys-devel/flex virtual/libelf arm? ( sys-apps/dtc ) arm64? ( sys-apps/dtc ) modules-sign? ( dev-libs/openssl ) riscv? ( sys-apps/dtc ) generic-uki? ( net-misc/networkmanager[iwd] sys-libs/pam dev-libs/libp11 sys-libs/libcap net-fs/nfs-utils net-fs/cifs-utils sys-libs/readline net-libs/libmnl sys-apps/kmod app-arch/zstd media-libs/libmtp sys-fs/dosfstools sys-apps/coreutils dev-libs/libevent dev-libs/libpcre2 dev-libs/glib app-crypt/argon2 app-arch/bzip2 sys-libs/libxcrypt sys-block/nbd dev-libs/hidapi sys-apps/dbus dev-libs/libffi x11-libs/libdrm dev-libs/nss sys-boot/plymouth[drm,systemd(+),udev] sys-auth/polkit dev-libs/userspace-rcu app-arch/lz4 sys-apps/gawk app-crypt/gnupg[smartcard,tpm(-)] sys-apps/acl sys-apps/hwdata app-crypt/tpm2-tss net-misc/curl dev-libs/libaio app-alternatives/awk sys-libs/libapparmor dev-libs/lzo sys-fs/e2fsprogs sys-fs/mdadm app-crypt/tpm2-tools sys-libs/libseccomp sys-fs/lvm2[lvm] sys-apps/keyutils dev-libs/json-c sys-apps/util-linux x86? ( sys-firmware/intel-microcode ) dev-libs/libgpg-error dev-db/sqlite >=sys-apps/systemd-257[boot(-),cryptsetup,pkcs11,policykit,tpm,ukify(-)] virtual/zlib amd64? ( sys-firmware/intel-microcode ) sys-libs/ncurses sys-fs/cryptsetup sys-apps/rng-tools dev-libs/libassuan sys-fs/xfsprogs net-wireless/iwd net-libs/nghttp2 sys-apps/attr net-dns/libidn2 sys-kernel/dracut sys-apps/nvme-cli net-libs/libndp sys-process/procps dev-libs/npth net-nds/openldap sys-apps/baselayout sys-fs/dmraid net-libs/libtirpc sys-fs/multipath-tools sys-fs/btrfs-progs sys-apps/sed net-fs/samba dev-libs/oniguruma sys-libs/glibc dev-libs/icu app-arch/xz-utils app-alternatives/gzip dev-libs/cyrus-sasl sys-libs/libnvme app-misc/jq dev-libs/expat sys-apps/iproute2 media-libs/libv4l dev-libs/libusb net-wireless/bluez sys-devel/gcc dev-libs/libunistring app-arch/gzip dev-libs/openssl sys-apps/shadow app-misc/ddcutil sys-kernel/linux-firmware[redistributable,-unknown-license] sys-apps/less app-shells/bash dev-libs/opensc sys-apps/fwupd dev-libs/libgcrypt sys-apps/pcsc-lite dev-libs/libtasn1 app-crypt/p11-kit sys-libs/libcap-ng app-alternatives/sh net-dns/c-ares sys-apps/kbd ) verify-sig? ( || ( app-alternatives/gpg app-crypt/gnupg[-alternatives(-)] ) >=app-portage/gemato-20 ) +DEFINED_PHASES=compile config configure install postinst postrm preinst prepare pretend setup test unpack +DESCRIPTION=Linux kernel built with Gentoo patches +EAPI=8 +HOMEPAGE=https://wiki.gentoo.org/wiki/Project:Distribution_Kernel https://www.kernel.org/ +IDEPEND=generic-uki? ( app-crypt/sbsigntools >=sys-kernel/installkernel-14[-dracut(-),-ugrd(-),-ukify(-)] ) !generic-uki? ( !initramfs? ( >=sys-kernel/installkernel-14 ) initramfs? ( || ( >=sys-kernel/installkernel-14[dracut(-)] >=sys-kernel/installkernel-14[ugrd(-)] ) ) ) +INHERIT=kernel-build toolchain-funcs verify-sig +IUSE=debug hardened savedconfig secureboot +initramfs test generic-uki modules-compress +strip modules-sign verify-sig +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86 +LICENSE=GPL-2 generic-uki? ( GPL-2+ LGPL-2.1+ || ( BSD GPL-2 ) LGPL-2.1 || ( GPL-2 BSD ) GPL-2 GPL-3 GPL-3+ LGPL-2.1 LGPL-2 || ( BSD GPL-2 ) LGPL-2.1 GPL-3 GPL-3+ BSD BSD LGPL-2.1+ || ( Apache-2.0 CC0-1.0 ) BZIP2 LGPL-2.1+ public-domain BSD BSD-2 GPL-2 || ( BSD GPL-3 HIDAPI ) || ( AFL-2.1 GPL-2 ) MIT MIT || ( MPL-2.0 GPL-2 LGPL-2.1 ) GPL-2+ LGPL-2 LGPL-2.1 BSD-2 GPL-2 GPL-3+ GPL-3+ LGPL-2.1 GPL-2+ BSD-2 BSD curl ISC LGPL-2 CC0-1.0 GPL-2 LGPL-2.1 GPL-2+ GPL-2 BSD GPL-2 BSD LGPL-2.1 GPL-2 GPL-2 LGPL-2.1 MIT GPL-2 GPL-3 LGPL-2.1 BSD-4 MIT public-domain x86? ( intel-ucode ) GPL-2 LGPL-2.1 public-domain GPL-2 LGPL-2.1 MIT public-domain ZLIB amd64? ( intel-ucode ) MIT GPL-2+ GPL-2 GPL-3 LGPL-2.1 LGPL-2.1 GPL-2 MIT LGPL-2.1 || ( GPL-2+ LGPL-3+ ) GPL-3+ unicode GPL-2 GPL-2 GPL-2+ LGPL-2.1+ GPL-2+ LGPL-2+ LGPL-2.1+ LGPL-2.1+ OPENLDAP GPL-2 GPL-2 GPL-2 BSD BSD-2 BSD-4 LGPL-2.1+ GPL-2 GPL-2 GPL-3+ GPL-3 BSD-2 LGPL-2.1+ BSD HPND ISC inner-net rc PCRE BSD public-domain LGPL-2.1+ GPL-2+ CC0-1.0 BSD-with-attribution LGPL-2.1+ MIT CC-BY-3.0 MIT GPL-2 LGPL-2.1+ LGPL-2.1 GPL-2+ LGPL-2.1+ GPL-3+ LGPL-3+ || ( GPL-3+ libgcc libstdc++ gcc-runtime-library-exception-3.1 ) FDL-1.3+ || ( LGPL-3+ GPL-2+ ) || ( FDL-1.2 GPL-3+ ) GPL-3+ Apache-2.0 BSD GPL-2 GPL-2 GPL-2 GPL-2+ GPL-3 BSD MIT || ( MPL-1.1 GPL-2 ) linux-fw-redistributable BSD-2 BSD BSD-4 ISC MIT || ( GPL-3 BSD-2 ) GPL-3+ LGPL-2.1 LGPL-2.1+ LGPL-2.1 MIT BSD ISC MIT GPL-3+ GPL-2 LGPL-2.1+ MIT LGPL-2.1 CC0-1.0 MIT ISC GPL-2 ) +PDEPEND=>=virtual/dist-kernel-6.18.12 +RDEPEND=!sys-kernel/gentoo-kernel-bin:6.18.12 sys-apps/kmod[lzma] virtual/libelf +REQUIRED_USE=arm? ( savedconfig ) hppa? ( savedconfig ) sparc? ( savedconfig ) secureboot? ( modules-sign ) +RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) +SLOT=6.18.12 +SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-6.18.tar.xz https://cdn.kernel.org/pub/linux/kernel/v6.x/patch-6.18.12.xz https://dev.gentoo.org/~mgorny/dist/linux/linux-gentoo-patches-6.18.4.tar.xz https://github.com/projg2/gentoo-kernel-config/archive/g18.tar.gz -> gentoo-kernel-config-g18.tar.gz verify-sig? ( https://cdn.kernel.org/pub/linux/kernel/v6.x/sha256sums.asc -> linux-6.x-sha256sums-20260217.asc ) amd64? ( https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/6.18.12-gentoo/kernel-x86_64-fedora.config -> kernel-x86_64-fedora.config.6.18.12-gentoo ) arm64? ( https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/6.18.12-gentoo/kernel-aarch64-fedora.config -> kernel-aarch64-fedora.config.6.18.12-gentoo ) ppc64? ( https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/6.18.12-gentoo/kernel-ppc64le-fedora.config -> kernel-ppc64le-fedora.config.6.18.12-gentoo ) riscv? ( https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/6.18.12-gentoo/kernel-riscv64-fedora.config -> kernel-riscv64-fedora.config.6.18.12-gentoo ) x86? ( https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/6.18.12-gentoo/kernel-i686-fedora.config -> kernel-i686-fedora.config.6.18.12-gentoo ) +_eclasses_=branding 7bcece3faa73dd0fc3e597013510d53a dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd kernel-build 3698f4fb23a8ac6f87fe072c9c5f62f4 kernel-install cb345a05455b82a973741f204fabf3b4 linux-info efd923656513c879204fec6638eadee5 mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multiprocessing 1e32df7deee68372153dca65f4a7c21f portability a39e3d646f76cb45d06b44cc1144b8d4 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 savedconfig b9131abe556ad2ea96c01b06d658d363 secureboot d98b63e30a9468e1f1c06d3d7c66e760 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da verify-sig ece4c893b6bd62eacbc4d25958e857f8 +_md5_=5eb4439d8a06717e2fb9ce42a021d1e8 diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-6.18.8 b/metadata/md5-cache/sys-kernel/gentoo-kernel-6.18.8 index ccec02e90bab..5bf54d373837 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-kernel-6.18.8 +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-6.18.8 @@ -6,7 +6,7 @@ HOMEPAGE=https://wiki.gentoo.org/wiki/Project:Distribution_Kernel https://www.ke IDEPEND=generic-uki? ( app-crypt/sbsigntools >=sys-kernel/installkernel-14[-dracut(-),-ugrd(-),-ukify(-)] ) !generic-uki? ( !initramfs? ( >=sys-kernel/installkernel-14 ) initramfs? ( || ( >=sys-kernel/installkernel-14[dracut(-)] >=sys-kernel/installkernel-14[ugrd(-)] ) ) ) INHERIT=kernel-build toolchain-funcs verify-sig IUSE=debug hardened savedconfig secureboot +initramfs test generic-uki modules-compress +strip modules-sign verify-sig -KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~sparc x86 +KEYWORDS=amd64 ~arm arm64 ~hppa ~loong ~ppc ppc64 ~riscv ~sparc x86 LICENSE=GPL-2 generic-uki? ( GPL-2+ LGPL-2.1+ || ( BSD GPL-2 ) LGPL-2.1 || ( GPL-2 BSD ) GPL-2 GPL-3 GPL-3+ LGPL-2.1 LGPL-2 || ( BSD GPL-2 ) LGPL-2.1 GPL-3 GPL-3+ BSD BSD LGPL-2.1+ || ( Apache-2.0 CC0-1.0 ) BZIP2 LGPL-2.1+ public-domain BSD BSD-2 GPL-2 || ( BSD GPL-3 HIDAPI ) || ( AFL-2.1 GPL-2 ) MIT MIT || ( MPL-2.0 GPL-2 LGPL-2.1 ) GPL-2+ LGPL-2 LGPL-2.1 BSD-2 GPL-2 GPL-3+ GPL-3+ LGPL-2.1 GPL-2+ BSD-2 BSD curl ISC LGPL-2 CC0-1.0 GPL-2 LGPL-2.1 GPL-2+ GPL-2 BSD GPL-2 BSD LGPL-2.1 GPL-2 GPL-2 LGPL-2.1 MIT GPL-2 GPL-3 LGPL-2.1 BSD-4 MIT public-domain x86? ( intel-ucode ) GPL-2 LGPL-2.1 public-domain GPL-2 LGPL-2.1 MIT public-domain ZLIB amd64? ( intel-ucode ) MIT GPL-2+ GPL-2 GPL-3 LGPL-2.1 LGPL-2.1 GPL-2 MIT LGPL-2.1 || ( GPL-2+ LGPL-3+ ) GPL-3+ unicode GPL-2 GPL-2 GPL-2+ LGPL-2.1+ GPL-2+ LGPL-2+ LGPL-2.1+ LGPL-2.1+ OPENLDAP GPL-2 GPL-2 GPL-2 BSD BSD-2 BSD-4 LGPL-2.1+ GPL-2 GPL-2 GPL-3+ GPL-3 BSD-2 LGPL-2.1+ BSD HPND ISC inner-net rc PCRE BSD public-domain LGPL-2.1+ GPL-2+ CC0-1.0 BSD-with-attribution LGPL-2.1+ MIT CC-BY-3.0 MIT GPL-2 LGPL-2.1+ LGPL-2.1 GPL-2+ LGPL-2.1+ GPL-3+ LGPL-3+ || ( GPL-3+ libgcc libstdc++ gcc-runtime-library-exception-3.1 ) FDL-1.3+ || ( LGPL-3+ GPL-2+ ) || ( FDL-1.2 GPL-3+ ) GPL-3+ Apache-2.0 BSD GPL-2 GPL-2 GPL-2 GPL-2+ GPL-3 BSD MIT || ( MPL-1.1 GPL-2 ) linux-fw-redistributable BSD-2 BSD BSD-4 ISC MIT || ( GPL-3 BSD-2 ) GPL-3+ LGPL-2.1 LGPL-2.1+ LGPL-2.1 MIT BSD ISC MIT GPL-3+ GPL-2 LGPL-2.1+ MIT LGPL-2.1 CC0-1.0 MIT ISC GPL-2 ) PDEPEND=>=virtual/dist-kernel-6.18.8 RDEPEND=!sys-kernel/gentoo-kernel-bin:6.18.8 sys-apps/kmod[lzma] virtual/libelf @@ -15,4 +15,4 @@ RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=6.18.8 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-6.18.tar.xz https://cdn.kernel.org/pub/linux/kernel/v6.x/patch-6.18.8.xz https://dev.gentoo.org/~mgorny/dist/linux/linux-gentoo-patches-6.18.4.tar.xz https://github.com/projg2/gentoo-kernel-config/archive/g18.tar.gz -> gentoo-kernel-config-g18.tar.gz verify-sig? ( https://cdn.kernel.org/pub/linux/kernel/v6.x/sha256sums.asc -> linux-6.x-sha256sums-20260130.asc ) amd64? ( https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/6.18.3-gentoo/kernel-x86_64-fedora.config -> kernel-x86_64-fedora.config.6.18.3-gentoo ) arm64? ( https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/6.18.3-gentoo/kernel-aarch64-fedora.config -> kernel-aarch64-fedora.config.6.18.3-gentoo ) ppc64? ( https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/6.18.3-gentoo/kernel-ppc64le-fedora.config -> kernel-ppc64le-fedora.config.6.18.3-gentoo ) riscv? ( https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/6.18.3-gentoo/kernel-riscv64-fedora.config -> kernel-riscv64-fedora.config.6.18.3-gentoo ) x86? ( https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/6.18.3-gentoo/kernel-i686-fedora.config -> kernel-i686-fedora.config.6.18.3-gentoo ) _eclasses_=branding 7bcece3faa73dd0fc3e597013510d53a dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd kernel-build 3698f4fb23a8ac6f87fe072c9c5f62f4 kernel-install cb345a05455b82a973741f204fabf3b4 linux-info efd923656513c879204fec6638eadee5 mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multiprocessing 1e32df7deee68372153dca65f4a7c21f portability a39e3d646f76cb45d06b44cc1144b8d4 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 savedconfig b9131abe556ad2ea96c01b06d658d363 secureboot d98b63e30a9468e1f1c06d3d7c66e760 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da verify-sig ece4c893b6bd62eacbc4d25958e857f8 -_md5_=07895eac9e6aa2533f8a13380addae99 +_md5_=55377c5c5ba4d89235530162557a4b9c diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-6.19.2 b/metadata/md5-cache/sys-kernel/gentoo-kernel-6.19.2 new file mode 100644 index 000000000000..c5248c0f70f1 --- /dev/null +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-6.19.2 @@ -0,0 +1,18 @@ +BDEPEND=debug? ( dev-util/pahole ) verify-sig? ( >=sec-keys/openpgp-keys-kernel-20250702 ) secureboot? ( app-crypt/sbsigntools dev-libs/openssl ) test? ( dev-tcltk/expect sys-apps/coreutils sys-kernel/dracut sys-fs/e2fsprogs amd64? ( app-emulation/qemu[qemu_softmmu_targets_x86_64] ) arm64? ( app-emulation/qemu[qemu_softmmu_targets_aarch64] ) ppc? ( app-emulation/qemu[qemu_softmmu_targets_ppc] ) ppc64? ( app-emulation/qemu[qemu_softmmu_targets_ppc64] ) sparc? ( app-emulation/qemu[qemu_softmmu_targets_sparc,qemu_softmmu_targets_sparc64] ) x86? ( app-emulation/qemu[qemu_softmmu_targets_i386] ) ) || ( dev-lang/python:3.14 dev-lang/python:3.13 dev-lang/python:3.12 dev-lang/python:3.11 ) app-alternatives/cpio app-alternatives/bc app-arch/tar dev-lang/perl sys-devel/bison sys-devel/flex virtual/libelf arm? ( sys-apps/dtc ) arm64? ( sys-apps/dtc ) modules-sign? ( dev-libs/openssl ) riscv? ( sys-apps/dtc ) generic-uki? ( net-misc/networkmanager[iwd] sys-libs/pam dev-libs/libp11 sys-libs/libcap net-fs/nfs-utils net-fs/cifs-utils sys-libs/readline net-libs/libmnl sys-apps/kmod app-arch/zstd media-libs/libmtp sys-fs/dosfstools sys-apps/coreutils dev-libs/libevent dev-libs/libpcre2 dev-libs/glib app-crypt/argon2 app-arch/bzip2 sys-libs/libxcrypt sys-block/nbd dev-libs/hidapi sys-apps/dbus dev-libs/libffi x11-libs/libdrm dev-libs/nss sys-boot/plymouth[drm,systemd(+),udev] sys-auth/polkit dev-libs/userspace-rcu app-arch/lz4 sys-apps/gawk app-crypt/gnupg[smartcard,tpm(-)] sys-apps/acl sys-apps/hwdata app-crypt/tpm2-tss net-misc/curl dev-libs/libaio app-alternatives/awk sys-libs/libapparmor dev-libs/lzo sys-fs/e2fsprogs sys-fs/mdadm app-crypt/tpm2-tools sys-libs/libseccomp sys-fs/lvm2[lvm] sys-apps/keyutils dev-libs/json-c sys-apps/util-linux x86? ( sys-firmware/intel-microcode ) dev-libs/libgpg-error dev-db/sqlite >=sys-apps/systemd-257[boot(-),cryptsetup,pkcs11,policykit,tpm,ukify(-)] virtual/zlib amd64? ( sys-firmware/intel-microcode ) sys-libs/ncurses sys-fs/cryptsetup sys-apps/rng-tools dev-libs/libassuan sys-fs/xfsprogs net-wireless/iwd net-libs/nghttp2 sys-apps/attr net-dns/libidn2 sys-kernel/dracut sys-apps/nvme-cli net-libs/libndp sys-process/procps dev-libs/npth net-nds/openldap sys-apps/baselayout sys-fs/dmraid net-libs/libtirpc sys-fs/multipath-tools sys-fs/btrfs-progs sys-apps/sed net-fs/samba dev-libs/oniguruma sys-libs/glibc dev-libs/icu app-arch/xz-utils app-alternatives/gzip dev-libs/cyrus-sasl sys-libs/libnvme app-misc/jq dev-libs/expat sys-apps/iproute2 media-libs/libv4l dev-libs/libusb net-wireless/bluez sys-devel/gcc dev-libs/libunistring app-arch/gzip dev-libs/openssl sys-apps/shadow app-misc/ddcutil sys-kernel/linux-firmware[redistributable,-unknown-license] sys-apps/less app-shells/bash dev-libs/opensc sys-apps/fwupd dev-libs/libgcrypt sys-apps/pcsc-lite dev-libs/libtasn1 app-crypt/p11-kit sys-libs/libcap-ng app-alternatives/sh net-dns/c-ares sys-apps/kbd ) verify-sig? ( || ( app-alternatives/gpg app-crypt/gnupg[-alternatives(-)] ) >=app-portage/gemato-20 ) +DEFINED_PHASES=compile config configure install postinst postrm preinst prepare pretend setup test unpack +DESCRIPTION=Linux kernel built with Gentoo patches +EAPI=8 +HOMEPAGE=https://wiki.gentoo.org/wiki/Project:Distribution_Kernel https://www.kernel.org/ +IDEPEND=generic-uki? ( app-crypt/sbsigntools >=sys-kernel/installkernel-14[-dracut(-),-ugrd(-),-ukify(-)] ) !generic-uki? ( !initramfs? ( >=sys-kernel/installkernel-14 ) initramfs? ( || ( >=sys-kernel/installkernel-14[dracut(-)] >=sys-kernel/installkernel-14[ugrd(-)] ) ) ) +INHERIT=kernel-build toolchain-funcs verify-sig +IUSE=debug hardened savedconfig secureboot +initramfs test generic-uki modules-compress +strip modules-sign verify-sig +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86 +LICENSE=GPL-2 generic-uki? ( GPL-2+ LGPL-2.1+ || ( BSD GPL-2 ) LGPL-2.1 || ( GPL-2 BSD ) GPL-2 GPL-3 GPL-3+ LGPL-2.1 LGPL-2 || ( BSD GPL-2 ) LGPL-2.1 GPL-3 GPL-3+ BSD BSD LGPL-2.1+ || ( Apache-2.0 CC0-1.0 ) BZIP2 LGPL-2.1+ public-domain BSD BSD-2 GPL-2 || ( BSD GPL-3 HIDAPI ) || ( AFL-2.1 GPL-2 ) MIT MIT || ( MPL-2.0 GPL-2 LGPL-2.1 ) GPL-2+ LGPL-2 LGPL-2.1 BSD-2 GPL-2 GPL-3+ GPL-3+ LGPL-2.1 GPL-2+ BSD-2 BSD curl ISC LGPL-2 CC0-1.0 GPL-2 LGPL-2.1 GPL-2+ GPL-2 BSD GPL-2 BSD LGPL-2.1 GPL-2 GPL-2 LGPL-2.1 MIT GPL-2 GPL-3 LGPL-2.1 BSD-4 MIT public-domain x86? ( intel-ucode ) GPL-2 LGPL-2.1 public-domain GPL-2 LGPL-2.1 MIT public-domain ZLIB amd64? ( intel-ucode ) MIT GPL-2+ GPL-2 GPL-3 LGPL-2.1 LGPL-2.1 GPL-2 MIT LGPL-2.1 || ( GPL-2+ LGPL-3+ ) GPL-3+ unicode GPL-2 GPL-2 GPL-2+ LGPL-2.1+ GPL-2+ LGPL-2+ LGPL-2.1+ LGPL-2.1+ OPENLDAP GPL-2 GPL-2 GPL-2 BSD BSD-2 BSD-4 LGPL-2.1+ GPL-2 GPL-2 GPL-3+ GPL-3 BSD-2 LGPL-2.1+ BSD HPND ISC inner-net rc PCRE BSD public-domain LGPL-2.1+ GPL-2+ CC0-1.0 BSD-with-attribution LGPL-2.1+ MIT CC-BY-3.0 MIT GPL-2 LGPL-2.1+ LGPL-2.1 GPL-2+ LGPL-2.1+ GPL-3+ LGPL-3+ || ( GPL-3+ libgcc libstdc++ gcc-runtime-library-exception-3.1 ) FDL-1.3+ || ( LGPL-3+ GPL-2+ ) || ( FDL-1.2 GPL-3+ ) GPL-3+ Apache-2.0 BSD GPL-2 GPL-2 GPL-2 GPL-2+ GPL-3 BSD MIT || ( MPL-1.1 GPL-2 ) linux-fw-redistributable BSD-2 BSD BSD-4 ISC MIT || ( GPL-3 BSD-2 ) GPL-3+ LGPL-2.1 LGPL-2.1+ LGPL-2.1 MIT BSD ISC MIT GPL-3+ GPL-2 LGPL-2.1+ MIT LGPL-2.1 CC0-1.0 MIT ISC GPL-2 ) +PDEPEND=>=virtual/dist-kernel-6.19.2 +RDEPEND=!sys-kernel/gentoo-kernel-bin:6.19.2 sys-apps/kmod[lzma] virtual/libelf +REQUIRED_USE=arm? ( savedconfig ) hppa? ( savedconfig ) sparc? ( savedconfig ) secureboot? ( modules-sign ) +RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) +SLOT=6.19.2 +SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-6.19.tar.xz https://cdn.kernel.org/pub/linux/kernel/v6.x/patch-6.19.2.xz https://dev.gentoo.org/~mgorny/dist/linux/linux-gentoo-patches-6.18.4.tar.xz https://github.com/projg2/gentoo-kernel-config/archive/g18.tar.gz -> gentoo-kernel-config-g18.tar.gz verify-sig? ( https://cdn.kernel.org/pub/linux/kernel/v6.x/sha256sums.asc -> linux-6.x-sha256sums-20260217.asc ) amd64? ( https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/6.19.2-gentoo/kernel-x86_64-fedora.config -> kernel-x86_64-fedora.config.6.19.2-gentoo ) arm64? ( https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/6.19.2-gentoo/kernel-aarch64-fedora.config -> kernel-aarch64-fedora.config.6.19.2-gentoo ) ppc64? ( https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/6.19.2-gentoo/kernel-ppc64le-fedora.config -> kernel-ppc64le-fedora.config.6.19.2-gentoo ) riscv? ( https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/6.19.2-gentoo/kernel-riscv64-fedora.config -> kernel-riscv64-fedora.config.6.19.2-gentoo ) x86? ( https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/6.19.2-gentoo/kernel-i686-fedora.config -> kernel-i686-fedora.config.6.19.2-gentoo ) +_eclasses_=branding 7bcece3faa73dd0fc3e597013510d53a dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd kernel-build 3698f4fb23a8ac6f87fe072c9c5f62f4 kernel-install cb345a05455b82a973741f204fabf3b4 linux-info efd923656513c879204fec6638eadee5 mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multiprocessing 1e32df7deee68372153dca65f4a7c21f portability a39e3d646f76cb45d06b44cc1144b8d4 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 savedconfig b9131abe556ad2ea96c01b06d658d363 secureboot d98b63e30a9468e1f1c06d3d7c66e760 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da verify-sig ece4c893b6bd62eacbc4d25958e857f8 +_md5_=40c37bdcf98c292a5a5a5235c3ebf5d5 diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-6.6.126 b/metadata/md5-cache/sys-kernel/gentoo-kernel-6.6.126 new file mode 100644 index 000000000000..59b85ab6875d --- /dev/null +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-6.6.126 @@ -0,0 +1,18 @@ +BDEPEND=debug? ( dev-util/pahole ) verify-sig? ( >=sec-keys/openpgp-keys-kernel-20250702 ) secureboot? ( app-crypt/sbsigntools dev-libs/openssl ) test? ( dev-tcltk/expect sys-apps/coreutils sys-kernel/dracut sys-fs/e2fsprogs amd64? ( app-emulation/qemu[qemu_softmmu_targets_x86_64] ) arm64? ( app-emulation/qemu[qemu_softmmu_targets_aarch64] ) ppc? ( app-emulation/qemu[qemu_softmmu_targets_ppc] ) ppc64? ( app-emulation/qemu[qemu_softmmu_targets_ppc64] ) sparc? ( app-emulation/qemu[qemu_softmmu_targets_sparc,qemu_softmmu_targets_sparc64] ) x86? ( app-emulation/qemu[qemu_softmmu_targets_i386] ) ) || ( dev-lang/python:3.14 dev-lang/python:3.13 dev-lang/python:3.12 dev-lang/python:3.11 ) app-alternatives/cpio app-alternatives/bc app-arch/tar dev-lang/perl sys-devel/bison sys-devel/flex virtual/libelf arm? ( sys-apps/dtc ) arm64? ( sys-apps/dtc ) modules-sign? ( dev-libs/openssl ) riscv? ( sys-apps/dtc ) generic-uki? ( net-misc/networkmanager[iwd] sys-libs/pam dev-libs/libp11 sys-libs/libcap net-fs/nfs-utils net-fs/cifs-utils sys-libs/readline net-libs/libmnl sys-apps/kmod app-arch/zstd media-libs/libmtp sys-fs/dosfstools sys-apps/coreutils dev-libs/libevent dev-libs/libpcre2 dev-libs/glib app-crypt/argon2 app-arch/bzip2 sys-libs/libxcrypt sys-block/nbd dev-libs/hidapi sys-apps/dbus dev-libs/libffi x11-libs/libdrm dev-libs/nss sys-boot/plymouth[drm,systemd(+),udev] sys-auth/polkit dev-libs/userspace-rcu app-arch/lz4 sys-apps/gawk app-crypt/gnupg[smartcard,tpm(-)] sys-apps/acl sys-apps/hwdata app-crypt/tpm2-tss net-misc/curl dev-libs/libaio app-alternatives/awk sys-libs/libapparmor dev-libs/lzo sys-fs/e2fsprogs sys-fs/mdadm app-crypt/tpm2-tools sys-libs/libseccomp sys-fs/lvm2[lvm] sys-apps/keyutils dev-libs/json-c sys-apps/util-linux x86? ( sys-firmware/intel-microcode ) dev-libs/libgpg-error dev-db/sqlite >=sys-apps/systemd-257[boot(-),cryptsetup,pkcs11,policykit,tpm,ukify(-)] virtual/zlib amd64? ( sys-firmware/intel-microcode ) sys-libs/ncurses sys-fs/cryptsetup sys-apps/rng-tools dev-libs/libassuan sys-fs/xfsprogs net-wireless/iwd net-libs/nghttp2 sys-apps/attr net-dns/libidn2 sys-kernel/dracut sys-apps/nvme-cli net-libs/libndp sys-process/procps dev-libs/npth net-nds/openldap sys-apps/baselayout sys-fs/dmraid net-libs/libtirpc sys-fs/multipath-tools sys-fs/btrfs-progs sys-apps/sed net-fs/samba dev-libs/oniguruma sys-libs/glibc dev-libs/icu app-arch/xz-utils app-alternatives/gzip dev-libs/cyrus-sasl sys-libs/libnvme app-misc/jq dev-libs/expat sys-apps/iproute2 media-libs/libv4l dev-libs/libusb net-wireless/bluez sys-devel/gcc dev-libs/libunistring app-arch/gzip dev-libs/openssl sys-apps/shadow app-misc/ddcutil sys-kernel/linux-firmware[redistributable,-unknown-license] sys-apps/less app-shells/bash dev-libs/opensc sys-apps/fwupd dev-libs/libgcrypt sys-apps/pcsc-lite dev-libs/libtasn1 app-crypt/p11-kit sys-libs/libcap-ng app-alternatives/sh net-dns/c-ares sys-apps/kbd ) verify-sig? ( || ( app-alternatives/gpg app-crypt/gnupg[-alternatives(-)] ) >=app-portage/gemato-20 ) +DEFINED_PHASES=compile config configure install postinst postrm preinst prepare pretend setup test unpack +DESCRIPTION=Linux kernel built with Gentoo patches +EAPI=8 +HOMEPAGE=https://wiki.gentoo.org/wiki/Project:Distribution_Kernel https://www.kernel.org/ +IDEPEND=generic-uki? ( app-crypt/sbsigntools >=sys-kernel/installkernel-14[-dracut(-),-ugrd(-),-ukify(-)] ) !generic-uki? ( !initramfs? ( >=sys-kernel/installkernel-14 ) initramfs? ( || ( >=sys-kernel/installkernel-14[dracut(-)] >=sys-kernel/installkernel-14[ugrd(-)] ) ) ) +INHERIT=kernel-build toolchain-funcs verify-sig +IUSE=debug experimental hardened savedconfig secureboot +initramfs test generic-uki modules-compress +strip modules-sign verify-sig +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86 +LICENSE=GPL-2 generic-uki? ( GPL-2+ LGPL-2.1+ || ( BSD GPL-2 ) LGPL-2.1 || ( GPL-2 BSD ) GPL-2 GPL-3 GPL-3+ LGPL-2.1 LGPL-2 || ( BSD GPL-2 ) LGPL-2.1 GPL-3 GPL-3+ BSD BSD LGPL-2.1+ || ( Apache-2.0 CC0-1.0 ) BZIP2 LGPL-2.1+ public-domain BSD BSD-2 GPL-2 || ( BSD GPL-3 HIDAPI ) || ( AFL-2.1 GPL-2 ) MIT MIT || ( MPL-2.0 GPL-2 LGPL-2.1 ) GPL-2+ LGPL-2 LGPL-2.1 BSD-2 GPL-2 GPL-3+ GPL-3+ LGPL-2.1 GPL-2+ BSD-2 BSD curl ISC LGPL-2 CC0-1.0 GPL-2 LGPL-2.1 GPL-2+ GPL-2 BSD GPL-2 BSD LGPL-2.1 GPL-2 GPL-2 LGPL-2.1 MIT GPL-2 GPL-3 LGPL-2.1 BSD-4 MIT public-domain x86? ( intel-ucode ) GPL-2 LGPL-2.1 public-domain GPL-2 LGPL-2.1 MIT public-domain ZLIB amd64? ( intel-ucode ) MIT GPL-2+ GPL-2 GPL-3 LGPL-2.1 LGPL-2.1 GPL-2 MIT LGPL-2.1 || ( GPL-2+ LGPL-3+ ) GPL-3+ unicode GPL-2 GPL-2 GPL-2+ LGPL-2.1+ GPL-2+ LGPL-2+ LGPL-2.1+ LGPL-2.1+ OPENLDAP GPL-2 GPL-2 GPL-2 BSD BSD-2 BSD-4 LGPL-2.1+ GPL-2 GPL-2 GPL-3+ GPL-3 BSD-2 LGPL-2.1+ BSD HPND ISC inner-net rc PCRE BSD public-domain LGPL-2.1+ GPL-2+ CC0-1.0 BSD-with-attribution LGPL-2.1+ MIT CC-BY-3.0 MIT GPL-2 LGPL-2.1+ LGPL-2.1 GPL-2+ LGPL-2.1+ GPL-3+ LGPL-3+ || ( GPL-3+ libgcc libstdc++ gcc-runtime-library-exception-3.1 ) FDL-1.3+ || ( LGPL-3+ GPL-2+ ) || ( FDL-1.2 GPL-3+ ) GPL-3+ Apache-2.0 BSD GPL-2 GPL-2 GPL-2 GPL-2+ GPL-3 BSD MIT || ( MPL-1.1 GPL-2 ) linux-fw-redistributable BSD-2 BSD BSD-4 ISC MIT || ( GPL-3 BSD-2 ) GPL-3+ LGPL-2.1 LGPL-2.1+ LGPL-2.1 MIT BSD ISC MIT GPL-3+ GPL-2 LGPL-2.1+ MIT LGPL-2.1 CC0-1.0 MIT ISC GPL-2 ) +PDEPEND=>=virtual/dist-kernel-6.6.126 +RDEPEND=!sys-kernel/gentoo-kernel-bin:6.6.126 sys-apps/kmod[lzma] virtual/libelf +REQUIRED_USE=arm? ( savedconfig ) hppa? ( savedconfig ) riscv? ( savedconfig ) sparc? ( savedconfig ) secureboot? ( modules-sign ) +RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) +SLOT=6.6.126 +SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-6.6.tar.xz https://cdn.kernel.org/pub/linux/kernel/v6.x/patch-6.6.126.xz https://dev.gentoo.org/~mgorny/dist/linux/linux-gentoo-patches-6.6.124.tar.xz https://github.com/projg2/gentoo-kernel-config/archive/g17.tar.gz -> gentoo-kernel-config-g17.tar.gz verify-sig? ( https://cdn.kernel.org/pub/linux/kernel/v6.x/sha256sums.asc -> linux-6.x-sha256sums-20260217.asc ) amd64? ( https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/6.6.12-gentoo/kernel-x86_64-fedora.config -> kernel-x86_64-fedora.config.6.6.12-gentoo ) arm64? ( https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/6.6.12-gentoo/kernel-aarch64-fedora.config -> kernel-aarch64-fedora.config.6.6.12-gentoo ) ppc64? ( https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/6.6.12-gentoo/kernel-ppc64le-fedora.config -> kernel-ppc64le-fedora.config.6.6.12-gentoo ) x86? ( https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/6.6.12-gentoo/kernel-i686-fedora.config -> kernel-i686-fedora.config.6.6.12-gentoo ) +_eclasses_=branding 7bcece3faa73dd0fc3e597013510d53a dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd kernel-build 3698f4fb23a8ac6f87fe072c9c5f62f4 kernel-install cb345a05455b82a973741f204fabf3b4 linux-info efd923656513c879204fec6638eadee5 mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multiprocessing 1e32df7deee68372153dca65f4a7c21f portability a39e3d646f76cb45d06b44cc1144b8d4 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 savedconfig b9131abe556ad2ea96c01b06d658d363 secureboot d98b63e30a9468e1f1c06d3d7c66e760 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da verify-sig ece4c893b6bd62eacbc4d25958e857f8 +_md5_=e242b504fda7e0810601340781eca582 diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-6.12.73 b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-6.12.73 new file mode 100644 index 000000000000..b5ed0f9805b5 --- /dev/null +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-6.12.73 @@ -0,0 +1,17 @@ +BDEPEND=app-alternatives/bc app-alternatives/lex dev-util/pahole virtual/libelf app-alternatives/yacc amd64? ( app-crypt/sbsigntools ) arm64? ( app-crypt/sbsigntools ) verify-sig? ( >=sec-keys/openpgp-keys-kernel-20250702 ) test? ( dev-tcltk/expect sys-apps/coreutils sys-kernel/dracut sys-fs/e2fsprogs amd64? ( app-emulation/qemu[qemu_softmmu_targets_x86_64] ) arm64? ( app-emulation/qemu[qemu_softmmu_targets_aarch64] ) ppc? ( app-emulation/qemu[qemu_softmmu_targets_ppc] ) ppc64? ( app-emulation/qemu[qemu_softmmu_targets_ppc64] ) sparc? ( app-emulation/qemu[qemu_softmmu_targets_sparc,qemu_softmmu_targets_sparc64] ) x86? ( app-emulation/qemu[qemu_softmmu_targets_i386] ) ) verify-sig? ( || ( app-alternatives/gpg app-crypt/gnupg[-alternatives(-)] ) >=app-portage/gemato-20 ) +DEFINED_PHASES=config configure install postinst postrm preinst prepare pretend test unpack +DESCRIPTION=Pre-built Linux kernel with Gentoo patches +EAPI=8 +HOMEPAGE=https://wiki.gentoo.org/wiki/Project:Distribution_Kernel https://www.kernel.org/ +IDEPEND=generic-uki? ( app-crypt/sbsigntools >=sys-kernel/installkernel-14[-dracut(-),-ugrd(-),-ukify(-)] ) !generic-uki? ( !initramfs? ( >=sys-kernel/installkernel-14 ) initramfs? ( || ( >=sys-kernel/installkernel-14[dracut(-)] >=sys-kernel/installkernel-14[ugrd(-)] ) ) ) +INHERIT=kernel-install toolchain-funcs unpacker verify-sig +IUSE=debug +initramfs test generic-uki modules-compress verify-sig +KEYWORDS=~amd64 ~arm64 ~ppc64 ~x86 +LICENSE=GPL-2 generic-uki? ( GPL-2+ LGPL-2.1+ || ( BSD GPL-2 ) LGPL-2.1 || ( GPL-2 BSD ) GPL-2 GPL-3 GPL-3+ LGPL-2.1 LGPL-2 || ( BSD GPL-2 ) LGPL-2.1 GPL-3 GPL-3+ BSD BSD LGPL-2.1+ || ( Apache-2.0 CC0-1.0 ) BZIP2 LGPL-2.1+ public-domain BSD BSD-2 GPL-2 || ( BSD GPL-3 HIDAPI ) || ( AFL-2.1 GPL-2 ) MIT MIT || ( MPL-2.0 GPL-2 LGPL-2.1 ) GPL-2+ LGPL-2 LGPL-2.1 BSD-2 GPL-2 GPL-3+ GPL-3+ LGPL-2.1 GPL-2+ BSD-2 BSD curl ISC LGPL-2 CC0-1.0 GPL-2 LGPL-2.1 GPL-2+ GPL-2 BSD GPL-2 BSD LGPL-2.1 GPL-2 GPL-2 LGPL-2.1 MIT GPL-2 GPL-3 LGPL-2.1 BSD-4 MIT public-domain x86? ( intel-ucode ) GPL-2 LGPL-2.1 public-domain GPL-2 LGPL-2.1 MIT public-domain ZLIB amd64? ( intel-ucode ) MIT GPL-2+ GPL-2 GPL-3 LGPL-2.1 LGPL-2.1 GPL-2 MIT LGPL-2.1 || ( GPL-2+ LGPL-3+ ) GPL-3+ unicode GPL-2 GPL-2 GPL-2+ LGPL-2.1+ GPL-2+ LGPL-2+ LGPL-2.1+ LGPL-2.1+ OPENLDAP GPL-2 GPL-2 GPL-2 BSD BSD-2 BSD-4 LGPL-2.1+ GPL-2 GPL-2 GPL-3+ GPL-3 BSD-2 LGPL-2.1+ BSD HPND ISC inner-net rc PCRE BSD public-domain LGPL-2.1+ GPL-2+ CC0-1.0 BSD-with-attribution LGPL-2.1+ MIT CC-BY-3.0 MIT GPL-2 LGPL-2.1+ LGPL-2.1 GPL-2+ LGPL-2.1+ GPL-3+ LGPL-3+ || ( GPL-3+ libgcc libstdc++ gcc-runtime-library-exception-3.1 ) FDL-1.3+ || ( LGPL-3+ GPL-2+ ) || ( FDL-1.2 GPL-3+ ) GPL-3+ Apache-2.0 BSD GPL-2 GPL-2 GPL-2 GPL-2+ GPL-3 BSD MIT || ( MPL-1.1 GPL-2 ) linux-fw-redistributable BSD-2 BSD BSD-4 ISC MIT || ( GPL-3 BSD-2 ) GPL-3+ LGPL-2.1 LGPL-2.1+ LGPL-2.1 MIT BSD ISC MIT GPL-3+ GPL-2 LGPL-2.1+ MIT LGPL-2.1 CC0-1.0 MIT ISC GPL-2 ) +PDEPEND=>=virtual/dist-kernel-6.12.73 +RDEPEND=!sys-kernel/gentoo-kernel:6.12.73 sys-apps/kmod[lzma] virtual/libelf +RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) +SLOT=6.12.73 +SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-6.12.tar.xz https://cdn.kernel.org/pub/linux/kernel/v6.x/patch-6.12.73.xz https://dev.gentoo.org/~mgorny/dist/linux/linux-gentoo-patches-6.12.68.tar.xz verify-sig? ( https://cdn.kernel.org/pub/linux/kernel/v6.x/sha256sums.asc -> linux-6.x-sha256sums-20260217.asc ) amd64? ( https://dev.gentoo.org/~mgorny/binpkg/amd64/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-6.12.73-1.gpkg.tar -> gentoo-kernel-6.12.73-1.amd64.gpkg.tar ) arm64? ( https://dev.gentoo.org/~mgorny/binpkg/arm64/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-6.12.73-1.gpkg.tar -> gentoo-kernel-6.12.73-1.arm64.gpkg.tar ) ppc64? ( https://dev.gentoo.org/~mgorny/binpkg/ppc64le/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-6.12.73-1.gpkg.tar -> gentoo-kernel-6.12.73-1.ppc64le.gpkg.tar ) x86? ( https://dev.gentoo.org/~mgorny/binpkg/x86/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-6.12.73-1.gpkg.tar -> gentoo-kernel-6.12.73-1.x86.gpkg.tar ) +_eclasses_=dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd kernel-install cb345a05455b82a973741f204fabf3b4 mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multiprocessing 1e32df7deee68372153dca65f4a7c21f toolchain-funcs 7e440a20ac11dece04e3334622e6e5da unpacker 3b4ee72d1e2e0374fd8cd3eddfa00627 verify-sig ece4c893b6bd62eacbc4d25958e857f8 +_md5_=09aa282897a33c1ea83c1c8c436a1c71 diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-6.18.12 b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-6.18.12 new file mode 100644 index 000000000000..ec3736e821fc --- /dev/null +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-6.18.12 @@ -0,0 +1,17 @@ +BDEPEND=app-alternatives/bc app-alternatives/lex dev-util/pahole virtual/libelf app-alternatives/yacc amd64? ( app-crypt/sbsigntools ) arm64? ( app-crypt/sbsigntools ) verify-sig? ( >=sec-keys/openpgp-keys-kernel-20250702 ) test? ( dev-tcltk/expect sys-apps/coreutils sys-kernel/dracut sys-fs/e2fsprogs amd64? ( app-emulation/qemu[qemu_softmmu_targets_x86_64] ) arm64? ( app-emulation/qemu[qemu_softmmu_targets_aarch64] ) ppc? ( app-emulation/qemu[qemu_softmmu_targets_ppc] ) ppc64? ( app-emulation/qemu[qemu_softmmu_targets_ppc64] ) sparc? ( app-emulation/qemu[qemu_softmmu_targets_sparc,qemu_softmmu_targets_sparc64] ) x86? ( app-emulation/qemu[qemu_softmmu_targets_i386] ) ) verify-sig? ( || ( app-alternatives/gpg app-crypt/gnupg[-alternatives(-)] ) >=app-portage/gemato-20 ) +DEFINED_PHASES=config configure install postinst postrm preinst prepare pretend test unpack +DESCRIPTION=Pre-built Linux kernel with Gentoo patches +EAPI=8 +HOMEPAGE=https://wiki.gentoo.org/wiki/Project:Distribution_Kernel https://www.kernel.org/ +IDEPEND=generic-uki? ( app-crypt/sbsigntools >=sys-kernel/installkernel-14[-dracut(-),-ugrd(-),-ukify(-)] ) !generic-uki? ( !initramfs? ( >=sys-kernel/installkernel-14 ) initramfs? ( || ( >=sys-kernel/installkernel-14[dracut(-)] >=sys-kernel/installkernel-14[ugrd(-)] ) ) ) +INHERIT=kernel-install toolchain-funcs unpacker verify-sig +IUSE=debug +initramfs test generic-uki modules-compress verify-sig +KEYWORDS=~amd64 ~arm64 ~ppc64 ~x86 +LICENSE=GPL-2 generic-uki? ( GPL-2+ LGPL-2.1+ || ( BSD GPL-2 ) LGPL-2.1 || ( GPL-2 BSD ) GPL-2 GPL-3 GPL-3+ LGPL-2.1 LGPL-2 || ( BSD GPL-2 ) LGPL-2.1 GPL-3 GPL-3+ BSD BSD LGPL-2.1+ || ( Apache-2.0 CC0-1.0 ) BZIP2 LGPL-2.1+ public-domain BSD BSD-2 GPL-2 || ( BSD GPL-3 HIDAPI ) || ( AFL-2.1 GPL-2 ) MIT MIT || ( MPL-2.0 GPL-2 LGPL-2.1 ) GPL-2+ LGPL-2 LGPL-2.1 BSD-2 GPL-2 GPL-3+ GPL-3+ LGPL-2.1 GPL-2+ BSD-2 BSD curl ISC LGPL-2 CC0-1.0 GPL-2 LGPL-2.1 GPL-2+ GPL-2 BSD GPL-2 BSD LGPL-2.1 GPL-2 GPL-2 LGPL-2.1 MIT GPL-2 GPL-3 LGPL-2.1 BSD-4 MIT public-domain x86? ( intel-ucode ) GPL-2 LGPL-2.1 public-domain GPL-2 LGPL-2.1 MIT public-domain ZLIB amd64? ( intel-ucode ) MIT GPL-2+ GPL-2 GPL-3 LGPL-2.1 LGPL-2.1 GPL-2 MIT LGPL-2.1 || ( GPL-2+ LGPL-3+ ) GPL-3+ unicode GPL-2 GPL-2 GPL-2+ LGPL-2.1+ GPL-2+ LGPL-2+ LGPL-2.1+ LGPL-2.1+ OPENLDAP GPL-2 GPL-2 GPL-2 BSD BSD-2 BSD-4 LGPL-2.1+ GPL-2 GPL-2 GPL-3+ GPL-3 BSD-2 LGPL-2.1+ BSD HPND ISC inner-net rc PCRE BSD public-domain LGPL-2.1+ GPL-2+ CC0-1.0 BSD-with-attribution LGPL-2.1+ MIT CC-BY-3.0 MIT GPL-2 LGPL-2.1+ LGPL-2.1 GPL-2+ LGPL-2.1+ GPL-3+ LGPL-3+ || ( GPL-3+ libgcc libstdc++ gcc-runtime-library-exception-3.1 ) FDL-1.3+ || ( LGPL-3+ GPL-2+ ) || ( FDL-1.2 GPL-3+ ) GPL-3+ Apache-2.0 BSD GPL-2 GPL-2 GPL-2 GPL-2+ GPL-3 BSD MIT || ( MPL-1.1 GPL-2 ) linux-fw-redistributable BSD-2 BSD BSD-4 ISC MIT || ( GPL-3 BSD-2 ) GPL-3+ LGPL-2.1 LGPL-2.1+ LGPL-2.1 MIT BSD ISC MIT GPL-3+ GPL-2 LGPL-2.1+ MIT LGPL-2.1 CC0-1.0 MIT ISC GPL-2 ) +PDEPEND=>=virtual/dist-kernel-6.18.12 +RDEPEND=!sys-kernel/gentoo-kernel:6.18.12 sys-apps/kmod[lzma] virtual/libelf +RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) +SLOT=6.18.12 +SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-6.18.tar.xz https://cdn.kernel.org/pub/linux/kernel/v6.x/patch-6.18.12.xz https://dev.gentoo.org/~mgorny/dist/linux/linux-gentoo-patches-6.18.4.tar.xz verify-sig? ( https://cdn.kernel.org/pub/linux/kernel/v6.x/sha256sums.asc -> linux-6.x-sha256sums-20260217.asc ) amd64? ( https://dev.gentoo.org/~mgorny/binpkg/amd64/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-6.18.12-1.gpkg.tar -> gentoo-kernel-6.18.12-1.amd64.gpkg.tar ) arm64? ( https://dev.gentoo.org/~mgorny/binpkg/arm64/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-6.18.12-1.gpkg.tar -> gentoo-kernel-6.18.12-1.arm64.gpkg.tar ) ppc64? ( https://dev.gentoo.org/~mgorny/binpkg/ppc64le/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-6.18.12-1.gpkg.tar -> gentoo-kernel-6.18.12-1.ppc64le.gpkg.tar ) x86? ( https://dev.gentoo.org/~mgorny/binpkg/x86/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-6.18.12-1.gpkg.tar -> gentoo-kernel-6.18.12-1.x86.gpkg.tar ) +_eclasses_=dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd kernel-install cb345a05455b82a973741f204fabf3b4 mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multiprocessing 1e32df7deee68372153dca65f4a7c21f toolchain-funcs 7e440a20ac11dece04e3334622e6e5da unpacker 3b4ee72d1e2e0374fd8cd3eddfa00627 verify-sig ece4c893b6bd62eacbc4d25958e857f8 +_md5_=d719f86c84a877bba1a51a0bb07c36d7 diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-6.18.8 b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-6.18.8 index 32a84b6140b6..0277b0f59cad 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-6.18.8 +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-6.18.8 @@ -6,7 +6,7 @@ HOMEPAGE=https://wiki.gentoo.org/wiki/Project:Distribution_Kernel https://www.ke IDEPEND=generic-uki? ( app-crypt/sbsigntools >=sys-kernel/installkernel-14[-dracut(-),-ugrd(-),-ukify(-)] ) !generic-uki? ( !initramfs? ( >=sys-kernel/installkernel-14 ) initramfs? ( || ( >=sys-kernel/installkernel-14[dracut(-)] >=sys-kernel/installkernel-14[ugrd(-)] ) ) ) INHERIT=kernel-install toolchain-funcs unpacker verify-sig IUSE=debug +initramfs test generic-uki modules-compress verify-sig -KEYWORDS=~amd64 ~arm64 ~ppc64 x86 +KEYWORDS=amd64 arm64 ppc64 x86 LICENSE=GPL-2 generic-uki? ( GPL-2+ LGPL-2.1+ || ( BSD GPL-2 ) LGPL-2.1 || ( GPL-2 BSD ) GPL-2 GPL-3 GPL-3+ LGPL-2.1 LGPL-2 || ( BSD GPL-2 ) LGPL-2.1 GPL-3 GPL-3+ BSD BSD LGPL-2.1+ || ( Apache-2.0 CC0-1.0 ) BZIP2 LGPL-2.1+ public-domain BSD BSD-2 GPL-2 || ( BSD GPL-3 HIDAPI ) || ( AFL-2.1 GPL-2 ) MIT MIT || ( MPL-2.0 GPL-2 LGPL-2.1 ) GPL-2+ LGPL-2 LGPL-2.1 BSD-2 GPL-2 GPL-3+ GPL-3+ LGPL-2.1 GPL-2+ BSD-2 BSD curl ISC LGPL-2 CC0-1.0 GPL-2 LGPL-2.1 GPL-2+ GPL-2 BSD GPL-2 BSD LGPL-2.1 GPL-2 GPL-2 LGPL-2.1 MIT GPL-2 GPL-3 LGPL-2.1 BSD-4 MIT public-domain x86? ( intel-ucode ) GPL-2 LGPL-2.1 public-domain GPL-2 LGPL-2.1 MIT public-domain ZLIB amd64? ( intel-ucode ) MIT GPL-2+ GPL-2 GPL-3 LGPL-2.1 LGPL-2.1 GPL-2 MIT LGPL-2.1 || ( GPL-2+ LGPL-3+ ) GPL-3+ unicode GPL-2 GPL-2 GPL-2+ LGPL-2.1+ GPL-2+ LGPL-2+ LGPL-2.1+ LGPL-2.1+ OPENLDAP GPL-2 GPL-2 GPL-2 BSD BSD-2 BSD-4 LGPL-2.1+ GPL-2 GPL-2 GPL-3+ GPL-3 BSD-2 LGPL-2.1+ BSD HPND ISC inner-net rc PCRE BSD public-domain LGPL-2.1+ GPL-2+ CC0-1.0 BSD-with-attribution LGPL-2.1+ MIT CC-BY-3.0 MIT GPL-2 LGPL-2.1+ LGPL-2.1 GPL-2+ LGPL-2.1+ GPL-3+ LGPL-3+ || ( GPL-3+ libgcc libstdc++ gcc-runtime-library-exception-3.1 ) FDL-1.3+ || ( LGPL-3+ GPL-2+ ) || ( FDL-1.2 GPL-3+ ) GPL-3+ Apache-2.0 BSD GPL-2 GPL-2 GPL-2 GPL-2+ GPL-3 BSD MIT || ( MPL-1.1 GPL-2 ) linux-fw-redistributable BSD-2 BSD BSD-4 ISC MIT || ( GPL-3 BSD-2 ) GPL-3+ LGPL-2.1 LGPL-2.1+ LGPL-2.1 MIT BSD ISC MIT GPL-3+ GPL-2 LGPL-2.1+ MIT LGPL-2.1 CC0-1.0 MIT ISC GPL-2 ) PDEPEND=>=virtual/dist-kernel-6.18.8 RDEPEND=!sys-kernel/gentoo-kernel:6.18.8 sys-apps/kmod[lzma] virtual/libelf @@ -14,4 +14,4 @@ RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) SLOT=6.18.8 SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-6.18.tar.xz https://cdn.kernel.org/pub/linux/kernel/v6.x/patch-6.18.8.xz https://dev.gentoo.org/~mgorny/dist/linux/linux-gentoo-patches-6.18.4.tar.xz verify-sig? ( https://cdn.kernel.org/pub/linux/kernel/v6.x/sha256sums.asc -> linux-6.x-sha256sums-20260130.asc ) amd64? ( https://dev.gentoo.org/~mgorny/binpkg/amd64/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-6.18.8-1.gpkg.tar -> gentoo-kernel-6.18.8-1.amd64.gpkg.tar ) arm64? ( https://dev.gentoo.org/~mgorny/binpkg/arm64/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-6.18.8-1.gpkg.tar -> gentoo-kernel-6.18.8-1.arm64.gpkg.tar ) ppc64? ( https://dev.gentoo.org/~mgorny/binpkg/ppc64le/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-6.18.8-1.gpkg.tar -> gentoo-kernel-6.18.8-1.ppc64le.gpkg.tar ) x86? ( https://dev.gentoo.org/~mgorny/binpkg/x86/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-6.18.8-1.gpkg.tar -> gentoo-kernel-6.18.8-1.x86.gpkg.tar ) _eclasses_=dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd kernel-install cb345a05455b82a973741f204fabf3b4 mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multiprocessing 1e32df7deee68372153dca65f4a7c21f toolchain-funcs 7e440a20ac11dece04e3334622e6e5da unpacker 3b4ee72d1e2e0374fd8cd3eddfa00627 verify-sig ece4c893b6bd62eacbc4d25958e857f8 -_md5_=08b940918644ac7ff27215565de8528d +_md5_=29a282a6933131021ce5ab0d526794b0 diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-6.19.2 b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-6.19.2 new file mode 100644 index 000000000000..59d8a5647fa2 --- /dev/null +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-6.19.2 @@ -0,0 +1,17 @@ +BDEPEND=app-alternatives/bc app-alternatives/lex dev-util/pahole virtual/libelf app-alternatives/yacc amd64? ( app-crypt/sbsigntools ) arm64? ( app-crypt/sbsigntools ) verify-sig? ( >=sec-keys/openpgp-keys-kernel-20250702 ) test? ( dev-tcltk/expect sys-apps/coreutils sys-kernel/dracut sys-fs/e2fsprogs amd64? ( app-emulation/qemu[qemu_softmmu_targets_x86_64] ) arm64? ( app-emulation/qemu[qemu_softmmu_targets_aarch64] ) ppc? ( app-emulation/qemu[qemu_softmmu_targets_ppc] ) ppc64? ( app-emulation/qemu[qemu_softmmu_targets_ppc64] ) sparc? ( app-emulation/qemu[qemu_softmmu_targets_sparc,qemu_softmmu_targets_sparc64] ) x86? ( app-emulation/qemu[qemu_softmmu_targets_i386] ) ) verify-sig? ( || ( app-alternatives/gpg app-crypt/gnupg[-alternatives(-)] ) >=app-portage/gemato-20 ) +DEFINED_PHASES=config configure install postinst postrm preinst prepare pretend test unpack +DESCRIPTION=Pre-built Linux kernel with Gentoo patches +EAPI=8 +HOMEPAGE=https://wiki.gentoo.org/wiki/Project:Distribution_Kernel https://www.kernel.org/ +IDEPEND=generic-uki? ( app-crypt/sbsigntools >=sys-kernel/installkernel-14[-dracut(-),-ugrd(-),-ukify(-)] ) !generic-uki? ( !initramfs? ( >=sys-kernel/installkernel-14 ) initramfs? ( || ( >=sys-kernel/installkernel-14[dracut(-)] >=sys-kernel/installkernel-14[ugrd(-)] ) ) ) +INHERIT=kernel-install toolchain-funcs unpacker verify-sig +IUSE=debug +initramfs test generic-uki modules-compress verify-sig +KEYWORDS=~amd64 ~arm64 ~ppc64 ~x86 +LICENSE=GPL-2 generic-uki? ( GPL-2+ LGPL-2.1+ || ( BSD GPL-2 ) LGPL-2.1 || ( GPL-2 BSD ) GPL-2 GPL-3 GPL-3+ LGPL-2.1 LGPL-2 || ( BSD GPL-2 ) LGPL-2.1 GPL-3 GPL-3+ BSD BSD LGPL-2.1+ || ( Apache-2.0 CC0-1.0 ) BZIP2 LGPL-2.1+ public-domain BSD BSD-2 GPL-2 || ( BSD GPL-3 HIDAPI ) || ( AFL-2.1 GPL-2 ) MIT MIT || ( MPL-2.0 GPL-2 LGPL-2.1 ) GPL-2+ LGPL-2 LGPL-2.1 BSD-2 GPL-2 GPL-3+ GPL-3+ LGPL-2.1 GPL-2+ BSD-2 BSD curl ISC LGPL-2 CC0-1.0 GPL-2 LGPL-2.1 GPL-2+ GPL-2 BSD GPL-2 BSD LGPL-2.1 GPL-2 GPL-2 LGPL-2.1 MIT GPL-2 GPL-3 LGPL-2.1 BSD-4 MIT public-domain x86? ( intel-ucode ) GPL-2 LGPL-2.1 public-domain GPL-2 LGPL-2.1 MIT public-domain ZLIB amd64? ( intel-ucode ) MIT GPL-2+ GPL-2 GPL-3 LGPL-2.1 LGPL-2.1 GPL-2 MIT LGPL-2.1 || ( GPL-2+ LGPL-3+ ) GPL-3+ unicode GPL-2 GPL-2 GPL-2+ LGPL-2.1+ GPL-2+ LGPL-2+ LGPL-2.1+ LGPL-2.1+ OPENLDAP GPL-2 GPL-2 GPL-2 BSD BSD-2 BSD-4 LGPL-2.1+ GPL-2 GPL-2 GPL-3+ GPL-3 BSD-2 LGPL-2.1+ BSD HPND ISC inner-net rc PCRE BSD public-domain LGPL-2.1+ GPL-2+ CC0-1.0 BSD-with-attribution LGPL-2.1+ MIT CC-BY-3.0 MIT GPL-2 LGPL-2.1+ LGPL-2.1 GPL-2+ LGPL-2.1+ GPL-3+ LGPL-3+ || ( GPL-3+ libgcc libstdc++ gcc-runtime-library-exception-3.1 ) FDL-1.3+ || ( LGPL-3+ GPL-2+ ) || ( FDL-1.2 GPL-3+ ) GPL-3+ Apache-2.0 BSD GPL-2 GPL-2 GPL-2 GPL-2+ GPL-3 BSD MIT || ( MPL-1.1 GPL-2 ) linux-fw-redistributable BSD-2 BSD BSD-4 ISC MIT || ( GPL-3 BSD-2 ) GPL-3+ LGPL-2.1 LGPL-2.1+ LGPL-2.1 MIT BSD ISC MIT GPL-3+ GPL-2 LGPL-2.1+ MIT LGPL-2.1 CC0-1.0 MIT ISC GPL-2 ) +PDEPEND=>=virtual/dist-kernel-6.19.2 +RDEPEND=!sys-kernel/gentoo-kernel:6.19.2 sys-apps/kmod[lzma] virtual/libelf +RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) +SLOT=6.19.2 +SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-6.19.tar.xz https://cdn.kernel.org/pub/linux/kernel/v6.x/patch-6.19.2.xz https://dev.gentoo.org/~mgorny/dist/linux/linux-gentoo-patches-6.18.4.tar.xz verify-sig? ( https://cdn.kernel.org/pub/linux/kernel/v6.x/sha256sums.asc -> linux-6.x-sha256sums-20260217.asc ) amd64? ( https://dev.gentoo.org/~mgorny/binpkg/amd64/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-6.19.2-1.gpkg.tar -> gentoo-kernel-6.19.2-1.amd64.gpkg.tar ) arm64? ( https://dev.gentoo.org/~mgorny/binpkg/arm64/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-6.19.2-1.gpkg.tar -> gentoo-kernel-6.19.2-1.arm64.gpkg.tar ) ppc64? ( https://dev.gentoo.org/~mgorny/binpkg/ppc64le/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-6.19.2-1.gpkg.tar -> gentoo-kernel-6.19.2-1.ppc64le.gpkg.tar ) x86? ( https://dev.gentoo.org/~mgorny/binpkg/x86/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-6.19.2-1.gpkg.tar -> gentoo-kernel-6.19.2-1.x86.gpkg.tar ) +_eclasses_=dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd kernel-install cb345a05455b82a973741f204fabf3b4 mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multiprocessing 1e32df7deee68372153dca65f4a7c21f toolchain-funcs 7e440a20ac11dece04e3334622e6e5da unpacker 3b4ee72d1e2e0374fd8cd3eddfa00627 verify-sig ece4c893b6bd62eacbc4d25958e857f8 +_md5_=d719f86c84a877bba1a51a0bb07c36d7 diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-6.6.126 b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-6.6.126 new file mode 100644 index 000000000000..4aeec58ddde3 --- /dev/null +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-6.6.126 @@ -0,0 +1,17 @@ +BDEPEND=app-alternatives/bc app-alternatives/lex dev-util/pahole virtual/libelf app-alternatives/yacc amd64? ( app-crypt/sbsigntools ) arm64? ( app-crypt/sbsigntools ) verify-sig? ( >=sec-keys/openpgp-keys-kernel-20250702 ) test? ( dev-tcltk/expect sys-apps/coreutils sys-kernel/dracut sys-fs/e2fsprogs amd64? ( app-emulation/qemu[qemu_softmmu_targets_x86_64] ) arm64? ( app-emulation/qemu[qemu_softmmu_targets_aarch64] ) ppc? ( app-emulation/qemu[qemu_softmmu_targets_ppc] ) ppc64? ( app-emulation/qemu[qemu_softmmu_targets_ppc64] ) sparc? ( app-emulation/qemu[qemu_softmmu_targets_sparc,qemu_softmmu_targets_sparc64] ) x86? ( app-emulation/qemu[qemu_softmmu_targets_i386] ) ) verify-sig? ( || ( app-alternatives/gpg app-crypt/gnupg[-alternatives(-)] ) >=app-portage/gemato-20 ) +DEFINED_PHASES=config configure install postinst postrm preinst prepare pretend test unpack +DESCRIPTION=Pre-built Linux kernel with Gentoo patches +EAPI=8 +HOMEPAGE=https://wiki.gentoo.org/wiki/Project:Distribution_Kernel https://www.kernel.org/ +IDEPEND=generic-uki? ( app-crypt/sbsigntools >=sys-kernel/installkernel-14[-dracut(-),-ugrd(-),-ukify(-)] ) !generic-uki? ( !initramfs? ( >=sys-kernel/installkernel-14 ) initramfs? ( || ( >=sys-kernel/installkernel-14[dracut(-)] >=sys-kernel/installkernel-14[ugrd(-)] ) ) ) +INHERIT=kernel-install toolchain-funcs unpacker verify-sig +IUSE=debug +initramfs test generic-uki modules-compress verify-sig +KEYWORDS=~amd64 ~arm64 ~ppc64 ~x86 +LICENSE=GPL-2 generic-uki? ( GPL-2+ LGPL-2.1+ || ( BSD GPL-2 ) LGPL-2.1 || ( GPL-2 BSD ) GPL-2 GPL-3 GPL-3+ LGPL-2.1 LGPL-2 || ( BSD GPL-2 ) LGPL-2.1 GPL-3 GPL-3+ BSD BSD LGPL-2.1+ || ( Apache-2.0 CC0-1.0 ) BZIP2 LGPL-2.1+ public-domain BSD BSD-2 GPL-2 || ( BSD GPL-3 HIDAPI ) || ( AFL-2.1 GPL-2 ) MIT MIT || ( MPL-2.0 GPL-2 LGPL-2.1 ) GPL-2+ LGPL-2 LGPL-2.1 BSD-2 GPL-2 GPL-3+ GPL-3+ LGPL-2.1 GPL-2+ BSD-2 BSD curl ISC LGPL-2 CC0-1.0 GPL-2 LGPL-2.1 GPL-2+ GPL-2 BSD GPL-2 BSD LGPL-2.1 GPL-2 GPL-2 LGPL-2.1 MIT GPL-2 GPL-3 LGPL-2.1 BSD-4 MIT public-domain x86? ( intel-ucode ) GPL-2 LGPL-2.1 public-domain GPL-2 LGPL-2.1 MIT public-domain ZLIB amd64? ( intel-ucode ) MIT GPL-2+ GPL-2 GPL-3 LGPL-2.1 LGPL-2.1 GPL-2 MIT LGPL-2.1 || ( GPL-2+ LGPL-3+ ) GPL-3+ unicode GPL-2 GPL-2 GPL-2+ LGPL-2.1+ GPL-2+ LGPL-2+ LGPL-2.1+ LGPL-2.1+ OPENLDAP GPL-2 GPL-2 GPL-2 BSD BSD-2 BSD-4 LGPL-2.1+ GPL-2 GPL-2 GPL-3+ GPL-3 BSD-2 LGPL-2.1+ BSD HPND ISC inner-net rc PCRE BSD public-domain LGPL-2.1+ GPL-2+ CC0-1.0 BSD-with-attribution LGPL-2.1+ MIT CC-BY-3.0 MIT GPL-2 LGPL-2.1+ LGPL-2.1 GPL-2+ LGPL-2.1+ GPL-3+ LGPL-3+ || ( GPL-3+ libgcc libstdc++ gcc-runtime-library-exception-3.1 ) FDL-1.3+ || ( LGPL-3+ GPL-2+ ) || ( FDL-1.2 GPL-3+ ) GPL-3+ Apache-2.0 BSD GPL-2 GPL-2 GPL-2 GPL-2+ GPL-3 BSD MIT || ( MPL-1.1 GPL-2 ) linux-fw-redistributable BSD-2 BSD BSD-4 ISC MIT || ( GPL-3 BSD-2 ) GPL-3+ LGPL-2.1 LGPL-2.1+ LGPL-2.1 MIT BSD ISC MIT GPL-3+ GPL-2 LGPL-2.1+ MIT LGPL-2.1 CC0-1.0 MIT ISC GPL-2 ) +PDEPEND=>=virtual/dist-kernel-6.6.126 +RDEPEND=!sys-kernel/gentoo-kernel:6.6.126 sys-apps/kmod[lzma] virtual/libelf +RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) +SLOT=6.6.126 +SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-6.6.tar.xz https://cdn.kernel.org/pub/linux/kernel/v6.x/patch-6.6.126.xz https://dev.gentoo.org/~mgorny/dist/linux/linux-gentoo-patches-6.6.124.tar.xz verify-sig? ( https://cdn.kernel.org/pub/linux/kernel/v6.x/sha256sums.asc -> linux-6.x-sha256sums-20260217.asc ) amd64? ( https://dev.gentoo.org/~mgorny/binpkg/amd64/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-6.6.126-1.gpkg.tar -> gentoo-kernel-6.6.126-1.amd64.gpkg.tar ) arm64? ( https://dev.gentoo.org/~mgorny/binpkg/arm64/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-6.6.126-1.gpkg.tar -> gentoo-kernel-6.6.126-1.arm64.gpkg.tar ) ppc64? ( https://dev.gentoo.org/~mgorny/binpkg/ppc64le/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-6.6.126-1.gpkg.tar -> gentoo-kernel-6.6.126-1.ppc64le.gpkg.tar ) x86? ( https://dev.gentoo.org/~mgorny/binpkg/x86/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-6.6.126-1.gpkg.tar -> gentoo-kernel-6.6.126-1.x86.gpkg.tar ) +_eclasses_=dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd kernel-install cb345a05455b82a973741f204fabf3b4 mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multiprocessing 1e32df7deee68372153dca65f4a7c21f toolchain-funcs 7e440a20ac11dece04e3334622e6e5da unpacker 3b4ee72d1e2e0374fd8cd3eddfa00627 verify-sig ece4c893b6bd62eacbc4d25958e857f8 +_md5_=80049bea35d5ca94ddafde91c855dae8 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-6.12.73 b/metadata/md5-cache/sys-kernel/gentoo-sources-6.12.73 new file mode 100644 index 000000000000..7e7ce086176c --- /dev/null +++ b/metadata/md5-cache/sys-kernel/gentoo-sources-6.12.73 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile install postinst postrm preinst prepare pretend setup test unpack +DESCRIPTION=Full sources including the Gentoo patchset for the 6.12 kernel tree +EAPI=8 +HOMEPAGE=https://dev.gentoo.org/~alicef/genpatches +INHERIT=check-reqs kernel-2 +IUSE=experimental symlink build +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +LICENSE=GPL-2 +RDEPEND=!build? ( app-alternatives/cpio dev-lang/perl app-alternatives/bc dev-build/make sys-devel/bison sys-devel/flex >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) +RESTRICT=binchecks strip +SLOT=6.12.73 +SRC_URI=https://www.kernel.org/pub/linux/kernel/v6.x/linux-6.12.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-6.12-78.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-6.12-78.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-6.12-78.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-6.12-78.extras.tar.xz experimental? ( https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-6.12-78.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-6.12-78.experimental.tar.xz ) +_eclasses_=check-reqs 12ab9d3fc16bfe1f87c6fb652324b57c crossdev f04338ff78f213a4a55c5c37b3c6563e estack c61c368a76fdf3a82fdf8dbaebea3804 kernel-2 0e01377cce73a7a06321d0ef97388d31 multiprocessing 1e32df7deee68372153dca65f4a7c21f optfeature 538bce96e5589935b57e178e8635f301 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_md5_=dc74e600a28a075b80fa03d23fe3cb60 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-6.18.12 b/metadata/md5-cache/sys-kernel/gentoo-sources-6.18.12 new file mode 100644 index 000000000000..b2d394cb4141 --- /dev/null +++ b/metadata/md5-cache/sys-kernel/gentoo-sources-6.18.12 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile install postinst postrm preinst prepare setup test unpack +DESCRIPTION=Full sources including the Gentoo patchset for the 6.18 kernel tree +EAPI=8 +HOMEPAGE=https://dev.gentoo.org/~alicef/genpatches +INHERIT=kernel-2 +IUSE=experimental symlink build +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +LICENSE=GPL-2 +RDEPEND=!build? ( app-alternatives/cpio dev-lang/perl app-alternatives/bc dev-build/make sys-devel/bison sys-devel/flex >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) +RESTRICT=binchecks strip +SLOT=6.18.12 +SRC_URI=https://www.kernel.org/pub/linux/kernel/v6.x/linux-6.18.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-6.18-13.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-6.18-13.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-6.18-13.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-6.18-13.extras.tar.xz experimental? ( https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-6.18-13.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-6.18-13.experimental.tar.xz ) +_eclasses_=crossdev f04338ff78f213a4a55c5c37b3c6563e estack c61c368a76fdf3a82fdf8dbaebea3804 kernel-2 0e01377cce73a7a06321d0ef97388d31 multiprocessing 1e32df7deee68372153dca65f4a7c21f optfeature 538bce96e5589935b57e178e8635f301 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_md5_=591ce81cf5b41ba55519c2ffa5feeae1 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-6.19.2 b/metadata/md5-cache/sys-kernel/gentoo-sources-6.19.2 new file mode 100644 index 000000000000..24e550c0dfca --- /dev/null +++ b/metadata/md5-cache/sys-kernel/gentoo-sources-6.19.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile install postinst postrm preinst prepare setup test unpack +DESCRIPTION=Full sources including the Gentoo patchset for the 6.19 kernel tree +EAPI=8 +HOMEPAGE=https://dev.gentoo.org/~alicef/genpatches +INHERIT=kernel-2 +IUSE=experimental symlink build +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +LICENSE=GPL-2 +RDEPEND=!build? ( app-alternatives/cpio dev-lang/perl app-alternatives/bc dev-build/make sys-devel/bison sys-devel/flex >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) +RESTRICT=binchecks strip +SLOT=6.19.2 +SRC_URI=https://www.kernel.org/pub/linux/kernel/v6.x/linux-6.19.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-6.19-2.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-6.19-2.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-6.19-2.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-6.19-2.extras.tar.xz experimental? ( https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-6.19-2.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-6.19-2.experimental.tar.xz ) +_eclasses_=crossdev f04338ff78f213a4a55c5c37b3c6563e estack c61c368a76fdf3a82fdf8dbaebea3804 kernel-2 0e01377cce73a7a06321d0ef97388d31 multiprocessing 1e32df7deee68372153dca65f4a7c21f optfeature 538bce96e5589935b57e178e8635f301 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_md5_=ca412b21d0d7ca163f8d260e4257082b diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-6.6.126 b/metadata/md5-cache/sys-kernel/gentoo-sources-6.6.126 new file mode 100644 index 000000000000..0cddc3936c3a --- /dev/null +++ b/metadata/md5-cache/sys-kernel/gentoo-sources-6.6.126 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile install postinst postrm preinst prepare setup test unpack +DESCRIPTION=Full sources including the Gentoo patchset for the 6.6 kernel tree +EAPI=8 +HOMEPAGE=https://dev.gentoo.org/~alicef/genpatches +INHERIT=kernel-2 +IUSE=experimental symlink build +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +LICENSE=GPL-2 +RDEPEND=!build? ( app-alternatives/cpio dev-lang/perl app-alternatives/bc dev-build/make sys-devel/bison sys-devel/flex >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) +RESTRICT=binchecks strip +SLOT=6.6.126 +SRC_URI=https://www.kernel.org/pub/linux/kernel/v6.x/linux-6.6.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-6.6-134.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-6.6-134.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-6.6-134.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-6.6-134.extras.tar.xz experimental? ( https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-6.6-134.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-6.6-134.experimental.tar.xz ) +_eclasses_=crossdev f04338ff78f213a4a55c5c37b3c6563e estack c61c368a76fdf3a82fdf8dbaebea3804 kernel-2 0e01377cce73a7a06321d0ef97388d31 multiprocessing 1e32df7deee68372153dca65f4a7c21f optfeature 538bce96e5589935b57e178e8635f301 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_md5_=e88b9d1253df6fc232bda97bc10bb295 diff --git a/metadata/md5-cache/sys-kernel/vanilla-kernel-6.12.73 b/metadata/md5-cache/sys-kernel/vanilla-kernel-6.12.73 new file mode 100644 index 000000000000..d6f57c8f1b34 --- /dev/null +++ b/metadata/md5-cache/sys-kernel/vanilla-kernel-6.12.73 @@ -0,0 +1,18 @@ +BDEPEND=debug? ( dev-util/pahole ) verify-sig? ( >=sec-keys/openpgp-keys-kernel-20250702 ) secureboot? ( app-crypt/sbsigntools dev-libs/openssl ) test? ( dev-tcltk/expect sys-apps/coreutils sys-kernel/dracut sys-fs/e2fsprogs amd64? ( app-emulation/qemu[qemu_softmmu_targets_x86_64] ) arm64? ( app-emulation/qemu[qemu_softmmu_targets_aarch64] ) ppc? ( app-emulation/qemu[qemu_softmmu_targets_ppc] ) ppc64? ( app-emulation/qemu[qemu_softmmu_targets_ppc64] ) sparc? ( app-emulation/qemu[qemu_softmmu_targets_sparc,qemu_softmmu_targets_sparc64] ) x86? ( app-emulation/qemu[qemu_softmmu_targets_i386] ) ) || ( dev-lang/python:3.14 dev-lang/python:3.13 dev-lang/python:3.12 dev-lang/python:3.11 ) app-alternatives/cpio app-alternatives/bc app-arch/tar dev-lang/perl sys-devel/bison sys-devel/flex virtual/libelf arm? ( sys-apps/dtc ) arm64? ( sys-apps/dtc ) modules-sign? ( dev-libs/openssl ) riscv? ( sys-apps/dtc ) generic-uki? ( net-misc/networkmanager[iwd] sys-libs/pam dev-libs/libp11 sys-libs/libcap net-fs/nfs-utils net-fs/cifs-utils sys-libs/readline net-libs/libmnl sys-apps/kmod app-arch/zstd media-libs/libmtp sys-fs/dosfstools sys-apps/coreutils dev-libs/libevent dev-libs/libpcre2 dev-libs/glib app-crypt/argon2 app-arch/bzip2 sys-libs/libxcrypt sys-block/nbd dev-libs/hidapi sys-apps/dbus dev-libs/libffi x11-libs/libdrm dev-libs/nss sys-boot/plymouth[drm,systemd(+),udev] sys-auth/polkit dev-libs/userspace-rcu app-arch/lz4 sys-apps/gawk app-crypt/gnupg[smartcard,tpm(-)] sys-apps/acl sys-apps/hwdata app-crypt/tpm2-tss net-misc/curl dev-libs/libaio app-alternatives/awk sys-libs/libapparmor dev-libs/lzo sys-fs/e2fsprogs sys-fs/mdadm app-crypt/tpm2-tools sys-libs/libseccomp sys-fs/lvm2[lvm] sys-apps/keyutils dev-libs/json-c sys-apps/util-linux x86? ( sys-firmware/intel-microcode ) dev-libs/libgpg-error dev-db/sqlite >=sys-apps/systemd-257[boot(-),cryptsetup,pkcs11,policykit,tpm,ukify(-)] virtual/zlib amd64? ( sys-firmware/intel-microcode ) sys-libs/ncurses sys-fs/cryptsetup sys-apps/rng-tools dev-libs/libassuan sys-fs/xfsprogs net-wireless/iwd net-libs/nghttp2 sys-apps/attr net-dns/libidn2 sys-kernel/dracut sys-apps/nvme-cli net-libs/libndp sys-process/procps dev-libs/npth net-nds/openldap sys-apps/baselayout sys-fs/dmraid net-libs/libtirpc sys-fs/multipath-tools sys-fs/btrfs-progs sys-apps/sed net-fs/samba dev-libs/oniguruma sys-libs/glibc dev-libs/icu app-arch/xz-utils app-alternatives/gzip dev-libs/cyrus-sasl sys-libs/libnvme app-misc/jq dev-libs/expat sys-apps/iproute2 media-libs/libv4l dev-libs/libusb net-wireless/bluez sys-devel/gcc dev-libs/libunistring app-arch/gzip dev-libs/openssl sys-apps/shadow app-misc/ddcutil sys-kernel/linux-firmware[redistributable,-unknown-license] sys-apps/less app-shells/bash dev-libs/opensc sys-apps/fwupd dev-libs/libgcrypt sys-apps/pcsc-lite dev-libs/libtasn1 app-crypt/p11-kit sys-libs/libcap-ng app-alternatives/sh net-dns/c-ares sys-apps/kbd ) verify-sig? ( || ( app-alternatives/gpg app-crypt/gnupg[-alternatives(-)] ) >=app-portage/gemato-20 ) +DEFINED_PHASES=compile config configure install postinst postrm preinst prepare pretend setup test unpack +DESCRIPTION=Linux kernel built from vanilla upstream sources +EAPI=8 +HOMEPAGE=https://wiki.gentoo.org/wiki/Project:Distribution_Kernel https://www.kernel.org/ +IDEPEND=generic-uki? ( app-crypt/sbsigntools >=sys-kernel/installkernel-14[-dracut(-),-ugrd(-),-ukify(-)] ) !generic-uki? ( !initramfs? ( >=sys-kernel/installkernel-14 ) initramfs? ( || ( >=sys-kernel/installkernel-14[dracut(-)] >=sys-kernel/installkernel-14[ugrd(-)] ) ) ) +INHERIT=kernel-build toolchain-funcs verify-sig +IUSE=debug hardened savedconfig secureboot +initramfs test generic-uki modules-compress +strip modules-sign verify-sig +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86 +LICENSE=GPL-2 generic-uki? ( GPL-2+ LGPL-2.1+ || ( BSD GPL-2 ) LGPL-2.1 || ( GPL-2 BSD ) GPL-2 GPL-3 GPL-3+ LGPL-2.1 LGPL-2 || ( BSD GPL-2 ) LGPL-2.1 GPL-3 GPL-3+ BSD BSD LGPL-2.1+ || ( Apache-2.0 CC0-1.0 ) BZIP2 LGPL-2.1+ public-domain BSD BSD-2 GPL-2 || ( BSD GPL-3 HIDAPI ) || ( AFL-2.1 GPL-2 ) MIT MIT || ( MPL-2.0 GPL-2 LGPL-2.1 ) GPL-2+ LGPL-2 LGPL-2.1 BSD-2 GPL-2 GPL-3+ GPL-3+ LGPL-2.1 GPL-2+ BSD-2 BSD curl ISC LGPL-2 CC0-1.0 GPL-2 LGPL-2.1 GPL-2+ GPL-2 BSD GPL-2 BSD LGPL-2.1 GPL-2 GPL-2 LGPL-2.1 MIT GPL-2 GPL-3 LGPL-2.1 BSD-4 MIT public-domain x86? ( intel-ucode ) GPL-2 LGPL-2.1 public-domain GPL-2 LGPL-2.1 MIT public-domain ZLIB amd64? ( intel-ucode ) MIT GPL-2+ GPL-2 GPL-3 LGPL-2.1 LGPL-2.1 GPL-2 MIT LGPL-2.1 || ( GPL-2+ LGPL-3+ ) GPL-3+ unicode GPL-2 GPL-2 GPL-2+ LGPL-2.1+ GPL-2+ LGPL-2+ LGPL-2.1+ LGPL-2.1+ OPENLDAP GPL-2 GPL-2 GPL-2 BSD BSD-2 BSD-4 LGPL-2.1+ GPL-2 GPL-2 GPL-3+ GPL-3 BSD-2 LGPL-2.1+ BSD HPND ISC inner-net rc PCRE BSD public-domain LGPL-2.1+ GPL-2+ CC0-1.0 BSD-with-attribution LGPL-2.1+ MIT CC-BY-3.0 MIT GPL-2 LGPL-2.1+ LGPL-2.1 GPL-2+ LGPL-2.1+ GPL-3+ LGPL-3+ || ( GPL-3+ libgcc libstdc++ gcc-runtime-library-exception-3.1 ) FDL-1.3+ || ( LGPL-3+ GPL-2+ ) || ( FDL-1.2 GPL-3+ ) GPL-3+ Apache-2.0 BSD GPL-2 GPL-2 GPL-2 GPL-2+ GPL-3 BSD MIT || ( MPL-1.1 GPL-2 ) linux-fw-redistributable BSD-2 BSD BSD-4 ISC MIT || ( GPL-3 BSD-2 ) GPL-3+ LGPL-2.1 LGPL-2.1+ LGPL-2.1 MIT BSD ISC MIT GPL-3+ GPL-2 LGPL-2.1+ MIT LGPL-2.1 CC0-1.0 MIT ISC GPL-2 ) +PDEPEND=>=virtual/dist-kernel-6.12.73 +RDEPEND=sys-apps/kmod[lzma] virtual/libelf +REQUIRED_USE=arm? ( savedconfig ) hppa? ( savedconfig ) sparc? ( savedconfig ) secureboot? ( modules-sign ) +RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) +SLOT=6.12.73 +SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-6.12.tar.xz https://cdn.kernel.org/pub/linux/kernel/v6.x/patch-6.12.73.xz https://github.com/projg2/gentoo-kernel-config/archive/g18.tar.gz -> gentoo-kernel-config-g18.tar.gz verify-sig? ( https://cdn.kernel.org/pub/linux/kernel/v6.x/sha256sums.asc -> linux-6.x-sha256sums-20260217.asc ) amd64? ( https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/6.12.41-gentoo/kernel-x86_64-fedora.config -> kernel-x86_64-fedora.config.6.12.41-gentoo ) arm64? ( https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/6.12.41-gentoo/kernel-aarch64-fedora.config -> kernel-aarch64-fedora.config.6.12.41-gentoo ) ppc64? ( https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/6.12.41-gentoo/kernel-ppc64le-fedora.config -> kernel-ppc64le-fedora.config.6.12.41-gentoo ) riscv? ( https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/6.12.41-gentoo/kernel-riscv64-fedora.config -> kernel-riscv64-fedora.config.6.12.41-gentoo ) x86? ( https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/6.12.41-gentoo/kernel-i686-fedora.config -> kernel-i686-fedora.config.6.12.41-gentoo ) +_eclasses_=branding 7bcece3faa73dd0fc3e597013510d53a dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd kernel-build 3698f4fb23a8ac6f87fe072c9c5f62f4 kernel-install cb345a05455b82a973741f204fabf3b4 linux-info efd923656513c879204fec6638eadee5 mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multiprocessing 1e32df7deee68372153dca65f4a7c21f portability a39e3d646f76cb45d06b44cc1144b8d4 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 savedconfig b9131abe556ad2ea96c01b06d658d363 secureboot d98b63e30a9468e1f1c06d3d7c66e760 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da verify-sig ece4c893b6bd62eacbc4d25958e857f8 +_md5_=299aa9764f2f916be18c4509f360ab0f diff --git a/metadata/md5-cache/sys-kernel/vanilla-kernel-6.18.12 b/metadata/md5-cache/sys-kernel/vanilla-kernel-6.18.12 new file mode 100644 index 000000000000..de2f1c2fa4c2 --- /dev/null +++ b/metadata/md5-cache/sys-kernel/vanilla-kernel-6.18.12 @@ -0,0 +1,18 @@ +BDEPEND=debug? ( dev-util/pahole ) verify-sig? ( >=sec-keys/openpgp-keys-kernel-20250702 ) secureboot? ( app-crypt/sbsigntools dev-libs/openssl ) test? ( dev-tcltk/expect sys-apps/coreutils sys-kernel/dracut sys-fs/e2fsprogs amd64? ( app-emulation/qemu[qemu_softmmu_targets_x86_64] ) arm64? ( app-emulation/qemu[qemu_softmmu_targets_aarch64] ) ppc? ( app-emulation/qemu[qemu_softmmu_targets_ppc] ) ppc64? ( app-emulation/qemu[qemu_softmmu_targets_ppc64] ) sparc? ( app-emulation/qemu[qemu_softmmu_targets_sparc,qemu_softmmu_targets_sparc64] ) x86? ( app-emulation/qemu[qemu_softmmu_targets_i386] ) ) || ( dev-lang/python:3.14 dev-lang/python:3.13 dev-lang/python:3.12 dev-lang/python:3.11 ) app-alternatives/cpio app-alternatives/bc app-arch/tar dev-lang/perl sys-devel/bison sys-devel/flex virtual/libelf arm? ( sys-apps/dtc ) arm64? ( sys-apps/dtc ) modules-sign? ( dev-libs/openssl ) riscv? ( sys-apps/dtc ) generic-uki? ( net-misc/networkmanager[iwd] sys-libs/pam dev-libs/libp11 sys-libs/libcap net-fs/nfs-utils net-fs/cifs-utils sys-libs/readline net-libs/libmnl sys-apps/kmod app-arch/zstd media-libs/libmtp sys-fs/dosfstools sys-apps/coreutils dev-libs/libevent dev-libs/libpcre2 dev-libs/glib app-crypt/argon2 app-arch/bzip2 sys-libs/libxcrypt sys-block/nbd dev-libs/hidapi sys-apps/dbus dev-libs/libffi x11-libs/libdrm dev-libs/nss sys-boot/plymouth[drm,systemd(+),udev] sys-auth/polkit dev-libs/userspace-rcu app-arch/lz4 sys-apps/gawk app-crypt/gnupg[smartcard,tpm(-)] sys-apps/acl sys-apps/hwdata app-crypt/tpm2-tss net-misc/curl dev-libs/libaio app-alternatives/awk sys-libs/libapparmor dev-libs/lzo sys-fs/e2fsprogs sys-fs/mdadm app-crypt/tpm2-tools sys-libs/libseccomp sys-fs/lvm2[lvm] sys-apps/keyutils dev-libs/json-c sys-apps/util-linux x86? ( sys-firmware/intel-microcode ) dev-libs/libgpg-error dev-db/sqlite >=sys-apps/systemd-257[boot(-),cryptsetup,pkcs11,policykit,tpm,ukify(-)] virtual/zlib amd64? ( sys-firmware/intel-microcode ) sys-libs/ncurses sys-fs/cryptsetup sys-apps/rng-tools dev-libs/libassuan sys-fs/xfsprogs net-wireless/iwd net-libs/nghttp2 sys-apps/attr net-dns/libidn2 sys-kernel/dracut sys-apps/nvme-cli net-libs/libndp sys-process/procps dev-libs/npth net-nds/openldap sys-apps/baselayout sys-fs/dmraid net-libs/libtirpc sys-fs/multipath-tools sys-fs/btrfs-progs sys-apps/sed net-fs/samba dev-libs/oniguruma sys-libs/glibc dev-libs/icu app-arch/xz-utils app-alternatives/gzip dev-libs/cyrus-sasl sys-libs/libnvme app-misc/jq dev-libs/expat sys-apps/iproute2 media-libs/libv4l dev-libs/libusb net-wireless/bluez sys-devel/gcc dev-libs/libunistring app-arch/gzip dev-libs/openssl sys-apps/shadow app-misc/ddcutil sys-kernel/linux-firmware[redistributable,-unknown-license] sys-apps/less app-shells/bash dev-libs/opensc sys-apps/fwupd dev-libs/libgcrypt sys-apps/pcsc-lite dev-libs/libtasn1 app-crypt/p11-kit sys-libs/libcap-ng app-alternatives/sh net-dns/c-ares sys-apps/kbd ) verify-sig? ( || ( app-alternatives/gpg app-crypt/gnupg[-alternatives(-)] ) >=app-portage/gemato-20 ) +DEFINED_PHASES=compile config configure install postinst postrm preinst prepare pretend setup test unpack +DESCRIPTION=Linux kernel built from vanilla upstream sources +EAPI=8 +HOMEPAGE=https://wiki.gentoo.org/wiki/Project:Distribution_Kernel https://www.kernel.org/ +IDEPEND=generic-uki? ( app-crypt/sbsigntools >=sys-kernel/installkernel-14[-dracut(-),-ugrd(-),-ukify(-)] ) !generic-uki? ( !initramfs? ( >=sys-kernel/installkernel-14 ) initramfs? ( || ( >=sys-kernel/installkernel-14[dracut(-)] >=sys-kernel/installkernel-14[ugrd(-)] ) ) ) +INHERIT=kernel-build toolchain-funcs verify-sig +IUSE=debug hardened savedconfig secureboot +initramfs test generic-uki modules-compress +strip modules-sign verify-sig +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86 +LICENSE=GPL-2 generic-uki? ( GPL-2+ LGPL-2.1+ || ( BSD GPL-2 ) LGPL-2.1 || ( GPL-2 BSD ) GPL-2 GPL-3 GPL-3+ LGPL-2.1 LGPL-2 || ( BSD GPL-2 ) LGPL-2.1 GPL-3 GPL-3+ BSD BSD LGPL-2.1+ || ( Apache-2.0 CC0-1.0 ) BZIP2 LGPL-2.1+ public-domain BSD BSD-2 GPL-2 || ( BSD GPL-3 HIDAPI ) || ( AFL-2.1 GPL-2 ) MIT MIT || ( MPL-2.0 GPL-2 LGPL-2.1 ) GPL-2+ LGPL-2 LGPL-2.1 BSD-2 GPL-2 GPL-3+ GPL-3+ LGPL-2.1 GPL-2+ BSD-2 BSD curl ISC LGPL-2 CC0-1.0 GPL-2 LGPL-2.1 GPL-2+ GPL-2 BSD GPL-2 BSD LGPL-2.1 GPL-2 GPL-2 LGPL-2.1 MIT GPL-2 GPL-3 LGPL-2.1 BSD-4 MIT public-domain x86? ( intel-ucode ) GPL-2 LGPL-2.1 public-domain GPL-2 LGPL-2.1 MIT public-domain ZLIB amd64? ( intel-ucode ) MIT GPL-2+ GPL-2 GPL-3 LGPL-2.1 LGPL-2.1 GPL-2 MIT LGPL-2.1 || ( GPL-2+ LGPL-3+ ) GPL-3+ unicode GPL-2 GPL-2 GPL-2+ LGPL-2.1+ GPL-2+ LGPL-2+ LGPL-2.1+ LGPL-2.1+ OPENLDAP GPL-2 GPL-2 GPL-2 BSD BSD-2 BSD-4 LGPL-2.1+ GPL-2 GPL-2 GPL-3+ GPL-3 BSD-2 LGPL-2.1+ BSD HPND ISC inner-net rc PCRE BSD public-domain LGPL-2.1+ GPL-2+ CC0-1.0 BSD-with-attribution LGPL-2.1+ MIT CC-BY-3.0 MIT GPL-2 LGPL-2.1+ LGPL-2.1 GPL-2+ LGPL-2.1+ GPL-3+ LGPL-3+ || ( GPL-3+ libgcc libstdc++ gcc-runtime-library-exception-3.1 ) FDL-1.3+ || ( LGPL-3+ GPL-2+ ) || ( FDL-1.2 GPL-3+ ) GPL-3+ Apache-2.0 BSD GPL-2 GPL-2 GPL-2 GPL-2+ GPL-3 BSD MIT || ( MPL-1.1 GPL-2 ) linux-fw-redistributable BSD-2 BSD BSD-4 ISC MIT || ( GPL-3 BSD-2 ) GPL-3+ LGPL-2.1 LGPL-2.1+ LGPL-2.1 MIT BSD ISC MIT GPL-3+ GPL-2 LGPL-2.1+ MIT LGPL-2.1 CC0-1.0 MIT ISC GPL-2 ) +PDEPEND=>=virtual/dist-kernel-6.18.12 +RDEPEND=sys-apps/kmod[lzma] virtual/libelf +REQUIRED_USE=arm? ( savedconfig ) hppa? ( savedconfig ) sparc? ( savedconfig ) secureboot? ( modules-sign ) +RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) +SLOT=6.18.12 +SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-6.18.tar.xz https://cdn.kernel.org/pub/linux/kernel/v6.x/patch-6.18.12.xz https://github.com/projg2/gentoo-kernel-config/archive/g18.tar.gz -> gentoo-kernel-config-g18.tar.gz verify-sig? ( https://cdn.kernel.org/pub/linux/kernel/v6.x/sha256sums.asc -> linux-6.x-sha256sums-20260217.asc ) amd64? ( https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/6.18.12-gentoo/kernel-x86_64-fedora.config -> kernel-x86_64-fedora.config.6.18.12-gentoo ) arm64? ( https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/6.18.12-gentoo/kernel-aarch64-fedora.config -> kernel-aarch64-fedora.config.6.18.12-gentoo ) ppc64? ( https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/6.18.12-gentoo/kernel-ppc64le-fedora.config -> kernel-ppc64le-fedora.config.6.18.12-gentoo ) riscv? ( https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/6.18.12-gentoo/kernel-riscv64-fedora.config -> kernel-riscv64-fedora.config.6.18.12-gentoo ) x86? ( https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/6.18.12-gentoo/kernel-i686-fedora.config -> kernel-i686-fedora.config.6.18.12-gentoo ) +_eclasses_=branding 7bcece3faa73dd0fc3e597013510d53a dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd kernel-build 3698f4fb23a8ac6f87fe072c9c5f62f4 kernel-install cb345a05455b82a973741f204fabf3b4 linux-info efd923656513c879204fec6638eadee5 mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multiprocessing 1e32df7deee68372153dca65f4a7c21f portability a39e3d646f76cb45d06b44cc1144b8d4 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 savedconfig b9131abe556ad2ea96c01b06d658d363 secureboot d98b63e30a9468e1f1c06d3d7c66e760 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da verify-sig ece4c893b6bd62eacbc4d25958e857f8 +_md5_=7c70cf7cad39baf2cdffd001db3f161c diff --git a/metadata/md5-cache/sys-kernel/vanilla-kernel-6.19.2 b/metadata/md5-cache/sys-kernel/vanilla-kernel-6.19.2 new file mode 100644 index 000000000000..20fd7c8aa3ba --- /dev/null +++ b/metadata/md5-cache/sys-kernel/vanilla-kernel-6.19.2 @@ -0,0 +1,18 @@ +BDEPEND=debug? ( dev-util/pahole ) verify-sig? ( >=sec-keys/openpgp-keys-kernel-20250702 ) secureboot? ( app-crypt/sbsigntools dev-libs/openssl ) test? ( dev-tcltk/expect sys-apps/coreutils sys-kernel/dracut sys-fs/e2fsprogs amd64? ( app-emulation/qemu[qemu_softmmu_targets_x86_64] ) arm64? ( app-emulation/qemu[qemu_softmmu_targets_aarch64] ) ppc? ( app-emulation/qemu[qemu_softmmu_targets_ppc] ) ppc64? ( app-emulation/qemu[qemu_softmmu_targets_ppc64] ) sparc? ( app-emulation/qemu[qemu_softmmu_targets_sparc,qemu_softmmu_targets_sparc64] ) x86? ( app-emulation/qemu[qemu_softmmu_targets_i386] ) ) || ( dev-lang/python:3.14 dev-lang/python:3.13 dev-lang/python:3.12 dev-lang/python:3.11 ) app-alternatives/cpio app-alternatives/bc app-arch/tar dev-lang/perl sys-devel/bison sys-devel/flex virtual/libelf arm? ( sys-apps/dtc ) arm64? ( sys-apps/dtc ) modules-sign? ( dev-libs/openssl ) riscv? ( sys-apps/dtc ) generic-uki? ( net-misc/networkmanager[iwd] sys-libs/pam dev-libs/libp11 sys-libs/libcap net-fs/nfs-utils net-fs/cifs-utils sys-libs/readline net-libs/libmnl sys-apps/kmod app-arch/zstd media-libs/libmtp sys-fs/dosfstools sys-apps/coreutils dev-libs/libevent dev-libs/libpcre2 dev-libs/glib app-crypt/argon2 app-arch/bzip2 sys-libs/libxcrypt sys-block/nbd dev-libs/hidapi sys-apps/dbus dev-libs/libffi x11-libs/libdrm dev-libs/nss sys-boot/plymouth[drm,systemd(+),udev] sys-auth/polkit dev-libs/userspace-rcu app-arch/lz4 sys-apps/gawk app-crypt/gnupg[smartcard,tpm(-)] sys-apps/acl sys-apps/hwdata app-crypt/tpm2-tss net-misc/curl dev-libs/libaio app-alternatives/awk sys-libs/libapparmor dev-libs/lzo sys-fs/e2fsprogs sys-fs/mdadm app-crypt/tpm2-tools sys-libs/libseccomp sys-fs/lvm2[lvm] sys-apps/keyutils dev-libs/json-c sys-apps/util-linux x86? ( sys-firmware/intel-microcode ) dev-libs/libgpg-error dev-db/sqlite >=sys-apps/systemd-257[boot(-),cryptsetup,pkcs11,policykit,tpm,ukify(-)] virtual/zlib amd64? ( sys-firmware/intel-microcode ) sys-libs/ncurses sys-fs/cryptsetup sys-apps/rng-tools dev-libs/libassuan sys-fs/xfsprogs net-wireless/iwd net-libs/nghttp2 sys-apps/attr net-dns/libidn2 sys-kernel/dracut sys-apps/nvme-cli net-libs/libndp sys-process/procps dev-libs/npth net-nds/openldap sys-apps/baselayout sys-fs/dmraid net-libs/libtirpc sys-fs/multipath-tools sys-fs/btrfs-progs sys-apps/sed net-fs/samba dev-libs/oniguruma sys-libs/glibc dev-libs/icu app-arch/xz-utils app-alternatives/gzip dev-libs/cyrus-sasl sys-libs/libnvme app-misc/jq dev-libs/expat sys-apps/iproute2 media-libs/libv4l dev-libs/libusb net-wireless/bluez sys-devel/gcc dev-libs/libunistring app-arch/gzip dev-libs/openssl sys-apps/shadow app-misc/ddcutil sys-kernel/linux-firmware[redistributable,-unknown-license] sys-apps/less app-shells/bash dev-libs/opensc sys-apps/fwupd dev-libs/libgcrypt sys-apps/pcsc-lite dev-libs/libtasn1 app-crypt/p11-kit sys-libs/libcap-ng app-alternatives/sh net-dns/c-ares sys-apps/kbd ) verify-sig? ( || ( app-alternatives/gpg app-crypt/gnupg[-alternatives(-)] ) >=app-portage/gemato-20 ) +DEFINED_PHASES=compile config configure install postinst postrm preinst prepare pretend setup test unpack +DESCRIPTION=Linux kernel built from vanilla upstream sources +EAPI=8 +HOMEPAGE=https://wiki.gentoo.org/wiki/Project:Distribution_Kernel https://www.kernel.org/ +IDEPEND=generic-uki? ( app-crypt/sbsigntools >=sys-kernel/installkernel-14[-dracut(-),-ugrd(-),-ukify(-)] ) !generic-uki? ( !initramfs? ( >=sys-kernel/installkernel-14 ) initramfs? ( || ( >=sys-kernel/installkernel-14[dracut(-)] >=sys-kernel/installkernel-14[ugrd(-)] ) ) ) +INHERIT=kernel-build toolchain-funcs verify-sig +IUSE=debug hardened savedconfig secureboot +initramfs test generic-uki modules-compress +strip modules-sign verify-sig +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86 +LICENSE=GPL-2 generic-uki? ( GPL-2+ LGPL-2.1+ || ( BSD GPL-2 ) LGPL-2.1 || ( GPL-2 BSD ) GPL-2 GPL-3 GPL-3+ LGPL-2.1 LGPL-2 || ( BSD GPL-2 ) LGPL-2.1 GPL-3 GPL-3+ BSD BSD LGPL-2.1+ || ( Apache-2.0 CC0-1.0 ) BZIP2 LGPL-2.1+ public-domain BSD BSD-2 GPL-2 || ( BSD GPL-3 HIDAPI ) || ( AFL-2.1 GPL-2 ) MIT MIT || ( MPL-2.0 GPL-2 LGPL-2.1 ) GPL-2+ LGPL-2 LGPL-2.1 BSD-2 GPL-2 GPL-3+ GPL-3+ LGPL-2.1 GPL-2+ BSD-2 BSD curl ISC LGPL-2 CC0-1.0 GPL-2 LGPL-2.1 GPL-2+ GPL-2 BSD GPL-2 BSD LGPL-2.1 GPL-2 GPL-2 LGPL-2.1 MIT GPL-2 GPL-3 LGPL-2.1 BSD-4 MIT public-domain x86? ( intel-ucode ) GPL-2 LGPL-2.1 public-domain GPL-2 LGPL-2.1 MIT public-domain ZLIB amd64? ( intel-ucode ) MIT GPL-2+ GPL-2 GPL-3 LGPL-2.1 LGPL-2.1 GPL-2 MIT LGPL-2.1 || ( GPL-2+ LGPL-3+ ) GPL-3+ unicode GPL-2 GPL-2 GPL-2+ LGPL-2.1+ GPL-2+ LGPL-2+ LGPL-2.1+ LGPL-2.1+ OPENLDAP GPL-2 GPL-2 GPL-2 BSD BSD-2 BSD-4 LGPL-2.1+ GPL-2 GPL-2 GPL-3+ GPL-3 BSD-2 LGPL-2.1+ BSD HPND ISC inner-net rc PCRE BSD public-domain LGPL-2.1+ GPL-2+ CC0-1.0 BSD-with-attribution LGPL-2.1+ MIT CC-BY-3.0 MIT GPL-2 LGPL-2.1+ LGPL-2.1 GPL-2+ LGPL-2.1+ GPL-3+ LGPL-3+ || ( GPL-3+ libgcc libstdc++ gcc-runtime-library-exception-3.1 ) FDL-1.3+ || ( LGPL-3+ GPL-2+ ) || ( FDL-1.2 GPL-3+ ) GPL-3+ Apache-2.0 BSD GPL-2 GPL-2 GPL-2 GPL-2+ GPL-3 BSD MIT || ( MPL-1.1 GPL-2 ) linux-fw-redistributable BSD-2 BSD BSD-4 ISC MIT || ( GPL-3 BSD-2 ) GPL-3+ LGPL-2.1 LGPL-2.1+ LGPL-2.1 MIT BSD ISC MIT GPL-3+ GPL-2 LGPL-2.1+ MIT LGPL-2.1 CC0-1.0 MIT ISC GPL-2 ) +PDEPEND=>=virtual/dist-kernel-6.19.2 +RDEPEND=sys-apps/kmod[lzma] virtual/libelf +REQUIRED_USE=arm? ( savedconfig ) hppa? ( savedconfig ) sparc? ( savedconfig ) secureboot? ( modules-sign ) +RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) +SLOT=6.19.2 +SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-6.19.tar.xz https://cdn.kernel.org/pub/linux/kernel/v6.x/patch-6.19.2.xz https://github.com/projg2/gentoo-kernel-config/archive/g18.tar.gz -> gentoo-kernel-config-g18.tar.gz verify-sig? ( https://cdn.kernel.org/pub/linux/kernel/v6.x/sha256sums.asc -> linux-6.x-sha256sums-20260217.asc ) amd64? ( https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/6.19.2-gentoo/kernel-x86_64-fedora.config -> kernel-x86_64-fedora.config.6.19.2-gentoo ) arm64? ( https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/6.19.2-gentoo/kernel-aarch64-fedora.config -> kernel-aarch64-fedora.config.6.19.2-gentoo ) ppc64? ( https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/6.19.2-gentoo/kernel-ppc64le-fedora.config -> kernel-ppc64le-fedora.config.6.19.2-gentoo ) riscv? ( https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/6.19.2-gentoo/kernel-riscv64-fedora.config -> kernel-riscv64-fedora.config.6.19.2-gentoo ) x86? ( https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/6.19.2-gentoo/kernel-i686-fedora.config -> kernel-i686-fedora.config.6.19.2-gentoo ) +_eclasses_=branding 7bcece3faa73dd0fc3e597013510d53a dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd kernel-build 3698f4fb23a8ac6f87fe072c9c5f62f4 kernel-install cb345a05455b82a973741f204fabf3b4 linux-info efd923656513c879204fec6638eadee5 mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multiprocessing 1e32df7deee68372153dca65f4a7c21f portability a39e3d646f76cb45d06b44cc1144b8d4 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 savedconfig b9131abe556ad2ea96c01b06d658d363 secureboot d98b63e30a9468e1f1c06d3d7c66e760 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da verify-sig ece4c893b6bd62eacbc4d25958e857f8 +_md5_=d3b25b36a41bda7eb57e2ff3572501e1 diff --git a/metadata/md5-cache/sys-kernel/vanilla-kernel-6.6.126 b/metadata/md5-cache/sys-kernel/vanilla-kernel-6.6.126 new file mode 100644 index 000000000000..bcf901c244c1 --- /dev/null +++ b/metadata/md5-cache/sys-kernel/vanilla-kernel-6.6.126 @@ -0,0 +1,18 @@ +BDEPEND=debug? ( dev-util/pahole ) verify-sig? ( >=sec-keys/openpgp-keys-kernel-20250702 ) secureboot? ( app-crypt/sbsigntools dev-libs/openssl ) test? ( dev-tcltk/expect sys-apps/coreutils sys-kernel/dracut sys-fs/e2fsprogs amd64? ( app-emulation/qemu[qemu_softmmu_targets_x86_64] ) arm64? ( app-emulation/qemu[qemu_softmmu_targets_aarch64] ) ppc? ( app-emulation/qemu[qemu_softmmu_targets_ppc] ) ppc64? ( app-emulation/qemu[qemu_softmmu_targets_ppc64] ) sparc? ( app-emulation/qemu[qemu_softmmu_targets_sparc,qemu_softmmu_targets_sparc64] ) x86? ( app-emulation/qemu[qemu_softmmu_targets_i386] ) ) || ( dev-lang/python:3.14 dev-lang/python:3.13 dev-lang/python:3.12 dev-lang/python:3.11 ) app-alternatives/cpio app-alternatives/bc app-arch/tar dev-lang/perl sys-devel/bison sys-devel/flex virtual/libelf arm? ( sys-apps/dtc ) arm64? ( sys-apps/dtc ) modules-sign? ( dev-libs/openssl ) riscv? ( sys-apps/dtc ) generic-uki? ( net-misc/networkmanager[iwd] sys-libs/pam dev-libs/libp11 sys-libs/libcap net-fs/nfs-utils net-fs/cifs-utils sys-libs/readline net-libs/libmnl sys-apps/kmod app-arch/zstd media-libs/libmtp sys-fs/dosfstools sys-apps/coreutils dev-libs/libevent dev-libs/libpcre2 dev-libs/glib app-crypt/argon2 app-arch/bzip2 sys-libs/libxcrypt sys-block/nbd dev-libs/hidapi sys-apps/dbus dev-libs/libffi x11-libs/libdrm dev-libs/nss sys-boot/plymouth[drm,systemd(+),udev] sys-auth/polkit dev-libs/userspace-rcu app-arch/lz4 sys-apps/gawk app-crypt/gnupg[smartcard,tpm(-)] sys-apps/acl sys-apps/hwdata app-crypt/tpm2-tss net-misc/curl dev-libs/libaio app-alternatives/awk sys-libs/libapparmor dev-libs/lzo sys-fs/e2fsprogs sys-fs/mdadm app-crypt/tpm2-tools sys-libs/libseccomp sys-fs/lvm2[lvm] sys-apps/keyutils dev-libs/json-c sys-apps/util-linux x86? ( sys-firmware/intel-microcode ) dev-libs/libgpg-error dev-db/sqlite >=sys-apps/systemd-257[boot(-),cryptsetup,pkcs11,policykit,tpm,ukify(-)] virtual/zlib amd64? ( sys-firmware/intel-microcode ) sys-libs/ncurses sys-fs/cryptsetup sys-apps/rng-tools dev-libs/libassuan sys-fs/xfsprogs net-wireless/iwd net-libs/nghttp2 sys-apps/attr net-dns/libidn2 sys-kernel/dracut sys-apps/nvme-cli net-libs/libndp sys-process/procps dev-libs/npth net-nds/openldap sys-apps/baselayout sys-fs/dmraid net-libs/libtirpc sys-fs/multipath-tools sys-fs/btrfs-progs sys-apps/sed net-fs/samba dev-libs/oniguruma sys-libs/glibc dev-libs/icu app-arch/xz-utils app-alternatives/gzip dev-libs/cyrus-sasl sys-libs/libnvme app-misc/jq dev-libs/expat sys-apps/iproute2 media-libs/libv4l dev-libs/libusb net-wireless/bluez sys-devel/gcc dev-libs/libunistring app-arch/gzip dev-libs/openssl sys-apps/shadow app-misc/ddcutil sys-kernel/linux-firmware[redistributable,-unknown-license] sys-apps/less app-shells/bash dev-libs/opensc sys-apps/fwupd dev-libs/libgcrypt sys-apps/pcsc-lite dev-libs/libtasn1 app-crypt/p11-kit sys-libs/libcap-ng app-alternatives/sh net-dns/c-ares sys-apps/kbd ) verify-sig? ( || ( app-alternatives/gpg app-crypt/gnupg[-alternatives(-)] ) >=app-portage/gemato-20 ) +DEFINED_PHASES=compile config configure install postinst postrm preinst prepare pretend setup test unpack +DESCRIPTION=Linux kernel built from vanilla upstream sources +EAPI=8 +HOMEPAGE=https://wiki.gentoo.org/wiki/Project:Distribution_Kernel https://www.kernel.org/ +IDEPEND=generic-uki? ( app-crypt/sbsigntools >=sys-kernel/installkernel-14[-dracut(-),-ugrd(-),-ukify(-)] ) !generic-uki? ( !initramfs? ( >=sys-kernel/installkernel-14 ) initramfs? ( || ( >=sys-kernel/installkernel-14[dracut(-)] >=sys-kernel/installkernel-14[ugrd(-)] ) ) ) +INHERIT=kernel-build toolchain-funcs verify-sig +IUSE=debug hardened savedconfig secureboot +initramfs test generic-uki modules-compress +strip modules-sign verify-sig +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86 +LICENSE=GPL-2 generic-uki? ( GPL-2+ LGPL-2.1+ || ( BSD GPL-2 ) LGPL-2.1 || ( GPL-2 BSD ) GPL-2 GPL-3 GPL-3+ LGPL-2.1 LGPL-2 || ( BSD GPL-2 ) LGPL-2.1 GPL-3 GPL-3+ BSD BSD LGPL-2.1+ || ( Apache-2.0 CC0-1.0 ) BZIP2 LGPL-2.1+ public-domain BSD BSD-2 GPL-2 || ( BSD GPL-3 HIDAPI ) || ( AFL-2.1 GPL-2 ) MIT MIT || ( MPL-2.0 GPL-2 LGPL-2.1 ) GPL-2+ LGPL-2 LGPL-2.1 BSD-2 GPL-2 GPL-3+ GPL-3+ LGPL-2.1 GPL-2+ BSD-2 BSD curl ISC LGPL-2 CC0-1.0 GPL-2 LGPL-2.1 GPL-2+ GPL-2 BSD GPL-2 BSD LGPL-2.1 GPL-2 GPL-2 LGPL-2.1 MIT GPL-2 GPL-3 LGPL-2.1 BSD-4 MIT public-domain x86? ( intel-ucode ) GPL-2 LGPL-2.1 public-domain GPL-2 LGPL-2.1 MIT public-domain ZLIB amd64? ( intel-ucode ) MIT GPL-2+ GPL-2 GPL-3 LGPL-2.1 LGPL-2.1 GPL-2 MIT LGPL-2.1 || ( GPL-2+ LGPL-3+ ) GPL-3+ unicode GPL-2 GPL-2 GPL-2+ LGPL-2.1+ GPL-2+ LGPL-2+ LGPL-2.1+ LGPL-2.1+ OPENLDAP GPL-2 GPL-2 GPL-2 BSD BSD-2 BSD-4 LGPL-2.1+ GPL-2 GPL-2 GPL-3+ GPL-3 BSD-2 LGPL-2.1+ BSD HPND ISC inner-net rc PCRE BSD public-domain LGPL-2.1+ GPL-2+ CC0-1.0 BSD-with-attribution LGPL-2.1+ MIT CC-BY-3.0 MIT GPL-2 LGPL-2.1+ LGPL-2.1 GPL-2+ LGPL-2.1+ GPL-3+ LGPL-3+ || ( GPL-3+ libgcc libstdc++ gcc-runtime-library-exception-3.1 ) FDL-1.3+ || ( LGPL-3+ GPL-2+ ) || ( FDL-1.2 GPL-3+ ) GPL-3+ Apache-2.0 BSD GPL-2 GPL-2 GPL-2 GPL-2+ GPL-3 BSD MIT || ( MPL-1.1 GPL-2 ) linux-fw-redistributable BSD-2 BSD BSD-4 ISC MIT || ( GPL-3 BSD-2 ) GPL-3+ LGPL-2.1 LGPL-2.1+ LGPL-2.1 MIT BSD ISC MIT GPL-3+ GPL-2 LGPL-2.1+ MIT LGPL-2.1 CC0-1.0 MIT ISC GPL-2 ) +PDEPEND=>=virtual/dist-kernel-6.6.126 +RDEPEND=sys-apps/kmod[lzma] virtual/libelf +REQUIRED_USE=arm? ( savedconfig ) hppa? ( savedconfig ) riscv? ( savedconfig ) sparc? ( savedconfig ) secureboot? ( modules-sign ) +RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) +SLOT=6.6.126 +SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-6.6.tar.xz https://cdn.kernel.org/pub/linux/kernel/v6.x/patch-6.6.126.xz https://github.com/projg2/gentoo-kernel-config/archive/g17.tar.gz -> gentoo-kernel-config-g17.tar.gz verify-sig? ( https://cdn.kernel.org/pub/linux/kernel/v6.x/sha256sums.asc -> linux-6.x-sha256sums-20260217.asc ) amd64? ( https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/6.6.12-gentoo/kernel-x86_64-fedora.config -> kernel-x86_64-fedora.config.6.6.12-gentoo ) arm64? ( https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/6.6.12-gentoo/kernel-aarch64-fedora.config -> kernel-aarch64-fedora.config.6.6.12-gentoo ) ppc64? ( https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/6.6.12-gentoo/kernel-ppc64le-fedora.config -> kernel-ppc64le-fedora.config.6.6.12-gentoo ) x86? ( https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/6.6.12-gentoo/kernel-i686-fedora.config -> kernel-i686-fedora.config.6.6.12-gentoo ) +_eclasses_=branding 7bcece3faa73dd0fc3e597013510d53a dist-kernel-utils 6b5bab4e35c9a263b3f102ee53d96c65 eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd kernel-build 3698f4fb23a8ac6f87fe072c9c5f62f4 kernel-install cb345a05455b82a973741f204fabf3b4 linux-info efd923656513c879204fec6638eadee5 mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multiprocessing 1e32df7deee68372153dca65f4a7c21f portability a39e3d646f76cb45d06b44cc1144b8d4 python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 savedconfig b9131abe556ad2ea96c01b06d658d363 secureboot d98b63e30a9468e1f1c06d3d7c66e760 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da verify-sig ece4c893b6bd62eacbc4d25958e857f8 +_md5_=3050f428929e0783f5d11303559405bf diff --git a/metadata/md5-cache/sys-kernel/vanilla-sources-6.12.73 b/metadata/md5-cache/sys-kernel/vanilla-sources-6.12.73 new file mode 100644 index 000000000000..3d6af0826e61 --- /dev/null +++ b/metadata/md5-cache/sys-kernel/vanilla-sources-6.12.73 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile install postinst postrm preinst prepare setup test unpack +DESCRIPTION=Full sources for the Linux kernel +EAPI=8 +HOMEPAGE=https://www.kernel.org +INHERIT=kernel-2 +IUSE=symlink build +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 +LICENSE=GPL-2 +RDEPEND=!build? ( app-alternatives/cpio dev-lang/perl app-alternatives/bc dev-build/make sys-devel/bison sys-devel/flex >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) +RESTRICT=binchecks strip +SLOT=6.12.73 +SRC_URI=https://www.kernel.org/pub/linux/kernel/v6.x/patch-6.12.73.xz https://www.kernel.org/pub/linux/kernel/v6.x/linux-6.12.tar.xz +_eclasses_=crossdev f04338ff78f213a4a55c5c37b3c6563e estack c61c368a76fdf3a82fdf8dbaebea3804 kernel-2 0e01377cce73a7a06321d0ef97388d31 multiprocessing 1e32df7deee68372153dca65f4a7c21f optfeature 538bce96e5589935b57e178e8635f301 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_md5_=583c3b74422b5be7631b2e72707a19ee diff --git a/metadata/md5-cache/sys-kernel/vanilla-sources-6.18.12 b/metadata/md5-cache/sys-kernel/vanilla-sources-6.18.12 new file mode 100644 index 000000000000..d27245fec36c --- /dev/null +++ b/metadata/md5-cache/sys-kernel/vanilla-sources-6.18.12 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile install postinst postrm preinst prepare setup test unpack +DESCRIPTION=Full sources for the Linux kernel +EAPI=8 +HOMEPAGE=https://www.kernel.org +INHERIT=kernel-2 +IUSE=symlink build +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 +LICENSE=GPL-2 +RDEPEND=!build? ( app-alternatives/cpio dev-lang/perl app-alternatives/bc dev-build/make sys-devel/bison sys-devel/flex >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) +RESTRICT=binchecks strip +SLOT=6.18.12 +SRC_URI=https://www.kernel.org/pub/linux/kernel/v6.x/patch-6.18.12.xz https://www.kernel.org/pub/linux/kernel/v6.x/linux-6.18.tar.xz +_eclasses_=crossdev f04338ff78f213a4a55c5c37b3c6563e estack c61c368a76fdf3a82fdf8dbaebea3804 kernel-2 0e01377cce73a7a06321d0ef97388d31 multiprocessing 1e32df7deee68372153dca65f4a7c21f optfeature 538bce96e5589935b57e178e8635f301 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_md5_=b5683160fc909084a618a0b928ee2e53 diff --git a/metadata/md5-cache/sys-kernel/vanilla-sources-6.19.2 b/metadata/md5-cache/sys-kernel/vanilla-sources-6.19.2 new file mode 100644 index 000000000000..24bc771799d1 --- /dev/null +++ b/metadata/md5-cache/sys-kernel/vanilla-sources-6.19.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile install postinst postrm preinst prepare setup test unpack +DESCRIPTION=Full sources for the Linux kernel +EAPI=8 +HOMEPAGE=https://www.kernel.org +INHERIT=kernel-2 +IUSE=symlink build +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 +LICENSE=GPL-2 +RDEPEND=!build? ( app-alternatives/cpio dev-lang/perl app-alternatives/bc dev-build/make sys-devel/bison sys-devel/flex >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) +RESTRICT=binchecks strip +SLOT=6.19.2 +SRC_URI=https://www.kernel.org/pub/linux/kernel/v6.x/patch-6.19.2.xz https://www.kernel.org/pub/linux/kernel/v6.x/linux-6.19.tar.xz +_eclasses_=crossdev f04338ff78f213a4a55c5c37b3c6563e estack c61c368a76fdf3a82fdf8dbaebea3804 kernel-2 0e01377cce73a7a06321d0ef97388d31 multiprocessing 1e32df7deee68372153dca65f4a7c21f optfeature 538bce96e5589935b57e178e8635f301 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_md5_=b5683160fc909084a618a0b928ee2e53 diff --git a/metadata/md5-cache/sys-kernel/vanilla-sources-6.6.126 b/metadata/md5-cache/sys-kernel/vanilla-sources-6.6.126 new file mode 100644 index 000000000000..692e9a4d618a --- /dev/null +++ b/metadata/md5-cache/sys-kernel/vanilla-sources-6.6.126 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile install postinst postrm preinst prepare setup test unpack +DESCRIPTION=Full sources for the Linux kernel +EAPI=8 +HOMEPAGE=https://www.kernel.org +INHERIT=kernel-2 +IUSE=symlink build +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 +LICENSE=GPL-2 +RDEPEND=!build? ( app-alternatives/cpio dev-lang/perl app-alternatives/bc dev-build/make sys-devel/bison sys-devel/flex >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) +RESTRICT=binchecks strip +SLOT=6.6.126 +SRC_URI=https://www.kernel.org/pub/linux/kernel/v6.x/patch-6.6.126.xz https://www.kernel.org/pub/linux/kernel/v6.x/linux-6.6.tar.xz +_eclasses_=crossdev f04338ff78f213a4a55c5c37b3c6563e estack c61c368a76fdf3a82fdf8dbaebea3804 kernel-2 0e01377cce73a7a06321d0ef97388d31 multiprocessing 1e32df7deee68372153dca65f4a7c21f optfeature 538bce96e5589935b57e178e8635f301 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da +_md5_=583c3b74422b5be7631b2e72707a19ee diff --git a/metadata/md5-cache/sys-libs/zlib-1.3.2 b/metadata/md5-cache/sys-libs/zlib-1.3.2 new file mode 100644 index 000000000000..522d1d28fd09 --- /dev/null +++ b/metadata/md5-cache/sys-libs/zlib-1.3.2 @@ -0,0 +1,15 @@ +BDEPEND=minizip? ( sys-devel/gnuconfig >=app-portage/elt-patches-20250306 || ( >=dev-build/automake-1.18:1.18 >=dev-build/automake-1.17-r1:1.17 ) || ( >=dev-build/autoconf-2.72-r1:2.72 ) >=dev-build/libtool-2.4.7-r3 ) verify-sig? ( sec-keys/openpgp-keys-madler ) verify-sig? ( || ( app-alternatives/gpg app-crypt/gnupg[-alternatives(-)] ) >=app-portage/gemato-20 ) +DEFINED_PHASES=compile configure install prepare test unpack +DEPEND=!sys-libs/zlib-ng[compat] +DESCRIPTION=Standard (de)compression library +EAPI=8 +HOMEPAGE=https://zlib.net/ +INHERIT=autotools dot-a edo multilib-minimal flag-o-matic verify-sig +IUSE=minizip static-libs abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 verify-sig +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~arm64-macos ~x64-macos ~x64-solaris +LICENSE=ZLIB +RDEPEND=!sys-libs/zlib-ng[compat] +SLOT=0/1 +SRC_URI=https://zlib.net/zlib-1.3.2.tar.xz https://zlib.net/fossils/zlib-1.3.2.tar.xz https://zlib.net/current/beta/zlib-1.3.2.tar.xz https://github.com/madler/zlib/releases/download/v1.3.2/zlib-1.3.2.tar.xz verify-sig? ( https://zlib.net/zlib-1.3.2.tar.xz.asc https://github.com/madler/zlib/releases/download/v1.3.2/zlib-1.3.2.tar.xz.asc ) +_eclasses_=autotools 955b29ccd82c1df4755e5f37748d2fa6 dot-a e5200fe17cfd2ed6fa66edd80201763a eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd edo a5e294016aa84979fcb2459749eb80b2 flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multibuild 83db098a835f71feb71761f72a694aa2 multilib 404b65bd5212cff83b3935c685419d08 multilib-build d7802b3638ffc661375c0021cdd19efd multilib-minimal e9f54d75b074edc47d36994bbc1e2123 out-of-source-utils 8e5093bd27b7f541a1913271f25d633a toolchain-funcs 7e440a20ac11dece04e3334622e6e5da verify-sig ece4c893b6bd62eacbc4d25958e857f8 +_md5_=fc3c6f014cd6ffb36cc837a854c0925d diff --git a/metadata/md5-cache/virtual/dist-kernel-6.12.73 b/metadata/md5-cache/virtual/dist-kernel-6.12.73 new file mode 100644 index 000000000000..2dd28e316344 --- /dev/null +++ b/metadata/md5-cache/virtual/dist-kernel-6.12.73 @@ -0,0 +1,7 @@ +DEFINED_PHASES=- +DESCRIPTION=Virtual to depend on any Distribution Kernel +EAPI=8 +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86 +RDEPEND=|| ( ~sys-kernel/gentoo-kernel-6.12.73 ~sys-kernel/gentoo-kernel-bin-6.12.73 ~sys-kernel/vanilla-kernel-6.12.73 ) +SLOT=0/6.12.73 +_md5_=d4c45aa1e79c7a871e8aed1ce6bd3fbd diff --git a/metadata/md5-cache/virtual/dist-kernel-6.18.12 b/metadata/md5-cache/virtual/dist-kernel-6.18.12 new file mode 100644 index 000000000000..14ad7a5cce2d --- /dev/null +++ b/metadata/md5-cache/virtual/dist-kernel-6.18.12 @@ -0,0 +1,7 @@ +DEFINED_PHASES=- +DESCRIPTION=Virtual to depend on any Distribution Kernel +EAPI=8 +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86 +RDEPEND=|| ( ~sys-kernel/gentoo-kernel-6.18.12 ~sys-kernel/gentoo-kernel-bin-6.18.12 ~sys-kernel/vanilla-kernel-6.18.12 ) +SLOT=0/6.18.12 +_md5_=d4c45aa1e79c7a871e8aed1ce6bd3fbd diff --git a/metadata/md5-cache/virtual/dist-kernel-6.18.8 b/metadata/md5-cache/virtual/dist-kernel-6.18.8 index dcead24111de..e14efedaa3be 100644 --- a/metadata/md5-cache/virtual/dist-kernel-6.18.8 +++ b/metadata/md5-cache/virtual/dist-kernel-6.18.8 @@ -1,7 +1,7 @@ DEFINED_PHASES=- DESCRIPTION=Virtual to depend on any Distribution Kernel EAPI=8 -KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~sparc x86 +KEYWORDS=amd64 ~arm arm64 ~hppa ~loong ~ppc ppc64 ~riscv ~sparc x86 RDEPEND=|| ( ~sys-kernel/gentoo-kernel-6.18.8 ~sys-kernel/gentoo-kernel-bin-6.18.8 ~sys-kernel/vanilla-kernel-6.18.8 ) SLOT=0/6.18.8 -_md5_=959b3e66c0065602e56b1e945587172f +_md5_=79a75f7d60ed9421159c81d3eed03b01 diff --git a/metadata/md5-cache/virtual/dist-kernel-6.19.2 b/metadata/md5-cache/virtual/dist-kernel-6.19.2 new file mode 100644 index 000000000000..34c5effe60df --- /dev/null +++ b/metadata/md5-cache/virtual/dist-kernel-6.19.2 @@ -0,0 +1,7 @@ +DEFINED_PHASES=- +DESCRIPTION=Virtual to depend on any Distribution Kernel +EAPI=8 +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86 +RDEPEND=|| ( ~sys-kernel/gentoo-kernel-6.19.2 ~sys-kernel/gentoo-kernel-bin-6.19.2 ~sys-kernel/vanilla-kernel-6.19.2 ) +SLOT=0/6.19.2 +_md5_=d4c45aa1e79c7a871e8aed1ce6bd3fbd diff --git a/metadata/md5-cache/virtual/dist-kernel-6.6.126 b/metadata/md5-cache/virtual/dist-kernel-6.6.126 new file mode 100644 index 000000000000..fc83c45c5a37 --- /dev/null +++ b/metadata/md5-cache/virtual/dist-kernel-6.6.126 @@ -0,0 +1,7 @@ +DEFINED_PHASES=- +DESCRIPTION=Virtual to depend on any Distribution Kernel +EAPI=8 +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86 +RDEPEND=|| ( ~sys-kernel/gentoo-kernel-6.6.126 ~sys-kernel/gentoo-kernel-bin-6.6.126 ~sys-kernel/vanilla-kernel-6.6.126 ) +SLOT=0/6.6.126 +_md5_=d4c45aa1e79c7a871e8aed1ce6bd3fbd diff --git a/metadata/md5-cache/www-apps/element-1.12.8 b/metadata/md5-cache/www-apps/element-1.12.10 index eaeb9b6f7c61..0f8625444d26 100644 --- a/metadata/md5-cache/www-apps/element-1.12.8 +++ b/metadata/md5-cache/www-apps/element-1.12.10 @@ -8,7 +8,7 @@ IUSE=vhosts KEYWORDS=~amd64 ~riscv ~x86 LICENSE=Apache-2.0 RDEPEND=app-admin/webapp-config -SLOT=1.12.8 -SRC_URI=https://github.com/element-hq/element-web/releases/download/v1.12.8/element-v1.12.8.tar.gz +SLOT=1.12.10 +SRC_URI=https://github.com/element-hq/element-web/releases/download/v1.12.10/element-v1.12.10.tar.gz _eclasses_=webapp 5fa840db95fc7348dfd53b8526ed05f5 _md5_=90c0060e68c1f9ff80f3f7cb105caaff diff --git a/metadata/md5-cache/www-apps/element-1.12.7 b/metadata/md5-cache/www-apps/element-1.12.7 deleted file mode 100644 index 2ca2f40e4f67..000000000000 --- a/metadata/md5-cache/www-apps/element-1.12.7 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=install postinst prerm setup -DEPEND=|| ( virtual/httpd-basic virtual/httpd-cgi virtual/httpd-fastcgi ) app-admin/webapp-config -DESCRIPTION=A glossy Matrix collaboration client for the web -EAPI=8 -HOMEPAGE=https://element.io/ -INHERIT=webapp -IUSE=vhosts -KEYWORDS=~amd64 ~riscv ~x86 -LICENSE=Apache-2.0 -RDEPEND=app-admin/webapp-config -SLOT=1.12.7 -SRC_URI=https://github.com/element-hq/element-web/releases/download/v1.12.7/element-v1.12.7.tar.gz -_eclasses_=webapp 5fa840db95fc7348dfd53b8526ed05f5 -_md5_=8de48590609b9ff3d1f1862678065e69 diff --git a/metadata/md5-cache/www-apps/nextcloud-31.0.14 b/metadata/md5-cache/www-apps/nextcloud-31.0.14 new file mode 100644 index 000000000000..c661553dfd08 --- /dev/null +++ b/metadata/md5-cache/www-apps/nextcloud-31.0.14 @@ -0,0 +1,15 @@ +DEFINED_PHASES=install postinst prerm setup +DEPEND=app-admin/webapp-config +DESCRIPTION=Personal cloud that runs on your own server +EAPI=8 +HOMEPAGE=https://nextcloud.com/ +INHERIT=webapp +IUSE=+curl +imagemagick mysql postgres +sqlite vhosts +KEYWORDS=~amd64 ~arm ~arm64 ~x86 +LICENSE=AGPL-3 +RDEPEND=dev-lang/php[curl?,filter,gd,hash(+),intl,json(+),mysql?,pdo,posix,postgres?,session,simplexml,sqlite?,truetype,xmlreader,xmlwriter,zip] imagemagick? ( dev-php/pecl-imagick ) virtual/httpd-php app-admin/webapp-config +REQUIRED_USE=|| ( mysql postgres sqlite ) +SLOT=31.0.14 +SRC_URI=https://download.nextcloud.com/server/releases/nextcloud-31.0.14.tar.bz2 +_eclasses_=webapp 5fa840db95fc7348dfd53b8526ed05f5 +_md5_=728f1e1d375cb10d649e49ccfcf78904 diff --git a/metadata/md5-cache/www-apps/nextcloud-32.0.6 b/metadata/md5-cache/www-apps/nextcloud-32.0.6 new file mode 100644 index 000000000000..7ec61f50a47d --- /dev/null +++ b/metadata/md5-cache/www-apps/nextcloud-32.0.6 @@ -0,0 +1,15 @@ +DEFINED_PHASES=install postinst prerm setup +DEPEND=app-admin/webapp-config +DESCRIPTION=Personal cloud that runs on your own server +EAPI=8 +HOMEPAGE=https://nextcloud.com/ +INHERIT=webapp +IUSE=+curl +imagemagick mysql postgres +sqlite vhosts +KEYWORDS=~amd64 ~arm ~arm64 ~x86 +LICENSE=AGPL-3 +RDEPEND=dev-lang/php[curl?,filter,gd,hash(+),intl,json(+),mysql?,pdo,posix,postgres?,session,simplexml,sqlite?,truetype,xmlreader,xmlwriter,zip] imagemagick? ( dev-php/pecl-imagick ) virtual/httpd-php app-admin/webapp-config +REQUIRED_USE=|| ( mysql postgres sqlite ) +SLOT=32.0.6 +SRC_URI=https://download.nextcloud.com/server/releases/nextcloud-32.0.6.tar.bz2 +_eclasses_=webapp 5fa840db95fc7348dfd53b8526ed05f5 +_md5_=728f1e1d375cb10d649e49ccfcf78904 diff --git a/metadata/md5-cache/www-client/firefox-140.7.1 b/metadata/md5-cache/www-client/firefox-140.7.1 new file mode 100644 index 000000000000..b395568f5d18 --- /dev/null +++ b/metadata/md5-cache/www-client/firefox-140.7.1 @@ -0,0 +1,18 @@ +BDEPEND=|| ( dev-lang/python:3.14[ncurses,sqlite,ssl] dev-lang/python:3.13[ncurses,sqlite,ssl] dev-lang/python:3.12[ncurses,sqlite,ssl] dev-lang/python:3.11[ncurses,sqlite,ssl] dev-lang/python:3.10[ncurses,sqlite,ssl] ) llvm_slot_19? ( llvm-core/clang:19 llvm-core/llvm:19 clang? ( llvm-core/lld:19 pgo? ( llvm-runtimes/compiler-rt-sanitizers:19[profile] ) ) wasm-sandbox? ( llvm-core/lld:19 ) ) llvm_slot_20? ( llvm-core/clang:20 llvm-core/llvm:20 clang? ( llvm-core/lld:20 pgo? ( llvm-runtimes/compiler-rt-sanitizers:20[profile] ) ) wasm-sandbox? ( llvm-core/lld:20 ) ) llvm_slot_21? ( llvm-core/clang:21 llvm-core/llvm:21 clang? ( llvm-core/lld:21 pgo? ( llvm-runtimes/compiler-rt-sanitizers:21[profile] ) ) wasm-sandbox? ( llvm-core/lld:21 ) ) app-alternatives/awk app-arch/unzip app-arch/zip >=dev-util/cbindgen-0.27.0 net-libs/nodejs virtual/pkgconfig amd64? ( >=dev-lang/nasm-2.14 ) x86? ( >=dev-lang/nasm-2.14 ) pgo? ( X? ( sys-devel/gettext x11-base/xorg-server[xvfb] x11-apps/xhost ) !X? ( gui-wm/tinywl x11-misc/xkeyboard-config ) ) llvm_slot_19? ( || ( dev-lang/rust-bin:1.86.0[llvm_slot_19] dev-lang/rust:1.86.0[llvm_slot_19] dev-lang/rust-bin:1.85.1[llvm_slot_19] dev-lang/rust:1.85.1[llvm_slot_19] dev-lang/rust-bin:1.85.0[llvm_slot_19] dev-lang/rust:1.85.0[llvm_slot_19] dev-lang/rust-bin:1.84.1[llvm_slot_19] dev-lang/rust:1.84.1[llvm_slot_19] dev-lang/rust-bin:1.84.0[llvm_slot_19] dev-lang/rust:1.84.0[llvm_slot_19] dev-lang/rust-bin:1.83.0[llvm_slot_19] dev-lang/rust:1.83.0[llvm_slot_19] dev-lang/rust-bin:1.82.0[llvm_slot_19] dev-lang/rust:1.82.0[llvm_slot_19] ) ) llvm_slot_20? ( || ( dev-lang/rust-bin:1.90.0[llvm_slot_20] dev-lang/rust:1.90.0[llvm_slot_20] dev-lang/rust-bin:1.89.0[llvm_slot_20] dev-lang/rust:1.89.0[llvm_slot_20] dev-lang/rust-bin:1.88.0[llvm_slot_20] dev-lang/rust:1.88.0[llvm_slot_20] dev-lang/rust-bin:1.87.0[llvm_slot_20] dev-lang/rust:1.87.0[llvm_slot_20] ) ) llvm_slot_21? ( || ( dev-lang/rust-bin:1.94.0[llvm_slot_21] dev-lang/rust:1.94.0[llvm_slot_21] dev-lang/rust-bin:1.93.1[llvm_slot_21] dev-lang/rust:1.93.1[llvm_slot_21] dev-lang/rust-bin:1.93.0[llvm_slot_21] dev-lang/rust:1.93.0[llvm_slot_21] dev-lang/rust-bin:1.92.0[llvm_slot_21] dev-lang/rust:1.92.0[llvm_slot_21] dev-lang/rust-bin:1.91.0[llvm_slot_21] dev-lang/rust:1.91.0[llvm_slot_21] ) ) +DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend setup test unpack +DEPEND=!www-client/firefox:0 selinux? ( sec-policy/selinux-mozilla ) >=app-accessibility/at-spi2-core-2.46.0:2 dev-libs/glib:2 dev-libs/libffi:= >=dev-libs/nss-3.112.2 >=dev-libs/nspr-4.36 media-libs/alsa-lib media-libs/fontconfig media-libs/freetype media-libs/mesa media-video/ffmpeg virtual/zlib:= virtual/freedesktop-icon-theme x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/libdrm x11-libs/pango x11-libs/pixman dbus? ( sys-apps/dbus ) jack? ( virtual/jack ) pulseaudio? ( || ( media-libs/libpulse >=media-sound/apulse-0.1.12-r4[sdk] ) ) libproxy? ( net-libs/libproxy ) selinux? ( sec-policy/selinux-mozilla ) sndio? ( >=media-sound/sndio-1.8.0-r1 ) system-av1? ( >=media-libs/dav1d-1.0.0:= >=media-libs/libaom-3.10.0:= ) system-harfbuzz? ( >=media-libs/harfbuzz-2.8.1:0= !wasm-sandbox? ( >=media-gfx/graphite2-1.3.13 ) ) system-icu? ( >=dev-libs/icu-76.1:= ) system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1:= ) system-libevent? ( >=dev-libs/libevent-2.1.12:0=[threads(+)] ) system-libvpx? ( >=media-libs/libvpx-1.8.2:0=[postproc] ) system-pipewire? ( >=media-video/pipewire-1.4.7-r2:= ) system-png? ( >=media-libs/libpng-1.6.45:0=[apng] ) system-webp? ( >=media-libs/libwebp-1.1.0:0= ) wayland? ( >=media-libs/libepoxy-1.5.10-r1 x11-libs/gtk+:3[wayland] ) wifi? ( kernel_linux? ( || ( net-misc/networkmanager net-misc/connman[networkmanager] ) sys-apps/dbus ) ) X? ( virtual/opengl x11-libs/cairo[X] x11-libs/gtk+:3[X] x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrandr x11-libs/libxcb:= ) X? ( x11-base/xorg-proto x11-libs/libICE x11-libs/libSM ) +DESCRIPTION=Firefox Web Browser +EAPI=8 +HOMEPAGE=https://www.firefox.com https://www.firefox.com/enterprise/ +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=check-reqs desktop flag-o-matic gnome2-utils linux-info llvm-r1 multiprocessing optfeature pax-utils python-any-r1 readme.gentoo-r1 rust toolchain-funcs virtualx xdg +IUSE=+clang dbus debug eme-free hardened hwaccel jack libproxy pgo pulseaudio selinux sndio +system-av1 +system-harfbuzz +system-icu +system-jpeg +system-libevent +system-libvpx system-pipewire system-png +system-webp test wayland wifi +X +gmp-autoupdate gnome-shell +jumbo-build openh264 +telemetry wasm-sandbox 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 l10n_ach l10n_an l10n_az l10n_bn l10n_bs l10n_ca-valencia l10n_eo l10n_es-CL l10n_es-MX l10n_fa l10n_ff l10n_fur l10n_gn l10n_gu l10n_hi l10n_hy l10n_ia l10n_km l10n_kn l10n_lij l10n_mk l10n_mr l10n_my l10n_ne l10n_oc l10n_sc l10n_sco l10n_si l10n_skr l10n_son l10n_szl l10n_ta l10n_te l10n_tl l10n_trs l10n_ur l10n_xh +llvm_slot_21 llvm_slot_19 llvm_slot_20 +KEYWORDS=amd64 arm64 ~loong ~ppc64 ~riscv ~x86 +LICENSE=MPL-2.0 GPL-2 LGPL-2.1 +RDEPEND=!www-client/firefox:0 selinux? ( sec-policy/selinux-mozilla ) >=app-accessibility/at-spi2-core-2.46.0:2 dev-libs/glib:2 dev-libs/libffi:= >=dev-libs/nss-3.112.2 >=dev-libs/nspr-4.36 media-libs/alsa-lib media-libs/fontconfig media-libs/freetype media-libs/mesa media-video/ffmpeg virtual/zlib:= virtual/freedesktop-icon-theme x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/libdrm x11-libs/pango x11-libs/pixman dbus? ( sys-apps/dbus ) jack? ( virtual/jack ) pulseaudio? ( || ( media-libs/libpulse >=media-sound/apulse-0.1.12-r4[sdk] ) ) libproxy? ( net-libs/libproxy ) selinux? ( sec-policy/selinux-mozilla ) sndio? ( >=media-sound/sndio-1.8.0-r1 ) system-av1? ( >=media-libs/dav1d-1.0.0:= >=media-libs/libaom-3.10.0:= ) system-harfbuzz? ( >=media-libs/harfbuzz-2.8.1:0= !wasm-sandbox? ( >=media-gfx/graphite2-1.3.13 ) ) system-icu? ( >=dev-libs/icu-76.1:= ) system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1:= ) system-libevent? ( >=dev-libs/libevent-2.1.12:0=[threads(+)] ) system-libvpx? ( >=media-libs/libvpx-1.8.2:0=[postproc] ) system-pipewire? ( >=media-video/pipewire-1.4.7-r2:= ) system-png? ( >=media-libs/libpng-1.6.45:0=[apng] ) system-webp? ( >=media-libs/libwebp-1.1.0:0= ) wayland? ( >=media-libs/libepoxy-1.5.10-r1 x11-libs/gtk+:3[wayland] ) wifi? ( kernel_linux? ( || ( net-misc/networkmanager net-misc/connman[networkmanager] ) sys-apps/dbus ) ) X? ( virtual/opengl x11-libs/cairo[X] x11-libs/gtk+:3[X] x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrandr x11-libs/libxcb:= ) hwaccel? ( media-video/libva-utils sys-apps/pciutils ) jack? ( virtual/jack ) openh264? ( media-libs/openh264:*[plugin] ) !www-client/firefox:rapid +REQUIRED_USE=|| ( X wayland ) debug? ( !system-av1 ) pgo? ( jumbo-build ) wayland? ( dbus ) wifi? ( dbus ) ^^ ( llvm_slot_19 llvm_slot_20 llvm_slot_21 ) +RESTRICT=!test? ( test ) +SLOT=esr +SRC_URI=https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/source/firefox-140.7.1esr.source.tar.xz -> firefox-140.7.1esr.source.tar.xz https://dev.gentoo.org/~juippis/mozilla/patchsets/firefox-140esr-patches-05.tar.xz loong? ( https://dev.gentoo.org/~xen0n/distfiles/www-client/firefox/firefox-139-loong-patches-02.tar.xz ) wasm-sandbox? ( amd64? ( https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-30/wasi-sdk-30.0-x86_64-linux.tar.gz ) arm64? ( https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-30/wasi-sdk-30.0-arm64-linux.tar.gz ) ) l10n_af? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/af.xpi -> firefox-140.7.1esr-af.xpi ) l10n_ar? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/ar.xpi -> firefox-140.7.1esr-ar.xpi ) l10n_ast? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/ast.xpi -> firefox-140.7.1esr-ast.xpi ) l10n_be? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/be.xpi -> firefox-140.7.1esr-be.xpi ) l10n_bg? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/bg.xpi -> firefox-140.7.1esr-bg.xpi ) l10n_br? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/br.xpi -> firefox-140.7.1esr-br.xpi ) l10n_ca? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/ca.xpi -> firefox-140.7.1esr-ca.xpi ) l10n_cak? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/cak.xpi -> firefox-140.7.1esr-cak.xpi ) l10n_cs? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/cs.xpi -> firefox-140.7.1esr-cs.xpi ) l10n_cy? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/cy.xpi -> firefox-140.7.1esr-cy.xpi ) l10n_da? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/da.xpi -> firefox-140.7.1esr-da.xpi ) l10n_de? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/de.xpi -> firefox-140.7.1esr-de.xpi ) l10n_dsb? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/dsb.xpi -> firefox-140.7.1esr-dsb.xpi ) l10n_el? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/el.xpi -> firefox-140.7.1esr-el.xpi ) l10n_en-CA? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/en-CA.xpi -> firefox-140.7.1esr-en-CA.xpi ) l10n_en-GB? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/en-GB.xpi -> firefox-140.7.1esr-en-GB.xpi ) l10n_es-AR? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/es-AR.xpi -> firefox-140.7.1esr-es-AR.xpi ) l10n_es-ES? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/es-ES.xpi -> firefox-140.7.1esr-es-ES.xpi ) l10n_et? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/et.xpi -> firefox-140.7.1esr-et.xpi ) l10n_eu? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/eu.xpi -> firefox-140.7.1esr-eu.xpi ) l10n_fi? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/fi.xpi -> firefox-140.7.1esr-fi.xpi ) l10n_fr? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/fr.xpi -> firefox-140.7.1esr-fr.xpi ) l10n_fy? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/fy-NL.xpi -> firefox-140.7.1esr-fy-NL.xpi ) l10n_ga? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/ga-IE.xpi -> firefox-140.7.1esr-ga-IE.xpi ) l10n_gd? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/gd.xpi -> firefox-140.7.1esr-gd.xpi ) l10n_gl? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/gl.xpi -> firefox-140.7.1esr-gl.xpi ) l10n_he? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/he.xpi -> firefox-140.7.1esr-he.xpi ) l10n_hr? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/hr.xpi -> firefox-140.7.1esr-hr.xpi ) l10n_hsb? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/hsb.xpi -> firefox-140.7.1esr-hsb.xpi ) l10n_hu? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/hu.xpi -> firefox-140.7.1esr-hu.xpi ) l10n_id? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/id.xpi -> firefox-140.7.1esr-id.xpi ) l10n_is? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/is.xpi -> firefox-140.7.1esr-is.xpi ) l10n_it? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/it.xpi -> firefox-140.7.1esr-it.xpi ) l10n_ja? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/ja.xpi -> firefox-140.7.1esr-ja.xpi ) l10n_ka? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/ka.xpi -> firefox-140.7.1esr-ka.xpi ) l10n_kab? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/kab.xpi -> firefox-140.7.1esr-kab.xpi ) l10n_kk? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/kk.xpi -> firefox-140.7.1esr-kk.xpi ) l10n_ko? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/ko.xpi -> firefox-140.7.1esr-ko.xpi ) l10n_lt? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/lt.xpi -> firefox-140.7.1esr-lt.xpi ) l10n_lv? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/lv.xpi -> firefox-140.7.1esr-lv.xpi ) l10n_ms? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/ms.xpi -> firefox-140.7.1esr-ms.xpi ) l10n_nb? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/nb-NO.xpi -> firefox-140.7.1esr-nb-NO.xpi ) l10n_nl? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/nl.xpi -> firefox-140.7.1esr-nl.xpi ) l10n_nn? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/nn-NO.xpi -> firefox-140.7.1esr-nn-NO.xpi ) l10n_pa? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/pa-IN.xpi -> firefox-140.7.1esr-pa-IN.xpi ) l10n_pl? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/pl.xpi -> firefox-140.7.1esr-pl.xpi ) l10n_pt-BR? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/pt-BR.xpi -> firefox-140.7.1esr-pt-BR.xpi ) l10n_pt-PT? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/pt-PT.xpi -> firefox-140.7.1esr-pt-PT.xpi ) l10n_rm? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/rm.xpi -> firefox-140.7.1esr-rm.xpi ) l10n_ro? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/ro.xpi -> firefox-140.7.1esr-ro.xpi ) l10n_ru? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/ru.xpi -> firefox-140.7.1esr-ru.xpi ) l10n_sk? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/sk.xpi -> firefox-140.7.1esr-sk.xpi ) l10n_sl? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/sl.xpi -> firefox-140.7.1esr-sl.xpi ) l10n_sq? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/sq.xpi -> firefox-140.7.1esr-sq.xpi ) l10n_sr? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/sr.xpi -> firefox-140.7.1esr-sr.xpi ) l10n_sv? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/sv-SE.xpi -> firefox-140.7.1esr-sv-SE.xpi ) l10n_th? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/th.xpi -> firefox-140.7.1esr-th.xpi ) l10n_tr? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/tr.xpi -> firefox-140.7.1esr-tr.xpi ) l10n_uk? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/uk.xpi -> firefox-140.7.1esr-uk.xpi ) l10n_uz? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/uz.xpi -> firefox-140.7.1esr-uz.xpi ) l10n_vi? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/vi.xpi -> firefox-140.7.1esr-vi.xpi ) l10n_zh-CN? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/zh-CN.xpi -> firefox-140.7.1esr-zh-CN.xpi ) l10n_zh-TW? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/zh-TW.xpi -> firefox-140.7.1esr-zh-TW.xpi ) l10n_ach? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/ach.xpi -> firefox-140.7.1esr-ach.xpi ) l10n_an? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/an.xpi -> firefox-140.7.1esr-an.xpi ) l10n_az? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/az.xpi -> firefox-140.7.1esr-az.xpi ) l10n_bn? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/bn.xpi -> firefox-140.7.1esr-bn.xpi ) l10n_bs? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/bs.xpi -> firefox-140.7.1esr-bs.xpi ) l10n_ca-valencia? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/ca-valencia.xpi -> firefox-140.7.1esr-ca-valencia.xpi ) l10n_eo? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/eo.xpi -> firefox-140.7.1esr-eo.xpi ) l10n_es-CL? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/es-CL.xpi -> firefox-140.7.1esr-es-CL.xpi ) l10n_es-MX? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/es-MX.xpi -> firefox-140.7.1esr-es-MX.xpi ) l10n_fa? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/fa.xpi -> firefox-140.7.1esr-fa.xpi ) l10n_ff? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/ff.xpi -> firefox-140.7.1esr-ff.xpi ) l10n_fur? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/fur.xpi -> firefox-140.7.1esr-fur.xpi ) l10n_gn? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/gn.xpi -> firefox-140.7.1esr-gn.xpi ) l10n_gu? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/gu-IN.xpi -> firefox-140.7.1esr-gu-IN.xpi ) l10n_hi? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/hi-IN.xpi -> firefox-140.7.1esr-hi-IN.xpi ) l10n_hy? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/hy-AM.xpi -> firefox-140.7.1esr-hy-AM.xpi ) l10n_ia? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/ia.xpi -> firefox-140.7.1esr-ia.xpi ) l10n_km? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/km.xpi -> firefox-140.7.1esr-km.xpi ) l10n_kn? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/kn.xpi -> firefox-140.7.1esr-kn.xpi ) l10n_lij? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/lij.xpi -> firefox-140.7.1esr-lij.xpi ) l10n_mk? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/mk.xpi -> firefox-140.7.1esr-mk.xpi ) l10n_mr? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/mr.xpi -> firefox-140.7.1esr-mr.xpi ) l10n_my? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/my.xpi -> firefox-140.7.1esr-my.xpi ) l10n_ne? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/ne-NP.xpi -> firefox-140.7.1esr-ne-NP.xpi ) l10n_oc? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/oc.xpi -> firefox-140.7.1esr-oc.xpi ) l10n_sc? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/sc.xpi -> firefox-140.7.1esr-sc.xpi ) l10n_sco? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/sco.xpi -> firefox-140.7.1esr-sco.xpi ) l10n_si? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/si.xpi -> firefox-140.7.1esr-si.xpi ) l10n_skr? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/skr.xpi -> firefox-140.7.1esr-skr.xpi ) l10n_son? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/son.xpi -> firefox-140.7.1esr-son.xpi ) l10n_szl? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/szl.xpi -> firefox-140.7.1esr-szl.xpi ) l10n_ta? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/ta.xpi -> firefox-140.7.1esr-ta.xpi ) l10n_te? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/te.xpi -> firefox-140.7.1esr-te.xpi ) l10n_tl? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/tl.xpi -> firefox-140.7.1esr-tl.xpi ) l10n_trs? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/trs.xpi -> firefox-140.7.1esr-trs.xpi ) l10n_ur? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/ur.xpi -> firefox-140.7.1esr-ur.xpi ) l10n_xh? ( https://archive.mozilla.org/pub/firefox/releases/140.7.1esr/linux-x86_64/xpi/xh.xpi -> firefox-140.7.1esr-xh.xpi ) +_eclasses_=check-reqs 12ab9d3fc16bfe1f87c6fb652324b57c desktop 26d57169ca094c04be416993844ec8bc flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnome2-utils a8cf148ec7f5ae0b1f1d33ae5f7f9e88 linux-info efd923656513c879204fec6638eadee5 llvm-r1 59c52dab9ddf3ca54e79003177507e97 llvm-utils e7edb4086e31c8537574b263d899f826 multiprocessing 1e32df7deee68372153dca65f4a7c21f optfeature 538bce96e5589935b57e178e8635f301 pax-utils 5555f2e75744739fe100ee62c22d28fe python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 readme.gentoo-r1 b045f3acf546393ab6b3170781875358 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_md5_=728b88616d36f38fbb246ec39849e498 diff --git a/metadata/md5-cache/www-client/firefox-147.0.4 b/metadata/md5-cache/www-client/firefox-147.0.4 new file mode 100644 index 000000000000..17c425a7964d --- /dev/null +++ b/metadata/md5-cache/www-client/firefox-147.0.4 @@ -0,0 +1,18 @@ +BDEPEND=|| ( dev-lang/python:3.14[ncurses,sqlite,ssl] dev-lang/python:3.13[ncurses,sqlite,ssl] dev-lang/python:3.12[ncurses,sqlite,ssl] dev-lang/python:3.11[ncurses,sqlite,ssl] dev-lang/python:3.10[ncurses,sqlite,ssl] ) llvm_slot_19? ( llvm-core/clang:19 llvm-core/llvm:19 clang? ( llvm-core/lld:19 pgo? ( llvm-runtimes/compiler-rt-sanitizers:19[profile] ) ) wasm-sandbox? ( llvm-core/lld:19 ) ) llvm_slot_20? ( llvm-core/clang:20 llvm-core/llvm:20 clang? ( llvm-core/lld:20 pgo? ( llvm-runtimes/compiler-rt-sanitizers:20[profile] ) ) wasm-sandbox? ( llvm-core/lld:20 ) ) llvm_slot_21? ( llvm-core/clang:21 llvm-core/llvm:21 clang? ( llvm-core/lld:21 pgo? ( llvm-runtimes/compiler-rt-sanitizers:21[profile] ) ) wasm-sandbox? ( llvm-core/lld:21 ) ) app-alternatives/awk app-arch/unzip app-arch/zip >=dev-util/cbindgen-0.29.1 net-libs/nodejs virtual/pkgconfig amd64? ( >=dev-lang/nasm-2.14 ) x86? ( >=dev-lang/nasm-2.14 ) pgo? ( X? ( sys-devel/gettext x11-base/xorg-server[xvfb] x11-apps/xhost ) !X? ( gui-wm/tinywl x11-misc/xkeyboard-config ) ) llvm_slot_19? ( || ( dev-lang/rust-bin:1.86.0[llvm_slot_19] dev-lang/rust:1.86.0[llvm_slot_19] dev-lang/rust-bin:1.85.1[llvm_slot_19] dev-lang/rust:1.85.1[llvm_slot_19] dev-lang/rust-bin:1.85.0[llvm_slot_19] dev-lang/rust:1.85.0[llvm_slot_19] dev-lang/rust-bin:1.84.1[llvm_slot_19] dev-lang/rust:1.84.1[llvm_slot_19] dev-lang/rust-bin:1.84.0[llvm_slot_19] dev-lang/rust:1.84.0[llvm_slot_19] dev-lang/rust-bin:1.83.0[llvm_slot_19] dev-lang/rust:1.83.0[llvm_slot_19] dev-lang/rust-bin:1.82.0[llvm_slot_19] dev-lang/rust:1.82.0[llvm_slot_19] ) ) llvm_slot_20? ( || ( dev-lang/rust-bin:1.90.0[llvm_slot_20] dev-lang/rust:1.90.0[llvm_slot_20] dev-lang/rust-bin:1.89.0[llvm_slot_20] dev-lang/rust:1.89.0[llvm_slot_20] dev-lang/rust-bin:1.88.0[llvm_slot_20] dev-lang/rust:1.88.0[llvm_slot_20] dev-lang/rust-bin:1.87.0[llvm_slot_20] dev-lang/rust:1.87.0[llvm_slot_20] ) ) llvm_slot_21? ( || ( dev-lang/rust-bin:1.94.0[llvm_slot_21] dev-lang/rust:1.94.0[llvm_slot_21] dev-lang/rust-bin:1.93.1[llvm_slot_21] dev-lang/rust:1.93.1[llvm_slot_21] dev-lang/rust-bin:1.93.0[llvm_slot_21] dev-lang/rust:1.93.0[llvm_slot_21] dev-lang/rust-bin:1.92.0[llvm_slot_21] dev-lang/rust:1.92.0[llvm_slot_21] dev-lang/rust-bin:1.91.0[llvm_slot_21] dev-lang/rust:1.91.0[llvm_slot_21] ) ) +DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend setup test unpack +DEPEND=!www-client/firefox:0 selinux? ( sec-policy/selinux-mozilla ) >=app-accessibility/at-spi2-core-2.46.0:2 dev-libs/glib:2 dev-libs/libffi:= >=dev-libs/nss-3.119 >=dev-libs/nspr-4.38 media-libs/alsa-lib media-libs/fontconfig media-libs/freetype media-libs/mesa media-video/ffmpeg virtual/zlib:= virtual/freedesktop-icon-theme x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/libdrm x11-libs/pango x11-libs/pixman dbus? ( sys-apps/dbus ) jack? ( virtual/jack ) pulseaudio? ( || ( media-libs/libpulse >=media-sound/apulse-0.1.12-r4[sdk] ) ) libproxy? ( net-libs/libproxy ) selinux? ( sec-policy/selinux-mozilla ) sndio? ( >=media-sound/sndio-1.8.0-r1 ) system-av1? ( >=media-libs/dav1d-1.0.0:= >=media-libs/libaom-3.10.0:= ) system-harfbuzz? ( >=media-libs/harfbuzz-2.8.1:0= !wasm-sandbox? ( >=media-gfx/graphite2-1.3.13 ) ) system-icu? ( >=dev-libs/icu-78.1:= ) system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1:= ) system-libevent? ( >=dev-libs/libevent-2.1.12:0=[threads(+)] ) system-libvpx? ( >=media-libs/libvpx-1.8.2:0=[postproc] ) system-pipewire? ( >=media-video/pipewire-1.4.7-r2:= ) system-png? ( >=media-libs/libpng-1.6.45:0=[apng] ) system-webp? ( >=media-libs/libwebp-1.1.0:0= ) valgrind? ( dev-debug/valgrind ) wayland? ( >=media-libs/libepoxy-1.5.10-r1 x11-libs/gtk+:3[wayland] ) wifi? ( kernel_linux? ( || ( net-misc/networkmanager net-misc/connman[networkmanager] ) sys-apps/dbus ) ) X? ( virtual/opengl x11-libs/cairo[X] x11-libs/gtk+:3[X] x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrandr x11-libs/libxcb:= ) X? ( x11-base/xorg-proto x11-libs/libICE x11-libs/libSM ) +DESCRIPTION=Firefox Web Browser +EAPI=8 +HOMEPAGE=https://www.firefox.com +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=check-reqs desktop flag-o-matic gnome2-utils linux-info llvm-r1 multiprocessing optfeature pax-utils python-any-r1 readme.gentoo-r1 rust toolchain-funcs virtualx xdg +IUSE=+clang dbus debug eme-free hardened hwaccel jack libproxy pgo pulseaudio selinux sndio +system-av1 +system-harfbuzz +system-icu +system-jpeg +system-libevent +system-libvpx system-pipewire system-png +system-webp test valgrind wayland wifi +X +gmp-autoupdate gnome-shell jpegxl +jumbo-build openh264 +telemetry wasm-sandbox 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 l10n_ach l10n_an l10n_az l10n_bn l10n_bs l10n_ca-valencia l10n_eo l10n_es-CL l10n_es-MX l10n_fa l10n_ff l10n_fur l10n_gn l10n_gu l10n_hi l10n_hy l10n_ia l10n_km l10n_kn l10n_lij l10n_mk l10n_mr l10n_my l10n_ne l10n_oc l10n_sc l10n_sco l10n_si l10n_skr l10n_son l10n_szl l10n_ta l10n_te l10n_tl l10n_trs l10n_ur l10n_xh +llvm_slot_21 llvm_slot_19 llvm_slot_20 +KEYWORDS=~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86 +LICENSE=MPL-2.0 GPL-2 LGPL-2.1 +RDEPEND=!www-client/firefox:0 selinux? ( sec-policy/selinux-mozilla ) >=app-accessibility/at-spi2-core-2.46.0:2 dev-libs/glib:2 dev-libs/libffi:= >=dev-libs/nss-3.119 >=dev-libs/nspr-4.38 media-libs/alsa-lib media-libs/fontconfig media-libs/freetype media-libs/mesa media-video/ffmpeg virtual/zlib:= virtual/freedesktop-icon-theme x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/libdrm x11-libs/pango x11-libs/pixman dbus? ( sys-apps/dbus ) jack? ( virtual/jack ) pulseaudio? ( || ( media-libs/libpulse >=media-sound/apulse-0.1.12-r4[sdk] ) ) libproxy? ( net-libs/libproxy ) selinux? ( sec-policy/selinux-mozilla ) sndio? ( >=media-sound/sndio-1.8.0-r1 ) system-av1? ( >=media-libs/dav1d-1.0.0:= >=media-libs/libaom-3.10.0:= ) system-harfbuzz? ( >=media-libs/harfbuzz-2.8.1:0= !wasm-sandbox? ( >=media-gfx/graphite2-1.3.13 ) ) system-icu? ( >=dev-libs/icu-78.1:= ) system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1:= ) system-libevent? ( >=dev-libs/libevent-2.1.12:0=[threads(+)] ) system-libvpx? ( >=media-libs/libvpx-1.8.2:0=[postproc] ) system-pipewire? ( >=media-video/pipewire-1.4.7-r2:= ) system-png? ( >=media-libs/libpng-1.6.45:0=[apng] ) system-webp? ( >=media-libs/libwebp-1.1.0:0= ) valgrind? ( dev-debug/valgrind ) wayland? ( >=media-libs/libepoxy-1.5.10-r1 x11-libs/gtk+:3[wayland] ) wifi? ( kernel_linux? ( || ( net-misc/networkmanager net-misc/connman[networkmanager] ) sys-apps/dbus ) ) X? ( virtual/opengl x11-libs/cairo[X] x11-libs/gtk+:3[X] x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrandr x11-libs/libxcb:= ) hwaccel? ( media-video/libva-utils sys-apps/pciutils ) jack? ( virtual/jack ) openh264? ( media-libs/openh264:*[plugin] ) !www-client/firefox:esr +REQUIRED_USE=|| ( X wayland ) debug? ( !system-av1 ) pgo? ( jumbo-build ) wayland? ( dbus ) wifi? ( dbus ) ^^ ( llvm_slot_19 llvm_slot_20 llvm_slot_21 ) +RESTRICT=!test? ( test ) +SLOT=rapid +SRC_URI=https://archive.mozilla.org/pub/firefox/releases/147.0.4/source/firefox-147.0.4.source.tar.xz -> firefox-147.0.4.source.tar.xz https://dev.gentoo.org/~juippis/mozilla/patchsets/firefox-147-patches-02.tar.xz wasm-sandbox? ( amd64? ( https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-30/wasi-sdk-30.0-x86_64-linux.tar.gz ) arm64? ( https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-30/wasi-sdk-30.0-arm64-linux.tar.gz ) ) l10n_af? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/af.xpi -> firefox-147.0.4-af.xpi ) l10n_ar? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/ar.xpi -> firefox-147.0.4-ar.xpi ) l10n_ast? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/ast.xpi -> firefox-147.0.4-ast.xpi ) l10n_be? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/be.xpi -> firefox-147.0.4-be.xpi ) l10n_bg? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/bg.xpi -> firefox-147.0.4-bg.xpi ) l10n_br? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/br.xpi -> firefox-147.0.4-br.xpi ) l10n_ca? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/ca.xpi -> firefox-147.0.4-ca.xpi ) l10n_cak? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/cak.xpi -> firefox-147.0.4-cak.xpi ) l10n_cs? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/cs.xpi -> firefox-147.0.4-cs.xpi ) l10n_cy? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/cy.xpi -> firefox-147.0.4-cy.xpi ) l10n_da? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/da.xpi -> firefox-147.0.4-da.xpi ) l10n_de? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/de.xpi -> firefox-147.0.4-de.xpi ) l10n_dsb? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/dsb.xpi -> firefox-147.0.4-dsb.xpi ) l10n_el? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/el.xpi -> firefox-147.0.4-el.xpi ) l10n_en-CA? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/en-CA.xpi -> firefox-147.0.4-en-CA.xpi ) l10n_en-GB? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/en-GB.xpi -> firefox-147.0.4-en-GB.xpi ) l10n_es-AR? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/es-AR.xpi -> firefox-147.0.4-es-AR.xpi ) l10n_es-ES? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/es-ES.xpi -> firefox-147.0.4-es-ES.xpi ) l10n_et? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/et.xpi -> firefox-147.0.4-et.xpi ) l10n_eu? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/eu.xpi -> firefox-147.0.4-eu.xpi ) l10n_fi? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/fi.xpi -> firefox-147.0.4-fi.xpi ) l10n_fr? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/fr.xpi -> firefox-147.0.4-fr.xpi ) l10n_fy? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/fy-NL.xpi -> firefox-147.0.4-fy-NL.xpi ) l10n_ga? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/ga-IE.xpi -> firefox-147.0.4-ga-IE.xpi ) l10n_gd? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/gd.xpi -> firefox-147.0.4-gd.xpi ) l10n_gl? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/gl.xpi -> firefox-147.0.4-gl.xpi ) l10n_he? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/he.xpi -> firefox-147.0.4-he.xpi ) l10n_hr? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/hr.xpi -> firefox-147.0.4-hr.xpi ) l10n_hsb? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/hsb.xpi -> firefox-147.0.4-hsb.xpi ) l10n_hu? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/hu.xpi -> firefox-147.0.4-hu.xpi ) l10n_id? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/id.xpi -> firefox-147.0.4-id.xpi ) l10n_is? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/is.xpi -> firefox-147.0.4-is.xpi ) l10n_it? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/it.xpi -> firefox-147.0.4-it.xpi ) l10n_ja? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/ja.xpi -> firefox-147.0.4-ja.xpi ) l10n_ka? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/ka.xpi -> firefox-147.0.4-ka.xpi ) l10n_kab? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/kab.xpi -> firefox-147.0.4-kab.xpi ) l10n_kk? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/kk.xpi -> firefox-147.0.4-kk.xpi ) l10n_ko? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/ko.xpi -> firefox-147.0.4-ko.xpi ) l10n_lt? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/lt.xpi -> firefox-147.0.4-lt.xpi ) l10n_lv? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/lv.xpi -> firefox-147.0.4-lv.xpi ) l10n_ms? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/ms.xpi -> firefox-147.0.4-ms.xpi ) l10n_nb? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/nb-NO.xpi -> firefox-147.0.4-nb-NO.xpi ) l10n_nl? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/nl.xpi -> firefox-147.0.4-nl.xpi ) l10n_nn? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/nn-NO.xpi -> firefox-147.0.4-nn-NO.xpi ) l10n_pa? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/pa-IN.xpi -> firefox-147.0.4-pa-IN.xpi ) l10n_pl? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/pl.xpi -> firefox-147.0.4-pl.xpi ) l10n_pt-BR? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/pt-BR.xpi -> firefox-147.0.4-pt-BR.xpi ) l10n_pt-PT? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/pt-PT.xpi -> firefox-147.0.4-pt-PT.xpi ) l10n_rm? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/rm.xpi -> firefox-147.0.4-rm.xpi ) l10n_ro? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/ro.xpi -> firefox-147.0.4-ro.xpi ) l10n_ru? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/ru.xpi -> firefox-147.0.4-ru.xpi ) l10n_sk? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/sk.xpi -> firefox-147.0.4-sk.xpi ) l10n_sl? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/sl.xpi -> firefox-147.0.4-sl.xpi ) l10n_sq? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/sq.xpi -> firefox-147.0.4-sq.xpi ) l10n_sr? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/sr.xpi -> firefox-147.0.4-sr.xpi ) l10n_sv? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/sv-SE.xpi -> firefox-147.0.4-sv-SE.xpi ) l10n_th? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/th.xpi -> firefox-147.0.4-th.xpi ) l10n_tr? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/tr.xpi -> firefox-147.0.4-tr.xpi ) l10n_uk? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/uk.xpi -> firefox-147.0.4-uk.xpi ) l10n_uz? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/uz.xpi -> firefox-147.0.4-uz.xpi ) l10n_vi? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/vi.xpi -> firefox-147.0.4-vi.xpi ) l10n_zh-CN? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/zh-CN.xpi -> firefox-147.0.4-zh-CN.xpi ) l10n_zh-TW? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/zh-TW.xpi -> firefox-147.0.4-zh-TW.xpi ) l10n_ach? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/ach.xpi -> firefox-147.0.4-ach.xpi ) l10n_an? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/an.xpi -> firefox-147.0.4-an.xpi ) l10n_az? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/az.xpi -> firefox-147.0.4-az.xpi ) l10n_bn? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/bn.xpi -> firefox-147.0.4-bn.xpi ) l10n_bs? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/bs.xpi -> firefox-147.0.4-bs.xpi ) l10n_ca-valencia? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/ca-valencia.xpi -> firefox-147.0.4-ca-valencia.xpi ) l10n_eo? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/eo.xpi -> firefox-147.0.4-eo.xpi ) l10n_es-CL? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/es-CL.xpi -> firefox-147.0.4-es-CL.xpi ) l10n_es-MX? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/es-MX.xpi -> firefox-147.0.4-es-MX.xpi ) l10n_fa? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/fa.xpi -> firefox-147.0.4-fa.xpi ) l10n_ff? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/ff.xpi -> firefox-147.0.4-ff.xpi ) l10n_fur? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/fur.xpi -> firefox-147.0.4-fur.xpi ) l10n_gn? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/gn.xpi -> firefox-147.0.4-gn.xpi ) l10n_gu? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/gu-IN.xpi -> firefox-147.0.4-gu-IN.xpi ) l10n_hi? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/hi-IN.xpi -> firefox-147.0.4-hi-IN.xpi ) l10n_hy? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/hy-AM.xpi -> firefox-147.0.4-hy-AM.xpi ) l10n_ia? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/ia.xpi -> firefox-147.0.4-ia.xpi ) l10n_km? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/km.xpi -> firefox-147.0.4-km.xpi ) l10n_kn? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/kn.xpi -> firefox-147.0.4-kn.xpi ) l10n_lij? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/lij.xpi -> firefox-147.0.4-lij.xpi ) l10n_mk? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/mk.xpi -> firefox-147.0.4-mk.xpi ) l10n_mr? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/mr.xpi -> firefox-147.0.4-mr.xpi ) l10n_my? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/my.xpi -> firefox-147.0.4-my.xpi ) l10n_ne? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/ne-NP.xpi -> firefox-147.0.4-ne-NP.xpi ) l10n_oc? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/oc.xpi -> firefox-147.0.4-oc.xpi ) l10n_sc? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/sc.xpi -> firefox-147.0.4-sc.xpi ) l10n_sco? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/sco.xpi -> firefox-147.0.4-sco.xpi ) l10n_si? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/si.xpi -> firefox-147.0.4-si.xpi ) l10n_skr? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/skr.xpi -> firefox-147.0.4-skr.xpi ) l10n_son? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/son.xpi -> firefox-147.0.4-son.xpi ) l10n_szl? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/szl.xpi -> firefox-147.0.4-szl.xpi ) l10n_ta? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/ta.xpi -> firefox-147.0.4-ta.xpi ) l10n_te? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/te.xpi -> firefox-147.0.4-te.xpi ) l10n_tl? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/tl.xpi -> firefox-147.0.4-tl.xpi ) l10n_trs? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/trs.xpi -> firefox-147.0.4-trs.xpi ) l10n_ur? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/ur.xpi -> firefox-147.0.4-ur.xpi ) l10n_xh? ( https://archive.mozilla.org/pub/firefox/releases/147.0.4/linux-x86_64/xpi/xh.xpi -> firefox-147.0.4-xh.xpi ) +_eclasses_=check-reqs 12ab9d3fc16bfe1f87c6fb652324b57c desktop 26d57169ca094c04be416993844ec8bc flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 gnome2-utils a8cf148ec7f5ae0b1f1d33ae5f7f9e88 linux-info efd923656513c879204fec6638eadee5 llvm-r1 59c52dab9ddf3ca54e79003177507e97 llvm-utils e7edb4086e31c8537574b263d899f826 multiprocessing 1e32df7deee68372153dca65f4a7c21f optfeature 538bce96e5589935b57e178e8635f301 pax-utils 5555f2e75744739fe100ee62c22d28fe python-any-r1 891415dfe39ad9b41b461f2b86354af0 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 readme.gentoo-r1 b045f3acf546393ab6b3170781875358 rust dd082fc51cbae6f9afa90dd1668d71a9 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da virtualx 9741d451eb64ea8bb9faee90d68a9b68 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_md5_=19db46521017274477dde7a6d067973e diff --git a/metadata/md5-cache/www-client/vivaldi-7.8.3925.62 b/metadata/md5-cache/www-client/vivaldi-7.8.3925.62 index 0bdb9fa8dab8..8ede058eecb6 100644 --- a/metadata/md5-cache/www-client/vivaldi-7.8.3925.62 +++ b/metadata/md5-cache/www-client/vivaldi-7.8.3925.62 @@ -5,11 +5,11 @@ HOMEPAGE=https://vivaldi.com/ IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info INHERIT=chromium-2 desktop linux-info toolchain-funcs unpacker xdg IUSE=ffmpeg-chromium gtk proprietary-codecs qt6 widevine +l10n_af +l10n_am +l10n_ar +l10n_az +l10n_be +l10n_bg +l10n_bn +l10n_ca +l10n_ca-valencia +l10n_cs +l10n_da +l10n_de +l10n_de-CH +l10n_el +l10n_en-GB +l10n_en-US +l10n_eo +l10n_es +l10n_es-419 +l10n_es-PE +l10n_et +l10n_eu +l10n_fa +l10n_fi +l10n_fil +l10n_fr +l10n_fy +l10n_gd +l10n_gl +l10n_gu +l10n_he +l10n_hi +l10n_hr +l10n_hu +l10n_hy +l10n_id +l10n_io +l10n_is +l10n_it +l10n_ja +l10n_jbo +l10n_ka +l10n_kab +l10n_kmr +l10n_kn +l10n_ko +l10n_lt +l10n_lv +l10n_mk +l10n_ml +l10n_mr +l10n_ms +l10n_nb +l10n_nl +l10n_nn +l10n_pa +l10n_pl +l10n_pt-BR +l10n_pt-PT +l10n_ro +l10n_ru +l10n_sc +l10n_sk +l10n_sl +l10n_sq +l10n_sr +l10n_sr-Latn +l10n_sv +l10n_sw +l10n_ta +l10n_te +l10n_th +l10n_tr +l10n_uk +l10n_ur +l10n_vi +l10n_zh-CN +l10n_zh-TW -KEYWORDS=-* ~amd64 ~arm64 +KEYWORDS=-* amd64 ~arm64 LICENSE=Vivaldi RDEPEND=>=app-accessibility/at-spi2-core-2.46.0:2 dev-libs/expat dev-libs/glib:2 dev-libs/nspr dev-libs/nss media-libs/alsa-lib media-libs/mesa[gbm(+)] net-print/cups sys-apps/dbus 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 x11-libs/libXrandr x11-libs/pango gtk? ( gui-libs/gtk:4 x11-libs/gtk+:3 ) proprietary-codecs? ( !ffmpeg-chromium? ( >=media-video/ffmpeg-6.1-r1:0/58.60.60[chromium] ) ffmpeg-chromium? ( media-video/ffmpeg-chromium:144 ) ) qt6? ( dev-qt/qtbase:6[gui,widgets] ) widevine? ( www-plugins/chrome-binary-plugins ) RESTRICT=bindist mirror SLOT=0 SRC_URI=amd64? ( https://downloads.vivaldi.com/stable/vivaldi-stable_7.8.3925.62-1_amd64.deb ) arm64? ( https://downloads.vivaldi.com/stable/vivaldi-stable_7.8.3925.62-1_arm64.deb ) _eclasses_=chromium-2 6be3cf193def84c82ddae5c1f21ddbe5 desktop 26d57169ca094c04be416993844ec8bc linux-info efd923656513c879204fec6638eadee5 multiprocessing 1e32df7deee68372153dca65f4a7c21f toolchain-funcs 7e440a20ac11dece04e3334622e6e5da unpacker 3b4ee72d1e2e0374fd8cd3eddfa00627 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=7ab0ba1f475afd30574c3816b942b691 +_md5_=999c67a2ae651d303bd4f1ad2a1250d6 diff --git a/metadata/md5-cache/www-client/vivaldi-7.8.3925.56 b/metadata/md5-cache/www-client/vivaldi-7.8.3925.66 index 5493b1e0c25e..de039d3cd71c 100644 --- a/metadata/md5-cache/www-client/vivaldi-7.8.3925.56 +++ b/metadata/md5-cache/www-client/vivaldi-7.8.3925.66 @@ -5,11 +5,11 @@ HOMEPAGE=https://vivaldi.com/ IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info INHERIT=chromium-2 desktop linux-info toolchain-funcs unpacker xdg IUSE=ffmpeg-chromium gtk proprietary-codecs qt6 widevine +l10n_af +l10n_am +l10n_ar +l10n_az +l10n_be +l10n_bg +l10n_bn +l10n_ca +l10n_ca-valencia +l10n_cs +l10n_da +l10n_de +l10n_de-CH +l10n_el +l10n_en-GB +l10n_en-US +l10n_eo +l10n_es +l10n_es-419 +l10n_es-PE +l10n_et +l10n_eu +l10n_fa +l10n_fi +l10n_fil +l10n_fr +l10n_fy +l10n_gd +l10n_gl +l10n_gu +l10n_he +l10n_hi +l10n_hr +l10n_hu +l10n_hy +l10n_id +l10n_io +l10n_is +l10n_it +l10n_ja +l10n_jbo +l10n_ka +l10n_kab +l10n_kmr +l10n_kn +l10n_ko +l10n_lt +l10n_lv +l10n_mk +l10n_ml +l10n_mr +l10n_ms +l10n_nb +l10n_nl +l10n_nn +l10n_pa +l10n_pl +l10n_pt-BR +l10n_pt-PT +l10n_ro +l10n_ru +l10n_sc +l10n_sk +l10n_sl +l10n_sq +l10n_sr +l10n_sr-Latn +l10n_sv +l10n_sw +l10n_ta +l10n_te +l10n_th +l10n_tr +l10n_uk +l10n_ur +l10n_vi +l10n_zh-CN +l10n_zh-TW -KEYWORDS=-* amd64 ~arm64 +KEYWORDS=-* ~amd64 ~arm64 LICENSE=Vivaldi RDEPEND=>=app-accessibility/at-spi2-core-2.46.0:2 dev-libs/expat dev-libs/glib:2 dev-libs/nspr dev-libs/nss media-libs/alsa-lib media-libs/mesa[gbm(+)] net-print/cups sys-apps/dbus 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 x11-libs/libXrandr x11-libs/pango gtk? ( gui-libs/gtk:4 x11-libs/gtk+:3 ) proprietary-codecs? ( !ffmpeg-chromium? ( >=media-video/ffmpeg-6.1-r1:0/58.60.60[chromium] ) ffmpeg-chromium? ( media-video/ffmpeg-chromium:144 ) ) qt6? ( dev-qt/qtbase:6[gui,widgets] ) widevine? ( www-plugins/chrome-binary-plugins ) RESTRICT=bindist mirror SLOT=0 -SRC_URI=amd64? ( https://downloads.vivaldi.com/stable/vivaldi-stable_7.8.3925.56-1_amd64.deb ) arm64? ( https://downloads.vivaldi.com/stable/vivaldi-stable_7.8.3925.56-1_arm64.deb ) +SRC_URI=amd64? ( https://downloads.vivaldi.com/stable/vivaldi-stable_7.8.3925.66-1_amd64.deb ) arm64? ( https://downloads.vivaldi.com/stable/vivaldi-stable_7.8.3925.66-1_arm64.deb ) _eclasses_=chromium-2 6be3cf193def84c82ddae5c1f21ddbe5 desktop 26d57169ca094c04be416993844ec8bc linux-info efd923656513c879204fec6638eadee5 multiprocessing 1e32df7deee68372153dca65f4a7c21f toolchain-funcs 7e440a20ac11dece04e3334622e6e5da unpacker 3b4ee72d1e2e0374fd8cd3eddfa00627 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 -_md5_=999c67a2ae651d303bd4f1ad2a1250d6 +_md5_=7ab0ba1f475afd30574c3816b942b691 diff --git a/metadata/md5-cache/www-client/vivaldi-snapshot-7.9.3936.3 b/metadata/md5-cache/www-client/vivaldi-snapshot-7.9.3950.5 index 9dac31faed98..ccbd5d15e4e2 100644 --- a/metadata/md5-cache/www-client/vivaldi-snapshot-7.9.3936.3 +++ b/metadata/md5-cache/www-client/vivaldi-snapshot-7.9.3950.5 @@ -10,6 +10,6 @@ LICENSE=Vivaldi RDEPEND=>=app-accessibility/at-spi2-core-2.46.0:2 dev-libs/expat dev-libs/glib:2 dev-libs/nspr dev-libs/nss media-libs/alsa-lib media-libs/mesa[gbm(+)] net-print/cups sys-apps/dbus 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 x11-libs/libXrandr x11-libs/pango gtk? ( gui-libs/gtk:4 x11-libs/gtk+:3 ) proprietary-codecs? ( !ffmpeg-chromium? ( >=media-video/ffmpeg-6.1-r1:0/58.60.60[chromium] ) ffmpeg-chromium? ( media-video/ffmpeg-chromium:145 ) ) qt6? ( dev-qt/qtbase:6[gui,widgets] ) widevine? ( www-plugins/chrome-binary-plugins ) RESTRICT=bindist mirror SLOT=0 -SRC_URI=amd64? ( https://downloads.vivaldi.com/snapshot/vivaldi-snapshot_7.9.3936.3-1_amd64.deb ) arm64? ( https://downloads.vivaldi.com/snapshot/vivaldi-snapshot_7.9.3936.3-1_arm64.deb ) +SRC_URI=amd64? ( https://downloads.vivaldi.com/snapshot/vivaldi-snapshot_7.9.3950.5-1_amd64.deb ) arm64? ( https://downloads.vivaldi.com/snapshot/vivaldi-snapshot_7.9.3950.5-1_arm64.deb ) _eclasses_=chromium-2 6be3cf193def84c82ddae5c1f21ddbe5 desktop 26d57169ca094c04be416993844ec8bc linux-info efd923656513c879204fec6638eadee5 multiprocessing 1e32df7deee68372153dca65f4a7c21f toolchain-funcs 7e440a20ac11dece04e3334622e6e5da unpacker 3b4ee72d1e2e0374fd8cd3eddfa00627 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 _md5_=170a148305992c088d2a9a56b4205de3 diff --git a/metadata/md5-cache/www-misc/quixotic-0.12-r1 b/metadata/md5-cache/www-misc/quixotic-0.12-r1 new file mode 100644 index 000000000000..eaefafc658e2 --- /dev/null +++ b/metadata/md5-cache/www-misc/quixotic-0.12-r1 @@ -0,0 +1,15 @@ +BDEPEND=verify-sig? ( sec-keys/openpgp-keys-marcusb ) || ( >=dev-lang/rust-bin-1.81:* >=dev-lang/rust-1.81:* ) virtual/pkgconfig verify-sig? ( || ( app-alternatives/gpg app-crypt/gnupg[-alternatives(-)] ) >=app-portage/gemato-20 ) +DEFINED_PHASES=compile configure install prepare setup test unpack +DEPEND=app-arch/zstd:= +DESCRIPTION=Feed fake content to bots and robots.txt-ignoring LLM scrapers +EAPI=8 +HOMEPAGE=https://marcusb.org/hacks/quixotic.html +INHERIT=cargo systemd verify-sig +IUSE=debug verify-sig +KEYWORDS=amd64 +LICENSE=MIT BSD MIT Unicode-3.0 ZLIB || ( Apache-2.0 Boost-1.0 ) +RDEPEND=app-arch/zstd:= +SLOT=0 +SRC_URI=https://marcusb.org/releases/quixotic-0.12.tar.gz verify-sig? ( https://marcusb.org/releases/quixotic-0.12.tar.gz.sig ) https://crates.io/api/v1/crates/actix-codec/0.5.2/download -> actix-codec-0.5.2.crate https://crates.io/api/v1/crates/actix-http/3.10.0/download -> actix-http-3.10.0.crate https://crates.io/api/v1/crates/actix-macros/0.2.4/download -> actix-macros-0.2.4.crate https://crates.io/api/v1/crates/actix-router/0.5.3/download -> actix-router-0.5.3.crate https://crates.io/api/v1/crates/actix-rt/2.10.0/download -> actix-rt-2.10.0.crate https://crates.io/api/v1/crates/actix-server/2.5.1/download -> actix-server-2.5.1.crate https://crates.io/api/v1/crates/actix-service/2.0.3/download -> actix-service-2.0.3.crate https://crates.io/api/v1/crates/actix-utils/3.0.1/download -> actix-utils-3.0.1.crate https://crates.io/api/v1/crates/actix-web-codegen/4.3.0/download -> actix-web-codegen-4.3.0.crate https://crates.io/api/v1/crates/actix-web/4.10.2/download -> actix-web-4.10.2.crate https://crates.io/api/v1/crates/addr2line/0.24.2/download -> addr2line-0.24.2.crate https://crates.io/api/v1/crates/adler2/2.0.0/download -> adler2-2.0.0.crate https://crates.io/api/v1/crates/aho-corasick/1.1.3/download -> aho-corasick-1.1.3.crate https://crates.io/api/v1/crates/alloc-no-stdlib/2.0.4/download -> alloc-no-stdlib-2.0.4.crate https://crates.io/api/v1/crates/alloc-stdlib/0.2.2/download -> alloc-stdlib-0.2.2.crate https://crates.io/api/v1/crates/anstream/0.6.18/download -> anstream-0.6.18.crate https://crates.io/api/v1/crates/anstyle-parse/0.2.6/download -> anstyle-parse-0.2.6.crate https://crates.io/api/v1/crates/anstyle-query/1.1.2/download -> anstyle-query-1.1.2.crate https://crates.io/api/v1/crates/anstyle-wincon/3.0.7/download -> anstyle-wincon-3.0.7.crate https://crates.io/api/v1/crates/anstyle/1.0.10/download -> anstyle-1.0.10.crate https://crates.io/api/v1/crates/autocfg/1.4.0/download -> autocfg-1.4.0.crate https://crates.io/api/v1/crates/backtrace/0.3.74/download -> backtrace-0.3.74.crate https://crates.io/api/v1/crates/base64/0.22.1/download -> base64-0.22.1.crate https://crates.io/api/v1/crates/bitflags/2.9.0/download -> bitflags-2.9.0.crate https://crates.io/api/v1/crates/block-buffer/0.10.4/download -> block-buffer-0.10.4.crate https://crates.io/api/v1/crates/brotli-decompressor/4.0.2/download -> brotli-decompressor-4.0.2.crate https://crates.io/api/v1/crates/brotli/7.0.0/download -> brotli-7.0.0.crate https://crates.io/api/v1/crates/bytes/1.10.1/download -> bytes-1.10.1.crate https://crates.io/api/v1/crates/bytestring/1.4.0/download -> bytestring-1.4.0.crate https://crates.io/api/v1/crates/cc/1.2.17/download -> cc-1.2.17.crate https://crates.io/api/v1/crates/cfg-if/1.0.0/download -> cfg-if-1.0.0.crate https://crates.io/api/v1/crates/clap/4.5.34/download -> clap-4.5.34.crate https://crates.io/api/v1/crates/clap_builder/4.5.34/download -> clap_builder-4.5.34.crate https://crates.io/api/v1/crates/clap_derive/4.5.32/download -> clap_derive-4.5.32.crate https://crates.io/api/v1/crates/clap_lex/0.7.4/download -> clap_lex-0.7.4.crate https://crates.io/api/v1/crates/colorchoice/1.0.3/download -> colorchoice-1.0.3.crate https://crates.io/api/v1/crates/cookie/0.16.2/download -> cookie-0.16.2.crate https://crates.io/api/v1/crates/cpufeatures/0.2.17/download -> cpufeatures-0.2.17.crate https://crates.io/api/v1/crates/crc32fast/1.4.2/download -> crc32fast-1.4.2.crate https://crates.io/api/v1/crates/crypto-common/0.1.6/download -> crypto-common-0.1.6.crate https://crates.io/api/v1/crates/deranged/0.4.1/download -> deranged-0.4.1.crate https://crates.io/api/v1/crates/derive_more-impl/2.0.1/download -> derive_more-impl-2.0.1.crate https://crates.io/api/v1/crates/derive_more/2.0.1/download -> derive_more-2.0.1.crate https://crates.io/api/v1/crates/digest/0.10.7/download -> digest-0.10.7.crate https://crates.io/api/v1/crates/displaydoc/0.2.5/download -> displaydoc-0.2.5.crate https://crates.io/api/v1/crates/encoding_rs/0.8.35/download -> encoding_rs-0.8.35.crate https://crates.io/api/v1/crates/equivalent/1.0.2/download -> equivalent-1.0.2.crate https://crates.io/api/v1/crates/flate2/1.1.0/download -> flate2-1.1.0.crate https://crates.io/api/v1/crates/fnv/1.0.7/download -> fnv-1.0.7.crate https://crates.io/api/v1/crates/foldhash/0.1.5/download -> foldhash-0.1.5.crate https://crates.io/api/v1/crates/form_urlencoded/1.2.1/download -> form_urlencoded-1.2.1.crate https://crates.io/api/v1/crates/futf/0.1.5/download -> futf-0.1.5.crate https://crates.io/api/v1/crates/futures-core/0.3.31/download -> futures-core-0.3.31.crate https://crates.io/api/v1/crates/futures-sink/0.3.31/download -> futures-sink-0.3.31.crate https://crates.io/api/v1/crates/futures-task/0.3.31/download -> futures-task-0.3.31.crate https://crates.io/api/v1/crates/futures-util/0.3.31/download -> futures-util-0.3.31.crate https://crates.io/api/v1/crates/generic-array/0.14.7/download -> generic-array-0.14.7.crate https://crates.io/api/v1/crates/getrandom/0.3.2/download -> getrandom-0.3.2.crate https://crates.io/api/v1/crates/gimli/0.31.1/download -> gimli-0.31.1.crate https://crates.io/api/v1/crates/h2/0.3.26/download -> h2-0.3.26.crate https://crates.io/api/v1/crates/hashbrown/0.15.2/download -> hashbrown-0.15.2.crate https://crates.io/api/v1/crates/heck/0.5.0/download -> heck-0.5.0.crate https://crates.io/api/v1/crates/html5ever/0.30.0/download -> html5ever-0.30.0.crate https://crates.io/api/v1/crates/http/0.2.12/download -> http-0.2.12.crate https://crates.io/api/v1/crates/httparse/1.10.1/download -> httparse-1.10.1.crate https://crates.io/api/v1/crates/httpdate/1.0.3/download -> httpdate-1.0.3.crate https://crates.io/api/v1/crates/icu_collections/1.5.0/download -> icu_collections-1.5.0.crate https://crates.io/api/v1/crates/icu_locid/1.5.0/download -> icu_locid-1.5.0.crate https://crates.io/api/v1/crates/icu_locid_transform/1.5.0/download -> icu_locid_transform-1.5.0.crate https://crates.io/api/v1/crates/icu_locid_transform_data/1.5.1/download -> icu_locid_transform_data-1.5.1.crate https://crates.io/api/v1/crates/icu_normalizer/1.5.0/download -> icu_normalizer-1.5.0.crate https://crates.io/api/v1/crates/icu_normalizer_data/1.5.1/download -> icu_normalizer_data-1.5.1.crate https://crates.io/api/v1/crates/icu_properties/1.5.1/download -> icu_properties-1.5.1.crate https://crates.io/api/v1/crates/icu_properties_data/1.5.1/download -> icu_properties_data-1.5.1.crate https://crates.io/api/v1/crates/icu_provider/1.5.0/download -> icu_provider-1.5.0.crate https://crates.io/api/v1/crates/icu_provider_macros/1.5.0/download -> icu_provider_macros-1.5.0.crate https://crates.io/api/v1/crates/idna/1.0.3/download -> idna-1.0.3.crate https://crates.io/api/v1/crates/idna_adapter/1.2.0/download -> idna_adapter-1.2.0.crate https://crates.io/api/v1/crates/impl-more/0.1.9/download -> impl-more-0.1.9.crate https://crates.io/api/v1/crates/indexmap/2.8.0/download -> indexmap-2.8.0.crate https://crates.io/api/v1/crates/is_terminal_polyfill/1.70.1/download -> is_terminal_polyfill-1.70.1.crate https://crates.io/api/v1/crates/itoa/1.0.15/download -> itoa-1.0.15.crate https://crates.io/api/v1/crates/jobserver/0.1.32/download -> jobserver-0.1.32.crate https://crates.io/api/v1/crates/language-tags/0.3.2/download -> language-tags-0.3.2.crate https://crates.io/api/v1/crates/libc/0.2.171/download -> libc-0.2.171.crate https://crates.io/api/v1/crates/litemap/0.7.5/download -> litemap-0.7.5.crate https://crates.io/api/v1/crates/local-channel/0.1.5/download -> local-channel-0.1.5.crate https://crates.io/api/v1/crates/local-waker/0.1.4/download -> local-waker-0.1.4.crate https://crates.io/api/v1/crates/lock_api/0.4.12/download -> lock_api-0.4.12.crate https://crates.io/api/v1/crates/log/0.4.27/download -> log-0.4.27.crate https://crates.io/api/v1/crates/mac/0.1.1/download -> mac-0.1.1.crate https://crates.io/api/v1/crates/markup5ever/0.15.0/download -> markup5ever-0.15.0.crate https://crates.io/api/v1/crates/match_token/0.1.0/download -> match_token-0.1.0.crate https://crates.io/api/v1/crates/memchr/2.7.4/download -> memchr-2.7.4.crate https://crates.io/api/v1/crates/mime/0.3.17/download -> mime-0.3.17.crate https://crates.io/api/v1/crates/miniz_oxide/0.8.5/download -> miniz_oxide-0.8.5.crate https://crates.io/api/v1/crates/mio/1.0.3/download -> mio-1.0.3.crate https://crates.io/api/v1/crates/new_debug_unreachable/1.0.6/download -> new_debug_unreachable-1.0.6.crate https://crates.io/api/v1/crates/num-conv/0.1.0/download -> num-conv-0.1.0.crate https://crates.io/api/v1/crates/object/0.36.7/download -> object-0.36.7.crate https://crates.io/api/v1/crates/once_cell/1.21.2/download -> once_cell-1.21.2.crate https://crates.io/api/v1/crates/parking_lot/0.12.3/download -> parking_lot-0.12.3.crate https://crates.io/api/v1/crates/parking_lot_core/0.9.10/download -> parking_lot_core-0.9.10.crate https://crates.io/api/v1/crates/percent-encoding/2.3.1/download -> percent-encoding-2.3.1.crate https://crates.io/api/v1/crates/phf/0.11.3/download -> phf-0.11.3.crate https://crates.io/api/v1/crates/phf_codegen/0.11.3/download -> phf_codegen-0.11.3.crate https://crates.io/api/v1/crates/phf_generator/0.11.3/download -> phf_generator-0.11.3.crate https://crates.io/api/v1/crates/phf_shared/0.11.3/download -> phf_shared-0.11.3.crate https://crates.io/api/v1/crates/pin-project-lite/0.2.16/download -> pin-project-lite-0.2.16.crate https://crates.io/api/v1/crates/pin-utils/0.1.0/download -> pin-utils-0.1.0.crate https://crates.io/api/v1/crates/pkg-config/0.3.32/download -> pkg-config-0.3.32.crate https://crates.io/api/v1/crates/powerfmt/0.2.0/download -> powerfmt-0.2.0.crate https://crates.io/api/v1/crates/ppv-lite86/0.2.21/download -> ppv-lite86-0.2.21.crate https://crates.io/api/v1/crates/precomputed-hash/0.1.1/download -> precomputed-hash-0.1.1.crate https://crates.io/api/v1/crates/proc-macro2/1.0.94/download -> proc-macro2-1.0.94.crate https://crates.io/api/v1/crates/quote/1.0.40/download -> quote-1.0.40.crate https://crates.io/api/v1/crates/r-efi/5.2.0/download -> r-efi-5.2.0.crate https://crates.io/api/v1/crates/rand/0.8.5/download -> rand-0.8.5.crate https://crates.io/api/v1/crates/rand/0.9.0/download -> rand-0.9.0.crate https://crates.io/api/v1/crates/rand_chacha/0.9.0/download -> rand_chacha-0.9.0.crate https://crates.io/api/v1/crates/rand_core/0.6.4/download -> rand_core-0.6.4.crate https://crates.io/api/v1/crates/rand_core/0.9.3/download -> rand_core-0.9.3.crate https://crates.io/api/v1/crates/redox_syscall/0.5.10/download -> redox_syscall-0.5.10.crate https://crates.io/api/v1/crates/regex-automata/0.4.9/download -> regex-automata-0.4.9.crate https://crates.io/api/v1/crates/regex-lite/0.1.6/download -> regex-lite-0.1.6.crate https://crates.io/api/v1/crates/regex-syntax/0.8.5/download -> regex-syntax-0.8.5.crate https://crates.io/api/v1/crates/regex/1.11.1/download -> regex-1.11.1.crate https://crates.io/api/v1/crates/rustc-demangle/0.1.24/download -> rustc-demangle-0.1.24.crate https://crates.io/api/v1/crates/ryu/1.0.20/download -> ryu-1.0.20.crate https://crates.io/api/v1/crates/same-file/1.0.6/download -> same-file-1.0.6.crate https://crates.io/api/v1/crates/scopeguard/1.2.0/download -> scopeguard-1.2.0.crate https://crates.io/api/v1/crates/serde/1.0.219/download -> serde-1.0.219.crate https://crates.io/api/v1/crates/serde_derive/1.0.219/download -> serde_derive-1.0.219.crate https://crates.io/api/v1/crates/serde_json/1.0.140/download -> serde_json-1.0.140.crate https://crates.io/api/v1/crates/serde_urlencoded/0.7.1/download -> serde_urlencoded-0.7.1.crate https://crates.io/api/v1/crates/sha1/0.10.6/download -> sha1-0.10.6.crate https://crates.io/api/v1/crates/shlex/1.3.0/download -> shlex-1.3.0.crate https://crates.io/api/v1/crates/signal-hook-registry/1.4.2/download -> signal-hook-registry-1.4.2.crate https://crates.io/api/v1/crates/siphasher/1.0.1/download -> siphasher-1.0.1.crate https://crates.io/api/v1/crates/slab/0.4.9/download -> slab-0.4.9.crate https://crates.io/api/v1/crates/smallvec/1.14.0/download -> smallvec-1.14.0.crate https://crates.io/api/v1/crates/socket2/0.5.8/download -> socket2-0.5.8.crate https://crates.io/api/v1/crates/stable_deref_trait/1.2.0/download -> stable_deref_trait-1.2.0.crate https://crates.io/api/v1/crates/string_cache/0.8.9/download -> string_cache-0.8.9.crate https://crates.io/api/v1/crates/string_cache_codegen/0.5.4/download -> string_cache_codegen-0.5.4.crate https://crates.io/api/v1/crates/strsim/0.11.1/download -> strsim-0.11.1.crate https://crates.io/api/v1/crates/syn/2.0.100/download -> syn-2.0.100.crate https://crates.io/api/v1/crates/synstructure/0.13.1/download -> synstructure-0.13.1.crate https://crates.io/api/v1/crates/tendril/0.4.3/download -> tendril-0.4.3.crate https://crates.io/api/v1/crates/time-core/0.1.4/download -> time-core-0.1.4.crate https://crates.io/api/v1/crates/time-macros/0.2.22/download -> time-macros-0.2.22.crate https://crates.io/api/v1/crates/time/0.3.41/download -> time-0.3.41.crate https://crates.io/api/v1/crates/tinystr/0.7.6/download -> tinystr-0.7.6.crate https://crates.io/api/v1/crates/tokio-util/0.7.14/download -> tokio-util-0.7.14.crate https://crates.io/api/v1/crates/tokio/1.44.1/download -> tokio-1.44.1.crate https://crates.io/api/v1/crates/tracing-attributes/0.1.28/download -> tracing-attributes-0.1.28.crate https://crates.io/api/v1/crates/tracing-core/0.1.33/download -> tracing-core-0.1.33.crate https://crates.io/api/v1/crates/tracing/0.1.41/download -> tracing-0.1.41.crate https://crates.io/api/v1/crates/typenum/1.18.0/download -> typenum-1.18.0.crate https://crates.io/api/v1/crates/unicode-ident/1.0.18/download -> unicode-ident-1.0.18.crate https://crates.io/api/v1/crates/unicode-xid/0.2.6/download -> unicode-xid-0.2.6.crate https://crates.io/api/v1/crates/url/2.5.4/download -> url-2.5.4.crate https://crates.io/api/v1/crates/utf-8/0.7.6/download -> utf-8-0.7.6.crate https://crates.io/api/v1/crates/utf16_iter/1.0.5/download -> utf16_iter-1.0.5.crate https://crates.io/api/v1/crates/utf8_iter/1.0.4/download -> utf8_iter-1.0.4.crate https://crates.io/api/v1/crates/utf8parse/0.2.2/download -> utf8parse-0.2.2.crate https://crates.io/api/v1/crates/version_check/0.9.5/download -> version_check-0.9.5.crate https://crates.io/api/v1/crates/walkdir/2.5.0/download -> walkdir-2.5.0.crate https://crates.io/api/v1/crates/wasi/0.11.0+wasi-snapshot-preview1/download -> wasi-0.11.0+wasi-snapshot-preview1.crate https://crates.io/api/v1/crates/wasi/0.14.2+wasi-0.2.4/download -> wasi-0.14.2+wasi-0.2.4.crate https://crates.io/api/v1/crates/winapi-util/0.1.9/download -> winapi-util-0.1.9.crate https://crates.io/api/v1/crates/windows-sys/0.52.0/download -> windows-sys-0.52.0.crate https://crates.io/api/v1/crates/windows-sys/0.59.0/download -> windows-sys-0.59.0.crate https://crates.io/api/v1/crates/windows-targets/0.52.6/download -> windows-targets-0.52.6.crate https://crates.io/api/v1/crates/windows_aarch64_gnullvm/0.52.6/download -> windows_aarch64_gnullvm-0.52.6.crate https://crates.io/api/v1/crates/windows_aarch64_msvc/0.52.6/download -> windows_aarch64_msvc-0.52.6.crate https://crates.io/api/v1/crates/windows_i686_gnu/0.52.6/download -> windows_i686_gnu-0.52.6.crate https://crates.io/api/v1/crates/windows_i686_gnullvm/0.52.6/download -> windows_i686_gnullvm-0.52.6.crate https://crates.io/api/v1/crates/windows_i686_msvc/0.52.6/download -> windows_i686_msvc-0.52.6.crate https://crates.io/api/v1/crates/windows_x86_64_gnu/0.52.6/download -> windows_x86_64_gnu-0.52.6.crate https://crates.io/api/v1/crates/windows_x86_64_gnullvm/0.52.6/download -> windows_x86_64_gnullvm-0.52.6.crate https://crates.io/api/v1/crates/windows_x86_64_msvc/0.52.6/download -> windows_x86_64_msvc-0.52.6.crate https://crates.io/api/v1/crates/wit-bindgen-rt/0.39.0/download -> wit-bindgen-rt-0.39.0.crate https://crates.io/api/v1/crates/write16/1.0.0/download -> write16-1.0.0.crate https://crates.io/api/v1/crates/writeable/0.5.5/download -> writeable-0.5.5.crate https://crates.io/api/v1/crates/yoke-derive/0.7.5/download -> yoke-derive-0.7.5.crate https://crates.io/api/v1/crates/yoke/0.7.5/download -> yoke-0.7.5.crate https://crates.io/api/v1/crates/zerocopy-derive/0.8.24/download -> zerocopy-derive-0.8.24.crate https://crates.io/api/v1/crates/zerocopy/0.8.24/download -> zerocopy-0.8.24.crate https://crates.io/api/v1/crates/zerofrom-derive/0.1.6/download -> zerofrom-derive-0.1.6.crate https://crates.io/api/v1/crates/zerofrom/0.1.6/download -> zerofrom-0.1.6.crate https://crates.io/api/v1/crates/zerovec-derive/0.10.3/download -> zerovec-derive-0.10.3.crate https://crates.io/api/v1/crates/zerovec/0.10.4/download -> zerovec-0.10.4.crate https://crates.io/api/v1/crates/zstd-safe/7.2.4/download -> zstd-safe-7.2.4.crate https://crates.io/api/v1/crates/zstd-sys/2.0.15+zstd.1.5.7/download -> zstd-sys-2.0.15+zstd.1.5.7.crate https://crates.io/api/v1/crates/zstd/0.13.3/download -> zstd-0.13.3.crate +_eclasses_=cargo aeba1d272f6c2e000912e11d8cf626eb eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 multiprocessing 1e32df7deee68372153dca65f4a7c21f rust dd082fc51cbae6f9afa90dd1668d71a9 rust-toolchain 76468983281b0a7fc167ca224f84ecfd systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da verify-sig ece4c893b6bd62eacbc4d25958e857f8 +_md5_=baf778c36e2c906d0502bc4af87ae5a2 diff --git a/metadata/md5-cache/www-servers/varnish-7.7.3 b/metadata/md5-cache/www-servers/varnish-8.0.0-r1 index 86ad8848fa99..4b78937df9c2 100644 --- a/metadata/md5-cache/www-servers/varnish-7.7.3 +++ b/metadata/md5-cache/www-servers/varnish-8.0.0-r1 @@ -1,16 +1,16 @@ BDEPEND=sys-devel/gnuconfig >=app-portage/elt-patches-20250306 || ( >=dev-build/automake-1.18:1.18 >=dev-build/automake-1.17-r1:1.17 ) || ( >=dev-build/autoconf-2.72-r1:2.72 ) >=dev-build/libtool-2.4.7-r3 virtual/pkgconfig DEFINED_PHASES=configure install prepare test -DEPEND=sys-libs/readline:= dev-libs/libedit dev-libs/libpcre2[jit?] sys-libs/ncurses:= jemalloc? ( dev-libs/jemalloc:= ) unwind? ( sys-libs/libunwind:= ) dev-python/docutils dev-python/sphinx virtual/pkgconfig +DEPEND=sys-libs/readline:= dev-libs/libedit dev-libs/libpcre2[jit?] sys-libs/ncurses:= unwind? ( sys-libs/libunwind:= ) dev-python/docutils dev-python/sphinx virtual/pkgconfig DESCRIPTION=Varnish is a state-of-the-art, high-performance HTTP accelerator EAPI=8 -HOMEPAGE=https://varnish-cache.org/ +HOMEPAGE=https://vinyl-cache.org/ INHERIT=autotools systemd python-r1 -IUSE=+jemalloc jit selinux static-libs unwind python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 -KEYWORDS=amd64 ~arm arm64 ~ppc ~ppc64 ~riscv x86 +IUSE=jit selinux static-libs unwind python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 LICENSE=BSD-2 GPL-2 -RDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) sys-libs/readline:= dev-libs/libedit dev-libs/libpcre2[jit?] sys-libs/ncurses:= jemalloc? ( dev-libs/jemalloc:= ) unwind? ( sys-libs/libunwind:= ) acct-user/varnish acct-group/varnish sys-devel/gcc selinux? ( sec-policy/selinux-varnishd ) +RDEPEND=python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) python_targets_python3_13? ( dev-lang/python:3.13 ) python_targets_python3_14? ( dev-lang/python:3.14 ) sys-libs/readline:= dev-libs/libedit dev-libs/libpcre2[jit?] sys-libs/ncurses:= unwind? ( sys-libs/libunwind:= ) acct-user/varnish acct-group/varnish sys-devel/gcc selinux? ( sec-policy/selinux-varnishd ) REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 python_targets_python3_13 python_targets_python3_14 ) SLOT=0/2 -SRC_URI=https://varnish-cache.org/_downloads/varnish-7.7.3.tgz +SRC_URI=https://vinyl-cache.org/_downloads/varnish-8.0.0.tgz _eclasses_=autotools 955b29ccd82c1df4755e5f37748d2fa6 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 multibuild 83db098a835f71feb71761f72a694aa2 multiprocessing 1e32df7deee68372153dca65f4a7c21f out-of-source-utils 8e5093bd27b7f541a1913271f25d633a python-r1 0e15b2ab9cfc87d7474678201d6bca38 python-utils-r1 5e598a2f2670ef9a4b2be470c0718b82 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da -_md5_=cb34eeec3bffe7cf48486e562a6bdaf4 +_md5_=5331ad4f4c7efa6b9c5c84f027be4016 diff --git a/metadata/md5-cache/x11-terms/xterm-407 b/metadata/md5-cache/x11-terms/xterm-407 new file mode 100644 index 000000000000..0020525af5b5 --- /dev/null +++ b/metadata/md5-cache/x11-terms/xterm-407 @@ -0,0 +1,16 @@ +BDEPEND=virtual/pkgconfig verify-sig? ( >=sec-keys/openpgp-keys-thomasdickey-20260204 ) verify-sig? ( || ( app-alternatives/gpg app-crypt/gnupg[-alternatives(-)] ) >=app-portage/gemato-20 ) +DEFINED_PHASES=configure install postinst postrm preinst unpack +DEPEND=kernel_linux? ( sys-libs/libutempter ) media-libs/fontconfig:1.0 media-libs/freetype >=sys-libs/ncurses-5.7-r7:= x11-apps/xmessage x11-libs/libICE x11-libs/libX11 x11-libs/libXaw x11-libs/libXft x11-libs/libxkbfile x11-libs/libXmu x11-libs/libXrender x11-libs/libXt unicode? ( x11-apps/luit ) Xaw3d? ( x11-libs/libXaw3d ) xinerama? ( x11-libs/libXinerama ) x11-base/xorg-proto +DESCRIPTION=Terminal Emulator for X Windows +EAPI=8 +HOMEPAGE=https://invisible-island.net/xterm/ +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=desktop flag-o-matic toolchain-funcs verify-sig xdg +IUSE=+openpty sixel toolbar truetype unicode Xaw3d xinerama verify-sig +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos ~x64-solaris +LICENSE=MIT +RDEPEND=kernel_linux? ( sys-libs/libutempter ) media-libs/fontconfig:1.0 media-libs/freetype >=sys-libs/ncurses-5.7-r7:= x11-apps/xmessage x11-libs/libICE x11-libs/libX11 x11-libs/libXaw x11-libs/libXft x11-libs/libxkbfile x11-libs/libXmu x11-libs/libXrender x11-libs/libXt unicode? ( x11-apps/luit ) Xaw3d? ( x11-libs/libXaw3d ) xinerama? ( x11-libs/libXinerama ) media-fonts/font-misc-misc x11-apps/rgb +SLOT=0 +SRC_URI=https://invisible-island.net/archives/xterm/xterm-407.tgz verify-sig? ( https://invisible-island.net/archives/xterm/xterm-407.tgz.asc ) +_eclasses_=desktop 26d57169ca094c04be416993844ec8bc eapi9-pipestatus d2c134036ac31c3085aebc9147f572bd flag-o-matic ed1eda86c8f746a2a75f7f9f7478f5f4 toolchain-funcs 7e440a20ac11dece04e3334622e6e5da verify-sig ece4c893b6bd62eacbc4d25958e857f8 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 +_md5_=3d37eb980a120c3abd85d6a795930bfe diff --git a/net-analyzer/fail2ban/fail2ban-1.1.0-r3.ebuild b/net-analyzer/fail2ban/fail2ban-1.1.0-r3.ebuild index 46f3061da34d..31647e6ee42b 100644 --- a/net-analyzer/fail2ban/fail2ban-1.1.0-r3.ebuild +++ b/net-analyzer/fail2ban/fail2ban-1.1.0-r3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -15,7 +15,7 @@ if [[ ${PV} == *9999 ]] ; then inherit git-r3 else SRC_URI="https://github.com/fail2ban/fail2ban/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv ~sparc x86" + KEYWORDS="amd64 arm arm64 ~loong ppc ppc64 ~riscv ~sparc x86" fi LICENSE="GPL-2" diff --git a/net-analyzer/fail2ban/fail2ban-1.1.0-r4.ebuild b/net-analyzer/fail2ban/fail2ban-1.1.0-r4.ebuild index 82664bba5a0f..4c72b1f79b05 100644 --- a/net-analyzer/fail2ban/fail2ban-1.1.0-r4.ebuild +++ b/net-analyzer/fail2ban/fail2ban-1.1.0-r4.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -15,7 +15,7 @@ if [[ ${PV} == *9999 ]] ; then inherit git-r3 else SRC_URI="https://github.com/fail2ban/fail2ban/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv ~sparc x86" + KEYWORDS="amd64 arm arm64 ~loong ppc ppc64 ~riscv ~sparc x86" fi LICENSE="GPL-2" diff --git a/net-analyzer/fail2ban/fail2ban-1.1.0-r6.ebuild b/net-analyzer/fail2ban/fail2ban-1.1.0-r6.ebuild index c25e4f516066..78bbcafe0f0d 100644 --- a/net-analyzer/fail2ban/fail2ban-1.1.0-r6.ebuild +++ b/net-analyzer/fail2ban/fail2ban-1.1.0-r6.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -15,7 +15,7 @@ if [[ ${PV} == *9999 ]] ; then inherit git-r3 else SRC_URI="https://github.com/fail2ban/fail2ban/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv ~sparc x86" + KEYWORDS="amd64 arm arm64 ~loong ppc ppc64 ~riscv ~sparc x86" fi LICENSE="GPL-2" diff --git a/net-analyzer/fail2ban/fail2ban-9999.ebuild b/net-analyzer/fail2ban/fail2ban-9999.ebuild index ee19b1ece589..f6ce7b594145 100644 --- a/net-analyzer/fail2ban/fail2ban-9999.ebuild +++ b/net-analyzer/fail2ban/fail2ban-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -15,7 +15,7 @@ if [[ ${PV} == *9999 ]] ; then inherit git-r3 else SRC_URI="https://github.com/fail2ban/fail2ban/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86" + KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86" fi LICENSE="GPL-2" diff --git a/net-analyzer/openvas-scanner/Manifest b/net-analyzer/openvas-scanner/Manifest index 35aa1932012b..7c2dd9c53036 100644 --- a/net-analyzer/openvas-scanner/Manifest +++ b/net-analyzer/openvas-scanner/Manifest @@ -1,2 +1,3 @@ DIST openvas-scanner-23.17.0.tar.gz 1576340 BLAKE2B 58bb9f8b17ac1005155bd97502dc56e5242814c4d5ae8e868afe211bb3e04c02a1004e3a7ff05bdf58551b5ba503dbfdb085eb40a2169ae69577303fecae7777 SHA512 e594bc9ef98c15359f408b784dcbac1ee9ac454c80a771e0f64ef5df27bcefbae19a8bb63332ff269e2f7da09265d373cc56b6c92652b81e96961fdaa8d46658 DIST openvas-scanner-23.26.1.tar.gz 1617204 BLAKE2B c21c7d82bd1e5d7325422a8e3c467da2caa0cbbd9f44102fbd7aeacc5eafc452676f8f520eda18ad767901a982e937074cb1ff3942217aa63a4f07ceefbfe565 SHA512 67f99e6f35b8afa7aea8384400110d1e5e1f544f5f9c9545e386f6bdb542a76269153075459be3e1c919178967a822243a32147a19b6cbf1d2ea0fd58cafc27a +DIST openvas-scanner-23.40.0.tar.gz 2432069 BLAKE2B 7396a2178a842543db7236f81cb32727f26e75f5e914e472853cb78f7c67ad7daa7b8aa3ab4e727754abfff8d7d7357b08c1453cfd425b30bee1e60cf7c28622 SHA512 f5f486093fd9bcafe793e27122bd2e357d2b77c6c225a08fd0ddf4b7b2f414caf5431bbfa8427dde9a29d65fd9835f308b8650fa87c524b11cfcc402bb867165 diff --git a/net-analyzer/openvas-scanner/files/openvas-scanner-23.40.0-remove-unworking-tests.patch b/net-analyzer/openvas-scanner/files/openvas-scanner-23.40.0-remove-unworking-tests.patch new file mode 100644 index 000000000000..8715a32e78ff --- /dev/null +++ b/net-analyzer/openvas-scanner/files/openvas-scanner-23.40.0-remove-unworking-tests.patch @@ -0,0 +1,54 @@ +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -193,7 +193,7 @@ configure_file (src/openvas_log_conf.cmake_in src/openvas_log.conf) + enable_testing () + + add_custom_target (tests +- DEPENDS attack-test pcap-test ipc-openvas-test lsc-test) ++ DEPENDS attack-test ipc-openvas-test lsc-test) + + ## Program + +--- a/misc/CMakeLists.txt ++++ b/misc/CMakeLists.txt +@@ -156,6 +156,7 @@ set (ALIVEDETECTION_TEST_LINKER_WRAP_OPTIONS + "-Wl,-wrap,socket,-wrap,setsockopt") + + # pcap-tests ++#[===[ + add_executable (pcap-test EXCLUDE_FROM_ALL pcap_tests.c) + add_test (pcap-test pcap-test) + target_include_directories (pcap-test PRIVATE ${CGREEN_INCLUDE_DIRS}) +@@ -174,7 +175,7 @@ set_tests_properties( + ) + add_custom_target (tests-pcap + DEPENDS pcap-test) +- ++]===] + # ipc-openvas-tests + add_executable (ipc-openvas-test EXCLUDE_FROM_ALL ipc_openvas_tests.c) + add_test (ipc-openvas-test ipc-openvas-test) +--- a/src/CMakeLists.txt ++++ b/src/CMakeLists.txt +@@ -156,17 +156,17 @@ add_executable (attack-test + + set_target_properties (attack-test PROPERTIES LINKER_LANGUAGE C) + +-target_compile_options(attack-test PRIVATE "-fsanitize=address") +-target_link_options(attack-test PRIVATE "-fsanitize=address") ++#target_compile_options(attack-test PRIVATE "-fsanitize=address") ++#target_link_options(attack-test PRIVATE "-fsanitize=address") + + add_test (attack-test attack-test) +- ++#[===[ + set_tests_properties( + attack-test + PROPERTIES + ENVIRONMENT "ASAN_OPTIONS=detect_leaks=1:halt_on_error=1:abort_on_error=1" + ) +- ++]===] + target_link_libraries (attack-test openvas_nasl_shared cgreen + ${LIBOPENVAS_NASL_LDFLAGS} + ${LIBOPENVAS_MISC_LDFLAGS} diff --git a/net-analyzer/openvas-scanner/openvas-scanner-23.40.0.ebuild b/net-analyzer/openvas-scanner/openvas-scanner-23.40.0.ebuild new file mode 100644 index 000000000000..f3e5a9725103 --- /dev/null +++ b/net-analyzer/openvas-scanner/openvas-scanner-23.40.0.ebuild @@ -0,0 +1,157 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake systemd tmpfiles toolchain-funcs greadme optfeature + +MY_DN="openvas" + +DESCRIPTION="Open Vulnerability Assessment Scanner" +HOMEPAGE="https://www.greenbone.net https://github.com/greenbone/openvas-scanner/" +SRC_URI=" + https://github.com/greenbone/openvas-scanner/archive/v${PV}.tar.gz -> ${P}.tar.gz +" + +LICENSE="GPL-2 GPL-2+" +SLOT="0" +KEYWORDS="~amd64" +IUSE="doc snmp test" +RESTRICT="!test? ( test )" + +DEPEND=" + acct-user/gvm + app-crypt/gpgme:= + app-crypt/mit-krb5:= + >=dev-db/redis-5.0.3 + >=dev-libs/glib-2.42:2 + >=dev-libs/libgcrypt-1.6:= + dev-libs/libgpg-error + >=dev-libs/libksba-1.0.7 + dev-libs/libbsd + >=net-libs/libssh-0.6.0:= + >=dev-libs/json-glib-1.4.4 + >=net-analyzer/gvm-libs-22.4 + >=net-libs/gnutls-3.6.4:= + net-libs/libpcap + >=net-misc/curl-7.74.0[ssl] + snmp? ( net-analyzer/net-snmp:= ) +" +RDEPEND="${DEPEND}" +BDEPEND=" + >=sys-devel/bison-2.5 + app-alternatives/lex + virtual/pkgconfig + doc? ( + app-text/doxygen[dot] + app-text/xmltoman + app-text/htmldoc + virtual/pandoc + ) + test? ( dev-libs/cgreen ) +" + +PATCHES=( + # Remove tests that don't work in the network sandbox + "${FILESDIR}/${P}-remove-unworking-tests.patch" +) + +src_prepare() { + cmake_src_prepare + # QA-Fix | Remove -Werror compiler flag + sed -i -e "s/-Werror//" "${S}"/CMakeLists.txt || die #909560 + # QA-Fix | Remove !CLANG doxygen warnings for 7.0.0 + if use doc; then + if ! tc-is-clang; then + local f + for f in doc/*.in + do + sed -i \ + -e "s*CLANG_ASSISTED_PARSING = NO*#CLANG_ASSISTED_PARSING = NO*g" \ + -e "s*CLANG_OPTIONS*#CLANG_OPTIONS*g" \ + "${f}" || die "couldn't disable CLANG parsing" + done + fi + fi +} + +src_configure() { + local mycmakeargs=( + "-DLOCALSTATEDIR=${EPREFIX}/var" + "-DSYSCONFDIR=${EPREFIX}/etc" + "-DSBINDIR=${EPREFIX}/usr/bin" + "-DOPENVAS_FEED_LOCK_PATH=${EPREFIX}/var/lib/openvas/feed-update.lock" + "-DOPENVAS_RUN_DIR=/run/ospd" + "-DBUILD_WITH_NETSNMP=$(usex snmp)" + ) + cmake_src_configure +} + +src_compile() { + cmake_src_compile + if use doc; then + cmake_build -C "${BUILD_DIR}" doxygen-full manual + fi + cmake_build rebuild_cache + if use test; then + cmake_build tests + fi +} + +src_install() { + if use doc; then + mv "${BUILD_DIR}"/doc/html "${BUILD_DIR}"/doc/html-manual || die + local HTML_DOCS=( + "${BUILD_DIR}"/doc/generated/html/. + "${BUILD_DIR}"/doc/html-manual + ) + fi + cmake_src_install + + insinto /etc/logrotate.d + newins "${FILESDIR}/${MY_DN}.logrotate" "${MY_DN}" + + # Set proper permissions on required files/directories + keepdir /var/log/gvm + if ! use prefix; then + fowners gvm:gvm /var/log/gvm + fi + + keepdir /var/lib/openvas/{gnupg,plugins} + if ! use prefix; then + fowners -R gvm:gvm /var/lib/openvas + fi + + insinto /etc/openvas + newins "${FILESDIR}/openvas.conf-22" openvas.conf + + systemd_newunit "${FILESDIR}/redis-openvas.service" redis-openvas.service + newtmpfiles "${FILESDIR}/redis-openvas.tmpfiles" redis-openvas.conf + + insinto /etc/gvm + doins config/redis-openvas.conf + if ! use prefix; then + fowners -R gvm:gvm /etc/gvm /etc/gvm/redis-openvas.conf + fi + + fperms 0750 /etc/gvm + fperms 0640 /etc/gvm/redis-openvas.conf + + newconfd "${FILESDIR}/redis-openvas.confd" redis-openvas + newinitd "${FILESDIR}/redis-openvas.initd" redis-openvas + + if use prefix; then + diropts -m0750 + else + diropts -m0750 -o gvm -g gvm + fi + keepdir /var/lib/openvas/redis + + greadme_file "${FILESDIR}/README.gentoo" +} + +pkg_postinst() { + tmpfiles_process redis-openvas.conf + optfeature "port scanner" net-analyzer/nmap + greadme_pkg_postinst +} diff --git a/net-libs/libquotient/Manifest b/net-libs/libquotient/Manifest index bb9e6148afb3..35cf810e715d 100644 --- a/net-libs/libquotient/Manifest +++ b/net-libs/libquotient/Manifest @@ -1 +1,2 @@ DIST libquotient-0.9.5.tar.gz 780007 BLAKE2B 3e932698ba109427961b653045c89cd322d1fda3f35c21d7067da67e3cf6f9ea20f16ba2daa3cb4c440d5ce746ac78dcbe199a0f978a482f95c2d6580132c2f2 SHA512 36d73dad49866521e0ae20f2f916c1fa5472a7662b7d3128432c02dd2efda1e22b2d466931c2762495a8e0aa038c311876f03ed5872c79de5c75d54cce4f8f22 +DIST libquotient-0.9.6.tar.gz 781143 BLAKE2B 870eb37a65bf6989bf84df81f45360b42c491f79c6e7ce12717a8864d595ae2998ccf8c2e668e9af894350dac481ac9fc157222563e410bdbe67a6e1723ae011 SHA512 2c1c90f960504afaf5e90217139c837bd5e3a5557d9b2f8cee2216df3a3168cc3e45895b34e843eef98e3e49ba332c052930f4ffba52d10a9274823509cc0a5c diff --git a/net-libs/libquotient/libquotient-0.9.6.ebuild b/net-libs/libquotient/libquotient-0.9.6.ebuild new file mode 100644 index 000000000000..2ddffa6c2e96 --- /dev/null +++ b/net-libs/libquotient/libquotient-0.9.6.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="Qt-based SDK to develop applications for Matrix" +HOMEPAGE="https://github.com/quotient-im/libQuotient" +SRC_URI="https://github.com/quotient-im/libQuotient/archive/${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/libQuotient-${PV}" + +LICENSE="LGPL-2+" +SLOT="0/${PV}" # FIXME: check soname on next version bump +KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86" +IUSE="test" + +RESTRICT="!test? ( test )" + +RDEPEND=" + dev-libs/olm + dev-libs/openssl:= + >=dev-libs/qtkeychain-0.14.2:=[qt6(+)] + dev-qt/qtbase:6=[gui,network,sql,ssl] + dev-qt/qtmultimedia:6 +" +DEPEND="${RDEPEND} + test? ( dev-qt/qtbase:6[concurrent] ) +" + +# downstream patch +PATCHES=( "${FILESDIR}"/${PN}-0.8.0-no-android.patch ) + +src_configure() { + local mycmakeargs=( + -DBUILD_TESTING=$(usex test) + ) + + use test && mycmakeargs+=( + -DQuotient_INSTALL_TESTS=OFF + ) + cmake_src_configure +} + +src_test() { + # https://github.com/quotient-im/libQuotient/issues/435 + # testolmaccount requires network connection/server set up + local myctestargs=( + -j1 + -E "(testolmaccount)" + ) + cmake_src_test +} diff --git a/net-libs/libssh/libssh-0.11.4.ebuild b/net-libs/libssh/libssh-0.11.4.ebuild index 15b42ec4119f..581e67487d5a 100644 --- a/net-libs/libssh/libssh-0.11.4.ebuild +++ b/net-libs/libssh/libssh-0.11.4.ebuild @@ -18,7 +18,7 @@ else https://www.libssh.org/files/$(ver_cut 1-2)/${P}.tar.xz verify-sig? ( https://www.libssh.org/files/$(ver_cut 1-2)/${P}.tar.xz.asc ) " - KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" + KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 ~sparc x86" BDEPEND="verify-sig? ( sec-keys/openpgp-keys-libssh )" fi diff --git a/sci-mathematics/cadabra/Manifest b/sci-mathematics/cadabra/Manifest index 53423db95275..9199bc55efdb 100644 --- a/sci-mathematics/cadabra/Manifest +++ b/sci-mathematics/cadabra/Manifest @@ -1,3 +1,2 @@ -DIST cadabra-2.4.5.7.tar.gz 26833908 BLAKE2B 3f44ba9035f8181e475232da7bf81c8baf6b19b37651c438ebb656867e54fc213cd4f547a512a1be270a0449ea4b390bd777a4e38ad174e151723c2e2a90c4ae SHA512 860e166ba965fdd6e8afa4265d62ae388f33b8468912e63f7575a819419b9ee90a93e058e7aa4a9c44c80afef9fcce96c7b9d3fd1d35b3059a82548e54804328 DIST cadabra-2.5.14_p1.gh.tar.gz 33379310 BLAKE2B a9545ae7bc4813a297e78b074661efaf84392e93c3a6f92bbfdbcfb46a051d68eaa3f4aeabae4d59d24ecac8e1bae1e4892f5f4c54d2145eae244f0988610c0f SHA512 df0d273f5ea891173201224f93516a4b6f8e889ded427491e404ae8a22672853bf34afbc27d03c5dfeff4a5f649d0bfdc8e1a30d8cb78759581888fe52926507 DIST microtex-9dd1fb04884cbb1701806c6ad6f5405b4f01d934.gh.tar.gz 5493473 BLAKE2B fecc45a5dea35d00fd3475a35e150e4eef166637d7315d637a2fcc06b32bec6ce90c2adb514af3a10fdf81e9bcbe4e230852500f8224606c868899af200e7208 SHA512 ff0eddb66af88c1654db2877d4065e67ee8cbaeea662eb23bbaacb7e05a18fa733a82c0f8b8f882fcd2a366fd4925e72a22dfc47cb5adf9b310c15bfac0fdba2 diff --git a/sci-mathematics/cadabra/cadabra-2.4.5.7.ebuild b/sci-mathematics/cadabra/cadabra-2.4.5.7.ebuild deleted file mode 100644 index 394b8b7e2266..000000000000 --- a/sci-mathematics/cadabra/cadabra-2.4.5.7.ebuild +++ /dev/null @@ -1,112 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -MAJOR="$(ver_cut 1)" -CADABRA="${PN}${MAJOR}" - -PYTHON_COMPAT=( python3_{10..14} ) - -inherit xdg-utils python-single-r1 cmake - -DESCRIPTION="Field-theory motivated approach to computer algebra" -HOMEPAGE="https://cadabra.science/ - https://github.com/kpeeters/cadabra2/" - -if [[ "${PV}" == *9999* ]] ; then - inherit git-r3 - - EGIT_REPO_URI="https://github.com/kpeeters/${CADABRA}.git" -else - SRC_URI="https://github.com/kpeeters/${CADABRA}/archive/${PV}.tar.gz - -> ${P}.tar.gz" - S="${WORKDIR}/${CADABRA}-${PV}" - - KEYWORDS="~amd64 ~x86" -fi - -LICENSE="GPL-3" -SLOT="0/${MAJOR}" -IUSE="gui +jupyter test" -REQUIRED_USE="${PYTHON_REQUIRED_USE}" -RESTRICT="!test? ( test )" - -RDEPEND=" - ${PYTHON_DEPS} - app-text/dvipng - dev-cpp/glibmm:2 - dev-db/sqlite:3= - dev-libs/boost:= - dev-libs/gmp:=[cxx] - dev-libs/jsoncpp:= - dev-libs/libsigc++:2 - dev-texlive/texlive-basic - $(python_gen_cond_dep ' - dev-python/gmpy2:2[${PYTHON_USEDEP}] - dev-python/matplotlib[${PYTHON_USEDEP}] - dev-python/sympy[${PYTHON_USEDEP}] - jupyter? ( dev-python/jupyter[${PYTHON_USEDEP}] ) - ') - gui? ( - dev-cpp/gtkmm:3.0 - ) -" -DEPEND=" - ${RDEPEND} -" -BDEPEND=" - $(python_gen_cond_dep 'dev-python/pybind11[${PYTHON_USEDEP}]') -" - -PATCHES=( "${FILESDIR}/${CADABRA}-2.4.5.7-cmake.patch" ) - -DOCS=( CODE_OF_CONDUCT.md CONTRIBUTING.md JUPYTER.rst README.rst ) - -xdg_update() { - if use gui ; then - xdg_icon_cache_update - xdg_desktop_database_update - xdg_mimeinfo_database_update - fi -} - -src_prepare() { - # Clean postinst script which calls libtool and icon-cache update - echo '#!/bin/sh' > "${S}/config/postinst.in" || die - - # Fix "PYTHON_EXECUTABLE" in Jupyter kernel - sed -i "s|@PYTHON_EXECUTABLE@|${EPYTHON}|" \ - "${S}/jupyterkernel/kernelspec/kernel.json.in" || die - - cmake_src_prepare -} - -src_configure() { - local -a mycmakeargs=( - -DENABLE_SYSTEM_JSONCPP=ON - -DPACKAGING_MODE=ON - -DUSE_PYTHON_3=ON - -DBUILD_AS_CPP_LIBRARY=OFF - -DENABLE_JUPYTER=OFF # special Xeus Jupyter kernel (uses xtl) - -DENABLE_MATHEMATICA=OFF - -DINSTALL_TARGETS_ONLY=OFF - -DBUILD_TESTS="$(usex test)" - -DENABLE_FRONTEND="$(usex gui)" - -DENABLE_PY_JUPYTER="$(usex jupyter)" - ) - cmake_src_configure -} - -src_install() { - cmake_src_install - python_optimize -} - -pkg_postinst() { - xdg_update -} - -pkg_postrm() { - xdg_update -} diff --git a/sci-mathematics/cadabra/files/cadabra2-2.4.5.7-cmake.patch b/sci-mathematics/cadabra/files/cadabra2-2.4.5.7-cmake.patch deleted file mode 100644 index ef2a929a921d..000000000000 --- a/sci-mathematics/cadabra/files/cadabra2-2.4.5.7-cmake.patch +++ /dev/null @@ -1,50 +0,0 @@ -index 0f2ba31..7e6ace8 100644 ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -166,7 +166,6 @@ if(CMAKE_COMPILER_IS_GNUCC OR CMAKE_COMPILER_IS_GNUCXX) - message(FATAL_ERROR "GCC version must be at least 4.9 for regex support! See http://askubuntu.com/questions/428198/getting-installing-gcc-g-4-9-on-ubuntu and then set the environment variables CXX to g++-4.9 and CC to gcc-4.9. You may have to erase the build directory before re-running cmake.") - endif() - endif() -- set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -g -O2 -Wall -fvisibility=hidden -Wno-unused-but-set-variable") - endif() - - # Clang -@@ -175,7 +174,6 @@ if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang") - if (CMAKE_CXX_COMPILER_VERSION VERSION_LESS 3.5) - message(FATAL_ERROR "Clang version must be at least 3.5 to avoid known bugs.") - endif() -- set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -g -O2 -fvisibility=hidden -Wall -Wextra -Wunused") - endif() - - # Visual Studio -index d21069e..69f4f52 100644 ---- a/c++lib/CMakeLists.txt -+++ b/c++lib/CMakeLists.txt -@@ -48,14 +48,6 @@ if(CMAKE_COMPILER_IS_GNUCXX) - add_definitions("-Wall -g -Wno-unused-but-set-variable") - endif() - --if(CMAKE_COMPILER_IS_GNUCC OR CMAKE_COMPILER_IS_GNUCXX) -- set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -O2") --endif() -- --if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang") -- set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -O2") --endif() -- - if(MSVC) - set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS ON) - set(MSVC_FLAGS -index b7869a9..91567ec 100644 ---- a/frontend/gtkmm/CMakeLists.txt -+++ b/frontend/gtkmm/CMakeLists.txt -@@ -160,9 +160,6 @@ if (NOT INSTALL_TARGETS_ONLY) - install(FILES ${CADABRA_IMAGES_DIR}/256x256/cadabra2-gtk.png DESTINATION ${ICON_PREFIX}/share/icons/hicolor/256x256/apps) - install(FILES ${CADABRA_IMAGES_DIR}/cadabra2-gtk.svg DESTINATION ${ICON_PREFIX}/share/icons/hicolor/scalable/apps) - install(FILES ${CADABRA_ROOT_DIR}/config/cadabra2-gtk.desktop DESTINATION ${ICON_PREFIX}/share/applications) -- install(CODE "execute_process(COMMAND touch ${ICON_PREFIX_WITH_DESTDIR}/share/icons/hicolor/icon-theme.cache)") -- install(CODE "execute_process(COMMAND gtk-update-icon-cache-3.0 {ICON_PREFIX_WITH_DESTDIR}/share/icons/hicolor)") -- install(CODE "execute_process(COMMAND chmod go+r ${ICON_PREFIX_WITH_DESTDIR}/share/icons/hicolor/icon-theme.cache)") - - # Install shared libraries on Windows. - # https://stackoverflow.com/questions/32662215/how-do-you-install-gtk-3-0-on-windows diff --git a/sci-mathematics/glpk/glpk-5.0-r4.ebuild b/sci-mathematics/glpk/glpk-5.0-r4.ebuild new file mode 100644 index 000000000000..8e4ad52dad0c --- /dev/null +++ b/sci-mathematics/glpk/glpk-5.0-r4.ebuild @@ -0,0 +1,79 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools flag-o-matic + +DESCRIPTION="GNU Linear Programming Kit" +HOMEPAGE="https://www.gnu.org/software/glpk/" +SRC_URI="mirror://gnu/${PN}/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0/40" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86" +IUSE="doc examples gmp mysql" + +BDEPEND="virtual/pkgconfig" +DEPEND=" + sci-libs/amd:0= + sci-libs/colamd:= + virtual/zlib:= + gmp? ( dev-libs/gmp:0= ) + mysql? ( + dev-db/mysql-connector-c + dev-libs/libltdl + )" +RDEPEND="${DEPEND}" + +PATCHES=( + "${FILESDIR}"/${PN}-4.65-fix-mysql-include-prefix.patch + "${FILESDIR}"/${PN}-4.65-debundle-system-libs.patch + "${FILESDIR}"/${PN}-5.0-aliasing.patch +) + +src_prepare() { + # Newer GNU standards fail to compile thanks to "bool", while using + # ISO C17 breaks thread safety... and also fails to compile. + append-cflags -std=gnu17 + + default + + eautoreconf +} + +src_configure() { + econf --disable-static \ + --disable-odbc \ + $(use_enable mysql dl) \ + $(use_enable mysql) \ + $(use_with gmp) +} + +src_install() { + default + + if use examples; then + # The top-level Makefile descends into the "examples" directory + # unconditionally, building a program and excreting build + # artifacts that we don't want to install. Note: this still + # leaves the example program /usr/bin/glpsol installed. An + # additional "emake ... uninstall" could probably take care + # of that if desired. + emake -C examples clean + + # Installing the Makefiles for the examples does the user no + # good without the top-level Makefile. + rm examples/Makefile{.in,.am,} \ + || die "failed to remove example Makefiles" + + insinto "/usr/share/doc/${PF}" + doins -r examples + docompress -x "/usr/share/doc/${PF}/examples" + fi + + use doc && dodoc doc/*.pdf doc/notes/*.pdf doc/*.txt + + # no static archives + find "${D}" -name '*.la' -delete || die +} diff --git a/sec-keys/openpgp-keys-gentoo-developers/Manifest b/sec-keys/openpgp-keys-gentoo-developers/Manifest index 9647d495c626..792b965ee5f3 100644 --- a/sec-keys/openpgp-keys-gentoo-developers/Manifest +++ b/sec-keys/openpgp-keys-gentoo-developers/Manifest @@ -1,2 +1,3 @@ DIST openpgp-keys-gentoo-developers-20260202-active-devs.gpg 3118901 BLAKE2B 8dc43d8ad7b6082305a99958432f73dfab73a4691b96dc45c0cace66db682e35e4c35058babcb38e98ea7151c9ac4763d0c5367a605b628300b24d4286f25d8c SHA512 7aaff1aaff65d674b53ed1381c97b0394841cf7e9b2596a10c84804fbb9a50503b84fcd94f2f653d9832635f194266e5e90e9ae4f285026772252147f576ee5e DIST openpgp-keys-gentoo-developers-20260209-active-devs.gpg 3130830 BLAKE2B 90346c13c456cb0c577ff1d0ff869bc27a526a717b4d93038ab66f7ae0bb9cfc91fde6437f776cf08759633927da9299c7a40ea9738861829c9ee63b934c11c0 SHA512 9e6bc110c9b3d4375be42b31950db36e14877a79667f7c7ae1f54415dbc4d9876732396403e73bb5f79ad7e7e7ac84f43c4707635f223e84c1384e1af0783a19 +DIST openpgp-keys-gentoo-developers-20260216-active-devs.gpg 3156781 BLAKE2B 63d4c1247db831095d06f5f39a4a12a797c675e054537bf012eec30bd7e1a22c0eb067ffe101fb88c792a1b898bff98ba24a7b76dc416d8805a4be0d1e3512dd SHA512 2af35b6116b224f3601637edf86891eaf6a53e790204159282010ec67b355e9dfeb2a413eaa08d50d3b8c22b22326796bc9a906002e0bdbb2d7fbf803966566a diff --git a/sec-keys/openpgp-keys-gentoo-developers/openpgp-keys-gentoo-developers-20260216.ebuild b/sec-keys/openpgp-keys-gentoo-developers/openpgp-keys-gentoo-developers-20260216.ebuild new file mode 100644 index 000000000000..3b89dc0c4d92 --- /dev/null +++ b/sec-keys/openpgp-keys-gentoo-developers/openpgp-keys-gentoo-developers-20260216.ebuild @@ -0,0 +1,236 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{10..14} ) +inherit edo python-any-r1 + +DESCRIPTION="Gentoo Authority Keys (GLEP 79)" +HOMEPAGE="https://www.gentoo.org/downloads/signatures/" +if [[ ${PV} == 9999* ]] ; then + PROPERTIES="live" + + BDEPEND="net-misc/curl" +else + SRC_URI="https://qa-reports.gentoo.org/output/keys/active-devs-${PV}.gpg -> ${P}-active-devs.gpg" + KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~sparc x86" +fi + +S="${WORKDIR}" + +LICENSE="public-domain" +SLOT="0" +IUSE="test" +RESTRICT="!test? ( test )" + +BDEPEND+=" + $(python_gen_any_dep 'dev-python/python-gnupg[${PYTHON_USEDEP}]') + || ( app-crypt/gnupg[nls] app-crypt/freepg[nls] ) + >=sec-keys/openpgp-keys-gentoo-auth-20240703 + test? ( + sys-apps/grep[pcre] + ) +" + +python_check_deps() { + python_has_version "dev-python/python-gnupg[${PYTHON_USEDEP}]" +} + +src_unpack() { + if [[ ${PV} == 9999* ]] ; then + curl https://qa-reports.gentoo.org/output/active-devs.gpg -o ${P}-active-devs.gpg || die + else + default + fi +} + +src_compile() { + export GNUPGHOME="${T}"/.gnupg + + get_gpg_keyring_dir() { + if [[ ${PV} == 9999* ]] ; then + echo "${WORKDIR}" + else + echo "${DISTDIR}" + fi + } + + local mygpgargs=( + --no-autostart + --no-default-keyring + --homedir "${GNUPGHOME}" + ) + + # From verify-sig.eclass: + # "GPG upstream knows better than to follow the spec, so we can't + # override this directory. However, there is a clean fallback + # to GNUPGHOME." + addpredict /run/user + + mkdir "${GNUPGHOME}" || die + chmod 700 "${GNUPGHOME}" || die + + # Convert the binary keyring into an armored one so we can process it + edo gpg "${mygpgargs[@]}" --import "$(get_gpg_keyring_dir)"/${P}-active-devs.gpg + edo gpg "${mygpgargs[@]}" --export --armor > "${WORKDIR}"/gentoo-developers.asc + + # Now strip out the keys which are expired and/or missing a signature + # from our L2 developer authority key + edo "${EPYTHON}" "${FILESDIR}"/keyring-mangler.py \ + "${BROOT}"/usr/share/openpgp-keys/gentoo-auth.asc \ + "${WORKDIR}"/gentoo-developers.asc \ + "${WORKDIR}"/gentoo-developers-sanitised.asc +} + +src_test() { + export GNUPGHOME="${T}"/tests/.gnupg + + local mygpgargs=( + # We don't have --no-autostart here because we need + # to let it spawn an agent for the key generation. + --no-default-keyring + --homedir "${GNUPGHOME}" + ) + + # From verify-sig.eclass: + # "GPG upstream knows better than to follow the spec, so we can't + # override this directory. However, there is a clean fallback + # to GNUPGHOME." + addpredict /run/user + + # Check each of the keys to verify they're trusted by + # the L2 developer key. + mkdir -p "${GNUPGHOME}" || die + chmod 700 "${GNUPGHOME}" || die + cd "${T}"/tests || die + + # First, grab the L1 key, and mark it as ultimately trusted. + edo gpg "${mygpgargs[@]}" --import "${BROOT}"/usr/share/openpgp-keys/gentoo-auth.asc + edo gpg "${mygpgargs[@]}" --import-ownertrust "${BROOT}"/usr/share/openpgp-keys/gentoo-auth-ownertrust.txt + + # Generate a temporary key which isn't signed by anything to check + # whether we're detecting unexpected keys. + # + # The test is whether this appears in the sanitised keyring we + # produce in src_compile (it should not be in there). + # + # https://www.gnupg.org/documentation/manuals/gnupg/Unattended-GPG-key-generation.html + edo gpg "${mygpgargs[@]}" --batch --gen-key <<-EOF + %echo Generating temporary key for testing... + + %no-protection + %transient-key + %pubring ${P}-ebuild-test-key.asc + + Key-Type: 1 + Key-Length: 2048 + Subkey-Type: 1 + Subkey-Length: 2048 + Name-Real: Larry The Cow + Name-Email: larry@example.com + Expire-Date: 0 + Handle: ${P}-ebuild-test-key + + %commit + %echo Temporary key generated! + EOF + + # Import the new injected key that shouldn't be signed by anything into a temporary testing keyring + edo gpg "${mygpgargs[@]}" --import "${T}"/tests/${P}-ebuild-test-key.asc + + # Sign a tiny file with the to-be-injected key for testing rejection below + echo "Hello world!" > "${T}"/tests/signme || die + edo gpg "${mygpgargs[@]}" -u "Larry The Cow <larry@example.com>" --sign "${T}"/tests/signme || die + + # keyring-mangler will fail with no valid keys so import the sanitised list from src_compile. + edo gpg "${mygpgargs[@]}" --import "${WORKDIR}"/gentoo-developers-sanitised.asc + + edo gpg "${mygpgargs[@]}" --export --armor > "${T}"/tests/tainted-keyring.asc + + # keyring-mangler.py should now produce a keyring *without* it + edo "${EPYTHON}" "${FILESDIR}"/keyring-mangler.py \ + "${BROOT}"/usr/share/openpgp-keys/gentoo-auth.asc \ + "${T}"/tests/tainted-keyring.asc \ + "${T}"/tests/gentoo-developers-sanitised.asc | tee "${T}"/tests/keyring-mangler.log + assert "Key mangling in tests failed?" + + # Check the log to verify the injected key got detected + grep -q "Dropping key.*Larry The Cow" "${T}"/tests/keyring-mangler.log || die "Did not remove injected key from test keyring!" + + # gnupg doesn't have an easy way for us to actually just.. ask + # if a key is known via WoT. So, sign a file using the key + # we just made, and then try to gpg --verify it, and check exit code. + # + # Let's now double check by seeing if a file signed by the injected key + # is rejected. + if gpg "${mygpgargs[@]}" --keyring "${T}"/tests/gentoo-developers-sanitised.asc --verify "${T}"/tests/signme.gpg ; then + die "'gpg --verify' using injected test key succeeded! This shouldn't happen!" + fi + + # Bonus lame sanity check + edo gpg "${mygpgargs[@]}" --check-trustdb 2>&1 | tee "${T}"/tests/trustdb.log + assert "trustdb call failed!" + + check_trust_levels() { + local mode=${1} + + while IFS= read -r line; do + # gpg: depth: 0 valid: 1 signed: 2 trust: 0-, 0q, 0n, 0m, 0f, 1u + # gpg: depth: 1 valid: 2 signed: 0 trust: 0-, 0q, 0n, 0m, 2f, 0u + if [[ ${line} == *depth* ]] ; then + depth=$(echo ${line} | grep -Po "depth: [0-9]") + trust=$(echo ${line} | grep -Po "trust:.*") + + trust_uncalculated=$(echo ${trust} | grep -Po "[0-9]-") + [[ ${trust_uncalculated} == 0 ]] || ${mode} + + trust_insufficient=$(echo ${trust} | grep -Po "[0-9]q") + [[ ${trust_insufficient} == 0 ]] || ${mode} + + trust_never=$(echo ${trust} | grep -Po "[0-9]n") + [[ ${trust_never} == 0 ]] || ${mode} + + trust_marginal=$(echo ${trust} | grep -Po "[0-9]m") + [[ ${trust_marginal} == 0 ]] || ${mode} + + trust_full=$(echo ${trust} | grep -Po "[0-9]f") + [[ ${trust_full} != 0 ]] || ${mode} + + trust_ultimate=$(echo ${trust} | grep -Po "[0-9]u") + [[ ${trust_ultimate} == 1 ]] || ${mode} + + echo "${trust_uncalculated}, ${trust_insufficient}" + fi + done < "${T}"/tests/trustdb.log + } + + # First, check with the bad key still in the test keyring. + # This is supposed to fail, so we want it to return 1 + check_trust_levels "return 1" && die "Trustdb passed when it should have failed!" + + # Now check without the bad key in the test keyring. + # This one should pass. + # + # Drop the bad key first (https://superuser.com/questions/174583/how-to-delete-gpg-secret-keys-by-force-without-fingerprint) + keys=$(gpg "${mygpgargs[@]}" --fingerprint --with-colons --batch "Larry The Cow <larry@example.com>" \ + | grep "^fpr" \ + | sed -n 's/^fpr:::::::::\([[:alnum:]]\+\):/\1/p') + + local key + for key in ${keys[@]} ; do + nonfatal edo gpg "${mygpgargs[@]}" --batch --yes --delete-secret-keys ${key} + done + + edo gpg "${mygpgargs[@]}" --batch --yes --delete-keys "Larry The Cow <larry@example.com>" + check_trust_levels "return 0" || die "Trustdb failed when it should have passed!" + + gpgconf --kill gpg-agent || die +} + +src_install() { + insinto /usr/share/openpgp-keys + newins gentoo-developers-sanitised.asc gentoo-developers.asc + + # TODO: install an ownertrust file like sec-keys/openpgp-keys-gentoo-auth? +} diff --git a/sec-keys/openpgp-keys-marcusb/Manifest b/sec-keys/openpgp-keys-marcusb/Manifest new file mode 100644 index 000000000000..57f1028e2ac3 --- /dev/null +++ b/sec-keys/openpgp-keys-marcusb/Manifest @@ -0,0 +1,2 @@ +DIST 9FCFF9AEE365B2A8918FD3576CA3CD34C6363576.asc 3935 BLAKE2B 2cc476bdfd112a81e82fea26dc6d367d0e88d4ecb8626e0d78c4da86c870401bcbbbd1d32aef1dbb09314248ea681dbbd549ab237a0fcf82a12580f100229e86 SHA512 70eb46a51765b2ce6eae9771fc1c9c51cb47056c7eb5ad6a82ed4b07aeece30634541a95fda7401679a902838fb7eec92f8667bd58f49e8f92d2855f0ab8c6db +DIST openpgp-keys-marcusb-openpgp-20260217.asc 7257 BLAKE2B 6164e018823eb3690a148d16a1f427ad073b35389342758e73f2d61850f47b26ddcb9bbc2cdcd0daaa8dbb82c6c0cf15b1cd746a758ced09916200f174dccffd SHA512 81b1690fbdef94bf2cf09945ccd1eaa1b48e6e4efc65802d70f4713d44b8d5fdf64e447f8c38a511caf91a47b0a7dc8123b2c4c5758aea17c8b160725b196cca diff --git a/sec-keys/openpgp-keys-marcusb/metadata.xml b/sec-keys/openpgp-keys-marcusb/metadata.xml new file mode 100644 index 000000000000..7005c32b12c1 --- /dev/null +++ b/sec-keys/openpgp-keys-marcusb/metadata.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "https://liguros.gitlab.io/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>sam@gentoo.org</email> + <name>Sam James</name> + </maintainer> + + <origin>gentoo-staging</origin> +</pkgmetadata>
\ No newline at end of file diff --git a/sec-keys/openpgp-keys-marcusb/openpgp-keys-marcusb-20260217.ebuild b/sec-keys/openpgp-keys-marcusb/openpgp-keys-marcusb-20260217.ebuild new file mode 100644 index 000000000000..7df9d952af17 --- /dev/null +++ b/sec-keys/openpgp-keys-marcusb/openpgp-keys-marcusb-20260217.ebuild @@ -0,0 +1,17 @@ +# Copyright 2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +SEC_KEYS_VALIDPGPKEYS=( + 9FCFF9AEE365B2A8918FD3576CA3CD34C6363576:marcusb:manual,openpgp +) + +inherit sec-keys + +DESCRIPTION="OpenPGP key used by Marcus Butler (marcusb)" +HOMEPAGE="https://marcusb.org/contact.html" +SRC_URI+=" https://marcusb.org/9FCFF9AEE365B2A8918FD3576CA3CD34C6363576.asc" + +SLOT="0" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86" diff --git a/sys-apps/gawk/Manifest b/sys-apps/gawk/Manifest index d114c368007e..0efcc0864953 100644 --- a/sys-apps/gawk/Manifest +++ b/sys-apps/gawk/Manifest @@ -1,3 +1,4 @@ DIST gawk-5.3.2.tar.xz 3749260 BLAKE2B 8536777bb45c63d737ef08b3f1b98285cb29ec54400e35b2139c2bc66b464e3ec4950274614d95d94dc7eae18c57333b7c30a44d993855258155fc82b749042a SHA512 2268150fa35ae049a6ff3d0d0fa110db10477014c25f50e2ab4e3ee5fd60133369d2a994f59db4eb718020a0af5c4003ae7278c63e7fffa72f431ff4a1429e48 DIST gawk-5.3.2.tar.xz.sig 488 BLAKE2B ea843fce8ca2b93a8006260e8022f3426daccc18b93bd75ef1fb18e391ce110a10682e75509d771ba9c419d1e22a584f66ff9a436512b76b039a85afed6c7596 SHA512 490f29271d06f374e25e13724f5944215734d0c6da465da5b2a723e83fa31a03c7a16e5c8853465561bc0676139588b1046c598554ccde4ae24563455ee28b65 DIST gawk-5.3.66.tar.gz 6631201 BLAKE2B 5bf2151f3f75b0239c94cfbfdbc8d767871cfafa5f595ca91cb2ffc504f2673a186405bd9ea051a6f872a6a8bfd0346b0987e5d807f9e8bea2b8e6396e62b00b SHA512 03af8ad55dcb29ab61ad5cf7871e463f8f9582232d54ac04646a1694d1c362619079c923270716ef104902e0dab8f55718563329ae7534efeb337ce9010606db +DIST gawk-5.3.67.tar.gz 6636798 BLAKE2B 42e0d20b36e72f5568acb049b9005a7468bd969197620f18abf61d813243b5dd3b192a46ce2ebca2acb9249d3adc24b754b9e7254b8b41bb1ef054b6eaa5363d SHA512 13ecb3784fc57a07e6eba6086c2c80f7829e63ac23649c1fc6dda1546d7fba82049f8280a1149b70685cad7422ec7c34b8220b864f4d19e4fd86a03bc898fd9e diff --git a/sys-apps/gawk/gawk-5.3.67.ebuild b/sys-apps/gawk/gawk-5.3.67.ebuild new file mode 100644 index 000000000000..7f9283e4971c --- /dev/null +++ b/sys-apps/gawk/gawk-5.3.67.ebuild @@ -0,0 +1,112 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +GAWK_IS_BETA=yes + +DESCRIPTION="GNU awk pattern-matching language" +HOMEPAGE="https://www.gnu.org/software/gawk/gawk.html" + +if [[ ${GAWK_IS_BETA} == yes || ${PV} == *_beta* ]] ; then + if [[ ${PV} == *_beta* ]] ; then + # Beta versioning is sometimes for the release prior, e.g. + # 5.2.1_beta is labelled upstream as 5.2.0b. + MY_PV=${PV/_beta/b} + MY_PV=$(ver_cut 1-2 ${MY_PV}).$(($(ver_cut 3 ${MY_PV}) - 1))$(ver_cut 4- ${MY_PV}) + MY_P=${PN}-${MY_PV} + + S="${WORKDIR}"/${MY_P} + else + MY_P=${P} + fi + + SRC_URI="https://www.skeeve.com/gawk/${MY_P}.tar.gz" +else + VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/gawk.asc + inherit verify-sig flag-o-matic + + SRC_URI="mirror://gnu/gawk/${P}.tar.xz" + SRC_URI+=" verify-sig? ( mirror://gnu/gawk/${P}.tar.xz.sig )" + + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~arm64-macos ~x64-macos ~x64-solaris" +fi + +LICENSE="GPL-3+ pma? ( AGPL-3+ )" +SLOT="0" +# The gawk docs claim MPFR support is "on parole" and may be removed, +# https://www.gnu.org/software/gawk/manual/html_node/MPFR-On-Parole.html +# however this is somewhat outdated information, see +# https://public-inbox.org/libc-alpha/202412190851.4BJ8psq4404509@freefriends.org/ +IUSE="+mpfr pma nls readline" + +RDEPEND=" + mpfr? ( + dev-libs/gmp:= + dev-libs/mpfr:= + ) + readline? ( sys-libs/readline:= ) +" +DEPEND="${RDEPEND}" +BDEPEND=" + >=sys-apps/texinfo-7.1 + >=sys-devel/bison-3.5.4 + nls? ( sys-devel/gettext ) +" + +if [[ ${GAWK_IS_BETA} != yes ]] ; then + BDEPEND+=" verify-sig? ( sec-keys/openpgp-keys-gawk )" +fi + +src_prepare() { + default + + use elibc_musl && append-cppflags -D__GNU_LIBRARY__ + + # Use symlinks rather than hardlinks, and disable version links + sed -i \ + -e '/^LN =/s:=.*:= $(LN_S):' \ + -e '/install-exec-hook:/s|$|\nfoo:|' \ + Makefile.in doc/Makefile.in || die + + # bug #413327 + sed -i '/^pty1:$/s|$|\n_pty1:|' test/Makefile.in || die + + # Fix standards conflict on Solaris + if [[ ${CHOST} == *-solaris* ]] ; then + sed -i \ + -e '/\<_XOPEN_SOURCE\>/s/1$/600/' \ + -e '/\<_XOPEN_SOURCE_EXTENDED\>/s/1//' \ + extension/inplace.c || die + fi +} + +src_configure() { + # README says gawk may not work properly if built with non-Bison. + # We already BDEPEND on Bison, so just unset YACC rather than + # guessing if we need to do yacc.bison or bison -y. + unset YACC + + local myeconfargs=( + --cache-file="${S}"/config.cache + --libexec='$(libdir)/misc' + $(use_with mpfr) + $(use_enable nls) + $(use_enable pma) + $(use_with readline) + ) + + econf "${myeconfargs[@]}" +} + +src_install() { + # Automatic dodocs barfs + rm -rf README_d || die + + default + + # Install headers + insinto /usr/include/awk + doins *.h + rm "${ED}"/usr/include/awk/config.h || die +} diff --git a/sys-auth/polkit-qt/polkit-qt-0.200.0-r1.ebuild b/sys-auth/polkit-qt/polkit-qt-0.200.0-r1.ebuild index ee59f3874307..a66eb9b6415a 100644 --- a/sys-auth/polkit-qt/polkit-qt-0.200.0-r1.ebuild +++ b/sys-auth/polkit-qt/polkit-qt-0.200.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -12,7 +12,7 @@ HOMEPAGE="https://api.kde.org/legacy/polkit-qt-1/html/index.html" if [[ ${KDE_BUILD_TYPE} = release ]]; then SRC_URI="mirror://kde/stable/${KDE_ORG_NAME}/${KDE_ORG_NAME}-${PV}.tar.xz" - KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86" + KEYWORDS="~amd64 ~arm arm64 ~loong ~ppc ~ppc64 ~riscv ~x86" fi LICENSE="LGPL-2" diff --git a/sys-devel/binutils-hppa64/binutils-hppa64-2.45.1.ebuild b/sys-devel/binutils-hppa64/binutils-hppa64-2.45.1.ebuild index 256551504225..e3e6fdfe5b12 100644 --- a/sys-devel/binutils-hppa64/binutils-hppa64-2.45.1.ebuild +++ b/sys-devel/binutils-hppa64/binutils-hppa64-2.45.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -11,7 +11,7 @@ DESCRIPTION="Tools necessary to build programs" HOMEPAGE="https://sourceware.org/binutils/" LICENSE="GPL-3+" -IUSE="cet debuginfod doc gprofng hardened multitarget +nls pgo +plugins static-libs test vanilla xxhash zstd" +IUSE="cet +debuginfod doc gprofng hardened multitarget +nls pgo +plugins static-libs test vanilla xxhash zstd" # Variables that can be set here (ignored for live ebuilds) # PATCH_VER - the patchset version diff --git a/sys-devel/binutils-hppa64/binutils-hppa64-2.46.0.ebuild b/sys-devel/binutils-hppa64/binutils-hppa64-2.46.0.ebuild index bcc22f2655ec..e3e6fdfe5b12 100644 --- a/sys-devel/binutils-hppa64/binutils-hppa64-2.46.0.ebuild +++ b/sys-devel/binutils-hppa64/binutils-hppa64-2.46.0.ebuild @@ -11,7 +11,7 @@ DESCRIPTION="Tools necessary to build programs" HOMEPAGE="https://sourceware.org/binutils/" LICENSE="GPL-3+" -IUSE="cet debuginfod doc gprofng hardened multitarget +nls pgo +plugins static-libs test vanilla xxhash zstd" +IUSE="cet +debuginfod doc gprofng hardened multitarget +nls pgo +plugins static-libs test vanilla xxhash zstd" # Variables that can be set here (ignored for live ebuilds) # PATCH_VER - the patchset version diff --git a/sys-devel/binutils-hppa64/binutils-hppa64-9999.ebuild b/sys-devel/binutils-hppa64/binutils-hppa64-9999.ebuild index d109700ecb8c..4df88caefe98 100644 --- a/sys-devel/binutils-hppa64/binutils-hppa64-9999.ebuild +++ b/sys-devel/binutils-hppa64/binutils-hppa64-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -11,7 +11,7 @@ DESCRIPTION="Tools necessary to build programs" HOMEPAGE="https://sourceware.org/binutils/" LICENSE="GPL-3+" -IUSE="cet debuginfod doc gprofng hardened multitarget +nls pgo +plugins static-libs test vanilla xxhash zstd" +IUSE="cet +debuginfod doc gprofng hardened multitarget +nls pgo +plugins static-libs test vanilla xxhash zstd" # Variables that can be set here (ignored for live ebuilds) # PATCH_VER - the patchset version diff --git a/sys-devel/binutils/binutils-2.45.1.ebuild b/sys-devel/binutils/binutils-2.45.1.ebuild index 97b97ef2e7ac..60020b4fc0d7 100644 --- a/sys-devel/binutils/binutils-2.45.1.ebuild +++ b/sys-devel/binutils/binutils-2.45.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -9,7 +9,7 @@ DESCRIPTION="Tools necessary to build programs" HOMEPAGE="https://sourceware.org/binutils/" LICENSE="GPL-3+" -IUSE="cet debuginfod doc gprofng hardened multitarget +nls pgo +plugins static-libs test vanilla xxhash zstd" +IUSE="cet +debuginfod doc gprofng hardened multitarget +nls pgo +plugins static-libs test vanilla xxhash zstd" # Variables that can be set here (ignored for live ebuilds) # PATCH_VER - the patchset version diff --git a/sys-devel/binutils/binutils-2.45.9999.ebuild b/sys-devel/binutils/binutils-2.45.9999.ebuild index 6bef4f37b48f..7f793e68fcd4 100644 --- a/sys-devel/binutils/binutils-2.45.9999.ebuild +++ b/sys-devel/binutils/binutils-2.45.9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -9,7 +9,7 @@ DESCRIPTION="Tools necessary to build programs" HOMEPAGE="https://sourceware.org/binutils/" LICENSE="GPL-3+" -IUSE="cet debuginfod doc gprofng hardened multitarget +nls pgo +plugins static-libs test vanilla xxhash zstd" +IUSE="cet +debuginfod doc gprofng hardened multitarget +nls pgo +plugins static-libs test vanilla xxhash zstd" # Variables that can be set here (ignored for live ebuilds) # PATCH_VER - the patchset version diff --git a/sys-devel/binutils/binutils-2.46.0.ebuild b/sys-devel/binutils/binutils-2.46.0.ebuild index 8cd8be815711..357b3d282c1a 100644 --- a/sys-devel/binutils/binutils-2.46.0.ebuild +++ b/sys-devel/binutils/binutils-2.46.0.ebuild @@ -9,7 +9,7 @@ DESCRIPTION="Tools necessary to build programs" HOMEPAGE="https://sourceware.org/binutils/" LICENSE="GPL-3+" -IUSE="cet debuginfod doc gprofng hardened multitarget +nls pgo +plugins static-libs test vanilla xxhash zstd" +IUSE="cet +debuginfod doc gprofng hardened multitarget +nls pgo +plugins static-libs test vanilla xxhash zstd" # Variables that can be set here (ignored for live ebuilds) # PATCH_VER - the patchset version diff --git a/sys-devel/binutils/binutils-9999.ebuild b/sys-devel/binutils/binutils-9999.ebuild index e6d0f2c851e3..98e6d46e7564 100644 --- a/sys-devel/binutils/binutils-9999.ebuild +++ b/sys-devel/binutils/binutils-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -9,7 +9,7 @@ DESCRIPTION="Tools necessary to build programs" HOMEPAGE="https://sourceware.org/binutils/" LICENSE="GPL-3+" -IUSE="cet debuginfod doc gprofng hardened multitarget +nls pgo +plugins static-libs test vanilla xxhash zstd" +IUSE="cet +debuginfod doc gprofng hardened multitarget +nls pgo +plugins static-libs test vanilla xxhash zstd" # Variables that can be set here (ignored for live ebuilds) # PATCH_VER - the patchset version diff --git a/sys-devel/dwz/dwz-0.16.ebuild b/sys-devel/dwz/dwz-0.16.ebuild index 97087e98a928..c2230a955c10 100644 --- a/sys-devel/dwz/dwz-0.16.ebuild +++ b/sys-devel/dwz/dwz-0.16.ebuild @@ -20,7 +20,7 @@ else " S="${WORKDIR}/${PN}" - KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~sparc x86" + KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 ~sparc x86" BDEPEND="verify-sig? ( sec-keys/openpgp-keys-dwz )" fi diff --git a/sys-devel/dwz/dwz-9999.ebuild b/sys-devel/dwz/dwz-9999.ebuild index 9fb66d139c6d..2d1a4408ffe4 100644 --- a/sys-devel/dwz/dwz-9999.ebuild +++ b/sys-devel/dwz/dwz-9999.ebuild @@ -20,7 +20,7 @@ else " S="${WORKDIR}/${PN}" - KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" BDEPEND="verify-sig? ( sec-keys/openpgp-keys-dwz )" fi diff --git a/sys-devel/gcc/gcc-13.4.1_p20260212.ebuild b/sys-devel/gcc/gcc-13.4.1_p20260212.ebuild index 4ebb20852232..b89dfe05705f 100644 --- a/sys-devel/gcc/gcc-13.4.1_p20260212.ebuild +++ b/sys-devel/gcc/gcc-13.4.1_p20260212.ebuild @@ -42,7 +42,7 @@ if tc_is_live ; then EGIT_BRANCH=releases/gcc-$(ver_cut 1) elif [[ -z ${TOOLCHAIN_USE_GIT_PATCHES} ]] ; then # Don't keyword live ebuilds - #KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" :; fi diff --git a/sys-devel/gcc/gcc-14.3.1_p20260213.ebuild b/sys-devel/gcc/gcc-14.3.1_p20260213.ebuild index 8219d1e54e06..5028aacc074e 100644 --- a/sys-devel/gcc/gcc-14.3.1_p20260213.ebuild +++ b/sys-devel/gcc/gcc-14.3.1_p20260213.ebuild @@ -30,7 +30,7 @@ if tc_is_live ; then EGIT_BRANCH=releases/gcc-$(ver_cut 1) elif [[ -z ${TOOLCHAIN_USE_GIT_PATCHES} ]] ; then # m68k doesnt build (ICE, bug 932733) - #KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" :; fi diff --git a/sys-devel/gcc/gcc-15.2.1_p20260214.ebuild b/sys-devel/gcc/gcc-15.2.1_p20260214.ebuild index 84ae52db2cac..29bb735637e7 100644 --- a/sys-devel/gcc/gcc-15.2.1_p20260214.ebuild +++ b/sys-devel/gcc/gcc-15.2.1_p20260214.ebuild @@ -30,7 +30,7 @@ if tc_is_live ; then EGIT_BRANCH=master elif [[ -z ${TOOLCHAIN_USE_GIT_PATCHES} ]] ; then # Don't keyword live ebuilds - #KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 ~sparc x86" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" :; fi diff --git a/sys-fabric/mstflint/files/mstflint-4.23.0_p1-C99-compat.patch b/sys-fabric/mstflint/files/mstflint-4.23.0_p1-C99-compat.patch deleted file mode 100644 index 7b9b90ea9360..000000000000 --- a/sys-fabric/mstflint/files/mstflint-4.23.0_p1-C99-compat.patch +++ /dev/null @@ -1,55 +0,0 @@ -From 3d033115fd0937b675b75f5d1fc12dc015efcf07 Mon Sep 17 00:00:00 2001 -From: Florian Weimer <fweimer@redhat.com> -Date: Sun, 23 Apr 2023 18:30:33 +0200 -Subject: [PATCH] Add additional #include directives for C99 compatibility - -https://github.com/Mellanox/mstflint/pull/774 -Avoid implicit declarations of cibfw_register_mfai_pack, -cibfw_register_mfai_unpack, cibfw_register_mfai_size by including -<tools_layouts/cibfw_layouts.h>, and of getenv by including -<stdlib.h>. ---- - mflash/mflash_gw.c | 2 ++ - mflash/mflash_new_gw.c | 3 +++ - reg_access/reg_access.c | 1 + - 3 files changed, 6 insertions(+) - -diff --git a/mflash/mflash_gw.c b/mflash/mflash_gw.c -index f296700d..55e5cb9d 100644 ---- a/mflash/mflash_gw.c -+++ b/mflash/mflash_gw.c -@@ -43,6 +43,8 @@ - #include "mflash_access_layer.h" - #include "flash_int_defs.h" - -+#include <stdlib.h> -+ - #ifdef __WIN__ - // - // Windows (Under DDK) -diff --git a/mflash/mflash_new_gw.c b/mflash/mflash_new_gw.c -index 3bd044ea..4d0bb21d 100644 ---- a/mflash/mflash_new_gw.c -+++ b/mflash/mflash_new_gw.c -@@ -42,6 +42,9 @@ - #include "mflash_dev_capability.h" - #include "mflash_access_layer.h" - #include "flash_int_defs.h" -+ -+#include <stdlib.h> -+ - #define DPRINTF(args) \ - do \ - { \ -diff --git a/reg_access/reg_access.c b/reg_access/reg_access.c -index 622b1a15..736e67b3 100644 ---- a/reg_access/reg_access.c -+++ b/reg_access/reg_access.c -@@ -37,6 +37,7 @@ - #include <tools_layouts/reg_access_hca_layouts.h> - #include <tools_layouts/reg_access_switch_layouts.h> - #include <tools_layouts/tools_open_layouts.h> -+#include <tools_layouts/cibfw_layouts.h> - - #define REG_ID_PCNR 0x5050 - #define REG_ID_PAOS 0x5006 diff --git a/sys-fs/zfs-kmod/zfs-kmod-2.3.4.ebuild b/sys-fs/zfs-kmod/zfs-kmod-2.3.4.ebuild index 34c7f6a79cc0..63cafe0b3841 100644 --- a/sys-fs/zfs-kmod/zfs-kmod-2.3.4.ebuild +++ b/sys-fs/zfs-kmod/zfs-kmod-2.3.4.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -31,7 +31,7 @@ else ZFS_KERNEL_DEP="${ZFS_KERNEL_DEP%%.*}.$(( ${ZFS_KERNEL_DEP##*.} + 1))" if [[ ${PV} != *_rc* ]] ; then - KEYWORDS="amd64 ~arm64 ~loong ~ppc64 ~riscv ~sparc" + KEYWORDS="amd64 arm64 ~loong ppc64 ~riscv ~sparc" fi fi diff --git a/sys-kernel/genkernel/Manifest b/sys-kernel/genkernel/Manifest index cf2a140b2378..93c1b2311a38 100644 --- a/sys-kernel/genkernel/Manifest +++ b/sys-kernel/genkernel/Manifest @@ -1,8 +1,10 @@ DIST LVM2.2.02.188.tgz 2421550 BLAKE2B bed90c8454cd4b20fdeec6dcbf5a9f97c9310671aea3b2252f8069cfa439fcb050f5ad95f928a7125a1734a4dc5ac985da99a4a570538e377a7205191a505476 SHA512 8c9db17c49dc8ebcab6c7f246ab85870a80658be811cf7f4d8f36abbebafa355b030bfc1e3bcbad73ccccb7fcd06d4a95ac547ca15d18d33715126da92703dca DIST LVM2.2.03.22.tgz 2755031 BLAKE2B 79bbea84bd82f111c1bb5de336e6a9f1368b2c9e43f075dccaa90c7746a364259ad278adf650379eca75f2803ed74e74dd372be2cca8518462182657f96a0033 SHA512 17cd24ceee8026481566824b688dafd03ec816201d5cb3549cb7fc8a36f4cdaa982faaef4dcd26debfe775dea5ffa2744798164314ea6dc99a84f8ccccfc33ff +DIST b2-5.4.2.tar.gz 1201271 BLAKE2B 573a94ce0300fee53a161e1ba7838890e0a8ea074b568eb2df479f70639d05e28b6d2b4a301d82dddc58f26a83f8d2c41cac41272fe689d456007acb49d1ca6f SHA512 fd68cedc9936a463525df47b87b10c8fb72d9eec8355fd1b460ddf4a9c25369beb282a6a8229d54a01d56a82fcc5224af837fc8bc58042af02e688e9c0d4f4c6 DIST bcache-tools-1.0.8_p20141204.tar.gz 22158 BLAKE2B dd36102c5668cab3072ea635a5a30128df6cd75b75e7f8bba17ad0a830746ff2f75a46b56d4211aeb4657453d3bbeb98b8b794c53ff724b3fbf0874068d70dc9 SHA512 53d6e764d6d42c4367b0bd98199cae3c18054d5707a7880af3a422f9db332b44941015eaed7e1cd170b3546307ed54a2f99558a68d98c76b7bb6234d29206b54 DIST bcache-tools-1.1_p20230217.tar.gz 44025 BLAKE2B c6e1c3e64d1f53f581cd6ea80b919bd7db93e0ec048de70e65cfa1b28ae59e921c7cdcf4c3d0f25823ab323f76ef29671bc2e3db616bad34e8c193aaa3a38c89 SHA512 aac047cb773ebc9e9c139f0a3da5721511a24265a497ce26fd607a26195d402ef78fa5f3c76d609195ee48267395527bd7083abe996e9fa3009b43ac85f94652 DIST boost_1_79_0.tar.bz2 113456811 BLAKE2B 61f47ca022e60745868e6bdd3b5c75603dd68d878e126dcbb73de5b40fc03c0eec8eede3ec304ece58050435ef2fc1ed7eb763773c20673f85e32bbf4d5f978a SHA512 70909e0561c213d10a1fdd692f9ae7b293d3cdc63e925bdc207da9e9bba6e86474341100e7ee5de6d94f9561196b1a3a1597055a7b7382babf8931131170a312 +DIST boost_1_90_0.tar.bz2 170662122 BLAKE2B daaf524dd26c0e24bec6e461749305277b9b86059f3eb3435ae4928a6537eb198234c597324faa40eb372343233daaf5f5aae886160d9833b04992ac57e385c9 SHA512 1c81b60f63367d7249f277f0a569c181926dcf5a725e30433dd336205f1782880489dd00df6a1a74fd107765d3ca2cd49f806788cabb7d5700a8a55927a9a199 DIST btrfs-progs-v6.3.2.tar.xz 3160148 BLAKE2B e6815eeb90c1dbf9a6c4a5aa72262c18b2031a9305efc9024b1fe7b770a256e1d4cb3b01646a0a523f0e26af2d499382bf42420385c56593ace515a6c225f54d SHA512 d8580250994b3e399babec4478515686f1e3cc2e4fc01ccbc7b00a51b6131452d209cb7f43dbbac5375286546d182fcdf7884bbc1a8ad6889c3f15d85ba8f8d5 DIST btrfs-progs-v6.7.1.tar.xz 2565576 BLAKE2B 4e05e9dd80e5531425490970318389aef280f61cc636a80aa2bbc630399afd4f1f3ce649d194822ff93ff4b1774d65a504e3bed6f1426ff60830e4c0d0ac87b0 SHA512 8a2e735f036a0778a2482d42c813012269903174232bc2924af41b72bbcfb49783d5f3b7d0af085285a68754748bd76b6534a498a47cdcea94020f4262281ffc DIST busybox-1.36.1.tar.bz2 2525473 BLAKE2B e515825cb3ab1c520e16b9c2512e9fc72947366a72a0466bff59b507fdffbc78fc9d16b44a26116175fc7a429d849ad944b1bc379d36c6d3a0eb20969997336e SHA512 8c0c754c9ae04b5e6b23596283a7d3a4ef96225fe179f92d6f6a99c69c0caa95b1aa56c267f52d7c807f6cc69e1f0b7dd29a8ac624098f601738f8c0c57980d4 @@ -25,6 +27,7 @@ DIST genkernel-4.3.14.tar.xz 469672 BLAKE2B 8ccc7b4b1ccda0771b4e701610e7be32980b DIST genkernel-4.3.15.tar.xz 470256 BLAKE2B 12ab3308e8ae8a4cf55d27c0b346ced820320a544e64ba4cb5ba49bb03f6a16dc0c3c0323aa0cc13cc1f296132be55059cb66e30df3d72d31eb22ee35d9d05f3 SHA512 ae7a9cb2e0b54f9878f6079f217754c395f2a15e2d19f74c4e53207bc60b1f3328ae563beaa7d67a6274f394f84802eb598b069a6833bd1f4f790a5bb646f30b DIST genkernel-4.3.16.tar.xz 470516 BLAKE2B 87e62f7c97268bd567e9e7bb34914abb6a518215b364fe9fd1aa01db4015ff6a47e5d53479239181176867f626dab3f5a1d2af3036e6af1b684ade87b01b0faa SHA512 87d6bd335e2610dadb56fc3f0775927fc642b200c9dfd7f7a823a544a17f25fbc007a7fc4b04fefadfd31d172bf58cebd8958ebec6deea91cdf101bbb7f8792d DIST genkernel-4.3.17.tar.xz 472852 BLAKE2B 82b134eb4c122d1a332dd5908aa6698dde55d15c97f5e3831e4d06868180ab6a673c6d046831f223473cfd4780ac3f03b09483c6b6532676ac907f111442a107 SHA512 96a1e43662d77b7bfe795dd52381514f40ade93edca167c3d0e9bd72c2dc305bc5de22de823bf09a42ec7dd89344b624a34603da4fd8594a4e718047ee0fdb96 +DIST genkernel-4.3.18.tar.xz 472316 BLAKE2B 57afaa259ff3ebc7a8c34bee4f27c00a34c6c6fbb0a2767d56ce6ed62626e73af0fdce7fe0cd4f06d69f34d959607dc05a0983062f1d90ae95d3518a5dee7d54 SHA512 6007805b95dd1d0eae444751c210aca2d82cae058e535bdedfcbe48e52b041309a237782b8639e719884e8333ec110540d2c3dd5bc158ca821f67cdcbb16924b DIST gnupg-1.4.23.tar.bz2 3749353 BLAKE2B ec5e6bef0c7bb2a65813d7852cebeaa24c4855f9d9d9e802070da50b89fff56b747682933aa766dd130f849efcfe28f7aa74f3153405429bcf3845ef29c6dd6e SHA512 78dc52a2010202a4afc8814b29fda657a6c9fe230d5e7db11ae040edd2b0ca819e1baa4dbd6c0d04d36cd353df484e83f52d17759d2891c2cf7025c0b5d36612 DIST hwids-20210613.tar.gz 3867741 BLAKE2B 64c4b0a83058a2052f7b132241008a3cc75452e93a9a57a9159c357c23fd09ee256abc2b94e700b5d8e8bd4e231ae12932d2c2f32fb03853207739cb3387047d SHA512 4568f6b8c0ca80ec772bd2785d4dc169d1d13a721472a15399158d9a7f31abbe414c5c8cfdf1a3b81cce4e33742a4b6e005e97e3e907643d0afdc8e953624fea DIST json-c-0.13.1.tar.gz 639425 BLAKE2B 1da310309f9ce03306a9fd4a161670e460cf0b2222348df7c006902390f74a4cf100aab1ce6ac8a361a278dd917c114a278de5b3445817f3a40ae287478add46 SHA512 e984db2a42b9c95b52c798b2e8dd1b79951a8dcba27370af30c43b9549fbb00008dbcf052a535c528209aaee38e6d1f760168b706905ae72f3e704ed20f8a1a1 diff --git a/sys-kernel/genkernel/genkernel-4.3.18.ebuild b/sys-kernel/genkernel/genkernel-4.3.18.ebuild new file mode 100644 index 000000000000..03fd82a8060f --- /dev/null +++ b/sys-kernel/genkernel/genkernel-4.3.18.ebuild @@ -0,0 +1,290 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +# genkernel-9999 -> latest Git branch "master" +# genkernel-VERSION -> normal genkernel release + +EAPI=8 + +PYTHON_COMPAT=( python3_{10..14} ) + +inherit bash-completion-r1 python-single-r1 + +# Whenever you bump a GKPKG, check if you have to move +# or add new patches! +VERSION_BCACHE_TOOLS="1.1_p20230217" +VERSION_BOOST="1.90.0" +VERSION_BTRFS_PROGS="6.7.1" +VERSION_BUSYBOX="1.36.1" +VERSION_B2=5.4.2 +VERSION_COREUTILS="9.4" +VERSION_CRYPTSETUP="2.6.1" +VERSION_DMRAID="1.0.0.rc16-3" +VERSION_DROPBEAR="2022.83" +VERSION_EUDEV="3.2.14" +VERSION_EXPAT="2.5.0" +VERSION_E2FSPROGS="1.47.3" +VERSION_FUSE="2.9.9" +# gnupg-2.x needs several new deps packaged +VERSION_GPG="1.4.23" +VERSION_HWIDS="20210613" +# open-iscsi-2.1.9 static build not working yet +VERSION_ISCSI="2.1.8" +VERSION_JSON_C="0.18" +VERSION_KMOD="31" +VERSION_LIBAIO="0.3.113" +VERSION_LIBGCRYPT="1.10.3" +VERSION_LIBGPGERROR="1.51" +VERSION_LIBXCRYPT="4.4.38" +VERSION_LVM="2.03.22" +VERSION_LZO="2.10" +VERSION_MDADM="4.2" +VERSION_POPT="1.19" +VERSION_STRACE="6.15" +VERSION_THIN_PROVISIONING_TOOLS="0.9.0" +# unionfs-fuse-3.4 needs fuse:3 +VERSION_UNIONFS_FUSE="2.0" +VERSION_USERSPACE_RCU="0.14.0" +VERSION_UTIL_LINUX="2.39.3" +VERSION_XFSPROGS="6.4.0" +VERSION_XZ="5.4.2" +VERSION_ZLIB="1.3.1" +VERSION_ZSTD="1.5.5" +VERSION_KEYUTILS="1.6.3" + +COMMON_URI=" + https://git.kernel.org/pub/scm/linux/kernel/git/colyli/bcache-tools.git/snapshot/a5e3753516bd39c431def86c8dfec8a9cea1ddd4.tar.gz -> bcache-tools-${VERSION_BCACHE_TOOLS}.tar.gz + https://boostorg.jfrog.io/artifactory/main/release/${VERSION_BOOST}/source/boost_${VERSION_BOOST//./_}.tar.bz2 + https://www.kernel.org/pub/linux/kernel/people/kdave/btrfs-progs/btrfs-progs-v${VERSION_BTRFS_PROGS}.tar.xz + https://www.busybox.net/downloads/busybox-${VERSION_BUSYBOX}.tar.bz2 + https://github.com/bfgroup/b2/archive/refs/tags/${VERSION_B2}.tar.gz -> b2-${VERSION_B2}.tar.gz + mirror://gnu/coreutils/coreutils-${VERSION_COREUTILS}.tar.xz + https://www.kernel.org/pub/linux/utils/cryptsetup/v$(ver_cut 1-2 ${VERSION_CRYPTSETUP})/cryptsetup-${VERSION_CRYPTSETUP}.tar.xz + https://people.redhat.com/~heinzm/sw/dmraid/src/dmraid-${VERSION_DMRAID}.tar.bz2 + https://matt.ucc.asn.au/dropbear/releases/dropbear-${VERSION_DROPBEAR}.tar.bz2 + https://github.com/eudev-project/eudev/releases/download/v${VERSION_EUDEV}/eudev-${VERSION_EUDEV}.tar.gz + https://github.com/libexpat/libexpat/releases/download/R_${VERSION_EXPAT//\./_}/expat-${VERSION_EXPAT}.tar.xz + https://www.kernel.org/pub/linux/kernel/people/tytso/e2fsprogs/v${VERSION_E2FSPROGS}/e2fsprogs-${VERSION_E2FSPROGS}.tar.xz + https://github.com/libfuse/libfuse/releases/download/fuse-${VERSION_FUSE}/fuse-${VERSION_FUSE}.tar.gz + mirror://gnupg/gnupg/gnupg-${VERSION_GPG}.tar.bz2 + https://github.com/gentoo/hwids/archive/hwids-${VERSION_HWIDS}.tar.gz + https://github.com/open-iscsi/open-iscsi/archive/${VERSION_ISCSI}.tar.gz -> open-iscsi-${VERSION_ISCSI}.tar.gz + https://s3.amazonaws.com/json-c_releases/releases/json-c-${VERSION_JSON_C}.tar.gz + https://www.kernel.org/pub/linux/utils/kernel/kmod/kmod-${VERSION_KMOD}.tar.xz + https://releases.pagure.org/libaio/libaio-${VERSION_LIBAIO}.tar.gz + mirror://gnupg/libgcrypt/libgcrypt-${VERSION_LIBGCRYPT}.tar.bz2 + mirror://gnupg/libgpg-error/libgpg-error-${VERSION_LIBGPGERROR}.tar.bz2 + https://github.com/besser82/libxcrypt/releases/download/v${VERSION_LIBXCRYPT}/libxcrypt-${VERSION_LIBXCRYPT}.tar.xz + https://mirrors.kernel.org/sourceware/lvm2/LVM2.${VERSION_LVM}.tgz + https://www.oberhumer.com/opensource/lzo/download/lzo-${VERSION_LZO}.tar.gz + https://www.kernel.org/pub/linux/utils/raid/mdadm/mdadm-${VERSION_MDADM}.tar.xz + http://ftp.rpm.org/popt/releases/popt-1.x/popt-${VERSION_POPT}.tar.gz + https://github.com/strace/strace/releases/download/v${VERSION_STRACE}/strace-${VERSION_STRACE}.tar.xz + https://github.com/jthornber/thin-provisioning-tools/archive/v${VERSION_THIN_PROVISIONING_TOOLS}.tar.gz -> thin-provisioning-tools-${VERSION_THIN_PROVISIONING_TOOLS}.tar.gz + https://github.com/rpodgorny/unionfs-fuse/archive/v${VERSION_UNIONFS_FUSE}.tar.gz -> unionfs-fuse-${VERSION_UNIONFS_FUSE}.tar.gz + https://lttng.org/files/urcu/userspace-rcu-${VERSION_USERSPACE_RCU}.tar.bz2 + https://www.kernel.org/pub/linux/utils/util-linux/v${VERSION_UTIL_LINUX:0:4}/util-linux-${VERSION_UTIL_LINUX}.tar.xz + https://www.kernel.org/pub/linux/utils/fs/xfs/xfsprogs/xfsprogs-${VERSION_XFSPROGS}.tar.xz + https://tukaani.org/xz/xz-${VERSION_XZ}.tar.gz + https://zlib.net/zlib-${VERSION_ZLIB}.tar.gz + https://github.com/facebook/zstd/archive/v${VERSION_ZSTD}.tar.gz -> zstd-${VERSION_ZSTD}.tar.gz + https://git.kernel.org/pub/scm/linux/kernel/git/dhowells/keyutils.git/snapshot/keyutils-${VERSION_KEYUTILS}.tar.gz +" + +if [[ ${PV} == 9999* ]] ; then + EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/${PN}.git" + inherit git-r3 + S="${WORKDIR}/${P}" + SRC_URI="${COMMON_URI}" +else + SRC_URI="https://dev.gentoo.org/~bkohler/dist/${P}.tar.xz + ${COMMON_URI}" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +fi + +DESCRIPTION="Gentoo automatic kernel building scripts" +HOMEPAGE="https://wiki.gentoo.org/wiki/Genkernel https://gitweb.gentoo.org/proj/genkernel.git/" + +LICENSE="GPL-2" +SLOT="0" +IUSE="ibm +firmware systemd" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +# Note: +# We need sys-devel/* deps like autoconf or automake at _runtime_ +# because genkernel will usually build things like LVM2, cryptsetup, +# mdadm... during initramfs generation which will require these +# things. +DEPEND=" + app-text/asciidoc +" +RDEPEND="${PYTHON_DEPS} + app-alternatives/cpio + app-alternatives/bc + app-alternatives/yacc + app-alternatives/lex + >=app-misc/pax-utils-1.2.2 + app-portage/elt-patches + app-portage/portage-utils + dev-build/autoconf + dev-build/autoconf-archive + dev-build/automake + dev-build/cmake + dev-build/libtool + dev-util/gperf + sys-apps/sandbox + virtual/pkgconfig + elibc_glibc? ( sys-libs/glibc[static-libs(+)] ) + firmware? ( sys-kernel/linux-firmware ) +" + +PATCHES=( + "${FILESDIR}"/genkernel-4.3.16-globbing-workaround.patch +) + +src_unpack() { + if [[ ${PV} == 9999* ]]; then + git-r3_src_unpack + else + local gk_src_file + for gk_src_file in ${A} ; do + if [[ ${gk_src_file} == genkernel-* ]] ; then + unpack "${gk_src_file}" + fi + done + fi +} + +src_prepare() { + default + + if [[ ${PV} == 9999* ]] ; then + einfo "Updating version tag" + GK_V="$(git describe --tags | sed 's:^v::')-git" + sed "/^GK_V/s,=.*,='${GK_V}',g" -i "${S}"/genkernel + einfo "Producing ChangeLog from Git history..." + pushd "${S}/.git" >/dev/null || die + git log > "${S}"/ChangeLog || die + popd >/dev/null || die + fi + + # Export all the versions that may be used by genkernel build. + for v in $(set |awk -F= '/^VERSION_/{print $1}') ; do + export ${v} + done + + if use ibm ; then + cp "${S}"/arch/ppc64/kernel-2.6{-pSeries,} || die + else + cp "${S}"/arch/ppc64/kernel-2.6{.g5,} || die + fi + +} + +src_compile() { + emake PREFIX=/usr +} + +src_install() { + emake DESTDIR="${D}" PREFIX=/usr install + dodoc AUTHORS ChangeLog README TODO + + python_fix_shebang "${ED}"/usr/share/genkernel/path_expander.py + + newbashcomp "${FILESDIR}"/genkernel-4.bash "${PN}" + insinto /etc + doins "${FILESDIR}"/initramfs.mounts + + pushd "${DISTDIR}" &>/dev/null || die + insinto /usr/share/genkernel/distfiles + doins ${A/${P}.tar.xz/} + popd &>/dev/null || die + + # Workaround for bug 944499, for now this patch will live in FILESDIR and is + # conditionally installed but we could add it to genkernel.git and conditionally + # remove it here instead. + if ! use systemd; then + insinto /usr/share/genkernel/patches/lvm/${VERSION_LVM}/ + doins "${FILESDIR}"/lvm2-2.03.20-dm_lvm_rules_no_systemd_v2.patch + fi +} + +pkg_postinst() { + # Wiki is out of date + #echo + #elog 'Documentation is available in the genkernel manual page' + #elog 'as well as the following URL:' + #echo + #elog 'https://wiki.gentoo.org/wiki/Genkernel' + #echo + + local replacing_version + for replacing_version in ${REPLACING_VERSIONS} ; do + if ver_test "${replacing_version}" -lt 4 ; then + # This is an upgrade which requires user review + + ewarn "" + ewarn "Genkernel v4.x is a new major release which touches" + ewarn "nearly everything. Be careful, read updated manpage" + ewarn "and pay special attention to program output regarding" + ewarn "changed kernel command-line parameters!" + + # Show this elog only once + break + fi + done + + if [[ $(find /boot -name 'kernel-genkernel-*' 2>/dev/null | wc -l) -gt 0 ]] ; then + ewarn '' + ewarn 'Default kernel filename was changed from "kernel-genkernel-<ARCH>-<KV>"' + ewarn 'to "vmlinuz-<KV>". Please be aware that due to lexical ordering the' + ewarn '*default* boot entry in your boot manager could still point to last kernel' + ewarn 'built with genkernel before that name change, resulting in booting old' + ewarn 'kernel when not paying attention on boot.' + fi + + # Show special warning for users depending on remote unlock capabilities + local gk_config="${EROOT}/etc/genkernel.conf" + if [[ -f "${gk_config}" ]] ; then + if grep -q -E "^SSH=[\"\']?yes" "${gk_config}" 2>/dev/null ; then + if ! grep -q dosshd /proc/cmdline 2>/dev/null ; then + ewarn "" + ewarn "IMPORTANT: SSH is currently enabled in your genkernel config" + ewarn "file (${gk_config}). However, 'dosshd' is missing from current" + ewarn "kernel command-line. You MUST add 'dosshd' to keep sshd enabled" + ewarn "in genkernel v4+ initramfs!" + fi + fi + + if grep -q -E "^CMD_CALLBACK=.*emerge.*@module-rebuild" "${gk_config}" 2>/dev/null ; then + elog "" + elog "Please remove 'emerge @module-rebuild' from genkernel config" + elog "file (${gk_config}) and make use of new MODULEREBUILD option" + elog "instead." + fi + fi + + local n_root_args=$(grep -o -- '\<root=' /proc/cmdline 2>/dev/null | wc -l) + if [[ ${n_root_args} -gt 1 ]] ; then + ewarn "WARNING: Multiple root arguments (root=) on kernel command-line detected!" + ewarn "If you are appending non-persistent device names to kernel command-line," + ewarn "next reboot could fail in case running system and initramfs do not agree" + ewarn "on detected root device name!" + fi + + if [[ -d /run ]] ; then + local permission_run_expected="drwxr-xr-x" + local permission_run=$(stat -c "%A" /run) + if [[ "${permission_run}" != "${permission_run_expected}" ]] ; then + ewarn "Found the following problematic permissions:" + ewarn "" + ewarn " ${permission_run} /run" + ewarn "" + ewarn "Expected:" + ewarn "" + ewarn " ${permission_run_expected} /run" + ewarn "" + ewarn "This is known to be causing problems for any UDEV-enabled service." + fi + fi +} diff --git a/sys-kernel/genkernel/genkernel-9999.ebuild b/sys-kernel/genkernel/genkernel-9999.ebuild index 8937a899966a..03fd82a8060f 100644 --- a/sys-kernel/genkernel/genkernel-9999.ebuild +++ b/sys-kernel/genkernel/genkernel-9999.ebuild @@ -13,10 +13,10 @@ inherit bash-completion-r1 python-single-r1 # Whenever you bump a GKPKG, check if you have to move # or add new patches! VERSION_BCACHE_TOOLS="1.1_p20230217" -# boost-1.84.0 needs dev-build/b2 packaged -VERSION_BOOST="1.79.0" +VERSION_BOOST="1.90.0" VERSION_BTRFS_PROGS="6.7.1" VERSION_BUSYBOX="1.36.1" +VERSION_B2=5.4.2 VERSION_COREUTILS="9.4" VERSION_CRYPTSETUP="2.6.1" VERSION_DMRAID="1.0.0.rc16-3" @@ -57,6 +57,7 @@ COMMON_URI=" https://boostorg.jfrog.io/artifactory/main/release/${VERSION_BOOST}/source/boost_${VERSION_BOOST//./_}.tar.bz2 https://www.kernel.org/pub/linux/kernel/people/kdave/btrfs-progs/btrfs-progs-v${VERSION_BTRFS_PROGS}.tar.xz https://www.busybox.net/downloads/busybox-${VERSION_BUSYBOX}.tar.bz2 + https://github.com/bfgroup/b2/archive/refs/tags/${VERSION_B2}.tar.gz -> b2-${VERSION_B2}.tar.gz mirror://gnu/coreutils/coreutils-${VERSION_COREUTILS}.tar.xz https://www.kernel.org/pub/linux/utils/cryptsetup/v$(ver_cut 1-2 ${VERSION_CRYPTSETUP})/cryptsetup-${VERSION_CRYPTSETUP}.tar.xz https://people.redhat.com/~heinzm/sw/dmraid/src/dmraid-${VERSION_DMRAID}.tar.bz2 diff --git a/sys-kernel/gentoo-kernel-bin/Manifest b/sys-kernel/gentoo-kernel-bin/Manifest index e698a7201028..da61a499b799 100644 --- a/sys-kernel/gentoo-kernel-bin/Manifest +++ b/sys-kernel/gentoo-kernel-bin/Manifest @@ -54,6 +54,10 @@ DIST gentoo-kernel-6.12.72-1.amd64.gpkg.tar 324710400 BLAKE2B 61264a4b3f74f7f7c9 DIST gentoo-kernel-6.12.72-1.arm64.gpkg.tar 294461440 BLAKE2B 3390de23cfdb9e363376347e0ab00689569426c6b524589ce0d7f65d22ce9c6e46bbbfbbdf0f31df9091e85d826ae9eb2b47d03db425b472f33a5a1e1cc2002b SHA512 c1aa5734aa4fcbe368e8ba49e8278075c9f48a0ae91080525713cde4bdc865a85265b2553bcaea3d47bee0fa626e2f544e1e07e5b821460e3c717965fc7deb52 DIST gentoo-kernel-6.12.72-1.ppc64le.gpkg.tar 74188800 BLAKE2B 9cd706ba67fd5481e81f35dcd70a24a69b2b39a69de8e420e162cd3a1e83396943c2925a395f2a84a9f293584ec086ec1083aaa135fb46bcd3f70567dd53985a SHA512 2b60a6ad29a909ff99ee2fedd95281d585fb2290d146458a1c00ce0c80a5402892049c63f4693c5dbbd9dfb293105df94af2e1850c8ff120add9a3abdc973483 DIST gentoo-kernel-6.12.72-1.x86.gpkg.tar 77824000 BLAKE2B 0deeebad22092258ff722721b000ade72ad9492c869ba0e96f6523ed48bc04cfaabe33ea42380ae6b95be295dcd1541393e403e788c9a8bebe28ac1adeecd91d SHA512 a9d743a25b80f8c46bc0ee54e66d2ccf3310b2a0c586fea4b50dfb02bf49dca05933f9a406df5d1e055fb60713743664b24168abbd650534b11ccf4a6bb1a4d2 +DIST gentoo-kernel-6.12.73-1.amd64.gpkg.tar 324710400 BLAKE2B 25ae4a3db71c2d1587f047ec925fa5e6e2e4baba449cbbe17154908a385d7a33c5f7e53f184da15318364a8acd70d968036a5998ab25db6e52f7721099ae7a7a SHA512 b2a78e73292ba7f2d45483febdbd27e8f8a0bfc9e2238c295669d900b121df4fb3bfd756a72d456025dbec3aeb4ddafc0a28a0e7fbb9415074d5f7c8640cdb28 +DIST gentoo-kernel-6.12.73-1.arm64.gpkg.tar 294440960 BLAKE2B 648ff7f3286389b8f497c16215a54df6f03c75249287bf12b4e835036f501fcbfe6afdf6dac2e1a01f1f6e01a8cbd1041be87719b94d45faa6d7d8d0940051c7 SHA512 9dc71ca82d4e354ef7c188443110f1a0d3008c69e248bedddd3764930d5b1ce5b23fe90e2b2acd4af6893ae8249dca1f4d7b06610d220156b6d280e08cb68909 +DIST gentoo-kernel-6.12.73-1.ppc64le.gpkg.tar 74209280 BLAKE2B 49ac7a77223355828a03f17e8b8266cb6dfb0f7b0443926604bc6e4b57043efe0c3c1a4fa58695673e86202b906604fe1fe3429b49112edfcd44b4b5492e01f9 SHA512 45ce2d448c6ffecbf2253d900abbe3ddfacd2e4f68afd58e3dbe8f26162e8bcaa93c3bdf9b9091265d14da0fb400baa3ebf9e2187a97605dfd59a770e78c790e +DIST gentoo-kernel-6.12.73-1.x86.gpkg.tar 77813760 BLAKE2B 5f3065d473ec5afd914ca5b9293f5cf230e0fed034d36aab4593f7787210b39cacc11ea71546394912f4401df2276044e464e32c8b4dc02e71781e9893cbe4bb SHA512 a4b679d82f8b6c39733971dc7b93f4c345a07768436c21264b2e5dce375f15ea59d2075cee7fadfa5b55f889e852cdd22571f613f2226b38b5542ba3b53d58ca DIST gentoo-kernel-6.18.10-1.amd64.gpkg.tar 472965120 BLAKE2B 5f37e167267dd981198053987f9ca76af74b55c21efb5fa952d3de29e73255ee8fed9e6948ac08469b511b888535e1b90488887e89583fe227bf6848a205911e SHA512 5f7e38d3e64bf418f6261d5955fd8469eb853581763a8dc2b85039ff2a3d0f6e79dd93d8191905786018d8029c4f067f5a392430afa8cc41890edc9a8eb2fee0 DIST gentoo-kernel-6.18.10-1.arm64.gpkg.tar 449218560 BLAKE2B 467d92087a2b7e21dc63ccc0b8a4792e14d621154ab78675e36912a468162f32d333546f04fbcb4bdfde6017003788d9d15d656932f91c0a01e97b7dbf8ab180 SHA512 6e8bc67d88f15f6458065533ca4b82612609a4cef3512c1360e448453eee154776c8e3465ff70ffecd5f781259ff37be3f38be1c490ca6b5ea6d66050708ddcd DIST gentoo-kernel-6.18.10-1.ppc64le.gpkg.tar 77035520 BLAKE2B 4f5421f36a782ca78c9ce047fcc78658d20afd2fdef6a83bed7a49ae21a0872844203b60b56b4f07647e42e7cb3bb54e3b9419d2da35faba3286c10800b51c6c SHA512 4b8713b2179cc784f10f2cf5e2212bdd2a71b57b64c9754f37bc52bbaf0580654212a86f02ead00967f440a4da159acef6e4caec54da08e12bd4ced05b926a2a @@ -62,6 +66,10 @@ DIST gentoo-kernel-6.18.11-1.amd64.gpkg.tar 475033600 BLAKE2B ece66050bc8e889359 DIST gentoo-kernel-6.18.11-1.arm64.gpkg.tar 449239040 BLAKE2B a1caf9fe23d2ac696acf62777af1716508fc0bcee03e48a0ea81099a192f796f0d2640f811566c6e26aee684e080bcb529d7fa0364255a8771e9ea682b14bffc SHA512 f269897512baa623464b5f97390343fef859a93abe4d41903a7e7bf2ec1be1071961e8b9c86227fd230c5b225c1928fc8cfc5bcc3b5df3ef9a90b67ee45045ec DIST gentoo-kernel-6.18.11-1.ppc64le.gpkg.tar 77076480 BLAKE2B 0af24938b27e771cb76e961ee848fd541552ad76a41193acd493b6a6e6c9a2f30abffe4b9ddfecaddea2ebfbb5c0f84de6ec7620438761f056867fb0d5b4758c SHA512 e6cfa2b55c9fd0b2948b829b52c3f9b32e8fc6d06d2c3cd4d8f7ecb6ce91a5a9bc181a156de7a72793c0319746d9c8c26d09f096c7f05fd9bbd5949b24dda168 DIST gentoo-kernel-6.18.11-1.x86.gpkg.tar 83394560 BLAKE2B abe4831c6dab912cd5365dc601cbd22756afde55981c4977e7c9a6f2c8d9a1d8179ab6d7674a4e9cad2546aaf9965a7e4b1139265c9ed1c1ce0cecbe40a15cb0 SHA512 31deebf47fd71282da56d45dc1508356f41ddbe2182bf40f032afc72598e07abdee3d9ea7dceb5e80729b9596c08068142b5b402e56d756caa64eb11612b6af8 +DIST gentoo-kernel-6.18.12-1.amd64.gpkg.tar 475115520 BLAKE2B a1a800059e50715f18f7e5f2c96c58d026ecacadc31b5e60f8bcf1726c4096a63d4fd1998001a209181e4fb0af10cbb89cb4920686bb8b5ce2cf957d549577b7 SHA512 076b754c920ea7003c1bc18f06fad5b31dd25d855b29549d28b1d5020f13b07fea6c42023c12ea98e824cc9cbf2e70311c6f05b2f5ea5fdd05f81dbff1beba46 +DIST gentoo-kernel-6.18.12-1.arm64.gpkg.tar 449198080 BLAKE2B 21a0b4716efb3043804d8eb5591686e235b2402e7ffa66a083abebef141793164fd79a823ded58c8b78ebddefc1a0e50758f7f92279c84749a946c8ca058622c SHA512 f07c049754363866b59d33054155cb80295917521a7f4c0d00d76983d45fcd9857a65e6e9f2fa59282b7c82fe4e87f8f7f1f690042ea64ecaec737f742e79462 +DIST gentoo-kernel-6.18.12-1.ppc64le.gpkg.tar 77127680 BLAKE2B 3315f0ab7311375c951048a1faa4c9a7c3440eadff715acb59beca07f3c060d812236dced7ba837555433a7838f845991bd5e0d50b7c9ff64462a1add1498507 SHA512 87983e034f882d2494967c582b9a3faf5e5880a1d1d69ce33a000ddf64baaa6b935c952d68bd069db4e7638aabb180d485eff9778b5316b1e7fb986a14335a82 +DIST gentoo-kernel-6.18.12-1.x86.gpkg.tar 83404800 BLAKE2B af223fe903c9f4b75d2a94ee09f017986be8f5ccd325d87673fa290c1d87260c72e173f90d4e2fe39c169cd2798e895b92282836c048904281909c6bac5fcc91 SHA512 d961b17d05741dca5e37c38aa43a2a83f17762d70385d6bf2bcf40a2ce2949e8148c9864a483039d75e6c757c9a25de7dbc64251d80539a63cabcb8cedae993c DIST gentoo-kernel-6.18.8-1.amd64.gpkg.tar 458977280 BLAKE2B 4ea0d7863626c063ed103e79bb71e757bf8e9b3734ec5498481cc47089fcbf9c7762a5b35a7bd037ac6d36b162de826a6710642db27718d1015a94f17fdc7ea6 SHA512 b30b5cb9ef625d20c25df0f298b527ceef1f086704991295bf2c8b659ba5d808da9265675d61409582951724241be753bc0e04ef00b7546813c55be1311bcad8 DIST gentoo-kernel-6.18.8-1.arm64.gpkg.tar 434759680 BLAKE2B a7b2e9c92792e1529558b8fc6aa2c58ef51a353275ddae764c4372762e1bdba0f65ff21a488c95864c6dd97bb77dcf41bca50fa994d1dbab2f111ee982d9eddf SHA512 8a9a46b0d66a7b333106fb007a5d2e943a0aa7c9f72e68e55af1c178853c525d81f42ac4c3724e9e7d737814bc72d7cb2c0452517b181fcdb48bdb4f02ad548c DIST gentoo-kernel-6.18.8-1.ppc64le.gpkg.tar 77066240 BLAKE2B a631fdf1349a4393c9e3cd31a91c02e01f95c4c66b2d12f948118c5a6ecca2ad5878abd7b5e573acec8d6978944e21eca509e4acc4ddd4873e94b39f1170687a SHA512 66a08da776ae7664e772fb603345a5061bbff408c595ccf8c7fd542d3ddcf9ddf56cdf6e605cc7863499d69bf16f471d7383e0069d6ea787102fc53d22da91fa @@ -70,6 +78,10 @@ DIST gentoo-kernel-6.18.9-1.amd64.gpkg.tar 458997760 BLAKE2B b7915479a9bc0c1f632 DIST gentoo-kernel-6.18.9-1.arm64.gpkg.tar 434841600 BLAKE2B c7a8763836387c8db2d5ac8fb7daf55693c9bbb66cccf8256207fefb89feb793fa6bcc34cb534e727761f1cd05a38e264c54fd324b988d5c495b5f29b045adf8 SHA512 b6fc4d5b9e5e6c7fc28f0df1ed409adf6f2156af7a4b8aae12fef4afc38063db89022b23b159e67a1ede3153656f6bfac72acf900f91ff7ac5f05013695d95c6 DIST gentoo-kernel-6.18.9-1.ppc64le.gpkg.tar 77066240 BLAKE2B 4c3558d416f47480e35a3ec70276bafc68916f12350ef08671fe2b20111828fd4ae53163c20e803e7899537fcfe22ce6a80d88929e096f6dce1ca76dacd90565 SHA512 0201d1278d92342d6f1cc8b69ee26cc9d742af39f5af38d87303c85264784af8828a8b3c8cd1fad9db6b7249b9921a94876004638de5309a8b676c0b06d62f20 DIST gentoo-kernel-6.18.9-1.x86.gpkg.tar 83404800 BLAKE2B 605cd6e05f51c8e323e2913eac585bb4a70f2ace0fc0aeea0862c238c62b3c6429ff2f8fc4fd63a1ee9384890ffad5ea359e05cbcc8e0b879b7e4e7daf192008 SHA512 b43f5d2faac184dcb6d127830d290306a77cef7620aa14d71f27ecc6989d68aad5143a09d57e5e79edac1e8918980ee5f2c5cf9d38036198732277b7a5cc17ed +DIST gentoo-kernel-6.19.2-1.amd64.gpkg.tar 359946240 BLAKE2B 6f3ed6068f4c9558face972c34980353d36220a2a3d4b0628903c8a6aa63b2e0f58dd304bec7f243cdde213ce07a32098191e48f24c5bb216a0ff92c6dc3e90a SHA512 4b947ef4afb279b65d8f04fa51bd6f79e49d63610790986cef30e5f8ecceb18ec69fcc7974e7effb277b79009f5b92bf0d680234150c95d0e54002c50e581aeb +DIST gentoo-kernel-6.19.2-1.arm64.gpkg.tar 317460480 BLAKE2B 421ce99ba5d0b8d3dd92aaeaf93d50c25b326ccbac0527237ef4eaadf0d42535665a2fc830cb64223b1490a6a99cf2efcc81cf78fc56db384f741e18f24de2d5 SHA512 ec7ac8921e645d197bfeb7b605c2bcd1401c63ecb0810078615139ea36906c92df8c9924847d339099f9979cfdd524fbb90341ab0c8e0d341cc44a8a7870213c +DIST gentoo-kernel-6.19.2-1.ppc64le.gpkg.tar 77864960 BLAKE2B c4baccd587a543081a12585fe9a5fefd495bb52202d67e70578b9d5d12191a4d9e613528282ce4968ccd49c896b2595e00b410ecc1c7522b7fc0974194ea9d3b SHA512 3ea9d382431533a28a7bb89dd220d0aeb909341832223a7d690b72a4b10702281dd8cb8bd3758a1aae5d099a369112333174dbeec0a65fffa1617f13574498e2 +DIST gentoo-kernel-6.19.2-1.x86.gpkg.tar 84623360 BLAKE2B ee9258b7136dcd11a150202ff14b0ddc0005ece8ad7cc6ac91c14171586a1e5f563cb277885374c2b98c8e535f3c17478900db1115eb8041ed2a18c97eede896 SHA512 093fd9d627b85fdc338341bff09ce2c6dc81f941d8f32a6cd59ba161b4a9fa17cc0c0286c95f447dae86e53abd56797a6aef34016da0173ba5eb3a79c9695154 DIST gentoo-kernel-6.6.122-1.amd64.gpkg.tar 277964800 BLAKE2B 2c5466efd8e687c13e74b471b22ce84ae89288ef4b12a431464a519e5067fb9f652aee5c534ddd58b1c41e25c5a84d56a42a4b4606dfc5fc97c2427f20719f2f SHA512 5f095c74bebc16c0c026836c7f5707fbdefb26cd57726fbeb28f8b616131c719952d4ede45a97db944489fbebbe981f508fd7c2f9fd9557733db88c1a84306e8 DIST gentoo-kernel-6.6.122-1.arm64.gpkg.tar 246753280 BLAKE2B 811ea203761a5c49a330c44b425a556055e9e439a8b470cda6af83731306e535021b4bec091f3b8c1d99c87617a62da67015dc95a694b641c6c1346d4142a6b6 SHA512 9c0a3390cd1b62d5c8a681d59a59cdc91a04282221757bfca658e17a58f4c2ca545f42be12fc29f35eb82b94945da17a5b507140bc29d2560da55961370853f6 DIST gentoo-kernel-6.6.122-1.ppc64le.gpkg.tar 65474560 BLAKE2B 46d75d4a3db6caa7936dd1f9d2bf79fc446b15a8756efaedb4754d128f901db0d0ad4ed7f7866629e53b35aced17f5b3bca8b0afaa34088bb43fc8623f17fb67 SHA512 1bb344225f59631854ccfd3600d1cbaf577ab99f5d169f0a68fbc54e2846e37fcded81282415c08645c50aeb35b43ac0bc6084bacad115a4bb6c204371b8cdb2 @@ -86,6 +98,10 @@ DIST gentoo-kernel-6.6.125-1.amd64.gpkg.tar 289566720 BLAKE2B 82f13146fd243390c0 DIST gentoo-kernel-6.6.125-1.arm64.gpkg.tar 258990080 BLAKE2B c0fc2919cce12e91fd99a41602006d2b50535789b1c5bd6d33f999b208678b0f536a4e3449103c32169c0e6a6faf843a141e2007e27f6008f9b3793b1763c4d1 SHA512 146285d19e462a9d84fd205aa26a08a60b623c2f50eb884b87f117c0608fcab2ff94ff7768945deba34ccc59ec93a3a4bf53543cf990e7b9e2f44e4844252f7f DIST gentoo-kernel-6.6.125-1.ppc64le.gpkg.tar 65464320 BLAKE2B cfad1066c04d50a2fa5d3dff8ffe580d80bf2655263ef944ac8f26cff16ee39c00d94d5f8e56ba483e0e3f166758857269a8ecafa626c6ee0ccbfd3c018fbdf6 SHA512 df050ae6cb849eab986ed910772f3228e95319fa784bf72f1a6a127924f88d3ddaf6686ccba8054c7ac817cbffdbcda93613ce7dd62710f0d5c08c1311e6fff5 DIST gentoo-kernel-6.6.125-1.x86.gpkg.tar 68720640 BLAKE2B 97188138a3ab79d81408cb4554dcb0eb6ac91dfb7b2e352518abcd7e783a010942faac7ff04fbb8f92d0f4460c2bcdddc978c2137a22f13df800ce2523d7dfea SHA512 cc4711f2e853a417068c8cf1ed516d261a080e1a27ab170a6ce233f1f4774ad48fd737b8edb89ef24410c2c010e433e67848ba79a586ff898c8aa76ba6cfdc4d +DIST gentoo-kernel-6.6.126-1.amd64.gpkg.tar 289525760 BLAKE2B efa3e44549e9dc799007c2f9ddbafefd4de187189fcd23beb035d500d16919631c09e4103d5e8fca0e44b766c43a5abf67182b707d62990dbbf25c3a925564e6 SHA512 8efcc398ae2b25d22275eae263bfc1e0d8eb25cb14d5b66769487f68e789bd900e1d6ea427663daa1b86ad33f2e295b7cac5e7edd1bf63ff0a6bd543626b5f16 +DIST gentoo-kernel-6.6.126-1.arm64.gpkg.tar 259000320 BLAKE2B a881539c7307fb671e6e2725fae7e90f895364b545739d59a146ecd4e4c39f07a70446c9d3ae5c308345e5bb733089eca6d5550ce96b22845651ca9a18147d77 SHA512 a83b7590c20b7fe14ad76a5bccca258bbde612780451a22497ebd92f7bde2273659ecf395e76a92eadf0c689785954d6c504e640f09b4b46cd030fb3ecb9c9a2 +DIST gentoo-kernel-6.6.126-1.ppc64le.gpkg.tar 65464320 BLAKE2B eb83308ac75a64cfb774080a54646320b3dc08739108338d4fb0f246412ec4da1b2dee5b88c5cd851025d6e252d730c38dd07c81e09209f3fa6aec6cd6ff0d6c SHA512 06e00288b3ca3e88408aed45459e0035b32196e0de37ae2899990d80c00f1d6c4682b88d69f90cf2da12c740c5f07dfd8850b7cacbb1f831789c7d029bc5a866 +DIST gentoo-kernel-6.6.126-1.x86.gpkg.tar 68720640 BLAKE2B b63d8b42aa935dd3be37bb23ebfbcb6d2572ece9c9d4d4a03cfcebafce72686b5c916e49d23d9f5e77e2a86e48458bad38a3b1646ad22306fa9bbefbb3090363 SHA512 5295b28c23b3f5b22b3899b5d3ca1f84ed0c25c5688d1e36488e0c39db2c06ff25dd08b5557f2390a6908defc309823b3f8c5cafea141142891381f4503fdd29 DIST linux-5.10.tar.xz 116606704 BLAKE2B b923d7b66309224f42f35f8a5fa219421b0a9362d2adacdadd8d96251f61f7230878ea297a269a7f3b3c56830f0b177e068691e1d7f88501a05653b0a13274d1 SHA512 95bc137d0cf9148da6a9d1f1a878698dc27b40f68e22c597544010a6c591ce1b256f083489d3ff45ff77753289b535135590194d88ef9f007d0ddab3d74de70e DIST linux-5.15.tar.xz 121913744 BLAKE2B 3921274b23f7938abdf3ed9334534b4581e13d7484303d3a5280eddb038999aaa8b836666a487472d9c4a219af0f06b9fecccaf348fb5510ab8762f4ef4b7e83 SHA512 d25ad40b5bcd6a4c6042fd0fd84e196e7a58024734c3e9a484fd0d5d54a0c1d87db8a3c784eff55e43b6f021709dc685eb0efa18d2aec327e4f88a79f405705a DIST linux-5.x-sha256sums-20260120.asc 372506 BLAKE2B 9073f6d878fe6ca71acc49524b47de8f5c46302df8b4c3f5904a0fb6c5ec4ea77866ccf0aadcc42ac7451ace7709af3eb13429fafdf4c28e4e368be7ce6649c0 SHA512 d785f775f70c521be3aa63eaec5ada3d17211c377be37f2594d06731617921cb3ff078141fa82bef135e4c54522a784f9be48ad6b3dfaf735811c92e9461287b @@ -94,6 +110,7 @@ DIST linux-5.x-sha256sums-20260211.asc 373886 BLAKE2B bca3610830811245d37ab2bc5c DIST linux-6.1.tar.xz 134728520 BLAKE2B ae60257860b2bd1bd708d183f0443afc60ebbd2b3d535c45e44c2e541bd0928530a3b62de6385dd4e4726ebbedcc0a871d4f3ffb4105b9f1f6d8ed7467f5688e SHA512 6ed2a73c2699d0810e54753715635736fc370288ad5ce95c594f2379959b0e418665cd71bc512a0273fe226fe90074d8b10d14c209080a6466498417a4fdda68 DIST linux-6.12.tar.xz 147906904 BLAKE2B b2ec2fc69218cacabbbe49f78384a5d259ca581b717617c12b000b16f4a4c59ee348ea886b37147f5f70fb9a7a01c1e2c8f19021078f6b23f5bc62d1c48d5e5e SHA512 a37b1823df7b4f72542f689b65882634740ba0401a42fdcf6601d9efd2e132e5a7650e70450ba76f6cd1f13ca31180f2ccee9d54fe4df89bc0000ade4380a548 DIST linux-6.18.tar.xz 154309096 BLAKE2B b94b7b9bf18aca0c3e50baf79b009a1448fc6cd9c3ee019f641cc247dcf53a4abef4274ee0608ad8cd4943af69854363a95d26e117ff23620bb07dccb158859f SHA512 88599ffdec96d150c1feb9b261ba93bb0301a9d0e1ad6bef7aeab1f5372cbfc57d8b43c7e902bd8f76921d1dbd8189663c142ea869e51d0e2b483b150ee00fe0 +DIST linux-6.19.tar.xz 156067644 BLAKE2B d1551c058e9a1201a0fa769b427255f13bb0d73fdd384e2c0302956cc9a1eeba255b013fa87a15fdad508bc00fdae2085590572c76cfe20fe2af31ba87b7d289 SHA512 01b29c7f4e5bc0c9802794c2cd027fece825f90417be229a71e60eefce530010d5d301749c54ae744e9d4a483518e769e2bb7e6e9209687681ad7fff11c3ed86 DIST linux-6.6.tar.xz 140064536 BLAKE2B 5f02fd8696d42f7ec8c5fbadec8e7270bdcfcb1f9844a6c4db3e1fd461c93ce1ccda650ca72dceb4890ebcbbf768ba8fba0bce91efc49fbd2c307b04e95665f2 SHA512 458b2c34d46206f9b4ccbac54cc57aeca1eaecaf831bc441e59701bac6eadffc17f6ce24af6eadd0454964e843186539ac0d63295ad2cc32d112b60360c39a35 DIST linux-6.x-sha256sums-20260120.asc 193071 BLAKE2B 7705ec74114923142587c593711533eb2a4c38356fa1a6e47a0a824d8c8f5cdf6e41b4c9e6f48fcd579cc9149597c85be997d5f09532e0f350626542cd1fa66a SHA512 2a22041d1977810b2aa9898369a120b3462ad0c9ec647d1ffffd9f7c85c01ff61b5bf9cf059dc9826499f79121c94ed2bb8a7a8e1a5e5ca2a9186c9a35642b28 DIST linux-6.x-sha256sums-20260130.asc 194768 BLAKE2B 1ea7a154e1135c5829578094716d395200df525af95fe937a959c8aaa07c63446092ac9b4b17773e575541cfe44cd00fc9bf0dbd19b414f3a6a52bc419f6dcd5 SHA512 60098f21738551350bf6c7e1db671ae0301f9845d5ca7bcf2a65ddb3252ddf0b11211128813a1e3ddaa089071c18bd0c5f0fedd37e87ed075bad024b26a69ab4 @@ -101,6 +118,7 @@ DIST linux-6.x-sha256sums-20260206.asc 196128 BLAKE2B 2151f609e99f6511193b26ed5a DIST linux-6.x-sha256sums-20260211.asc 197821 BLAKE2B 653fa8e3aaf0b567521f7497b3a25efbde8f8847c25b143da83ec38fc98e8b1452a829a3190dd86ad9edfac26f0c56d29e229efca34e06f0abe04f5835d67435 SHA512 dab9453d842a580c1befd22e99252b25a532ef8d4b2ca91037026c31373b1b63843d15a86de684a2753808b326c1a19f9356c34fd417c736ee1adf5665fa8803 DIST linux-6.x-sha256sums-20260213.asc 198162 BLAKE2B 1c5e0f44ac5a938575cafa106348551c71636d1ff5af8f08485861aba0c3a7db31be93202bbb5b4f4a80506726abde04035fc8788d40d31e980caab7e2381ea7 SHA512 56714feb06dd768785041d29222bee8b35c621dfab223c9b22c03774f8d45da39619a86931b7b84133802879d14487b6aff9c9f4cfb930df8931dd1261a4ccc8 DIST linux-6.x-sha256sums-20260216.asc 199522 BLAKE2B 0512d7c55637a08a0f6a09e3f2f22343502a93ea71a4e0f6c234850d52fa2cb7a338a037e6323ada6ae77f04886dc5ff5e4090ac254ccbe4efcf1a27db1710b4 SHA512 d5f82aa8ad9ae46c38d61cb9f5af2eff8c301b156cf3107c2a0f863b3517afe8b03018e9528e9b959a534c0831d0ebabef83cc82d95047ecd85be5d1562deb5f +DIST linux-6.x-sha256sums-20260217.asc 200882 BLAKE2B 4b952ef85555cf9f21ea3c729a79f5f8ab51ffd4533485dc5eb3186fa9c795fd2e190b30035a5c2594d0d883be855fc0f0ebc378724aa0c0c729388503e9671a SHA512 2f9647ba4cc5d786b0b0dcf179132e6a755f23ed182a26e0557727502657d620aa74c701aa301d3304e4d8d81df29428ff68ff9d4910b13f8b0ab87835d29db1 DIST linux-gentoo-patches-5.10.248.tar.xz 24128 BLAKE2B ee1ac9dab33c96fe5020ad8bc9c657bb72a0171aeaf3ed4fe479f4b923f92be514c55144dc80753b5df2db82c75209280f7a2867b19fd76a55ea67e9809516ec SHA512 26e5521954929c8ac396ffaf786edea7118435347e2b43ae7b7cc5abccb0f26eca0277b6914dc709687c5fdc9247735e8419b491c11ff80e8ec7d519ee6edccb DIST linux-gentoo-patches-5.15.198.tar.xz 12844 BLAKE2B 4b5de40a27b92ef2438515b9f2e48588d758d2fb75d36e11d2fe4fb5d8e8f6966d2de97fae8f6b7ec8caef0c74856fb7d14738b21257a098752f30427269cf07 SHA512 5dff279f5d04be079bdd8583cc016f2c7808d628e75c76dc2c3a85f42c0b3dbb5aaeb5b5a58ba4e32f2646d4c6a93225cbc5830bf60142384adca8c03bf93117 DIST linux-gentoo-patches-6.1.161.tar.xz 31484 BLAKE2B 524362ee01a348eef620b35a02e624ac42fef4f2fed5e3f95a2d46c329daf1478a9f2a847cab4d36415d3e6ecaf0280092c189d1f95ea634857a3f3fa56290ec SHA512 917847b68e7812245e852d8239b9a4e27c8673cd6a26f3d3ee16020a2a24c21efea3fb6116b8152b377c6c55165eb2619126694c434018b0660ba05980aa7eea @@ -122,11 +140,15 @@ DIST patch-6.12.69.xz 3832080 BLAKE2B f70cbf90f1a96e1b0384990bb238f6d433a6fe4e72 DIST patch-6.12.70.xz 3851836 BLAKE2B e271ff2ca48b4d7b339a66c3aaa0a47bb5311af45aa4a69adeabeec45377382290e9c9693444a36ae05bd63ebc5fedfe6e05130ad6aac1be972e1122b0e40d59 SHA512 66c8713ec2f637e0de4b357626d976dc6a1a55471d5c58818377a8913376ebb13ec6331a9fb5fb0c6905fd22a26ad972a4a6c824ef5dec2947eb5ab5dbd7d17b DIST patch-6.12.71.xz 3853788 BLAKE2B d472c0583aad7a51d7734b44fae29fe007dc4f7261f18ba725f863cfe053e99382fd587aab90c5a7554159fc6263667b51247f0aa1762cb9d693e5d83973753f SHA512 8f3a8d7aeee3bbbb4541002a6c9766836900e091a6c9ee0ea0d866d7ef6e48169f0187c70ef750e6e0e0e93259e8a991e1583d4e05d1d785b4b44d170128c3ea DIST patch-6.12.72.xz 3857460 BLAKE2B b716b5f20c75f1cb80a2b1e67383f3ff536ef0c4707a5b3b2d45f42639f409aaf9049a4a59ceca7c19b0ba684be31b416c214c03c2664bc909592a108239fe03 SHA512 5456674d084225295c9a1784c863608fb783690ba103788d7a27514a72dfcf04efd6817f6fa86e04fd12917ff51667dd100747ea5661a86687a8a7e062f016ee +DIST patch-6.12.73.xz 3856712 BLAKE2B e5adcfd54e99e232b6c682b8baee915bc9fb2b1ed1a3b22e3077f6fa27573c1449f57549c4476b1e6f11f864ae9886091dfd335c1a99f81d039277aa75fc0575 SHA512 a93d89091de7931ec187cd3043967e90a6959dd8a223481bbe84e89e98fe0b7166de42e4c9fa97f9bbf11dae6551578d3d18a290d406e87a4aa541ff71cf690d DIST patch-6.18.10.xz 658132 BLAKE2B 1ae06ff14a3f6e8fddc13044607db2aca2349cde4a2a6ed0dee08805d00344fce0653d292c5df5f063532fe4c3459d14ea2f3595bd173446e037cfba8c735855 SHA512 47441292df0bcfd1d673c98232ee82547d88e0c83b571d50d1ee4d5eadd46f2664dde74203c6df0183b33c4201b35e4d52543e47001efa23d37f1a664d022985 DIST patch-6.18.11.xz 670712 BLAKE2B 392006377b043bcbb6ee74f936e0b2f8d09b7be9f35c6aacdef68e60c3b117f645d35e3b4241dd0df603ccfc3866a3d307d2d4b654eb3f887d213240cb78ff68 SHA512 4ddf03816166d411924bc36a29e2f34ceac307aa07f7293863ddb75313e3bb05813d3b138f210164f77f6d8c0326c9ca95d5dbe4febcc2c7520a8e01f4121174 +DIST patch-6.18.12.xz 670328 BLAKE2B 777a3043ffd89dda18c6373e447b0181dbbc1d123efddd7a0d669cbcd02ae9e7d07529ee6380641976a56c7ca23c5c4a521c55d5824e07df6ed1fc9f40c9dec0 SHA512 b71074dfff3fb28d781b1cabc5aed4207de286a7e6f1b896e4aa40ecc794a38243496f8325bbacc39431fed71e283bec030157777b701da099ee772af5e100cf DIST patch-6.18.8.xz 571300 BLAKE2B 839d683fe10c1112d0dc6b71128b74e5de24bfc39f06b269845c7e2e74b4a5b05eb5bcb43104980354828af65c7b4af3c4b10c0ccbe2e6c6e398bf82b9462e0d SHA512 7c75c98dcae76acfae4d5b566509392ff91906ca813260f55b0b6425ff2267080289d2d1d19be656db161e0718a3073d9dc53288b779158c006ac84cac8f9b57 DIST patch-6.18.9.xz 603380 BLAKE2B 2296caebac3b92c0ed247229b1cd0f9d9d7cad6930b1a84a1cc4ff71567141a0a2e7e65d66c1df670df872961583afe13cfbad368a819d637d67d9e0b64aab65 SHA512 fd3822bec8e654b49d387eb94d9d4ca89c704d3ab52be2025c8c28e7cf648dc94cd9f1231227dd71abbc64ef1ace086aec7339691c4afd5234cba1e448ded9cc +DIST patch-6.19.2.xz 16380 BLAKE2B c23bb1db7f2c1dd085e060928fa8b25ad183e72171cbc526efa8db5b462474535d7fa68f682f6ae03a606eb80bb8c73a8447fd9dff9c012d1feb024f138ad247 SHA512 2c3435d27715dcb635c0b17b0d26a764749820f4b473c05306b68fd8d647b809ff57d469cbf6cbd5a95894bb7d0fad794145298f1c3d3ebe975c7ba487b47481 DIST patch-6.6.122.xz 5522356 BLAKE2B 80dc69fa15ee6746a26c864fe4b3d6db3f1c185799eca54ed1e7869b422050cbb500ce457d43711f1e5ea6e7b4de40a3edd9202a69d29337b9a1ff09ac318057 SHA512 2b4bdb199b6986cfb0beb4f53ff923812b7dc549227d7b50e69d811983b4c4e9374741e59f7acc3dc452b17a142392a1ac42c78230f0d22f01f6c8b277b4b32e DIST patch-6.6.123.xz 5532320 BLAKE2B 83b41dbd943b2f869b7fd920098ff86259d13caa118ed09edd61d32a1bd983a4231e36cebf54e694a81a81aca1e24545cbf0507364bf75455d80afe04d14cb79 SHA512 f1f7ef9dedf4342f3616fa8a8b3bf33db68c112bd0c119892f8042e20e030bd9547c00311f69b9b14f14fadb39f32cb4999f4c42114fb90b4268dfbe5e9c8384 DIST patch-6.6.124.xz 5545288 BLAKE2B 46002e1333a82285631ebe22c778dce3af0281a27ab460a4ed175c370b5fb558dc1a66401dae6c8348b8059c588780653de8d53e8448d68dabe3b85da246175b SHA512 d1f6af21cf5d089eb78b2408aa1afa08e0781fe15952709e68e115dafdcecb7ecaf232d624a28f1cda8917138714012a1ca74be5e7c14f4fcfb3723317364559 DIST patch-6.6.125.xz 5550500 BLAKE2B 3ffcf471bb0bfa8beb62217f61c958c0dbf410781ed2246985d2f4275bf143c8adf2e8c172ea2c3c5586c026a1b3e82ecbf043a4ff648e921d4b85f1e268dfdb SHA512 5d5a08fa0ef6cf52e6ebd8c6eddd731958f104e19094bbc2164cc809a369ff604fe832f749b12eaad2e948f4f678df764f2dd2f8408042039b213d8ce032f05a +DIST patch-6.6.126.xz 5550048 BLAKE2B a7a422fab271e3a2e1a1e5740429f8834dee20658862ba1adc58128f5d3eadb0f07ce6943ea8ca140913d4cace70f5d22bbc374b95bffa355b7e51c6a39abb4d SHA512 2ed65ddbb73355407a47eb78a21582e58449c674f0e8a40fa1d4d0b4e3a9558312fd93ed959f343e81fd694c358ae6a6bf3c70bfb6222f947ef98b5798c5cb87 diff --git a/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-6.12.73.ebuild b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-6.12.73.ebuild new file mode 100644 index 000000000000..54fd73b0b913 --- /dev/null +++ b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-6.12.73.ebuild @@ -0,0 +1,237 @@ +# Copyright 2020-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +KERNEL_IUSE_GENERIC_UKI=1 + +inherit kernel-install toolchain-funcs unpacker verify-sig + +BASE_P=linux-${PV%.*} +PATCH_PV=${PV%_p*} +PATCHSET=linux-gentoo-patches-6.12.68 +BINPKG=${P/-bin}-1 +SHA256SUM_DATE=20260217 + +DESCRIPTION="Pre-built Linux kernel with Gentoo patches" +HOMEPAGE=" + https://wiki.gentoo.org/wiki/Project:Distribution_Kernel + https://www.kernel.org/ +" +SRC_URI+=" + https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/${BASE_P}.tar.xz + https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/patch-${PATCH_PV}.xz + https://dev.gentoo.org/~mgorny/dist/linux/${PATCHSET}.tar.xz + verify-sig? ( + https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/sha256sums.asc + -> linux-$(ver_cut 1).x-sha256sums-${SHA256SUM_DATE}.asc + ) + amd64? ( + https://dev.gentoo.org/~mgorny/binpkg/amd64/kernel/sys-kernel/gentoo-kernel/${BINPKG}.gpkg.tar + -> ${BINPKG}.amd64.gpkg.tar + ) + arm64? ( + https://dev.gentoo.org/~mgorny/binpkg/arm64/kernel/sys-kernel/gentoo-kernel/${BINPKG}.gpkg.tar + -> ${BINPKG}.arm64.gpkg.tar + ) + ppc64? ( + https://dev.gentoo.org/~mgorny/binpkg/ppc64le/kernel/sys-kernel/gentoo-kernel/${BINPKG}.gpkg.tar + -> ${BINPKG}.ppc64le.gpkg.tar + ) + x86? ( + https://dev.gentoo.org/~mgorny/binpkg/x86/kernel/sys-kernel/gentoo-kernel/${BINPKG}.gpkg.tar + -> ${BINPKG}.x86.gpkg.tar + ) +" +S=${WORKDIR} + +KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86" +IUSE="debug" + +RDEPEND=" + !sys-kernel/gentoo-kernel:${SLOT} +" +PDEPEND=" + >=virtual/dist-kernel-${PV} +" +BDEPEND=" + app-alternatives/bc + app-alternatives/lex + dev-util/pahole + virtual/libelf + app-alternatives/yacc + amd64? ( app-crypt/sbsigntools ) + arm64? ( app-crypt/sbsigntools ) + verify-sig? ( >=sec-keys/openpgp-keys-kernel-20250702 ) +" + +KV_LOCALVERSION='-gentoo-dist' +KV_FULL=${PV/_p/-p}${KV_LOCALVERSION} + +QA_PREBUILT='*' + +VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/kernel.org.asc + +src_unpack() { + if use verify-sig; then + cd "${DISTDIR}" || die + verify-sig_verify_signed_checksums \ + "linux-$(ver_cut 1).x-sha256sums-${SHA256SUM_DATE}.asc" \ + sha256 "${BASE_P}.tar.xz patch-${PATCH_PV}.xz" + cd "${WORKDIR}" || die + fi + + unpacker +} + +src_prepare() { + local patch + cd "${BASE_P}" || die + eapply "${WORKDIR}/patch-${PATCH_PV}" + for patch in "${WORKDIR}/${PATCHSET}"/*.patch; do + eapply "${patch}" + # non-experimental patches always finish with Gentoo Kconfig + # we built -bins without them + if [[ ${patch} == *Add-Gentoo-Linux-support-config-settings* ]] + then + break + fi + done + + default + + # add Gentoo patchset version + local extraversion=${PV#${PATCH_PV}} + sed -i -e "s:^\(EXTRAVERSION =\).*:\1 ${extraversion/_/-}:" Makefile || die +} + +src_configure() { + # force ld.bfd if we can find it easily + local HOSTLD="$(tc-getBUILD_LD)" + if type -P "${HOSTLD}.bfd" &>/dev/null; then + HOSTLD+=.bfd + fi + local LD="$(tc-getLD)" + if type -P "${LD}.bfd" &>/dev/null; then + LD+=.bfd + fi + tc-export_build_env + local makeargs=( + V=1 + WERROR=0 + + HOSTCC="$(tc-getBUILD_CC)" + HOSTCXX="$(tc-getBUILD_CXX)" + HOSTLD="${HOSTLD}" + HOSTAR="$(tc-getBUILD_AR)" + HOSTCFLAGS="${BUILD_CFLAGS}" + HOSTLDFLAGS="${BUILD_LDFLAGS}" + + CROSS_COMPILE=${CHOST}- + AS="$(tc-getAS)" + CC="$(tc-getCC)" + LD="${LD}" + AR="$(tc-getAR)" + NM="$(tc-getNM)" + STRIP="$(tc-getSTRIP)" + OBJCOPY="$(tc-getOBJCOPY)" + OBJDUMP="$(tc-getOBJDUMP)" + READELF="$(tc-getREADELF)" + + # we need to pass it to override colliding Gentoo envvar + ARCH="$(tc-arch-kernel)" + + O="${WORKDIR}"/modprep + ) + + local kernel_dir="${BINPKG}/image/usr/src/linux-${KV_FULL}" + + # If this is set it will have an effect on the name of the output + # image. Set this variable to track this setting. + if grep -q "CONFIG_EFI_ZBOOT=y" "${kernel_dir}/.config"; then + KERNEL_EFI_ZBOOT=1 + elif use arm64 && use generic-uki; then + die "USE=generic-uki requires a CONFIG_EFI_ZBOOT enabled build" + fi + + local image="${kernel_dir}/$(dist-kernel_get_image_path)" + local uki="${image%/*}/uki.efi" + + # Override user variable with the cert used during build + openssl x509 \ + -inform DER -in "${kernel_dir}/certs/signing_key.x509" \ + -outform PEM -out "${T}/cert.pem" || + die "Failed to convert pcrpkey to PEM format" + export SECUREBOOT_SIGN_CERT=${T}/cert.pem + + if [[ -s ${uki} ]]; then + # We need to extract the plain image for the test phase + # and USE=-generic-uki. + kernel-install_extract_from_uki linux "${uki}" "${image}" + fi + + mkdir modprep || die + cp "${kernel_dir}/.config" modprep/ || die + emake -C "${BASE_P}" "${makeargs[@]}" modules_prepare +} + +src_test() { + local kernel_dir="${BINPKG}/image/usr/src/linux-${KV_FULL}" + kernel-install_test "${KV_FULL}" \ + "${WORKDIR}/${kernel_dir}/$(dist-kernel_get_image_path)" \ + "${BINPKG}/image/lib/modules/${KV_FULL}" \ + "${WORKDIR}/${kernel_dir}/.config" +} + +src_install() { + local rel_kernel_dir=/usr/src/linux-${KV_FULL} + local kernel_dir="${BINPKG}/image${rel_kernel_dir}" + local image="${kernel_dir}/$(dist-kernel_get_image_path)" + local uki="${image%/*}/uki.efi" + if [[ -s ${uki} ]]; then + # Keep the kernel image type we don't want out of install tree + # Replace back with placeholder + if use generic-uki; then + > "${image}" || die + else + > "${uki}" || die + fi + fi + + # Overwrite the identifier in the prebuilt package + echo "${CATEGORY}/${PF}:${SLOT}" > "${kernel_dir}/dist-kernel" || die + + mv "${BINPKG}"/image/{lib,usr} "${ED}"/ || die + + # FIXME: requires proper mount-boot + if [[ -d ${BINPKG}/image/boot/dtbs ]]; then + mv "${BINPKG}"/image/boot "${ED}"/ || die + fi + + # strip out-of-source build stuffs from modprep + # and then copy built files + find modprep -type f '(' \ + -name Makefile -o \ + -name '*.[ao]' -o \ + '(' -name '.*' -a -not -name '.config' ')' \ + ')' -delete || die + rm modprep/source || die + cp -p -R modprep/. "${ED}${rel_kernel_dir}"/ || die + + # Update timestamps on all modules to ensure cleanup works correctly + # when switching USE=modules-compress. + find "${ED}/lib" -name '*.ko' -exec touch {} + || die + + # Modules were already stripped before signing + dostrip -x /lib/modules + kernel-install_compress_modules + + # Mirror the logic from kernel-build_src_install, for architectures + # where USE=debug is used. + if use ppc64; then + dostrip -x "${rel_kernel_dir}/$(dist-kernel_get_image_path)" + elif use debug && { use amd64 || use arm64; }; then + dostrip -x "${rel_kernel_dir}/vmlinux" + dostrip -x "${rel_kernel_dir}/vmlinux.ctfa" + fi +} diff --git a/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-6.18.12.ebuild b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-6.18.12.ebuild new file mode 100644 index 000000000000..31a278f0a5b0 --- /dev/null +++ b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-6.18.12.ebuild @@ -0,0 +1,237 @@ +# Copyright 2020-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +KERNEL_IUSE_GENERIC_UKI=1 + +inherit kernel-install toolchain-funcs unpacker verify-sig + +BASE_P=linux-${PV%.*} +PATCH_PV=${PV%_p*} +PATCHSET=linux-gentoo-patches-6.18.4 +BINPKG=${P/-bin}-1 +SHA256SUM_DATE=20260217 + +DESCRIPTION="Pre-built Linux kernel with Gentoo patches" +HOMEPAGE=" + https://wiki.gentoo.org/wiki/Project:Distribution_Kernel + https://www.kernel.org/ +" +SRC_URI+=" + https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/${BASE_P}.tar.xz + https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/patch-${PATCH_PV}.xz + https://dev.gentoo.org/~mgorny/dist/linux/${PATCHSET}.tar.xz + verify-sig? ( + https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/sha256sums.asc + -> linux-$(ver_cut 1).x-sha256sums-${SHA256SUM_DATE}.asc + ) + amd64? ( + https://dev.gentoo.org/~mgorny/binpkg/amd64/kernel/sys-kernel/gentoo-kernel/${BINPKG}.gpkg.tar + -> ${BINPKG}.amd64.gpkg.tar + ) + arm64? ( + https://dev.gentoo.org/~mgorny/binpkg/arm64/kernel/sys-kernel/gentoo-kernel/${BINPKG}.gpkg.tar + -> ${BINPKG}.arm64.gpkg.tar + ) + ppc64? ( + https://dev.gentoo.org/~mgorny/binpkg/ppc64le/kernel/sys-kernel/gentoo-kernel/${BINPKG}.gpkg.tar + -> ${BINPKG}.ppc64le.gpkg.tar + ) + x86? ( + https://dev.gentoo.org/~mgorny/binpkg/x86/kernel/sys-kernel/gentoo-kernel/${BINPKG}.gpkg.tar + -> ${BINPKG}.x86.gpkg.tar + ) +" +S=${WORKDIR} + +KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86" +IUSE="debug" + +RDEPEND=" + !sys-kernel/gentoo-kernel:${SLOT} +" +PDEPEND=" + >=virtual/dist-kernel-${PATCH_PV} +" +BDEPEND=" + app-alternatives/bc + app-alternatives/lex + dev-util/pahole + virtual/libelf + app-alternatives/yacc + amd64? ( app-crypt/sbsigntools ) + arm64? ( app-crypt/sbsigntools ) + verify-sig? ( >=sec-keys/openpgp-keys-kernel-20250702 ) +" + +KV_LOCALVERSION='-gentoo-dist' +KV_FULL=${PV/_p/-p}${KV_LOCALVERSION} + +QA_PREBUILT='*' + +VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/kernel.org.asc + +src_unpack() { + if use verify-sig; then + cd "${DISTDIR}" || die + verify-sig_verify_signed_checksums \ + "linux-$(ver_cut 1).x-sha256sums-${SHA256SUM_DATE}.asc" \ + sha256 "${BASE_P}.tar.xz patch-${PATCH_PV}.xz" + cd "${WORKDIR}" || die + fi + + unpacker +} + +src_prepare() { + local patch + cd "${BASE_P}" || die + eapply "${WORKDIR}/patch-${PATCH_PV}" + for patch in "${WORKDIR}/${PATCHSET}"/*.patch; do + eapply "${patch}" + # non-experimental patches always finish with Gentoo Kconfig + # we built -bins without them + if [[ ${patch} == *Add-Gentoo-Linux-support-config-settings* ]] + then + break + fi + done + + default + + # add Gentoo patchset version + local extraversion=${PV#${PATCH_PV}} + sed -i -e "s:^\(EXTRAVERSION =\).*:\1 ${extraversion/_/-}:" Makefile || die +} + +src_configure() { + # force ld.bfd if we can find it easily + local HOSTLD="$(tc-getBUILD_LD)" + if type -P "${HOSTLD}.bfd" &>/dev/null; then + HOSTLD+=.bfd + fi + local LD="$(tc-getLD)" + if type -P "${LD}.bfd" &>/dev/null; then + LD+=.bfd + fi + tc-export_build_env + local makeargs=( + V=1 + WERROR=0 + + HOSTCC="$(tc-getBUILD_CC)" + HOSTCXX="$(tc-getBUILD_CXX)" + HOSTLD="${HOSTLD}" + HOSTAR="$(tc-getBUILD_AR)" + HOSTCFLAGS="${BUILD_CFLAGS}" + HOSTLDFLAGS="${BUILD_LDFLAGS}" + + CROSS_COMPILE=${CHOST}- + AS="$(tc-getAS)" + CC="$(tc-getCC)" + LD="${LD}" + AR="$(tc-getAR)" + NM="$(tc-getNM)" + STRIP="$(tc-getSTRIP)" + OBJCOPY="$(tc-getOBJCOPY)" + OBJDUMP="$(tc-getOBJDUMP)" + READELF="$(tc-getREADELF)" + + # we need to pass it to override colliding Gentoo envvar + ARCH="$(tc-arch-kernel)" + + O="${WORKDIR}"/modprep + ) + + local kernel_dir="${BINPKG}/image/usr/src/linux-${KV_FULL}" + + # If this is set it will have an effect on the name of the output + # image. Set this variable to track this setting. + if grep -q "CONFIG_EFI_ZBOOT=y" "${kernel_dir}/.config"; then + KERNEL_EFI_ZBOOT=1 + elif use arm64 && use generic-uki; then + die "USE=generic-uki requires a CONFIG_EFI_ZBOOT enabled build" + fi + + local image="${kernel_dir}/$(dist-kernel_get_image_path)" + local uki="${image%/*}/uki.efi" + + # Override user variable with the cert used during build + openssl x509 \ + -inform DER -in "${kernel_dir}/certs/signing_key.x509" \ + -outform PEM -out "${T}/cert.pem" || + die "Failed to convert pcrpkey to PEM format" + export SECUREBOOT_SIGN_CERT=${T}/cert.pem + + if [[ -s ${uki} ]]; then + # We need to extract the plain image for the test phase + # and USE=-generic-uki. + kernel-install_extract_from_uki linux "${uki}" "${image}" + fi + + mkdir modprep || die + cp "${kernel_dir}/.config" modprep/ || die + emake -C "${BASE_P}" "${makeargs[@]}" modules_prepare +} + +src_test() { + local kernel_dir="${BINPKG}/image/usr/src/linux-${KV_FULL}" + kernel-install_test "${KV_FULL}" \ + "${WORKDIR}/${kernel_dir}/$(dist-kernel_get_image_path)" \ + "${BINPKG}/image/lib/modules/${KV_FULL}" \ + "${WORKDIR}/${kernel_dir}/.config" +} + +src_install() { + local rel_kernel_dir=/usr/src/linux-${KV_FULL} + local kernel_dir="${BINPKG}/image${rel_kernel_dir}" + local image="${kernel_dir}/$(dist-kernel_get_image_path)" + local uki="${image%/*}/uki.efi" + if [[ -s ${uki} ]]; then + # Keep the kernel image type we don't want out of install tree + # Replace back with placeholder + if use generic-uki; then + > "${image}" || die + else + > "${uki}" || die + fi + fi + + # Overwrite the identifier in the prebuilt package + echo "${CATEGORY}/${PF}:${SLOT}" > "${kernel_dir}/dist-kernel" || die + + mv "${BINPKG}"/image/{lib,usr} "${ED}"/ || die + + # FIXME: requires proper mount-boot + if [[ -d ${BINPKG}/image/boot/dtbs ]]; then + mv "${BINPKG}"/image/boot "${ED}"/ || die + fi + + # strip out-of-source build stuffs from modprep + # and then copy built files + find modprep -type f '(' \ + -name Makefile -o \ + -name '*.[ao]' -o \ + '(' -name '.*' -a -not -name '.config' ')' \ + ')' -delete || die + rm modprep/source || die + cp -p -R modprep/. "${ED}${rel_kernel_dir}"/ || die + + # Update timestamps on all modules to ensure cleanup works correctly + # when switching USE=modules-compress. + find "${ED}/lib" -name '*.ko' -exec touch {} + || die + + # Modules were already stripped before signing + dostrip -x /lib/modules + kernel-install_compress_modules + + # Mirror the logic from kernel-build_src_install, for architectures + # where USE=debug is used. + if use ppc64; then + dostrip -x "${rel_kernel_dir}/$(dist-kernel_get_image_path)" + elif use debug && { use amd64 || use arm64; }; then + dostrip -x "${rel_kernel_dir}/vmlinux" + dostrip -x "${rel_kernel_dir}/vmlinux.ctfa" + fi +} diff --git a/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-6.18.8.ebuild b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-6.18.8.ebuild index 393ca5963cd5..9c5ba95f8a9f 100644 --- a/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-6.18.8.ebuild +++ b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-6.18.8.ebuild @@ -45,7 +45,7 @@ SRC_URI+=" " S=${WORKDIR} -KEYWORDS="~amd64 ~arm64 ~ppc64 x86" +KEYWORDS="amd64 arm64 ppc64 x86" IUSE="debug" RDEPEND=" diff --git a/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-6.19.2.ebuild b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-6.19.2.ebuild new file mode 100644 index 000000000000..31a278f0a5b0 --- /dev/null +++ b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-6.19.2.ebuild @@ -0,0 +1,237 @@ +# Copyright 2020-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +KERNEL_IUSE_GENERIC_UKI=1 + +inherit kernel-install toolchain-funcs unpacker verify-sig + +BASE_P=linux-${PV%.*} +PATCH_PV=${PV%_p*} +PATCHSET=linux-gentoo-patches-6.18.4 +BINPKG=${P/-bin}-1 +SHA256SUM_DATE=20260217 + +DESCRIPTION="Pre-built Linux kernel with Gentoo patches" +HOMEPAGE=" + https://wiki.gentoo.org/wiki/Project:Distribution_Kernel + https://www.kernel.org/ +" +SRC_URI+=" + https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/${BASE_P}.tar.xz + https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/patch-${PATCH_PV}.xz + https://dev.gentoo.org/~mgorny/dist/linux/${PATCHSET}.tar.xz + verify-sig? ( + https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/sha256sums.asc + -> linux-$(ver_cut 1).x-sha256sums-${SHA256SUM_DATE}.asc + ) + amd64? ( + https://dev.gentoo.org/~mgorny/binpkg/amd64/kernel/sys-kernel/gentoo-kernel/${BINPKG}.gpkg.tar + -> ${BINPKG}.amd64.gpkg.tar + ) + arm64? ( + https://dev.gentoo.org/~mgorny/binpkg/arm64/kernel/sys-kernel/gentoo-kernel/${BINPKG}.gpkg.tar + -> ${BINPKG}.arm64.gpkg.tar + ) + ppc64? ( + https://dev.gentoo.org/~mgorny/binpkg/ppc64le/kernel/sys-kernel/gentoo-kernel/${BINPKG}.gpkg.tar + -> ${BINPKG}.ppc64le.gpkg.tar + ) + x86? ( + https://dev.gentoo.org/~mgorny/binpkg/x86/kernel/sys-kernel/gentoo-kernel/${BINPKG}.gpkg.tar + -> ${BINPKG}.x86.gpkg.tar + ) +" +S=${WORKDIR} + +KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86" +IUSE="debug" + +RDEPEND=" + !sys-kernel/gentoo-kernel:${SLOT} +" +PDEPEND=" + >=virtual/dist-kernel-${PATCH_PV} +" +BDEPEND=" + app-alternatives/bc + app-alternatives/lex + dev-util/pahole + virtual/libelf + app-alternatives/yacc + amd64? ( app-crypt/sbsigntools ) + arm64? ( app-crypt/sbsigntools ) + verify-sig? ( >=sec-keys/openpgp-keys-kernel-20250702 ) +" + +KV_LOCALVERSION='-gentoo-dist' +KV_FULL=${PV/_p/-p}${KV_LOCALVERSION} + +QA_PREBUILT='*' + +VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/kernel.org.asc + +src_unpack() { + if use verify-sig; then + cd "${DISTDIR}" || die + verify-sig_verify_signed_checksums \ + "linux-$(ver_cut 1).x-sha256sums-${SHA256SUM_DATE}.asc" \ + sha256 "${BASE_P}.tar.xz patch-${PATCH_PV}.xz" + cd "${WORKDIR}" || die + fi + + unpacker +} + +src_prepare() { + local patch + cd "${BASE_P}" || die + eapply "${WORKDIR}/patch-${PATCH_PV}" + for patch in "${WORKDIR}/${PATCHSET}"/*.patch; do + eapply "${patch}" + # non-experimental patches always finish with Gentoo Kconfig + # we built -bins without them + if [[ ${patch} == *Add-Gentoo-Linux-support-config-settings* ]] + then + break + fi + done + + default + + # add Gentoo patchset version + local extraversion=${PV#${PATCH_PV}} + sed -i -e "s:^\(EXTRAVERSION =\).*:\1 ${extraversion/_/-}:" Makefile || die +} + +src_configure() { + # force ld.bfd if we can find it easily + local HOSTLD="$(tc-getBUILD_LD)" + if type -P "${HOSTLD}.bfd" &>/dev/null; then + HOSTLD+=.bfd + fi + local LD="$(tc-getLD)" + if type -P "${LD}.bfd" &>/dev/null; then + LD+=.bfd + fi + tc-export_build_env + local makeargs=( + V=1 + WERROR=0 + + HOSTCC="$(tc-getBUILD_CC)" + HOSTCXX="$(tc-getBUILD_CXX)" + HOSTLD="${HOSTLD}" + HOSTAR="$(tc-getBUILD_AR)" + HOSTCFLAGS="${BUILD_CFLAGS}" + HOSTLDFLAGS="${BUILD_LDFLAGS}" + + CROSS_COMPILE=${CHOST}- + AS="$(tc-getAS)" + CC="$(tc-getCC)" + LD="${LD}" + AR="$(tc-getAR)" + NM="$(tc-getNM)" + STRIP="$(tc-getSTRIP)" + OBJCOPY="$(tc-getOBJCOPY)" + OBJDUMP="$(tc-getOBJDUMP)" + READELF="$(tc-getREADELF)" + + # we need to pass it to override colliding Gentoo envvar + ARCH="$(tc-arch-kernel)" + + O="${WORKDIR}"/modprep + ) + + local kernel_dir="${BINPKG}/image/usr/src/linux-${KV_FULL}" + + # If this is set it will have an effect on the name of the output + # image. Set this variable to track this setting. + if grep -q "CONFIG_EFI_ZBOOT=y" "${kernel_dir}/.config"; then + KERNEL_EFI_ZBOOT=1 + elif use arm64 && use generic-uki; then + die "USE=generic-uki requires a CONFIG_EFI_ZBOOT enabled build" + fi + + local image="${kernel_dir}/$(dist-kernel_get_image_path)" + local uki="${image%/*}/uki.efi" + + # Override user variable with the cert used during build + openssl x509 \ + -inform DER -in "${kernel_dir}/certs/signing_key.x509" \ + -outform PEM -out "${T}/cert.pem" || + die "Failed to convert pcrpkey to PEM format" + export SECUREBOOT_SIGN_CERT=${T}/cert.pem + + if [[ -s ${uki} ]]; then + # We need to extract the plain image for the test phase + # and USE=-generic-uki. + kernel-install_extract_from_uki linux "${uki}" "${image}" + fi + + mkdir modprep || die + cp "${kernel_dir}/.config" modprep/ || die + emake -C "${BASE_P}" "${makeargs[@]}" modules_prepare +} + +src_test() { + local kernel_dir="${BINPKG}/image/usr/src/linux-${KV_FULL}" + kernel-install_test "${KV_FULL}" \ + "${WORKDIR}/${kernel_dir}/$(dist-kernel_get_image_path)" \ + "${BINPKG}/image/lib/modules/${KV_FULL}" \ + "${WORKDIR}/${kernel_dir}/.config" +} + +src_install() { + local rel_kernel_dir=/usr/src/linux-${KV_FULL} + local kernel_dir="${BINPKG}/image${rel_kernel_dir}" + local image="${kernel_dir}/$(dist-kernel_get_image_path)" + local uki="${image%/*}/uki.efi" + if [[ -s ${uki} ]]; then + # Keep the kernel image type we don't want out of install tree + # Replace back with placeholder + if use generic-uki; then + > "${image}" || die + else + > "${uki}" || die + fi + fi + + # Overwrite the identifier in the prebuilt package + echo "${CATEGORY}/${PF}:${SLOT}" > "${kernel_dir}/dist-kernel" || die + + mv "${BINPKG}"/image/{lib,usr} "${ED}"/ || die + + # FIXME: requires proper mount-boot + if [[ -d ${BINPKG}/image/boot/dtbs ]]; then + mv "${BINPKG}"/image/boot "${ED}"/ || die + fi + + # strip out-of-source build stuffs from modprep + # and then copy built files + find modprep -type f '(' \ + -name Makefile -o \ + -name '*.[ao]' -o \ + '(' -name '.*' -a -not -name '.config' ')' \ + ')' -delete || die + rm modprep/source || die + cp -p -R modprep/. "${ED}${rel_kernel_dir}"/ || die + + # Update timestamps on all modules to ensure cleanup works correctly + # when switching USE=modules-compress. + find "${ED}/lib" -name '*.ko' -exec touch {} + || die + + # Modules were already stripped before signing + dostrip -x /lib/modules + kernel-install_compress_modules + + # Mirror the logic from kernel-build_src_install, for architectures + # where USE=debug is used. + if use ppc64; then + dostrip -x "${rel_kernel_dir}/$(dist-kernel_get_image_path)" + elif use debug && { use amd64 || use arm64; }; then + dostrip -x "${rel_kernel_dir}/vmlinux" + dostrip -x "${rel_kernel_dir}/vmlinux.ctfa" + fi +} diff --git a/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-6.6.126.ebuild b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-6.6.126.ebuild new file mode 100644 index 000000000000..ba1020db8a19 --- /dev/null +++ b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-6.6.126.ebuild @@ -0,0 +1,237 @@ +# Copyright 2020-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +KERNEL_IUSE_GENERIC_UKI=1 + +inherit kernel-install toolchain-funcs unpacker verify-sig + +BASE_P=linux-${PV%.*} +PATCH_PV=${PV%_p*} +PATCHSET=linux-gentoo-patches-6.6.124 +BINPKG=${P/-bin}-1 +SHA256SUM_DATE=20260217 + +DESCRIPTION="Pre-built Linux kernel with Gentoo patches" +HOMEPAGE=" + https://wiki.gentoo.org/wiki/Project:Distribution_Kernel + https://www.kernel.org/ +" +SRC_URI+=" + https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/${BASE_P}.tar.xz + https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/patch-${PATCH_PV}.xz + https://dev.gentoo.org/~mgorny/dist/linux/${PATCHSET}.tar.xz + verify-sig? ( + https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/sha256sums.asc + -> linux-$(ver_cut 1).x-sha256sums-${SHA256SUM_DATE}.asc + ) + amd64? ( + https://dev.gentoo.org/~mgorny/binpkg/amd64/kernel/sys-kernel/gentoo-kernel/${BINPKG}.gpkg.tar + -> ${BINPKG}.amd64.gpkg.tar + ) + arm64? ( + https://dev.gentoo.org/~mgorny/binpkg/arm64/kernel/sys-kernel/gentoo-kernel/${BINPKG}.gpkg.tar + -> ${BINPKG}.arm64.gpkg.tar + ) + ppc64? ( + https://dev.gentoo.org/~mgorny/binpkg/ppc64le/kernel/sys-kernel/gentoo-kernel/${BINPKG}.gpkg.tar + -> ${BINPKG}.ppc64le.gpkg.tar + ) + x86? ( + https://dev.gentoo.org/~mgorny/binpkg/x86/kernel/sys-kernel/gentoo-kernel/${BINPKG}.gpkg.tar + -> ${BINPKG}.x86.gpkg.tar + ) +" +S=${WORKDIR} + +KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86" +IUSE="debug" + +RDEPEND=" + !sys-kernel/gentoo-kernel:${SLOT} +" +PDEPEND=" + >=virtual/dist-kernel-${PV} +" +BDEPEND=" + app-alternatives/bc + app-alternatives/lex + dev-util/pahole + virtual/libelf + app-alternatives/yacc + amd64? ( app-crypt/sbsigntools ) + arm64? ( app-crypt/sbsigntools ) + verify-sig? ( >=sec-keys/openpgp-keys-kernel-20250702 ) +" + +KV_LOCALVERSION='-gentoo-dist' +KV_FULL=${PV/_p/-p}${KV_LOCALVERSION} + +QA_PREBUILT='*' + +VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/kernel.org.asc + +src_unpack() { + if use verify-sig; then + cd "${DISTDIR}" || die + verify-sig_verify_signed_checksums \ + "linux-$(ver_cut 1).x-sha256sums-${SHA256SUM_DATE}.asc" \ + sha256 "${BASE_P}.tar.xz patch-${PATCH_PV}.xz" + cd "${WORKDIR}" || die + fi + + unpacker +} + +src_prepare() { + local patch + cd "${BASE_P}" || die + eapply "${WORKDIR}/patch-${PATCH_PV}" + for patch in "${WORKDIR}/${PATCHSET}"/*.patch; do + eapply "${patch}" + # non-experimental patches always finish with Gentoo Kconfig + # we built -bins without them + if [[ ${patch} == *Add-Gentoo-Linux-support-config-settings* ]] + then + break + fi + done + + default + + # add Gentoo patchset version + local extraversion=${PV#${PATCH_PV}} + sed -i -e "s:^\(EXTRAVERSION =\).*:\1 ${extraversion/_/-}:" Makefile || die +} + +src_configure() { + # force ld.bfd if we can find it easily + local HOSTLD="$(tc-getBUILD_LD)" + if type -P "${HOSTLD}.bfd" &>/dev/null; then + HOSTLD+=.bfd + fi + local LD="$(tc-getLD)" + if type -P "${LD}.bfd" &>/dev/null; then + LD+=.bfd + fi + tc-export_build_env + local makeargs=( + V=1 + WERROR=0 + + HOSTCC="$(tc-getBUILD_CC)" + HOSTCXX="$(tc-getBUILD_CXX)" + HOSTLD="${HOSTLD}" + HOSTAR="$(tc-getBUILD_AR)" + HOSTCFLAGS="${BUILD_CFLAGS}" + HOSTLDFLAGS="${BUILD_LDFLAGS}" + + CROSS_COMPILE=${CHOST}- + AS="$(tc-getAS)" + CC="$(tc-getCC)" + LD="${LD}" + AR="$(tc-getAR)" + NM="$(tc-getNM)" + STRIP="$(tc-getSTRIP)" + OBJCOPY="$(tc-getOBJCOPY)" + OBJDUMP="$(tc-getOBJDUMP)" + READELF="$(tc-getREADELF)" + + # we need to pass it to override colliding Gentoo envvar + ARCH="$(tc-arch-kernel)" + + O="${WORKDIR}"/modprep + ) + + local kernel_dir="${BINPKG}/image/usr/src/linux-${KV_FULL}" + + # If this is set it will have an effect on the name of the output + # image. Set this variable to track this setting. + if grep -q "CONFIG_EFI_ZBOOT=y" "${kernel_dir}/.config"; then + KERNEL_EFI_ZBOOT=1 + elif use arm64 && use generic-uki; then + die "USE=generic-uki requires a CONFIG_EFI_ZBOOT enabled build" + fi + + local image="${kernel_dir}/$(dist-kernel_get_image_path)" + local uki="${image%/*}/uki.efi" + + # Override user variable with the cert used during build + openssl x509 \ + -inform DER -in "${kernel_dir}/certs/signing_key.x509" \ + -outform PEM -out "${T}/cert.pem" || + die "Failed to convert pcrpkey to PEM format" + export SECUREBOOT_SIGN_CERT=${T}/cert.pem + + if [[ -s ${uki} ]]; then + # We need to extract the plain image for the test phase + # and USE=-generic-uki. + kernel-install_extract_from_uki linux "${uki}" "${image}" + fi + + mkdir modprep || die + cp "${kernel_dir}/.config" modprep/ || die + emake -C "${BASE_P}" "${makeargs[@]}" modules_prepare +} + +src_test() { + local kernel_dir="${BINPKG}/image/usr/src/linux-${KV_FULL}" + kernel-install_test "${KV_FULL}" \ + "${WORKDIR}/${kernel_dir}/$(dist-kernel_get_image_path)" \ + "${BINPKG}/image/lib/modules/${KV_FULL}" \ + "${WORKDIR}/${kernel_dir}/.config" +} + +src_install() { + local rel_kernel_dir=/usr/src/linux-${KV_FULL} + local kernel_dir="${BINPKG}/image${rel_kernel_dir}" + local image="${kernel_dir}/$(dist-kernel_get_image_path)" + local uki="${image%/*}/uki.efi" + if [[ -s ${uki} ]]; then + # Keep the kernel image type we don't want out of install tree + # Replace back with placeholder + if use generic-uki; then + > "${image}" || die + else + > "${uki}" || die + fi + fi + + # Overwrite the identifier in the prebuilt package + echo "${CATEGORY}/${PF}:${SLOT}" > "${kernel_dir}/dist-kernel" || die + + mv "${BINPKG}"/image/{lib,usr} "${ED}"/ || die + + # FIXME: requires proper mount-boot + if [[ -d ${BINPKG}/image/boot/dtbs ]]; then + mv "${BINPKG}"/image/boot "${ED}"/ || die + fi + + # strip out-of-source build stuffs from modprep + # and then copy built files + find modprep -type f '(' \ + -name Makefile -o \ + -name '*.[ao]' -o \ + '(' -name '.*' -a -not -name '.config' ')' \ + ')' -delete || die + rm modprep/source || die + cp -p -R modprep/. "${ED}${rel_kernel_dir}"/ || die + + # Update timestamps on all modules to ensure cleanup works correctly + # when switching USE=modules-compress. + find "${ED}/lib" -name '*.ko' -exec touch {} + || die + + # Modules were already stripped before signing + dostrip -x /lib/modules + kernel-install_compress_modules + + # Mirror the logic from kernel-build_src_install, for architectures + # where USE=debug is used. + if use ppc64; then + dostrip -x "${rel_kernel_dir}/$(dist-kernel_get_image_path)" + elif use debug && { use amd64 || use arm64; }; then + dostrip -x "${rel_kernel_dir}/vmlinux" + dostrip -x "${rel_kernel_dir}/vmlinux.ctfa" + fi +} diff --git a/sys-kernel/gentoo-kernel/Manifest b/sys-kernel/gentoo-kernel/Manifest index dc1be5177117..9b6d77962e72 100644 --- a/sys-kernel/gentoo-kernel/Manifest +++ b/sys-kernel/gentoo-kernel/Manifest @@ -3,24 +3,34 @@ DIST gentoo-kernel-config-g18.tar.gz 6087 BLAKE2B 7dbb2f195b031b5a8346e768b7bb22 DIST kernel-aarch64-fedora.config.5.10.12 223184 BLAKE2B a0246dac2f7a4ad6a55b611538d24382ac87a8960077811a859c9595ac67f961b4bccb7e139a89abc7c0e26e80832da5c94211fc658082f2e7dde984f14dd29d SHA512 7d803b347b136331db1ad6e22e0445fe0224c3e26cd7c034cbe9794915d457b492e05f77664865079874ec001351553652646e2e08d0fee31e30b841b0008f52 DIST kernel-aarch64-fedora.config.6.1.102-gentoo 252811 BLAKE2B f6bad0d23132bf0dfbaa25db928a95f39763b6500fd1df9b4aeca4351e3e75f185891c0df96b111ad840e4bac431d74a9b11e7344e766ab49715663c89e4dbfc SHA512 41ebf195d8b656801d49c6bb693ebe1404b6725d70d88d93a75bc4af230030d65ef0701ea931846b022a3c598dcca068fbc38ecf6d064262b3f5b88e57060437 DIST kernel-aarch64-fedora.config.6.12.41-gentoo 288081 BLAKE2B 08273a34c387621d0ccffcc325a0a34b40e0a8fbe78f2429c8a9efc73aa05f8fb563ed53e5fadb25662089f23ebafb61b2d08f91ea00b073e67e702798255e9c SHA512 58ea4f247aa9af6f7535ab5fe44dae2fbf286c7fbceeda86df532125807bbd4c25a89ddeeff4284592efefbaaef5022626abad7f1d1d64976e3040dc6e89251a +DIST kernel-aarch64-fedora.config.6.18.12-gentoo 301976 BLAKE2B 6e5d64b8a8cbce8678d614d3d1addb17a17ebb46b45105730a02d00a8af795c0acc4748ff19812c077ba0bcf126a8c55d436334f8428a0376007a118cc051983 SHA512 b4a2fa14b7864f0c4b41c587294c9a6bf09cc243eaffd4c76d0f2579297d42931942f4501adb5733266cfec74a7142dc3b06677b3ad83f0f7836b0c2afa6c8cb DIST kernel-aarch64-fedora.config.6.18.3-gentoo 301976 BLAKE2B dc27125680d96c10728f2840920a14c8bc82c2204cba3bcfa74d7040298f1528f8ed9b572c7e8ef11c44e9136c08613891e7f4c633fa252272bf922f220fb0dc SHA512 40bf9cd5d721ed9820127b4c99454895db484843266b276c0d552209a9d2568271347ca1d2b6571f676e7353fd529781f6e0760270686c94b6be48b01bcbc059 +DIST kernel-aarch64-fedora.config.6.19.2-gentoo 305517 BLAKE2B 486e42dc7c56c6f8ff5006c2fe9b3888a1632d0302bcea35528fe5a8a1f2e9ad40a32e335f4fdbdc9403ec498354b0d0f1ccce0369028f577a45354ebfde427a SHA512 cf8ac4388ed637d116841d2937e25921e4707ca0a2cc3ea204a2e69df1d0052f82b7391e72d3fea0fb4b51c342a728e436411c057bda52963f73e46c181de658 DIST kernel-aarch64-fedora.config.6.6.12-gentoo 271041 BLAKE2B 5af7c2f57cd6cd9230d9ab1a539a4b12b02cfdd777f5921b2d69329b171060a8085909a60eed9916aea504e8d9c9d1e907a61f0c6681ac75d5c64864052f821e SHA512 f744444f2840020dce2dc8473e3e562fa53ac1c34a641a9f322c2c7efd8fc4d9b3677479d3a31e705fa60beff0b1beca79ab78ad7dd4b6633d4499bebbfc76bd DIST kernel-i686-fedora.config.5.10.12 205412 BLAKE2B 92c715b7e2cd7dd74da7970c05981f520597d3e403ce82c8cf4eee31c9f1f50b638792a6bdb256ef5bfdc99f1bcd594e819e8f44dc6febb2ad9a854bad817f2b SHA512 69d8db11723ae1b40fdedfaace74d15bb63198cdb0485e0a1e5eba95b31217110c93a93e39cc7370cf45f1d3a8bc7f75ec096d6db5ea9ecb28ac6b56702ebb10 DIST kernel-i686-fedora.config.6.1.102-gentoo 228064 BLAKE2B 9e783fc6087efeb0808437bb8bd80ccb54c29fd48a6893087a51b452dab98586f476be8d2dc4e0a2896308c9a0c185879deca46ffba1bb446b142ab3e81303a3 SHA512 4ef3eedd4c1ab78c2c5294121b47a2c4b465b4f537d12d48c397a7ab30ab4dc58b65d680326a23bce661d611aa37a2f98e814ec8e3cb84c3522151f09661e90c DIST kernel-i686-fedora.config.6.12.41-gentoo 255152 BLAKE2B 4d865ad46de06195628acfca1b4774908bd14212878b9a2ceb579bc47e57a17192000941e472f35b5fca0556f241701760bca194c3a48f58d5a75e4c2b07a8a6 SHA512 6d17f93a5a9f5a8cb3b3466c304ef9828eeb7b18a3270220b70d9219834f80f5f0945a6956e92d4da4f311a980525d77513e85691811d060246f9dcaa6327bf2 +DIST kernel-i686-fedora.config.6.18.12-gentoo 267650 BLAKE2B 39931dad243a4825cb5e36dbd9b6a36f1459ae64682f4e00ad761a4382ef67e43f546743957a408ae74b492d224ab8dd19e29a39c5ddf4e9c82a3e46c4030963 SHA512 078e38b75c7e01578d7d593b6371657cedc91077de13e3249a63cd96adf57f937b178a9c17719731292ace3cf247cfaaaf9c44f080852bcfe8b935c4e5452721 DIST kernel-i686-fedora.config.6.18.3-gentoo 267650 BLAKE2B 39931dad243a4825cb5e36dbd9b6a36f1459ae64682f4e00ad761a4382ef67e43f546743957a408ae74b492d224ab8dd19e29a39c5ddf4e9c82a3e46c4030963 SHA512 078e38b75c7e01578d7d593b6371657cedc91077de13e3249a63cd96adf57f937b178a9c17719731292ace3cf247cfaaaf9c44f080852bcfe8b935c4e5452721 +DIST kernel-i686-fedora.config.6.19.2-gentoo 270705 BLAKE2B 2fb951b0d21e85ea5040721422075b21109e14b8472a1f460a9dc293cf0f13c15573717c39df31e873386dacce47899844ba10efedd992567f15a7ded5005bd9 SHA512 a80a2fb054162f914db342ad1b81efe0016b50a9e78fc94af125033b40421cb0da4816230e26dfa9a03b9fff8ecbcb39baa3059107fe1ee6756a7c74e2980cc6 DIST kernel-i686-fedora.config.6.6.12-gentoo 242515 BLAKE2B dbb4df93a5c8ee34d687262cced152a07f412a89ef2e8122429477633424fdac80809ed57a5a6de72de05313ec91f266d37c3494426099621d047c0561ccb57e SHA512 a65fe3299b6d8f89373937d2a782aa1469ebf18954b00bbf2798cee952b9946d7fead795388c079cb508f6d431e49b2812fb6d845c8a0e3861a4a3bd11e81968 DIST kernel-ppc64le-fedora.config.5.10.12 192105 BLAKE2B 889141debb0656a358a3381bae14b5216b982acdfce0bc758f9445c16647807a68a788fb290199c2a1a23627bda1ef4c9405b3f5ac2a4176d1d2b55c71fb7db9 SHA512 3ab0f1401d9f50a61477c71369dede438f575d9d2c3a2f5c2cf36d624c2b59a938efca9c981b075511b3860c983eaaf5e5a9f877d659277f09ceba45edd43770 DIST kernel-ppc64le-fedora.config.6.1.102-gentoo 218278 BLAKE2B f4dda4430e9801c4660be4bbf6e4b37052e720656e77c928adb7176ff3dba55feb2fe66dd564d41a181809488941cf392ec9c94d786e4a3d813fbe5d683d305f SHA512 a5e12ab1045fae61b494938047cf1c2a3c34693d3d242968e4ab564a012c70e6d232b9d5333347f5ba114a64bb59dd96919b38c5a1327fb8c5154ef40ad28d2c DIST kernel-ppc64le-fedora.config.6.12.41-gentoo 241851 BLAKE2B e7b8833572348037d7af2ba1f9671e8010276d853e0d85b8a175c0dcc5c212c57c7660be54a7ba2621c427cc8120acbeb1063a1c1a1c293894ebe1d63921b684 SHA512 7a81fe1c4b1d4fb9f2d68846882a8869c0888c8fa764ec41f41d27e61b7a69825ea8ceba2209b40deb7c0e8f4bb2c5d81226a4f28e7ca8aff4788bc7a3292194 +DIST kernel-ppc64le-fedora.config.6.18.12-gentoo 251548 BLAKE2B 6540ec441b82bf4e5c9fbc5f3bbe914529834601b9477d37875c1d2ee4bd900d75c234d05d1a75c4ecb8a2f23e14ae02702e4dabb8d424548be6c65b0b4e0d55 SHA512 4a34af6370c697344ab6d71e4dc964fc6dd60e235434db22880cefdbadf8d7508707df6336683093b2455e7d555a295f2f606d6549a7abf5718744a5c4104dc3 DIST kernel-ppc64le-fedora.config.6.18.3-gentoo 251559 BLAKE2B adec1573987e72d5ea42e7df430e370948f0454807488c721d27dd837c29b87420b28fc15022aae995273362f0e1b24eeb7ce7a719934dcd84fd6369a3bcc7e3 SHA512 6cd45a46dcf110bc0155535602de41ed765b6387430f898e0b761e3ec1b6d094d1073c79552e696bad6e2a5158c7fd730c684ca698185e7e0a9c96b1bcea050f +DIST kernel-ppc64le-fedora.config.6.19.2-gentoo 254553 BLAKE2B 3391099a478a611cd8e43b0f796029efa15b5aab7e9d9a1f4d5a1bd654d2194972bf5163639e2758c9579216d6cc774bb0afe5b2dd00d87c1c3f0b14281aaf8b SHA512 36fd8dbc1c37f71a9cbb6c935b3e2412c25f39871fdd7f31b8ab96bb76c182813f93c87ce18198dde45fa59a3fef9db53be329d099784ed2018c484b47dea85b DIST kernel-ppc64le-fedora.config.6.6.12-gentoo 232147 BLAKE2B d67c2ab2d089ecdde3879129d2b1f85a592adae811ed053d00d4ff120e6bb44546bb41d74817be558adb1d669d06f3dd50e6ea542c8a9c2f13672f77f4e4eed5 SHA512 b130b4c57959c0f7be983334b08354640d5e2946bfdd956d6c5b895f816f6177d5fa4bb1c4382cca5c4dd4723aac42e9e89a002b71d86f4eb30f755008f8f9af DIST kernel-riscv64-fedora.config.6.12.41-gentoo 245234 BLAKE2B 802218a7610177426b813a715ae9b94e7ca2f2d8d9f08124208a8cd122f1a7e3ed5b1cd8a7e227a21a5cb7341554640fac321cb690fecbe9de78e7d8929b5847 SHA512 cc06482e7c08704fbe92d0f1c0e2f7c7469953119ddf43c0bf6a4f2fde55d0ad8b6b326bfa3ba8f01c528fc94ee14d889f93427db02a97ac8a26e8b9a0ebcf91 +DIST kernel-riscv64-fedora.config.6.18.12-gentoo 255966 BLAKE2B 69c57e48dc698da92ca73912def34ca3449696d15cd155ef590bae67144ebe8c9434624fd0c7d9b14588ec44d0ba873193d2be4d225fff37d3eeb7f56d65abce SHA512 1fedae0718fb67cc30b89c8825cab9b3a27f6874409bbee203ae18e826b69daaacbe3c178fe7a19f1c339cc60ffaa8f3756a7617d805feb58a62b7a9696fdc1e DIST kernel-riscv64-fedora.config.6.18.3-gentoo 255977 BLAKE2B 43022bece0d437826eaeb8c060666e921cbfc85db5f9e07e2b4776c1300e4cc086e568294c9a63d4e88ae4dfdb5821462ca5ee9a9c1428d0fb9b51e4e4d6f48d SHA512 0b384113a3c221189b79b9d25eebfc1a99833f7e0ee1d8673044be414425d8119576f641e77bac5251248b0f14f2ddfef1a81f647720581f9e3ba5880f408c07 +DIST kernel-riscv64-fedora.config.6.19.2-gentoo 259300 BLAKE2B 3d06f370270a3cbe26d24cb31ae973766b34474f7f897790248366c3925ee0b74cfddbc9001f5fc47b20dec247c7e369736f10d4221f717727012af099cb8a68 SHA512 a17c800d4b77a3c7ed93d329b0709f93ac87f67e69e2595544eb2471f47355db87d1aaac3dec10d8976b0883e99ee64cd061fe511837e3472c4319cc6bd3aa1a DIST kernel-x86_64-fedora.config.5.10.12 206357 BLAKE2B 0eda9d4f3f973336cabd67c1ac78f100aabde926354743e8dcb7ff84496f0de49210d45f99bc850a2096078b0b4687aa7fd965d999248559506004f2b29dac0c SHA512 b12f43d3c1a52a4915cd73db98874ce9ae6c425672c0f1c19ed1b1101341c868ebf1c9620bef5449752ec0d7342c1ce38fb77779d0f89b9267096a605ebf7a26 DIST kernel-x86_64-fedora.config.6.1.102-gentoo 228685 BLAKE2B e68236ccc1d51b2aff850eda9f3197b7ea95b8a88716bc7b07dad30348a86fdbb99a948060300dddae73ca82267d851d357f1c9547a9dcefae1364deebdbd124 SHA512 42bec2ddb9cf7eb6e84bbdeb23eb98dc11c9cea41f6134b776010c6b36833b520a290f0ef0145379de15c7f7834398fa5e3aaabd7258d7d4e89567faa09eeb4c DIST kernel-x86_64-fedora.config.6.12.41-gentoo 256210 BLAKE2B f14f7de8ae573561824df47cf94c3c0ce52a820456ebd0e618e4c1e7f5454b7d3f6f86c559a3cd98dd94c55aaeed397f3d0cee6b0e37cf6b47d3aedd920a9dea SHA512 ea87b4b45c78888e02d0288dd5844cf2d97a14e251b565c7d6451a0e62fbe0dbef38f46715467af2f869995d6bbc8be61d5b70476a86d607a5bfa27fbaf36e92 +DIST kernel-x86_64-fedora.config.6.18.12-gentoo 268721 BLAKE2B 14c13ce6f5a001e58cb36040c8f6793031fd7ac0522752af8b3a55935e77cc4eb4a28b54267ec0aac62eb3c8e2c24c2a13fb6335d0e47e70c953d012f6298f15 SHA512 32091a1e69674cfd8774fbf4ebc945121e87c396cfa0e89d9597c18f4dee409727c9eecc0ee46e318bb6d20836597ac338a462c5e8668e741d93ecbd1b6b1bbe DIST kernel-x86_64-fedora.config.6.18.3-gentoo 268732 BLAKE2B 0cae98c6ddafacef7d3a7dfd4a7c96a6e2253fece4809d828337edfbbdf303c2bfed6ac4cb938537fdd3985a75a206619d28969e82f24e366a0b3dc06c47044b SHA512 23c6336984352d87cfab9fa343a2e731f45534126d08a27863ba5a50108eaf11f3d873d25584755d2de3a79a572d485ae65e5d635cdb7af86aaab6694e16d1f0 +DIST kernel-x86_64-fedora.config.6.19.2-gentoo 271797 BLAKE2B 25420fafc7a6f31ba6e01117e7a9dcd790b66776ebb74d523d1af27fe811fe44623968cb7d78c3aa0132101ab81329b87bfee92f989aff06d0aeaba6d7fe8d31 SHA512 124214803cfda0bf4c850a11e31c2107d94dec259c1d20935437b97bb94ffa80152eb1721617c18a73c32f68285c37dc035da5f221873fd1b95ec5b1c5498927 DIST kernel-x86_64-fedora.config.6.6.12-gentoo 243607 BLAKE2B 7e670d37c6471e50aa0ba395570cd0173af0210afe63faa48d7a147327110652e3aab5c339cf10ed22a6a20e81e505aee84311beb21fda3eb577e06ea55ecac8 SHA512 c484403a60670dd006ecbe65240cb00d97e8b3fe22d1169c5b6ccb92bcdbddb3ecd474d2b57880b30baf6a38bcef11fc8d56b8b0b02fcddd859833c3640cdc9c DIST linux-5.10.tar.xz 116606704 BLAKE2B b923d7b66309224f42f35f8a5fa219421b0a9362d2adacdadd8d96251f61f7230878ea297a269a7f3b3c56830f0b177e068691e1d7f88501a05653b0a13274d1 SHA512 95bc137d0cf9148da6a9d1f1a878698dc27b40f68e22c597544010a6c591ce1b256f083489d3ff45ff77753289b535135590194d88ef9f007d0ddab3d74de70e DIST linux-5.15.tar.xz 121913744 BLAKE2B 3921274b23f7938abdf3ed9334534b4581e13d7484303d3a5280eddb038999aaa8b836666a487472d9c4a219af0f06b9fecccaf348fb5510ab8762f4ef4b7e83 SHA512 d25ad40b5bcd6a4c6042fd0fd84e196e7a58024734c3e9a484fd0d5d54a0c1d87db8a3c784eff55e43b6f021709dc685eb0efa18d2aec327e4f88a79f405705a @@ -30,6 +40,7 @@ DIST linux-5.x-sha256sums-20260211.asc 373886 BLAKE2B bca3610830811245d37ab2bc5c DIST linux-6.1.tar.xz 134728520 BLAKE2B ae60257860b2bd1bd708d183f0443afc60ebbd2b3d535c45e44c2e541bd0928530a3b62de6385dd4e4726ebbedcc0a871d4f3ffb4105b9f1f6d8ed7467f5688e SHA512 6ed2a73c2699d0810e54753715635736fc370288ad5ce95c594f2379959b0e418665cd71bc512a0273fe226fe90074d8b10d14c209080a6466498417a4fdda68 DIST linux-6.12.tar.xz 147906904 BLAKE2B b2ec2fc69218cacabbbe49f78384a5d259ca581b717617c12b000b16f4a4c59ee348ea886b37147f5f70fb9a7a01c1e2c8f19021078f6b23f5bc62d1c48d5e5e SHA512 a37b1823df7b4f72542f689b65882634740ba0401a42fdcf6601d9efd2e132e5a7650e70450ba76f6cd1f13ca31180f2ccee9d54fe4df89bc0000ade4380a548 DIST linux-6.18.tar.xz 154309096 BLAKE2B b94b7b9bf18aca0c3e50baf79b009a1448fc6cd9c3ee019f641cc247dcf53a4abef4274ee0608ad8cd4943af69854363a95d26e117ff23620bb07dccb158859f SHA512 88599ffdec96d150c1feb9b261ba93bb0301a9d0e1ad6bef7aeab1f5372cbfc57d8b43c7e902bd8f76921d1dbd8189663c142ea869e51d0e2b483b150ee00fe0 +DIST linux-6.19.tar.xz 156067644 BLAKE2B d1551c058e9a1201a0fa769b427255f13bb0d73fdd384e2c0302956cc9a1eeba255b013fa87a15fdad508bc00fdae2085590572c76cfe20fe2af31ba87b7d289 SHA512 01b29c7f4e5bc0c9802794c2cd027fece825f90417be229a71e60eefce530010d5d301749c54ae744e9d4a483518e769e2bb7e6e9209687681ad7fff11c3ed86 DIST linux-6.6.tar.xz 140064536 BLAKE2B 5f02fd8696d42f7ec8c5fbadec8e7270bdcfcb1f9844a6c4db3e1fd461c93ce1ccda650ca72dceb4890ebcbbf768ba8fba0bce91efc49fbd2c307b04e95665f2 SHA512 458b2c34d46206f9b4ccbac54cc57aeca1eaecaf831bc441e59701bac6eadffc17f6ce24af6eadd0454964e843186539ac0d63295ad2cc32d112b60360c39a35 DIST linux-6.x-sha256sums-20260120.asc 193071 BLAKE2B 7705ec74114923142587c593711533eb2a4c38356fa1a6e47a0a824d8c8f5cdf6e41b4c9e6f48fcd579cc9149597c85be997d5f09532e0f350626542cd1fa66a SHA512 2a22041d1977810b2aa9898369a120b3462ad0c9ec647d1ffffd9f7c85c01ff61b5bf9cf059dc9826499f79121c94ed2bb8a7a8e1a5e5ca2a9186c9a35642b28 DIST linux-6.x-sha256sums-20260130.asc 194768 BLAKE2B 1ea7a154e1135c5829578094716d395200df525af95fe937a959c8aaa07c63446092ac9b4b17773e575541cfe44cd00fc9bf0dbd19b414f3a6a52bc419f6dcd5 SHA512 60098f21738551350bf6c7e1db671ae0301f9845d5ca7bcf2a65ddb3252ddf0b11211128813a1e3ddaa089071c18bd0c5f0fedd37e87ed075bad024b26a69ab4 @@ -37,6 +48,7 @@ DIST linux-6.x-sha256sums-20260206.asc 196128 BLAKE2B 2151f609e99f6511193b26ed5a DIST linux-6.x-sha256sums-20260211.asc 197821 BLAKE2B 653fa8e3aaf0b567521f7497b3a25efbde8f8847c25b143da83ec38fc98e8b1452a829a3190dd86ad9edfac26f0c56d29e229efca34e06f0abe04f5835d67435 SHA512 dab9453d842a580c1befd22e99252b25a532ef8d4b2ca91037026c31373b1b63843d15a86de684a2753808b326c1a19f9356c34fd417c736ee1adf5665fa8803 DIST linux-6.x-sha256sums-20260213.asc 198162 BLAKE2B 1c5e0f44ac5a938575cafa106348551c71636d1ff5af8f08485861aba0c3a7db31be93202bbb5b4f4a80506726abde04035fc8788d40d31e980caab7e2381ea7 SHA512 56714feb06dd768785041d29222bee8b35c621dfab223c9b22c03774f8d45da39619a86931b7b84133802879d14487b6aff9c9f4cfb930df8931dd1261a4ccc8 DIST linux-6.x-sha256sums-20260216.asc 199522 BLAKE2B 0512d7c55637a08a0f6a09e3f2f22343502a93ea71a4e0f6c234850d52fa2cb7a338a037e6323ada6ae77f04886dc5ff5e4090ac254ccbe4efcf1a27db1710b4 SHA512 d5f82aa8ad9ae46c38d61cb9f5af2eff8c301b156cf3107c2a0f863b3517afe8b03018e9528e9b959a534c0831d0ebabef83cc82d95047ecd85be5d1562deb5f +DIST linux-6.x-sha256sums-20260217.asc 200882 BLAKE2B 4b952ef85555cf9f21ea3c729a79f5f8ab51ffd4533485dc5eb3186fa9c795fd2e190b30035a5c2594d0d883be855fc0f0ebc378724aa0c0c729388503e9671a SHA512 2f9647ba4cc5d786b0b0dcf179132e6a755f23ed182a26e0557727502657d620aa74c701aa301d3304e4d8d81df29428ff68ff9d4910b13f8b0ab87835d29db1 DIST linux-gentoo-patches-5.10.248.tar.xz 24128 BLAKE2B ee1ac9dab33c96fe5020ad8bc9c657bb72a0171aeaf3ed4fe479f4b923f92be514c55144dc80753b5df2db82c75209280f7a2867b19fd76a55ea67e9809516ec SHA512 26e5521954929c8ac396ffaf786edea7118435347e2b43ae7b7cc5abccb0f26eca0277b6914dc709687c5fdc9247735e8419b491c11ff80e8ec7d519ee6edccb DIST linux-gentoo-patches-5.15.198.tar.xz 12844 BLAKE2B 4b5de40a27b92ef2438515b9f2e48588d758d2fb75d36e11d2fe4fb5d8e8f6966d2de97fae8f6b7ec8caef0c74856fb7d14738b21257a098752f30427269cf07 SHA512 5dff279f5d04be079bdd8583cc016f2c7808d628e75c76dc2c3a85f42c0b3dbb5aaeb5b5a58ba4e32f2646d4c6a93225cbc5830bf60142384adca8c03bf93117 DIST linux-gentoo-patches-6.1.161.tar.xz 31484 BLAKE2B 524362ee01a348eef620b35a02e624ac42fef4f2fed5e3f95a2d46c329daf1478a9f2a847cab4d36415d3e6ecaf0280092c189d1f95ea634857a3f3fa56290ec SHA512 917847b68e7812245e852d8239b9a4e27c8673cd6a26f3d3ee16020a2a24c21efea3fb6116b8152b377c6c55165eb2619126694c434018b0660ba05980aa7eea @@ -58,11 +70,15 @@ DIST patch-6.12.69.xz 3832080 BLAKE2B f70cbf90f1a96e1b0384990bb238f6d433a6fe4e72 DIST patch-6.12.70.xz 3851836 BLAKE2B e271ff2ca48b4d7b339a66c3aaa0a47bb5311af45aa4a69adeabeec45377382290e9c9693444a36ae05bd63ebc5fedfe6e05130ad6aac1be972e1122b0e40d59 SHA512 66c8713ec2f637e0de4b357626d976dc6a1a55471d5c58818377a8913376ebb13ec6331a9fb5fb0c6905fd22a26ad972a4a6c824ef5dec2947eb5ab5dbd7d17b DIST patch-6.12.71.xz 3853788 BLAKE2B d472c0583aad7a51d7734b44fae29fe007dc4f7261f18ba725f863cfe053e99382fd587aab90c5a7554159fc6263667b51247f0aa1762cb9d693e5d83973753f SHA512 8f3a8d7aeee3bbbb4541002a6c9766836900e091a6c9ee0ea0d866d7ef6e48169f0187c70ef750e6e0e0e93259e8a991e1583d4e05d1d785b4b44d170128c3ea DIST patch-6.12.72.xz 3857460 BLAKE2B b716b5f20c75f1cb80a2b1e67383f3ff536ef0c4707a5b3b2d45f42639f409aaf9049a4a59ceca7c19b0ba684be31b416c214c03c2664bc909592a108239fe03 SHA512 5456674d084225295c9a1784c863608fb783690ba103788d7a27514a72dfcf04efd6817f6fa86e04fd12917ff51667dd100747ea5661a86687a8a7e062f016ee +DIST patch-6.12.73.xz 3856712 BLAKE2B e5adcfd54e99e232b6c682b8baee915bc9fb2b1ed1a3b22e3077f6fa27573c1449f57549c4476b1e6f11f864ae9886091dfd335c1a99f81d039277aa75fc0575 SHA512 a93d89091de7931ec187cd3043967e90a6959dd8a223481bbe84e89e98fe0b7166de42e4c9fa97f9bbf11dae6551578d3d18a290d406e87a4aa541ff71cf690d DIST patch-6.18.10.xz 658132 BLAKE2B 1ae06ff14a3f6e8fddc13044607db2aca2349cde4a2a6ed0dee08805d00344fce0653d292c5df5f063532fe4c3459d14ea2f3595bd173446e037cfba8c735855 SHA512 47441292df0bcfd1d673c98232ee82547d88e0c83b571d50d1ee4d5eadd46f2664dde74203c6df0183b33c4201b35e4d52543e47001efa23d37f1a664d022985 DIST patch-6.18.11.xz 670712 BLAKE2B 392006377b043bcbb6ee74f936e0b2f8d09b7be9f35c6aacdef68e60c3b117f645d35e3b4241dd0df603ccfc3866a3d307d2d4b654eb3f887d213240cb78ff68 SHA512 4ddf03816166d411924bc36a29e2f34ceac307aa07f7293863ddb75313e3bb05813d3b138f210164f77f6d8c0326c9ca95d5dbe4febcc2c7520a8e01f4121174 +DIST patch-6.18.12.xz 670328 BLAKE2B 777a3043ffd89dda18c6373e447b0181dbbc1d123efddd7a0d669cbcd02ae9e7d07529ee6380641976a56c7ca23c5c4a521c55d5824e07df6ed1fc9f40c9dec0 SHA512 b71074dfff3fb28d781b1cabc5aed4207de286a7e6f1b896e4aa40ecc794a38243496f8325bbacc39431fed71e283bec030157777b701da099ee772af5e100cf DIST patch-6.18.8.xz 571300 BLAKE2B 839d683fe10c1112d0dc6b71128b74e5de24bfc39f06b269845c7e2e74b4a5b05eb5bcb43104980354828af65c7b4af3c4b10c0ccbe2e6c6e398bf82b9462e0d SHA512 7c75c98dcae76acfae4d5b566509392ff91906ca813260f55b0b6425ff2267080289d2d1d19be656db161e0718a3073d9dc53288b779158c006ac84cac8f9b57 DIST patch-6.18.9.xz 603380 BLAKE2B 2296caebac3b92c0ed247229b1cd0f9d9d7cad6930b1a84a1cc4ff71567141a0a2e7e65d66c1df670df872961583afe13cfbad368a819d637d67d9e0b64aab65 SHA512 fd3822bec8e654b49d387eb94d9d4ca89c704d3ab52be2025c8c28e7cf648dc94cd9f1231227dd71abbc64ef1ace086aec7339691c4afd5234cba1e448ded9cc +DIST patch-6.19.2.xz 16380 BLAKE2B c23bb1db7f2c1dd085e060928fa8b25ad183e72171cbc526efa8db5b462474535d7fa68f682f6ae03a606eb80bb8c73a8447fd9dff9c012d1feb024f138ad247 SHA512 2c3435d27715dcb635c0b17b0d26a764749820f4b473c05306b68fd8d647b809ff57d469cbf6cbd5a95894bb7d0fad794145298f1c3d3ebe975c7ba487b47481 DIST patch-6.6.122.xz 5522356 BLAKE2B 80dc69fa15ee6746a26c864fe4b3d6db3f1c185799eca54ed1e7869b422050cbb500ce457d43711f1e5ea6e7b4de40a3edd9202a69d29337b9a1ff09ac318057 SHA512 2b4bdb199b6986cfb0beb4f53ff923812b7dc549227d7b50e69d811983b4c4e9374741e59f7acc3dc452b17a142392a1ac42c78230f0d22f01f6c8b277b4b32e DIST patch-6.6.123.xz 5532320 BLAKE2B 83b41dbd943b2f869b7fd920098ff86259d13caa118ed09edd61d32a1bd983a4231e36cebf54e694a81a81aca1e24545cbf0507364bf75455d80afe04d14cb79 SHA512 f1f7ef9dedf4342f3616fa8a8b3bf33db68c112bd0c119892f8042e20e030bd9547c00311f69b9b14f14fadb39f32cb4999f4c42114fb90b4268dfbe5e9c8384 DIST patch-6.6.124.xz 5545288 BLAKE2B 46002e1333a82285631ebe22c778dce3af0281a27ab460a4ed175c370b5fb558dc1a66401dae6c8348b8059c588780653de8d53e8448d68dabe3b85da246175b SHA512 d1f6af21cf5d089eb78b2408aa1afa08e0781fe15952709e68e115dafdcecb7ecaf232d624a28f1cda8917138714012a1ca74be5e7c14f4fcfb3723317364559 DIST patch-6.6.125.xz 5550500 BLAKE2B 3ffcf471bb0bfa8beb62217f61c958c0dbf410781ed2246985d2f4275bf143c8adf2e8c172ea2c3c5586c026a1b3e82ecbf043a4ff648e921d4b85f1e268dfdb SHA512 5d5a08fa0ef6cf52e6ebd8c6eddd731958f104e19094bbc2164cc809a369ff604fe832f749b12eaad2e948f4f678df764f2dd2f8408042039b213d8ce032f05a +DIST patch-6.6.126.xz 5550048 BLAKE2B a7a422fab271e3a2e1a1e5740429f8834dee20658862ba1adc58128f5d3eadb0f07ce6943ea8ca140913d4cace70f5d22bbc374b95bffa355b7e51c6a39abb4d SHA512 2ed65ddbb73355407a47eb78a21582e58449c674f0e8a40fa1d4d0b4e3a9558312fd93ed959f343e81fd694c358ae6a6bf3c70bfb6222f947ef98b5798c5cb87 diff --git a/sys-kernel/gentoo-kernel/gentoo-kernel-6.12.73.ebuild b/sys-kernel/gentoo-kernel/gentoo-kernel-6.12.73.ebuild new file mode 100644 index 000000000000..2c36fd46ad89 --- /dev/null +++ b/sys-kernel/gentoo-kernel/gentoo-kernel-6.12.73.ebuild @@ -0,0 +1,184 @@ +# Copyright 2020-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +KERNEL_IUSE_GENERIC_UKI=1 + +inherit kernel-build toolchain-funcs verify-sig + +BASE_P=linux-${PV%.*} +PATCH_PV=${PV%_p*} +PATCHSET=linux-gentoo-patches-6.12.68 +# https://koji.fedoraproject.org/koji/packageinfo?packageID=8 +# forked to https://github.com/projg2/fedora-kernel-config-for-gentoo +CONFIG_VER=6.12.41-gentoo +GENTOO_CONFIG_VER=g18 +SHA256SUM_DATE=20260217 + +DESCRIPTION="Linux kernel built with Gentoo patches" +HOMEPAGE=" + https://wiki.gentoo.org/wiki/Project:Distribution_Kernel + https://www.kernel.org/ +" +SRC_URI+=" + https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/${BASE_P}.tar.xz + https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/patch-${PATCH_PV}.xz + https://dev.gentoo.org/~mgorny/dist/linux/${PATCHSET}.tar.xz + https://github.com/projg2/gentoo-kernel-config/archive/${GENTOO_CONFIG_VER}.tar.gz + -> gentoo-kernel-config-${GENTOO_CONFIG_VER}.tar.gz + verify-sig? ( + https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/sha256sums.asc + -> linux-$(ver_cut 1).x-sha256sums-${SHA256SUM_DATE}.asc + ) + amd64? ( + https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/${CONFIG_VER}/kernel-x86_64-fedora.config + -> kernel-x86_64-fedora.config.${CONFIG_VER} + ) + arm64? ( + https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/${CONFIG_VER}/kernel-aarch64-fedora.config + -> kernel-aarch64-fedora.config.${CONFIG_VER} + ) + ppc64? ( + https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/${CONFIG_VER}/kernel-ppc64le-fedora.config + -> kernel-ppc64le-fedora.config.${CONFIG_VER} + ) + riscv? ( + https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/${CONFIG_VER}/kernel-riscv64-fedora.config + -> kernel-riscv64-fedora.config.${CONFIG_VER} + ) + x86? ( + https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/${CONFIG_VER}/kernel-i686-fedora.config + -> kernel-i686-fedora.config.${CONFIG_VER} + ) +" +S=${WORKDIR}/${BASE_P} + +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86" +IUSE="debug experimental hardened" +REQUIRED_USE=" + arm? ( savedconfig ) + hppa? ( savedconfig ) + sparc? ( savedconfig ) +" + +RDEPEND=" + !sys-kernel/gentoo-kernel-bin:${SLOT} +" +BDEPEND=" + debug? ( dev-util/pahole ) + verify-sig? ( >=sec-keys/openpgp-keys-kernel-20250702 ) +" +PDEPEND=" + >=virtual/dist-kernel-${PV} +" + +QA_FLAGS_IGNORED=" + usr/src/linux-.*/scripts/gcc-plugins/.*.so + usr/src/linux-.*/vmlinux + usr/src/linux-.*/arch/powerpc/kernel/vdso.*/vdso.*.so.dbg +" + +VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/kernel.org.asc + +src_unpack() { + if use verify-sig; then + cd "${DISTDIR}" || die + verify-sig_verify_signed_checksums \ + "linux-$(ver_cut 1).x-sha256sums-${SHA256SUM_DATE}.asc" \ + sha256 "${BASE_P}.tar.xz patch-${PATCH_PV}.xz" + cd "${WORKDIR}" || die + fi + + default +} + +src_prepare() { + local patch + eapply "${WORKDIR}/patch-${PATCH_PV}" + for patch in "${WORKDIR}/${PATCHSET}"/*.patch; do + eapply "${patch}" + # non-experimental patches always finish with Gentoo Kconfig + # when ! use experimental, stop applying after it + if [[ ${patch} == *Add-Gentoo-Linux-support-config-settings* ]] && + ! use experimental + then + break + fi + done + + default + + # add Gentoo patchset version + local extraversion=${PV#${PATCH_PV}} + sed -i -e "s:^\(EXTRAVERSION =\).*:\1 ${extraversion/_/-}:" Makefile || die + + local biendian=false + + # prepare the default config + case ${ARCH} in + arm | hppa | loong | sparc) + > .config || die + ;; + amd64) + cp "${DISTDIR}/kernel-x86_64-fedora.config.${CONFIG_VER}" .config || die + ;; + arm64) + cp "${DISTDIR}/kernel-aarch64-fedora.config.${CONFIG_VER}" .config || die + biendian=true + ;; + ppc) + # assume powermac/powerbook defconfig + # we still package.use.force savedconfig + cp "${WORKDIR}/${BASE_P}/arch/powerpc/configs/pmac32_defconfig" .config || die + ;; + ppc64) + cp "${DISTDIR}/kernel-ppc64le-fedora.config.${CONFIG_VER}" .config || die + biendian=true + ;; + riscv) + cp "${DISTDIR}/kernel-riscv64-fedora.config.${CONFIG_VER}" .config || die + ;; + x86) + cp "${DISTDIR}/kernel-i686-fedora.config.${CONFIG_VER}" .config || die + ;; + *) + die "Unsupported arch ${ARCH}" + ;; + esac + + local myversion="-gentoo-dist" + use hardened && myversion+="-hardened" + echo "CONFIG_LOCALVERSION=\"${myversion}\"" > "${T}"/version.config || die + local dist_conf_path="${WORKDIR}/gentoo-kernel-config-${GENTOO_CONFIG_VER}" + + local merge_configs=( + "${T}"/version.config + "${dist_conf_path}"/base.config + "${dist_conf_path}"/6.12+.config + ) + use debug || merge_configs+=( + "${dist_conf_path}"/no-debug.config + ) + if use hardened; then + merge_configs+=( "${dist_conf_path}"/hardened-base.config ) + + tc-is-gcc && merge_configs+=( "${dist_conf_path}"/hardened-gcc-plugins.config ) + + if [[ -f "${dist_conf_path}/hardened-${ARCH}.config" ]]; then + merge_configs+=( "${dist_conf_path}/hardened-${ARCH}.config" ) + fi + fi + + # this covers ppc64 and aarch64_be only for now + if [[ ${biendian} == true && $(tc-endian) == big ]]; then + merge_configs+=( "${dist_conf_path}/big-endian.config" ) + fi + + use secureboot && merge_configs+=( + "${dist_conf_path}/secureboot.config" + "${dist_conf_path}/zboot.config" + ) + + kernel-build_merge_configs "${merge_configs[@]}" +} diff --git a/sys-kernel/gentoo-kernel/gentoo-kernel-6.18.12.ebuild b/sys-kernel/gentoo-kernel/gentoo-kernel-6.18.12.ebuild new file mode 100644 index 000000000000..6eb66873ea11 --- /dev/null +++ b/sys-kernel/gentoo-kernel/gentoo-kernel-6.18.12.ebuild @@ -0,0 +1,175 @@ +# Copyright 2020-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +KERNEL_IUSE_GENERIC_UKI=1 + +inherit kernel-build toolchain-funcs verify-sig + +BASE_P=linux-${PV%.*} +PATCH_PV=${PV%_p*} +PATCHSET=linux-gentoo-patches-6.18.4 +# https://koji.fedoraproject.org/koji/packageinfo?packageID=8 +# forked to https://github.com/projg2/fedora-kernel-config-for-gentoo +CONFIG_VER=6.18.12-gentoo +GENTOO_CONFIG_VER=g18 +SHA256SUM_DATE=20260217 + +DESCRIPTION="Linux kernel built with Gentoo patches" +HOMEPAGE=" + https://wiki.gentoo.org/wiki/Project:Distribution_Kernel + https://www.kernel.org/ +" +SRC_URI+=" + https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/${BASE_P}.tar.xz + https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/patch-${PATCH_PV}.xz + https://dev.gentoo.org/~mgorny/dist/linux/${PATCHSET}.tar.xz + https://github.com/projg2/gentoo-kernel-config/archive/${GENTOO_CONFIG_VER}.tar.gz + -> gentoo-kernel-config-${GENTOO_CONFIG_VER}.tar.gz + verify-sig? ( + https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/sha256sums.asc + -> linux-$(ver_cut 1).x-sha256sums-${SHA256SUM_DATE}.asc + ) + amd64? ( + https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/${CONFIG_VER}/kernel-x86_64-fedora.config + -> kernel-x86_64-fedora.config.${CONFIG_VER} + ) + arm64? ( + https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/${CONFIG_VER}/kernel-aarch64-fedora.config + -> kernel-aarch64-fedora.config.${CONFIG_VER} + ) + ppc64? ( + https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/${CONFIG_VER}/kernel-ppc64le-fedora.config + -> kernel-ppc64le-fedora.config.${CONFIG_VER} + ) + riscv? ( + https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/${CONFIG_VER}/kernel-riscv64-fedora.config + -> kernel-riscv64-fedora.config.${CONFIG_VER} + ) + x86? ( + https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/${CONFIG_VER}/kernel-i686-fedora.config + -> kernel-i686-fedora.config.${CONFIG_VER} + ) +" +S=${WORKDIR}/${BASE_P} + +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86" +IUSE="debug hardened" +REQUIRED_USE=" + arm? ( savedconfig ) + hppa? ( savedconfig ) + sparc? ( savedconfig ) +" + +RDEPEND=" + !sys-kernel/gentoo-kernel-bin:${SLOT} +" +BDEPEND=" + debug? ( dev-util/pahole ) + verify-sig? ( >=sec-keys/openpgp-keys-kernel-20250702 ) +" +PDEPEND=" + >=virtual/dist-kernel-${PV} +" + +QA_FLAGS_IGNORED=" + usr/src/linux-.*/scripts/gcc-plugins/.*.so + usr/src/linux-.*/vmlinux + usr/src/linux-.*/arch/powerpc/kernel/vdso.*/vdso.*.so.dbg +" + +VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/kernel.org.asc + +src_unpack() { + if use verify-sig; then + cd "${DISTDIR}" || die + verify-sig_verify_signed_checksums \ + "linux-$(ver_cut 1).x-sha256sums-${SHA256SUM_DATE}.asc" \ + sha256 "${BASE_P}.tar.xz patch-${PATCH_PV}.xz" + cd "${WORKDIR}" || die + fi + + default +} + +src_prepare() { + local patch + eapply "${WORKDIR}/patch-${PATCH_PV}" + eapply "${WORKDIR}/${PATCHSET}" + + default + + # add Gentoo patchset version + local extraversion=${PV#${PATCH_PV}} + sed -i -e "s:^\(EXTRAVERSION =\).*:\1 ${extraversion/_/-}:" Makefile || die + + local biendian=false + + # prepare the default config + case ${ARCH} in + arm | hppa | loong | sparc) + > .config || die + ;; + amd64) + cp "${DISTDIR}/kernel-x86_64-fedora.config.${CONFIG_VER}" .config || die + ;; + arm64) + cp "${DISTDIR}/kernel-aarch64-fedora.config.${CONFIG_VER}" .config || die + biendian=true + ;; + ppc) + # assume powermac/powerbook defconfig + # we still package.use.force savedconfig + cp "${WORKDIR}/${BASE_P}/arch/powerpc/configs/pmac32_defconfig" .config || die + ;; + ppc64) + cp "${DISTDIR}/kernel-ppc64le-fedora.config.${CONFIG_VER}" .config || die + biendian=true + ;; + riscv) + cp "${DISTDIR}/kernel-riscv64-fedora.config.${CONFIG_VER}" .config || die + ;; + x86) + cp "${DISTDIR}/kernel-i686-fedora.config.${CONFIG_VER}" .config || die + ;; + *) + die "Unsupported arch ${ARCH}" + ;; + esac + + local myversion="-gentoo-dist" + use hardened && myversion+="-hardened" + echo "CONFIG_LOCALVERSION=\"${myversion}\"" > "${T}"/version.config || die + local dist_conf_path="${WORKDIR}/gentoo-kernel-config-${GENTOO_CONFIG_VER}" + + local merge_configs=( + "${T}"/version.config + "${dist_conf_path}"/base.config + "${dist_conf_path}"/6.12+.config + ) + use debug || merge_configs+=( + "${dist_conf_path}"/no-debug.config + ) + if use hardened; then + merge_configs+=( "${dist_conf_path}"/hardened-base.config ) + + tc-is-gcc && merge_configs+=( "${dist_conf_path}"/hardened-gcc-plugins.config ) + + if [[ -f "${dist_conf_path}/hardened-${ARCH}.config" ]]; then + merge_configs+=( "${dist_conf_path}/hardened-${ARCH}.config" ) + fi + fi + + # this covers ppc64 and aarch64_be only for now + if [[ ${biendian} == true && $(tc-endian) == big ]]; then + merge_configs+=( "${dist_conf_path}/big-endian.config" ) + fi + + use secureboot && merge_configs+=( + "${dist_conf_path}/secureboot.config" + "${dist_conf_path}/zboot.config" + ) + + kernel-build_merge_configs "${merge_configs[@]}" +} diff --git a/sys-kernel/gentoo-kernel/gentoo-kernel-6.18.8.ebuild b/sys-kernel/gentoo-kernel/gentoo-kernel-6.18.8.ebuild index 1e958bbf51ab..1c60e469870b 100644 --- a/sys-kernel/gentoo-kernel/gentoo-kernel-6.18.8.ebuild +++ b/sys-kernel/gentoo-kernel/gentoo-kernel-6.18.8.ebuild @@ -54,7 +54,7 @@ SRC_URI+=" " S=${WORKDIR}/${BASE_P} -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~sparc x86" +KEYWORDS="amd64 ~arm arm64 ~hppa ~loong ~ppc ppc64 ~riscv ~sparc x86" IUSE="debug hardened" REQUIRED_USE=" arm? ( savedconfig ) diff --git a/sys-kernel/gentoo-kernel/gentoo-kernel-6.19.2.ebuild b/sys-kernel/gentoo-kernel/gentoo-kernel-6.19.2.ebuild new file mode 100644 index 000000000000..f499676b5f68 --- /dev/null +++ b/sys-kernel/gentoo-kernel/gentoo-kernel-6.19.2.ebuild @@ -0,0 +1,175 @@ +# Copyright 2020-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +KERNEL_IUSE_GENERIC_UKI=1 + +inherit kernel-build toolchain-funcs verify-sig + +BASE_P=linux-${PV%.*} +PATCH_PV=${PV%_p*} +PATCHSET=linux-gentoo-patches-6.18.4 +# https://koji.fedoraproject.org/koji/packageinfo?packageID=8 +# forked to https://github.com/projg2/fedora-kernel-config-for-gentoo +CONFIG_VER=6.19.2-gentoo +GENTOO_CONFIG_VER=g18 +SHA256SUM_DATE=20260217 + +DESCRIPTION="Linux kernel built with Gentoo patches" +HOMEPAGE=" + https://wiki.gentoo.org/wiki/Project:Distribution_Kernel + https://www.kernel.org/ +" +SRC_URI+=" + https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/${BASE_P}.tar.xz + https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/patch-${PATCH_PV}.xz + https://dev.gentoo.org/~mgorny/dist/linux/${PATCHSET}.tar.xz + https://github.com/projg2/gentoo-kernel-config/archive/${GENTOO_CONFIG_VER}.tar.gz + -> gentoo-kernel-config-${GENTOO_CONFIG_VER}.tar.gz + verify-sig? ( + https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/sha256sums.asc + -> linux-$(ver_cut 1).x-sha256sums-${SHA256SUM_DATE}.asc + ) + amd64? ( + https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/${CONFIG_VER}/kernel-x86_64-fedora.config + -> kernel-x86_64-fedora.config.${CONFIG_VER} + ) + arm64? ( + https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/${CONFIG_VER}/kernel-aarch64-fedora.config + -> kernel-aarch64-fedora.config.${CONFIG_VER} + ) + ppc64? ( + https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/${CONFIG_VER}/kernel-ppc64le-fedora.config + -> kernel-ppc64le-fedora.config.${CONFIG_VER} + ) + riscv? ( + https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/${CONFIG_VER}/kernel-riscv64-fedora.config + -> kernel-riscv64-fedora.config.${CONFIG_VER} + ) + x86? ( + https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/${CONFIG_VER}/kernel-i686-fedora.config + -> kernel-i686-fedora.config.${CONFIG_VER} + ) +" +S=${WORKDIR}/${BASE_P} + +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86" +IUSE="debug hardened" +REQUIRED_USE=" + arm? ( savedconfig ) + hppa? ( savedconfig ) + sparc? ( savedconfig ) +" + +RDEPEND=" + !sys-kernel/gentoo-kernel-bin:${SLOT} +" +BDEPEND=" + debug? ( dev-util/pahole ) + verify-sig? ( >=sec-keys/openpgp-keys-kernel-20250702 ) +" +PDEPEND=" + >=virtual/dist-kernel-${PV} +" + +QA_FLAGS_IGNORED=" + usr/src/linux-.*/scripts/gcc-plugins/.*.so + usr/src/linux-.*/vmlinux + usr/src/linux-.*/arch/powerpc/kernel/vdso.*/vdso.*.so.dbg +" + +VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/kernel.org.asc + +src_unpack() { + if use verify-sig; then + cd "${DISTDIR}" || die + verify-sig_verify_signed_checksums \ + "linux-$(ver_cut 1).x-sha256sums-${SHA256SUM_DATE}.asc" \ + sha256 "${BASE_P}.tar.xz patch-${PATCH_PV}.xz" + cd "${WORKDIR}" || die + fi + + default +} + +src_prepare() { + local patch + eapply "${WORKDIR}/patch-${PATCH_PV}" + eapply "${WORKDIR}/${PATCHSET}" + + default + + # add Gentoo patchset version + local extraversion=${PV#${PATCH_PV}} + sed -i -e "s:^\(EXTRAVERSION =\).*:\1 ${extraversion/_/-}:" Makefile || die + + local biendian=false + + # prepare the default config + case ${ARCH} in + arm | hppa | loong | sparc) + > .config || die + ;; + amd64) + cp "${DISTDIR}/kernel-x86_64-fedora.config.${CONFIG_VER}" .config || die + ;; + arm64) + cp "${DISTDIR}/kernel-aarch64-fedora.config.${CONFIG_VER}" .config || die + biendian=true + ;; + ppc) + # assume powermac/powerbook defconfig + # we still package.use.force savedconfig + cp "${WORKDIR}/${BASE_P}/arch/powerpc/configs/pmac32_defconfig" .config || die + ;; + ppc64) + cp "${DISTDIR}/kernel-ppc64le-fedora.config.${CONFIG_VER}" .config || die + biendian=true + ;; + riscv) + cp "${DISTDIR}/kernel-riscv64-fedora.config.${CONFIG_VER}" .config || die + ;; + x86) + cp "${DISTDIR}/kernel-i686-fedora.config.${CONFIG_VER}" .config || die + ;; + *) + die "Unsupported arch ${ARCH}" + ;; + esac + + local myversion="-gentoo-dist" + use hardened && myversion+="-hardened" + echo "CONFIG_LOCALVERSION=\"${myversion}\"" > "${T}"/version.config || die + local dist_conf_path="${WORKDIR}/gentoo-kernel-config-${GENTOO_CONFIG_VER}" + + local merge_configs=( + "${T}"/version.config + "${dist_conf_path}"/base.config + "${dist_conf_path}"/6.12+.config + ) + use debug || merge_configs+=( + "${dist_conf_path}"/no-debug.config + ) + if use hardened; then + merge_configs+=( "${dist_conf_path}"/hardened-base.config ) + + tc-is-gcc && merge_configs+=( "${dist_conf_path}"/hardened-gcc-plugins.config ) + + if [[ -f "${dist_conf_path}/hardened-${ARCH}.config" ]]; then + merge_configs+=( "${dist_conf_path}/hardened-${ARCH}.config" ) + fi + fi + + # this covers ppc64 and aarch64_be only for now + if [[ ${biendian} == true && $(tc-endian) == big ]]; then + merge_configs+=( "${dist_conf_path}/big-endian.config" ) + fi + + use secureboot && merge_configs+=( + "${dist_conf_path}/secureboot.config" + "${dist_conf_path}/zboot.config" + ) + + kernel-build_merge_configs "${merge_configs[@]}" +} diff --git a/sys-kernel/gentoo-kernel/gentoo-kernel-6.6.126.ebuild b/sys-kernel/gentoo-kernel/gentoo-kernel-6.6.126.ebuild new file mode 100644 index 000000000000..f97a0d2a6141 --- /dev/null +++ b/sys-kernel/gentoo-kernel/gentoo-kernel-6.6.126.ebuild @@ -0,0 +1,177 @@ +# Copyright 2020-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +KERNEL_IUSE_GENERIC_UKI=1 + +inherit kernel-build toolchain-funcs verify-sig + +BASE_P=linux-${PV%.*} +PATCH_PV=${PV%_p*} +PATCHSET=linux-gentoo-patches-6.6.124 +# https://koji.fedoraproject.org/koji/packageinfo?packageID=8 +# forked to https://github.com/projg2/fedora-kernel-config-for-gentoo +CONFIG_VER=6.6.12-gentoo +GENTOO_CONFIG_VER=g17 +SHA256SUM_DATE=20260217 + +DESCRIPTION="Linux kernel built with Gentoo patches" +HOMEPAGE=" + https://wiki.gentoo.org/wiki/Project:Distribution_Kernel + https://www.kernel.org/ +" +SRC_URI+=" + https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/${BASE_P}.tar.xz + https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/patch-${PATCH_PV}.xz + https://dev.gentoo.org/~mgorny/dist/linux/${PATCHSET}.tar.xz + https://github.com/projg2/gentoo-kernel-config/archive/${GENTOO_CONFIG_VER}.tar.gz + -> gentoo-kernel-config-${GENTOO_CONFIG_VER}.tar.gz + verify-sig? ( + https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/sha256sums.asc + -> linux-$(ver_cut 1).x-sha256sums-${SHA256SUM_DATE}.asc + ) + amd64? ( + https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/${CONFIG_VER}/kernel-x86_64-fedora.config + -> kernel-x86_64-fedora.config.${CONFIG_VER} + ) + arm64? ( + https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/${CONFIG_VER}/kernel-aarch64-fedora.config + -> kernel-aarch64-fedora.config.${CONFIG_VER} + ) + ppc64? ( + https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/${CONFIG_VER}/kernel-ppc64le-fedora.config + -> kernel-ppc64le-fedora.config.${CONFIG_VER} + ) + x86? ( + https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/${CONFIG_VER}/kernel-i686-fedora.config + -> kernel-i686-fedora.config.${CONFIG_VER} + ) +" +S=${WORKDIR}/${BASE_P} + +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86" +IUSE="debug experimental hardened" +REQUIRED_USE=" + arm? ( savedconfig ) + hppa? ( savedconfig ) + riscv? ( savedconfig ) + sparc? ( savedconfig ) +" + +RDEPEND=" + !sys-kernel/gentoo-kernel-bin:${SLOT} +" +BDEPEND=" + debug? ( dev-util/pahole ) + verify-sig? ( >=sec-keys/openpgp-keys-kernel-20250702 ) +" +PDEPEND=" + >=virtual/dist-kernel-${PV} +" + +QA_FLAGS_IGNORED=" + usr/src/linux-.*/scripts/gcc-plugins/.*.so + usr/src/linux-.*/vmlinux + usr/src/linux-.*/arch/powerpc/kernel/vdso.*/vdso.*.so.dbg +" + +VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/kernel.org.asc + +src_unpack() { + if use verify-sig; then + cd "${DISTDIR}" || die + verify-sig_verify_signed_checksums \ + "linux-$(ver_cut 1).x-sha256sums-${SHA256SUM_DATE}.asc" \ + sha256 "${BASE_P}.tar.xz patch-${PATCH_PV}.xz" + cd "${WORKDIR}" || die + fi + + default +} + +src_prepare() { + local patch + eapply "${WORKDIR}/patch-${PATCH_PV}" + for patch in "${WORKDIR}/${PATCHSET}"/*.patch; do + eapply "${patch}" + # non-experimental patches always finish with Gentoo Kconfig + # when ! use experimental, stop applying after it + if [[ ${patch} == *Add-Gentoo-Linux-support-config-settings* ]] && + ! use experimental + then + break + fi + done + + default + + # add Gentoo patchset version + local extraversion=${PV#${PATCH_PV}} + sed -i -e "s:^\(EXTRAVERSION =\).*:\1 ${extraversion/_/-}:" Makefile || die + + local biendian=false + + # prepare the default config + case ${ARCH} in + arm | hppa | loong | riscv | sparc) + > .config || die + ;; + amd64) + cp "${DISTDIR}/kernel-x86_64-fedora.config.${CONFIG_VER}" .config || die + ;; + arm64) + cp "${DISTDIR}/kernel-aarch64-fedora.config.${CONFIG_VER}" .config || die + biendian=true + ;; + ppc) + # assume powermac/powerbook defconfig + # we still package.use.force savedconfig + cp "${WORKDIR}/${BASE_P}/arch/powerpc/configs/pmac32_defconfig" .config || die + ;; + ppc64) + cp "${DISTDIR}/kernel-ppc64le-fedora.config.${CONFIG_VER}" .config || die + biendian=true + ;; + x86) + cp "${DISTDIR}/kernel-i686-fedora.config.${CONFIG_VER}" .config || die + ;; + *) + die "Unsupported arch ${ARCH}" + ;; + esac + + local myversion="-gentoo-dist" + use hardened && myversion+="-hardened" + echo "CONFIG_LOCALVERSION=\"${myversion}\"" > "${T}"/version.config || die + local dist_conf_path="${WORKDIR}/gentoo-kernel-config-${GENTOO_CONFIG_VER}" + + local merge_configs=( + "${T}"/version.config + "${dist_conf_path}"/base.config + ) + use debug || merge_configs+=( + "${dist_conf_path}"/no-debug.config + ) + if use hardened; then + merge_configs+=( "${dist_conf_path}"/hardened-base.config ) + + tc-is-gcc && merge_configs+=( "${dist_conf_path}"/hardened-gcc-plugins.config ) + + if [[ -f "${dist_conf_path}/hardened-${ARCH}.config" ]]; then + merge_configs+=( "${dist_conf_path}/hardened-${ARCH}.config" ) + fi + fi + + # this covers ppc64 and aarch64_be only for now + if [[ ${biendian} == true && $(tc-endian) == big ]]; then + merge_configs+=( "${dist_conf_path}/big-endian.config" ) + fi + + use secureboot && merge_configs+=( + "${dist_conf_path}/secureboot.config" + "${dist_conf_path}/zboot.config" + ) + + kernel-build_merge_configs "${merge_configs[@]}" +} diff --git a/sys-kernel/gentoo-sources/Manifest b/sys-kernel/gentoo-sources/Manifest index 6588ef6ce561..f47131313b37 100644 --- a/sys-kernel/gentoo-sources/Manifest +++ b/sys-kernel/gentoo-sources/Manifest @@ -129,6 +129,9 @@ DIST genpatches-6.12-76.extras.tar.xz 4312 BLAKE2B 9382dfe0fe9f1b893637ed27f9ed2 DIST genpatches-6.12-77.base.tar.xz 4293156 BLAKE2B a0e4abc2f6a6caf3651ff2cb753c81f65d747a66deb95c193791aeaaf97650384dbd6a4870a178cb6ee1b81231ede4b5fd5889103eb53df2d65bdb0b7714183a SHA512 815393f285ba7344f7cd6b49227ee117371e32c078cf83d560be4559c5badfa9fc7214f01f475c80bb764a9d461f207882aa92f8ffaa5242790559042c3135fe DIST genpatches-6.12-77.experimental.tar.xz 6056 BLAKE2B 3ee9ed8908b24029ac8f0b96dc5fbd7d7f319aa2d085b8a858fb35d17f392229e714713f68d77d1b8cc6e9ccb5792c5c39b9a274dc478aca8c31da80359e817d SHA512 7f4b7ee207632aab75f32bf22b50a375a2391b3ab1dcb57fec46b6a7c879b5ad9f7d3906cdd7213e4ed0f121892c8b8c2a438e4815d4c15b59c5b04cf426b971 DIST genpatches-6.12-77.extras.tar.xz 4316 BLAKE2B 7d2b889cac6d322e74f0972f0ebe0eaac512435e25bd5056fa57faa18c4037c321ecb5063f4006da1b298bd75f65a5e904d9232e64ebd144a1010b7b777f081d SHA512 e2995ae0112ab4c81c9b781f45a85924d1eed7eafbd0ca4c188eca95f2f6f362e927c1ac5079665f26a7367fbb421bff8d3a4503021e38a4ac894bd97114d6f5 +DIST genpatches-6.12-78.base.tar.xz 4298080 BLAKE2B cf0f95979d4899bee324b55b19015d56d2ad2277047ecd8f5a190bc965bdde1da24dd6c506152d16b0a79c312150b53b9b298ad0360f47ea3e70afe5e985ef35 SHA512 6b2b9b447b68aa83b7d21d202718584a288b8cf6d806b39ccb9d033f08b051f182576e2b705b0f7ddf0a4105caeedc9c309e7c14ce1520f2971506cc8246c75e +DIST genpatches-6.12-78.experimental.tar.xz 6052 BLAKE2B 0395ac23a353de61a4447b1cde9e18bcd8d728abd8174e330e81494f7099612050855281d8f71ebaaab9371201bd34ecd43bc065a24cb8fe385098589cfa6285 SHA512 30f2e311e3391fad31e629993ba2ddc5109cdda08610bbd64d89d970f35bde1ee9dfb69d991af4e3ecf700ae5ac7c109b739f3c1298a5e270a3570cb5dc92f04 +DIST genpatches-6.12-78.extras.tar.xz 4316 BLAKE2B 69bc691e685ca462c29449e45eb154f0350db70805b3b168b1b85ee3ead04885ddc82c282d3ef2b902615cc695c41a7cecdaca0707937026964da9102f94201b SHA512 1dc563ca206f2dbc278d5621b041d2d089721223a1daecb3ee5bd04589e6b8b19624effacfd963835ad109e4ad887750a091c7809ec68585f3c3ba09598fc663 DIST genpatches-6.17-10.base.tar.xz 460752 BLAKE2B bf1ab16a457e016fe1acc187cf62b70071d74c29d38b16927be5cbe24c8c9796260a6f9cc67e31785ef160d083e9dbec62ad2c520cd93ba6f6e02935316135c6 SHA512 a1edf3438e8490b594ae2ce19f5e36e03a7688e51f905d6b6dd8b0621c84067d4cfc68c0c3dcfa24dc32da02cc78f48f645d0a71b1bce89bd8412162e3f83a07 DIST genpatches-6.17-10.experimental.tar.xz 80588 BLAKE2B 19ccfb081e8d027bca6fdcec88c38d37f549651e935723d53b642bb97ee4bfba37c98ca0360d8a270aec8f87649303b66cd956fea3577ce230f2a00b06766255 SHA512 c1e690b3eee27ba25cf6a80e8a539df1a5c64f6eceea8a90a6243006ef7f266186f9db43af3015c81594da298690bcc9e3d78744e4f5b260bbbccf7cb91ebe53 DIST genpatches-6.17-10.extras.tar.xz 4068 BLAKE2B 53593b2d94cedba2331e359ac69a9471a4dc14c83fb9bacb7217b448f07a4d23d0611b0dbec9ae6369c3efb61837ddfeea5ab06b038a3b1f3f751a4ea650cb31 SHA512 47a2e6b99bd675156fcaad395f3424ec01fc4e6104ccebd1c4265e10e9376facb8e7e2af413f9d2e81ef7ebc1a170155339e110e1b0a44e501bf87481a5ea291 @@ -168,6 +171,9 @@ DIST genpatches-6.18-11.extras.tar.xz 4320 BLAKE2B c9ab773537ebde436da7a6d3b4397 DIST genpatches-6.18-12.base.tar.xz 679308 BLAKE2B 074f087864110da115adff2105579a911bd6dd4f7fc3560987a0c29c06be6d77139e96a36fdb10a723f1f586b405711acdab5a8ad1891e024e1019d47e043242 SHA512 35258276c8ca496e267b41ae830c768758b968619dfc73cbc877de59086581f874babc37b8436adce4e9578a2379feb16f756c2533f9193645f06261f73bc899 DIST genpatches-6.18-12.experimental.tar.xz 6004 BLAKE2B bfd750109324d483de50c63e5e95f1aeccebf606a14db5135be6fbe8717ed409fecabb95cd49f9a02f842feffb674e47dbb20414acaa42b48a3113501c43a959 SHA512 c53dac5e1b9a574d7c1bce5148cf48f4f2809b43474b21ae120deccbb714898f071c5741b574b0318a14fbc980a2f55b65714dfa9543628a33cb544a36acf501 DIST genpatches-6.18-12.extras.tar.xz 4324 BLAKE2B 2bdf7fb8ce0d8323184472d7be00e33fe30686512f7a29c7661f3ba0b16107dac6c24665feaa5628391debc95db08ac7cfe1cec69a1a14480f06ee3a026e9d37 SHA512 3def30baf50e968f2132aa7065dd45d0c6789a3c275c86e7ccdfc0123d6c78969530fd898282b3d89253c66cbce9d014cf6808284c97dc1b647581ff9b468ce4 +DIST genpatches-6.18-13.base.tar.xz 692428 BLAKE2B d9f367bb08747842eaca3ff004eeba2011622f806f802f2a81311cdf4e9ac0dc59e37e7e568244f400bd7343cfcd3a32adf9072ac9c639025fa07ef5baced8f9 SHA512 49a74330df4756ede146e6cae0bbac2178213a886c98c6a976fb0b1a74290c3aae224b9acd38cd45c1a177227948931d9e6f9a1b5003e822e06cc3f6d1a37670 +DIST genpatches-6.18-13.experimental.tar.xz 6004 BLAKE2B 2073593bc052fd44b0e09960bb98a5c58bc88e83099fc41047c692b7ea8e463e71da24792bccfcef38df049eb96a4a335a33e99fc9727a714ad624e126e4bdb5 SHA512 69eb6a0ab5ba54864d8eff28aa71777a5da8e7df31e19ef47d4c48b34f304c21d4c226b44dfe58d024039bfba8dfa043daa5f44f1096cc5a8f9a96ffe17c5920 +DIST genpatches-6.18-13.extras.tar.xz 4320 BLAKE2B 68ebb2b7ab8035babbe42e9d2f472042037866f33629a78c389bfc4cb50bb42ee1639ff9975d994b836e32ce6047e88aecd7fd3c202015b3f0b2caf427a13910 SHA512 424b4a6c74f89ae85b170255522d0fdb7c88510a424d5cc5e5d918b051c91f76c768131ee25e2fa83a894c0653bde0455568c0b7fb21b68f0e8c06bb39b0dea8 DIST genpatches-6.18-2.base.tar.xz 27772 BLAKE2B d1c497a82068ccabd70e76f7df9231a965e801b7bf3e35378c67ebbd704bd3fc3fb183ac0affffbef43d5fa7d44e402e5c2d60e443c9eed544dc87dbc9d99713 SHA512 3fdd064a48fe13c9d915e30cfccfb74487dc28078c62080f721a5d92e7a4f0533ad8f05e2ab8f3ab1aead92dab480334997c0a6446248d3c4ad3fffbfe82bb2e DIST genpatches-6.18-2.experimental.tar.xz 6008 BLAKE2B a280bdb83483a3699a2e1be2e35ee2aadc6c2db2e1cac07bcda6ac352e6776c2ae2c73f23ba1aaca22132ae4bc6fdea91c064c4146f71d07a2832e41f250904e SHA512 1ac004466174ec7679eec830dfc01a78d0a8a2c1cb739b0afb1e5fbff7be0d588ae554ea764f02d824882137cfbc6dd3933dcee757a711d2a3fc1377f1ed60fd DIST genpatches-6.18-2.extras.tar.xz 4324 BLAKE2B 037e692cba93a5bc1397eeeca02061f68afbd13a6ca3d8efb1214f3cfdffb643bb357b5f4a7dc367f10e5837e9cc4633a3771b70f3afdcb1883c117a1b8d859a SHA512 9ce8fb5529294808f837ab002e2d0031f6e9608b1288202030b6f4549930439a30b50f982e05d706233790b5a4f75465a626864cabf7c2485347fb2bf7e9ebe5 @@ -195,6 +201,9 @@ DIST genpatches-6.18-9.extras.tar.xz 4324 BLAKE2B a1c7b1030cc600be17ac5cca677cdb DIST genpatches-6.19-1.base.tar.xz 7328 BLAKE2B 06f4f9b8f996f8a4793343974e52625136a45173fd1849c8efb42e2097f758f6eb5416814ec28f76749e1a1ce9626929dd2c916f26d830b6e652fffaa2cc023e SHA512 3a2d76b55aaf826c09d068b0bd0d37bf22e8d0d9d50cda52519ed0a3b5f1fc88749360116cfeab4ca56266d759dbb690060ecc2a8ccececd91c3ead8cc42bd79 DIST genpatches-6.19-1.experimental.tar.xz 6004 BLAKE2B 73f51c569fa2f229a5fe7b310c9bb25c6322f925dbc7bc0b74c0fff43d390697808952cc3f5499080003b6a03b2c56282bcd2773eecca2bb79ec6ae5cc7d533b SHA512 a4ef6c437272d87507c0c37cd41759becb5350949ba77508e0f395a3b2c6ea7794980ae93cd02f2fa560b337745dcdaf759c3bc8002c0cb7fc6f6b78f5a5751f DIST genpatches-6.19-1.extras.tar.xz 4320 BLAKE2B 6da65211eefbbf2468be32bb09fdfcda0b2f5dfcfe9f90b252cb1f069db5f578d876afc68dd0a435a8b8c12823b29637985f90720da4ebb3c926e4e91848e815 SHA512 dd8e340d756eb238552cbe0cebc0726d7d64e782b013a37d427f0631fae2bce4607a62f88d1a2f8b669ec0cae91140d4ff66bc77c019798df40be959403aa7a5 +DIST genpatches-6.19-2.base.tar.xz 23672 BLAKE2B 609d0e8b22dab56152a1c0b54d9afd323f0df569d7f111737ee22eac8643753a235cf730b0ef0ce49e8929d17be616abb8484d6171ffa15a03bfbce54c91b11d SHA512 c7813e4adbbee9a932d74a946f42d2fa04f0f0fafdf2ccaad3da52d7942cf0db6e69e4dac12f952e54e24dbcc7646fd7e22dd5b202df8fd9af58226ea09d0f53 +DIST genpatches-6.19-2.experimental.tar.xz 6008 BLAKE2B 5ac9f161f5659eb6680a5686ab6111d24ec0bae46dc10c5e1758e1a087f95587479ab6598a17770d5ae694c389c440c0677e1fa58f685ac10fce0533f56d42f2 SHA512 33db29e690abb7e522ce8966cc7c71be4aa062079db205fd455ce7429691b93132e748e6dd152f22bd702aec518090d1187018463024c68ecb26002754f9231d +DIST genpatches-6.19-2.extras.tar.xz 4324 BLAKE2B ebefbc75ae7ad41b71f00fb5644dd54e331cffc521f55d4377530223a227a81e736171218592f1b54f8d490c58645dd0d4d61efee4867f34c207d8e192a0034f SHA512 53e7ab6b5f35cb592c5ae87cc409fd532b00b6cfa696acdee44f48a2eddcfb592f67f19f7096a1f4243378107b8e177c73493adef7bd658a7a6b10db37923d82 DIST genpatches-6.6-120.base.tar.xz 5894056 BLAKE2B fd995bdbf3247079378d87bffa6a25054f361a937652bc0d145a29039c331b2f1db45eb6bdd7a51bfc9ebb441f59f1d50fa1abfb547eee592d7a093dc661a527 SHA512 1855d17ad317c41898594a33142febe72f8ce6483f009001c611f2ae7d8a0c9d6a0efa9809ce01884398f34544e7484a58f197c8d43520ec70a7bd0134af639d DIST genpatches-6.6-120.experimental.tar.xz 6060 BLAKE2B d27ece46e94db0a73f55a2b8fd6f890c56073dde581920e7894f650c17de6ec484e7bdab68c0f84e3dc4b9418f87e2bf05d7193c65dba7a25dab187b4a54a0bd SHA512 b0f1fb60cf81d4c7d8de4cdd5ccf2aa3e6ce9f1d16888fed2f862e3381bdf4384e514bd748d760305f3314d7a3bd3e31667a721b8510c68577cc29f4adf516b2 DIST genpatches-6.6-120.extras.tar.xz 4060 BLAKE2B bc2ccfc20db29197776e23fcb231c6a3198e621f76c346d6bb5a19411bcc73de4553558acb1843d4bf37c50d8bb5bd6ad2393c6ac0415500c21f3db13f3c36f2 SHA512 1fdfcfd1da08864a35f40cf20e3cf286c3cc0ca48c6ba1c273cf7fa20a63a52eddf09a0cb30583102d182d997a944537badcd0996aeabc58d970a1666476e155 @@ -237,6 +246,9 @@ DIST genpatches-6.6-132.extras.tar.xz 4060 BLAKE2B d8c9ffe1e1e27c01cc6352a9c7b35 DIST genpatches-6.6-133.base.tar.xz 6661768 BLAKE2B 02fc09d4e10cb650609a44cbd3788248b1deab4c07c02700c2db5f6f5e01bec35c748ec761782a0c416ff30f2e41d88caf9f1d900e78db554280ed63f37918ff SHA512 1697a2e5840f6e0afb7edf5cb19c56924d953215e9b07423d260e5fb67453e181820aa7fc568e7c34f1521621159b9504433441b3c568b9aeb53d60074a3a1a9 DIST genpatches-6.6-133.experimental.tar.xz 6052 BLAKE2B 9601474b935eda76a8c0ff2517501c8a24604b10ac83f9bedba9029b0c49e797f6e9298d099261288fe10d033783b84393b65fadf64153cc32e5b8096c817055 SHA512 1626cbb580ead7a64589f4c002b91d8cdb215e59579910989903659e0aa0dc84abc38a9cf7315cafc72873972cf58253e3a2b1a03880a68758ecb80293edc521 DIST genpatches-6.6-133.extras.tar.xz 4060 BLAKE2B 349b90d7294a2c1ea4b2c59028b1c6870bb26e7280bd1f4b116d6d5317b35a7d2d6125aec25fbeda414c113a78274293f1880b2632060117e3b77f8f8aff85c2 SHA512 ef8f0ddfb4bfbaaab800b1cf4e1dcab9b8a93803743e13dab0e4d4ea1ee943260c494fd3055915023e56541cf4ebbf26857d8fe98eea8b420e1fcd0027be5091 +DIST genpatches-6.6-134.base.tar.xz 6669700 BLAKE2B d3ca6df88bd2dd50c34fa156a461f1b9dd483c287c2f76eeeea46df66e71bff16ecd848e68d38c1ffb8ea0d8d7820cfe956044a5cf59bc4fab9321ff0d8ccfe2 SHA512 49fb04a92b517d5a6073051b961cd61790ddb85c255e0afad17caf0092d726215529105bc76ad12fcc0dfe913ae8234f27f5aa8bf0cd90163875b3d85f392d0c +DIST genpatches-6.6-134.experimental.tar.xz 6056 BLAKE2B a596bcfaf642b633447861b493cdf21de27206844f6335109b2e63a7c7709182a3a43882135b00d626c22cc98c5ab0cfb701949615193c09aed4de3d2774d517 SHA512 3a4363afa997e0d34ece99a4a48574afb56edb9820fac997718a7b8353151eff09d65a2d3704e8c958f5f19d8c26331b99b27b12e3637c14193600539f315c1c +DIST genpatches-6.6-134.extras.tar.xz 4060 BLAKE2B add2542925588e4c2880171fbd10673df3199ddd20d459261c2e008299fa4ebc0c4c9493c5263a030a0c8d0afedbed85b2b270e03918a479b4e809d0e6f2d28e SHA512 da01fa6d8ccedfabda66b2d4e941b3a094a691934a69ebc40554057984678a78a01bbae509f68864d86a4f26bee40666dd62f2700319bfbe234d4518d33b97ec DIST linux-5.10.tar.xz 116606704 BLAKE2B b923d7b66309224f42f35f8a5fa219421b0a9362d2adacdadd8d96251f61f7230878ea297a269a7f3b3c56830f0b177e068691e1d7f88501a05653b0a13274d1 SHA512 95bc137d0cf9148da6a9d1f1a878698dc27b40f68e22c597544010a6c591ce1b256f083489d3ff45ff77753289b535135590194d88ef9f007d0ddab3d74de70e DIST linux-5.15.tar.xz 121913744 BLAKE2B 3921274b23f7938abdf3ed9334534b4581e13d7484303d3a5280eddb038999aaa8b836666a487472d9c4a219af0f06b9fecccaf348fb5510ab8762f4ef4b7e83 SHA512 d25ad40b5bcd6a4c6042fd0fd84e196e7a58024734c3e9a484fd0d5d54a0c1d87db8a3c784eff55e43b6f021709dc685eb0efa18d2aec327e4f88a79f405705a DIST linux-6.1.tar.xz 134728520 BLAKE2B ae60257860b2bd1bd708d183f0443afc60ebbd2b3d535c45e44c2e541bd0928530a3b62de6385dd4e4726ebbedcc0a871d4f3ffb4105b9f1f6d8ed7467f5688e SHA512 6ed2a73c2699d0810e54753715635736fc370288ad5ce95c594f2379959b0e418665cd71bc512a0273fe226fe90074d8b10d14c209080a6466498417a4fdda68 diff --git a/sys-kernel/gentoo-sources/gentoo-sources-6.12.73.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-6.12.73.ebuild new file mode 100644 index 000000000000..801c2b5c224f --- /dev/null +++ b/sys-kernel/gentoo-sources/gentoo-sources-6.12.73.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="8" +ETYPE="sources" +K_WANT_GENPATCHES="base extras experimental" +K_GENPATCHES_VER="78" + +inherit check-reqs kernel-2 +detect_version +detect_arch + +DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree" +HOMEPAGE="https://dev.gentoo.org/~alicef/genpatches" +SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +IUSE="experimental" + +pkg_pretend() { + CHECKREQS_DISK_BUILD="4G" + check-reqs_pkg_pretend +} + +src_prepare() { + kernel-2_src_prepare + rm "${S}/tools/testing/selftests/tc-testing/action-ebpf" +} + +pkg_postinst() { + kernel-2_pkg_postinst + einfo "For more info on this patchset, and how to report problems, see:" + einfo "${HOMEPAGE}" +} + +pkg_postrm() { + kernel-2_pkg_postrm +} diff --git a/sys-kernel/gentoo-sources/gentoo-sources-6.18.12.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-6.18.12.ebuild new file mode 100644 index 000000000000..49920b685b74 --- /dev/null +++ b/sys-kernel/gentoo-sources/gentoo-sources-6.18.12.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="8" +ETYPE="sources" +K_WANT_GENPATCHES="base extras experimental" +K_GENPATCHES_VER="13" + +inherit kernel-2 +detect_version +detect_arch + +DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree" +HOMEPAGE="https://dev.gentoo.org/~alicef/genpatches" +SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +IUSE="experimental" + +pkg_postinst() { + kernel-2_pkg_postinst + einfo "For more info on this patchset, and how to report problems, see:" + einfo "${HOMEPAGE}" +} + +pkg_postrm() { + kernel-2_pkg_postrm +} diff --git a/sys-kernel/gentoo-sources/gentoo-sources-6.19.2.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-6.19.2.ebuild new file mode 100644 index 000000000000..244448b5111d --- /dev/null +++ b/sys-kernel/gentoo-sources/gentoo-sources-6.19.2.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="8" +ETYPE="sources" +K_WANT_GENPATCHES="base extras experimental" +K_GENPATCHES_VER="2" + +inherit kernel-2 +detect_version +detect_arch + +DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree" +HOMEPAGE="https://dev.gentoo.org/~alicef/genpatches" +SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +IUSE="experimental" + +pkg_postinst() { + kernel-2_pkg_postinst + einfo "For more info on this patchset, and how to report problems, see:" + einfo "${HOMEPAGE}" +} + +pkg_postrm() { + kernel-2_pkg_postrm +} diff --git a/sys-kernel/gentoo-sources/gentoo-sources-6.6.126.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-6.6.126.ebuild new file mode 100644 index 000000000000..c6cbd164d30f --- /dev/null +++ b/sys-kernel/gentoo-sources/gentoo-sources-6.6.126.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="8" +ETYPE="sources" +K_WANT_GENPATCHES="base extras experimental" +K_GENPATCHES_VER="134" + +inherit kernel-2 +detect_version +detect_arch + +DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree" +HOMEPAGE="https://dev.gentoo.org/~alicef/genpatches" +SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +IUSE="experimental" + +pkg_postinst() { + kernel-2_pkg_postinst + einfo "For more info on this patchset, and how to report problems, see:" + einfo "${HOMEPAGE}" +} + +pkg_postrm() { + kernel-2_pkg_postrm +} diff --git a/sys-kernel/vanilla-kernel/Manifest b/sys-kernel/vanilla-kernel/Manifest index 2840d6c66a17..764c9744f065 100644 --- a/sys-kernel/vanilla-kernel/Manifest +++ b/sys-kernel/vanilla-kernel/Manifest @@ -4,28 +4,38 @@ DIST kernel-aarch64-fedora.config.5.10.12 223184 BLAKE2B a0246dac2f7a4ad6a55b611 DIST kernel-aarch64-fedora.config.6.1.102-gentoo 252811 BLAKE2B f6bad0d23132bf0dfbaa25db928a95f39763b6500fd1df9b4aeca4351e3e75f185891c0df96b111ad840e4bac431d74a9b11e7344e766ab49715663c89e4dbfc SHA512 41ebf195d8b656801d49c6bb693ebe1404b6725d70d88d93a75bc4af230030d65ef0701ea931846b022a3c598dcca068fbc38ecf6d064262b3f5b88e57060437 DIST kernel-aarch64-fedora.config.6.12.41-gentoo 288081 BLAKE2B 08273a34c387621d0ccffcc325a0a34b40e0a8fbe78f2429c8a9efc73aa05f8fb563ed53e5fadb25662089f23ebafb61b2d08f91ea00b073e67e702798255e9c SHA512 58ea4f247aa9af6f7535ab5fe44dae2fbf286c7fbceeda86df532125807bbd4c25a89ddeeff4284592efefbaaef5022626abad7f1d1d64976e3040dc6e89251a DIST kernel-aarch64-fedora.config.6.12.8-gentoo 288081 BLAKE2B 08273a34c387621d0ccffcc325a0a34b40e0a8fbe78f2429c8a9efc73aa05f8fb563ed53e5fadb25662089f23ebafb61b2d08f91ea00b073e67e702798255e9c SHA512 58ea4f247aa9af6f7535ab5fe44dae2fbf286c7fbceeda86df532125807bbd4c25a89ddeeff4284592efefbaaef5022626abad7f1d1d64976e3040dc6e89251a +DIST kernel-aarch64-fedora.config.6.18.12-gentoo 301976 BLAKE2B 6e5d64b8a8cbce8678d614d3d1addb17a17ebb46b45105730a02d00a8af795c0acc4748ff19812c077ba0bcf126a8c55d436334f8428a0376007a118cc051983 SHA512 b4a2fa14b7864f0c4b41c587294c9a6bf09cc243eaffd4c76d0f2579297d42931942f4501adb5733266cfec74a7142dc3b06677b3ad83f0f7836b0c2afa6c8cb DIST kernel-aarch64-fedora.config.6.18.3-gentoo 301976 BLAKE2B dc27125680d96c10728f2840920a14c8bc82c2204cba3bcfa74d7040298f1528f8ed9b572c7e8ef11c44e9136c08613891e7f4c633fa252272bf922f220fb0dc SHA512 40bf9cd5d721ed9820127b4c99454895db484843266b276c0d552209a9d2568271347ca1d2b6571f676e7353fd529781f6e0760270686c94b6be48b01bcbc059 +DIST kernel-aarch64-fedora.config.6.19.2-gentoo 305517 BLAKE2B 486e42dc7c56c6f8ff5006c2fe9b3888a1632d0302bcea35528fe5a8a1f2e9ad40a32e335f4fdbdc9403ec498354b0d0f1ccce0369028f577a45354ebfde427a SHA512 cf8ac4388ed637d116841d2937e25921e4707ca0a2cc3ea204a2e69df1d0052f82b7391e72d3fea0fb4b51c342a728e436411c057bda52963f73e46c181de658 DIST kernel-aarch64-fedora.config.6.6.12-gentoo 271041 BLAKE2B 5af7c2f57cd6cd9230d9ab1a539a4b12b02cfdd777f5921b2d69329b171060a8085909a60eed9916aea504e8d9c9d1e907a61f0c6681ac75d5c64864052f821e SHA512 f744444f2840020dce2dc8473e3e562fa53ac1c34a641a9f322c2c7efd8fc4d9b3677479d3a31e705fa60beff0b1beca79ab78ad7dd4b6633d4499bebbfc76bd DIST kernel-i686-fedora.config.5.10.12 205412 BLAKE2B 92c715b7e2cd7dd74da7970c05981f520597d3e403ce82c8cf4eee31c9f1f50b638792a6bdb256ef5bfdc99f1bcd594e819e8f44dc6febb2ad9a854bad817f2b SHA512 69d8db11723ae1b40fdedfaace74d15bb63198cdb0485e0a1e5eba95b31217110c93a93e39cc7370cf45f1d3a8bc7f75ec096d6db5ea9ecb28ac6b56702ebb10 DIST kernel-i686-fedora.config.6.1.102-gentoo 228064 BLAKE2B 9e783fc6087efeb0808437bb8bd80ccb54c29fd48a6893087a51b452dab98586f476be8d2dc4e0a2896308c9a0c185879deca46ffba1bb446b142ab3e81303a3 SHA512 4ef3eedd4c1ab78c2c5294121b47a2c4b465b4f537d12d48c397a7ab30ab4dc58b65d680326a23bce661d611aa37a2f98e814ec8e3cb84c3522151f09661e90c DIST kernel-i686-fedora.config.6.12.41-gentoo 255152 BLAKE2B 4d865ad46de06195628acfca1b4774908bd14212878b9a2ceb579bc47e57a17192000941e472f35b5fca0556f241701760bca194c3a48f58d5a75e4c2b07a8a6 SHA512 6d17f93a5a9f5a8cb3b3466c304ef9828eeb7b18a3270220b70d9219834f80f5f0945a6956e92d4da4f311a980525d77513e85691811d060246f9dcaa6327bf2 DIST kernel-i686-fedora.config.6.12.8-gentoo 255163 BLAKE2B 7015bbcfb2aed0ba70173dc7e9abf464e167184e2bc8cea6d26623972bbe6b42956241a7d75ff8604d70d5c0202db6e40cdb890abfcea3d0c8e0d00aa869353e SHA512 a1b4b688510a231fe079b4158e8aaddaddc4e719367132668279edcb16e32b6c7f2c449ec196646b0986171dc43a82475255502ae40679e0433de9f9876e0a20 +DIST kernel-i686-fedora.config.6.18.12-gentoo 267650 BLAKE2B 39931dad243a4825cb5e36dbd9b6a36f1459ae64682f4e00ad761a4382ef67e43f546743957a408ae74b492d224ab8dd19e29a39c5ddf4e9c82a3e46c4030963 SHA512 078e38b75c7e01578d7d593b6371657cedc91077de13e3249a63cd96adf57f937b178a9c17719731292ace3cf247cfaaaf9c44f080852bcfe8b935c4e5452721 DIST kernel-i686-fedora.config.6.18.3-gentoo 267650 BLAKE2B 39931dad243a4825cb5e36dbd9b6a36f1459ae64682f4e00ad761a4382ef67e43f546743957a408ae74b492d224ab8dd19e29a39c5ddf4e9c82a3e46c4030963 SHA512 078e38b75c7e01578d7d593b6371657cedc91077de13e3249a63cd96adf57f937b178a9c17719731292ace3cf247cfaaaf9c44f080852bcfe8b935c4e5452721 +DIST kernel-i686-fedora.config.6.19.2-gentoo 270705 BLAKE2B 2fb951b0d21e85ea5040721422075b21109e14b8472a1f460a9dc293cf0f13c15573717c39df31e873386dacce47899844ba10efedd992567f15a7ded5005bd9 SHA512 a80a2fb054162f914db342ad1b81efe0016b50a9e78fc94af125033b40421cb0da4816230e26dfa9a03b9fff8ecbcb39baa3059107fe1ee6756a7c74e2980cc6 DIST kernel-i686-fedora.config.6.6.12-gentoo 242515 BLAKE2B dbb4df93a5c8ee34d687262cced152a07f412a89ef2e8122429477633424fdac80809ed57a5a6de72de05313ec91f266d37c3494426099621d047c0561ccb57e SHA512 a65fe3299b6d8f89373937d2a782aa1469ebf18954b00bbf2798cee952b9946d7fead795388c079cb508f6d431e49b2812fb6d845c8a0e3861a4a3bd11e81968 DIST kernel-ppc64le-fedora.config.5.10.12 192105 BLAKE2B 889141debb0656a358a3381bae14b5216b982acdfce0bc758f9445c16647807a68a788fb290199c2a1a23627bda1ef4c9405b3f5ac2a4176d1d2b55c71fb7db9 SHA512 3ab0f1401d9f50a61477c71369dede438f575d9d2c3a2f5c2cf36d624c2b59a938efca9c981b075511b3860c983eaaf5e5a9f877d659277f09ceba45edd43770 DIST kernel-ppc64le-fedora.config.6.1.102-gentoo 218278 BLAKE2B f4dda4430e9801c4660be4bbf6e4b37052e720656e77c928adb7176ff3dba55feb2fe66dd564d41a181809488941cf392ec9c94d786e4a3d813fbe5d683d305f SHA512 a5e12ab1045fae61b494938047cf1c2a3c34693d3d242968e4ab564a012c70e6d232b9d5333347f5ba114a64bb59dd96919b38c5a1327fb8c5154ef40ad28d2c DIST kernel-ppc64le-fedora.config.6.12.41-gentoo 241851 BLAKE2B e7b8833572348037d7af2ba1f9671e8010276d853e0d85b8a175c0dcc5c212c57c7660be54a7ba2621c427cc8120acbeb1063a1c1a1c293894ebe1d63921b684 SHA512 7a81fe1c4b1d4fb9f2d68846882a8869c0888c8fa764ec41f41d27e61b7a69825ea8ceba2209b40deb7c0e8f4bb2c5d81226a4f28e7ca8aff4788bc7a3292194 DIST kernel-ppc64le-fedora.config.6.12.8-gentoo 241851 BLAKE2B e7b8833572348037d7af2ba1f9671e8010276d853e0d85b8a175c0dcc5c212c57c7660be54a7ba2621c427cc8120acbeb1063a1c1a1c293894ebe1d63921b684 SHA512 7a81fe1c4b1d4fb9f2d68846882a8869c0888c8fa764ec41f41d27e61b7a69825ea8ceba2209b40deb7c0e8f4bb2c5d81226a4f28e7ca8aff4788bc7a3292194 +DIST kernel-ppc64le-fedora.config.6.18.12-gentoo 251548 BLAKE2B 6540ec441b82bf4e5c9fbc5f3bbe914529834601b9477d37875c1d2ee4bd900d75c234d05d1a75c4ecb8a2f23e14ae02702e4dabb8d424548be6c65b0b4e0d55 SHA512 4a34af6370c697344ab6d71e4dc964fc6dd60e235434db22880cefdbadf8d7508707df6336683093b2455e7d555a295f2f606d6549a7abf5718744a5c4104dc3 DIST kernel-ppc64le-fedora.config.6.18.3-gentoo 251559 BLAKE2B adec1573987e72d5ea42e7df430e370948f0454807488c721d27dd837c29b87420b28fc15022aae995273362f0e1b24eeb7ce7a719934dcd84fd6369a3bcc7e3 SHA512 6cd45a46dcf110bc0155535602de41ed765b6387430f898e0b761e3ec1b6d094d1073c79552e696bad6e2a5158c7fd730c684ca698185e7e0a9c96b1bcea050f +DIST kernel-ppc64le-fedora.config.6.19.2-gentoo 254553 BLAKE2B 3391099a478a611cd8e43b0f796029efa15b5aab7e9d9a1f4d5a1bd654d2194972bf5163639e2758c9579216d6cc774bb0afe5b2dd00d87c1c3f0b14281aaf8b SHA512 36fd8dbc1c37f71a9cbb6c935b3e2412c25f39871fdd7f31b8ab96bb76c182813f93c87ce18198dde45fa59a3fef9db53be329d099784ed2018c484b47dea85b DIST kernel-ppc64le-fedora.config.6.6.12-gentoo 232147 BLAKE2B d67c2ab2d089ecdde3879129d2b1f85a592adae811ed053d00d4ff120e6bb44546bb41d74817be558adb1d669d06f3dd50e6ea542c8a9c2f13672f77f4e4eed5 SHA512 b130b4c57959c0f7be983334b08354640d5e2946bfdd956d6c5b895f816f6177d5fa4bb1c4382cca5c4dd4723aac42e9e89a002b71d86f4eb30f755008f8f9af DIST kernel-riscv64-fedora.config.6.12.41-gentoo 245234 BLAKE2B 802218a7610177426b813a715ae9b94e7ca2f2d8d9f08124208a8cd122f1a7e3ed5b1cd8a7e227a21a5cb7341554640fac321cb690fecbe9de78e7d8929b5847 SHA512 cc06482e7c08704fbe92d0f1c0e2f7c7469953119ddf43c0bf6a4f2fde55d0ad8b6b326bfa3ba8f01c528fc94ee14d889f93427db02a97ac8a26e8b9a0ebcf91 DIST kernel-riscv64-fedora.config.6.12.8-gentoo 245234 BLAKE2B 802218a7610177426b813a715ae9b94e7ca2f2d8d9f08124208a8cd122f1a7e3ed5b1cd8a7e227a21a5cb7341554640fac321cb690fecbe9de78e7d8929b5847 SHA512 cc06482e7c08704fbe92d0f1c0e2f7c7469953119ddf43c0bf6a4f2fde55d0ad8b6b326bfa3ba8f01c528fc94ee14d889f93427db02a97ac8a26e8b9a0ebcf91 +DIST kernel-riscv64-fedora.config.6.18.12-gentoo 255966 BLAKE2B 69c57e48dc698da92ca73912def34ca3449696d15cd155ef590bae67144ebe8c9434624fd0c7d9b14588ec44d0ba873193d2be4d225fff37d3eeb7f56d65abce SHA512 1fedae0718fb67cc30b89c8825cab9b3a27f6874409bbee203ae18e826b69daaacbe3c178fe7a19f1c339cc60ffaa8f3756a7617d805feb58a62b7a9696fdc1e DIST kernel-riscv64-fedora.config.6.18.3-gentoo 255977 BLAKE2B 43022bece0d437826eaeb8c060666e921cbfc85db5f9e07e2b4776c1300e4cc086e568294c9a63d4e88ae4dfdb5821462ca5ee9a9c1428d0fb9b51e4e4d6f48d SHA512 0b384113a3c221189b79b9d25eebfc1a99833f7e0ee1d8673044be414425d8119576f641e77bac5251248b0f14f2ddfef1a81f647720581f9e3ba5880f408c07 +DIST kernel-riscv64-fedora.config.6.19.2-gentoo 259300 BLAKE2B 3d06f370270a3cbe26d24cb31ae973766b34474f7f897790248366c3925ee0b74cfddbc9001f5fc47b20dec247c7e369736f10d4221f717727012af099cb8a68 SHA512 a17c800d4b77a3c7ed93d329b0709f93ac87f67e69e2595544eb2471f47355db87d1aaac3dec10d8976b0883e99ee64cd061fe511837e3472c4319cc6bd3aa1a DIST kernel-x86_64-fedora.config.5.10.12 206357 BLAKE2B 0eda9d4f3f973336cabd67c1ac78f100aabde926354743e8dcb7ff84496f0de49210d45f99bc850a2096078b0b4687aa7fd965d999248559506004f2b29dac0c SHA512 b12f43d3c1a52a4915cd73db98874ce9ae6c425672c0f1c19ed1b1101341c868ebf1c9620bef5449752ec0d7342c1ce38fb77779d0f89b9267096a605ebf7a26 DIST kernel-x86_64-fedora.config.6.1.102-gentoo 228685 BLAKE2B e68236ccc1d51b2aff850eda9f3197b7ea95b8a88716bc7b07dad30348a86fdbb99a948060300dddae73ca82267d851d357f1c9547a9dcefae1364deebdbd124 SHA512 42bec2ddb9cf7eb6e84bbdeb23eb98dc11c9cea41f6134b776010c6b36833b520a290f0ef0145379de15c7f7834398fa5e3aaabd7258d7d4e89567faa09eeb4c DIST kernel-x86_64-fedora.config.6.12.41-gentoo 256210 BLAKE2B f14f7de8ae573561824df47cf94c3c0ce52a820456ebd0e618e4c1e7f5454b7d3f6f86c559a3cd98dd94c55aaeed397f3d0cee6b0e37cf6b47d3aedd920a9dea SHA512 ea87b4b45c78888e02d0288dd5844cf2d97a14e251b565c7d6451a0e62fbe0dbef38f46715467af2f869995d6bbc8be61d5b70476a86d607a5bfa27fbaf36e92 DIST kernel-x86_64-fedora.config.6.12.8-gentoo 256210 BLAKE2B f14f7de8ae573561824df47cf94c3c0ce52a820456ebd0e618e4c1e7f5454b7d3f6f86c559a3cd98dd94c55aaeed397f3d0cee6b0e37cf6b47d3aedd920a9dea SHA512 ea87b4b45c78888e02d0288dd5844cf2d97a14e251b565c7d6451a0e62fbe0dbef38f46715467af2f869995d6bbc8be61d5b70476a86d607a5bfa27fbaf36e92 +DIST kernel-x86_64-fedora.config.6.18.12-gentoo 268721 BLAKE2B 14c13ce6f5a001e58cb36040c8f6793031fd7ac0522752af8b3a55935e77cc4eb4a28b54267ec0aac62eb3c8e2c24c2a13fb6335d0e47e70c953d012f6298f15 SHA512 32091a1e69674cfd8774fbf4ebc945121e87c396cfa0e89d9597c18f4dee409727c9eecc0ee46e318bb6d20836597ac338a462c5e8668e741d93ecbd1b6b1bbe DIST kernel-x86_64-fedora.config.6.18.3-gentoo 268732 BLAKE2B 0cae98c6ddafacef7d3a7dfd4a7c96a6e2253fece4809d828337edfbbdf303c2bfed6ac4cb938537fdd3985a75a206619d28969e82f24e366a0b3dc06c47044b SHA512 23c6336984352d87cfab9fa343a2e731f45534126d08a27863ba5a50108eaf11f3d873d25584755d2de3a79a572d485ae65e5d635cdb7af86aaab6694e16d1f0 +DIST kernel-x86_64-fedora.config.6.19.2-gentoo 271797 BLAKE2B 25420fafc7a6f31ba6e01117e7a9dcd790b66776ebb74d523d1af27fe811fe44623968cb7d78c3aa0132101ab81329b87bfee92f989aff06d0aeaba6d7fe8d31 SHA512 124214803cfda0bf4c850a11e31c2107d94dec259c1d20935437b97bb94ffa80152eb1721617c18a73c32f68285c37dc035da5f221873fd1b95ec5b1c5498927 DIST kernel-x86_64-fedora.config.6.6.12-gentoo 243607 BLAKE2B 7e670d37c6471e50aa0ba395570cd0173af0210afe63faa48d7a147327110652e3aab5c339cf10ed22a6a20e81e505aee84311beb21fda3eb577e06ea55ecac8 SHA512 c484403a60670dd006ecbe65240cb00d97e8b3fe22d1169c5b6ccb92bcdbddb3ecd474d2b57880b30baf6a38bcef11fc8d56b8b0b02fcddd859833c3640cdc9c DIST linux-5.10.tar.xz 116606704 BLAKE2B b923d7b66309224f42f35f8a5fa219421b0a9362d2adacdadd8d96251f61f7230878ea297a269a7f3b3c56830f0b177e068691e1d7f88501a05653b0a13274d1 SHA512 95bc137d0cf9148da6a9d1f1a878698dc27b40f68e22c597544010a6c591ce1b256f083489d3ff45ff77753289b535135590194d88ef9f007d0ddab3d74de70e DIST linux-5.15.tar.xz 121913744 BLAKE2B 3921274b23f7938abdf3ed9334534b4581e13d7484303d3a5280eddb038999aaa8b836666a487472d9c4a219af0f06b9fecccaf348fb5510ab8762f4ef4b7e83 SHA512 d25ad40b5bcd6a4c6042fd0fd84e196e7a58024734c3e9a484fd0d5d54a0c1d87db8a3c784eff55e43b6f021709dc685eb0efa18d2aec327e4f88a79f405705a @@ -35,6 +45,7 @@ DIST linux-5.x-sha256sums-20260211.asc 373886 BLAKE2B bca3610830811245d37ab2bc5c DIST linux-6.1.tar.xz 134728520 BLAKE2B ae60257860b2bd1bd708d183f0443afc60ebbd2b3d535c45e44c2e541bd0928530a3b62de6385dd4e4726ebbedcc0a871d4f3ffb4105b9f1f6d8ed7467f5688e SHA512 6ed2a73c2699d0810e54753715635736fc370288ad5ce95c594f2379959b0e418665cd71bc512a0273fe226fe90074d8b10d14c209080a6466498417a4fdda68 DIST linux-6.12.tar.xz 147906904 BLAKE2B b2ec2fc69218cacabbbe49f78384a5d259ca581b717617c12b000b16f4a4c59ee348ea886b37147f5f70fb9a7a01c1e2c8f19021078f6b23f5bc62d1c48d5e5e SHA512 a37b1823df7b4f72542f689b65882634740ba0401a42fdcf6601d9efd2e132e5a7650e70450ba76f6cd1f13ca31180f2ccee9d54fe4df89bc0000ade4380a548 DIST linux-6.18.tar.xz 154309096 BLAKE2B b94b7b9bf18aca0c3e50baf79b009a1448fc6cd9c3ee019f641cc247dcf53a4abef4274ee0608ad8cd4943af69854363a95d26e117ff23620bb07dccb158859f SHA512 88599ffdec96d150c1feb9b261ba93bb0301a9d0e1ad6bef7aeab1f5372cbfc57d8b43c7e902bd8f76921d1dbd8189663c142ea869e51d0e2b483b150ee00fe0 +DIST linux-6.19.tar.xz 156067644 BLAKE2B d1551c058e9a1201a0fa769b427255f13bb0d73fdd384e2c0302956cc9a1eeba255b013fa87a15fdad508bc00fdae2085590572c76cfe20fe2af31ba87b7d289 SHA512 01b29c7f4e5bc0c9802794c2cd027fece825f90417be229a71e60eefce530010d5d301749c54ae744e9d4a483518e769e2bb7e6e9209687681ad7fff11c3ed86 DIST linux-6.6.tar.xz 140064536 BLAKE2B 5f02fd8696d42f7ec8c5fbadec8e7270bdcfcb1f9844a6c4db3e1fd461c93ce1ccda650ca72dceb4890ebcbbf768ba8fba0bce91efc49fbd2c307b04e95665f2 SHA512 458b2c34d46206f9b4ccbac54cc57aeca1eaecaf831bc441e59701bac6eadffc17f6ce24af6eadd0454964e843186539ac0d63295ad2cc32d112b60360c39a35 DIST linux-6.x-sha256sums-20260120.asc 193071 BLAKE2B 7705ec74114923142587c593711533eb2a4c38356fa1a6e47a0a824d8c8f5cdf6e41b4c9e6f48fcd579cc9149597c85be997d5f09532e0f350626542cd1fa66a SHA512 2a22041d1977810b2aa9898369a120b3462ad0c9ec647d1ffffd9f7c85c01ff61b5bf9cf059dc9826499f79121c94ed2bb8a7a8e1a5e5ca2a9186c9a35642b28 DIST linux-6.x-sha256sums-20260130.asc 194768 BLAKE2B 1ea7a154e1135c5829578094716d395200df525af95fe937a959c8aaa07c63446092ac9b4b17773e575541cfe44cd00fc9bf0dbd19b414f3a6a52bc419f6dcd5 SHA512 60098f21738551350bf6c7e1db671ae0301f9845d5ca7bcf2a65ddb3252ddf0b11211128813a1e3ddaa089071c18bd0c5f0fedd37e87ed075bad024b26a69ab4 @@ -42,6 +53,7 @@ DIST linux-6.x-sha256sums-20260206.asc 196128 BLAKE2B 2151f609e99f6511193b26ed5a DIST linux-6.x-sha256sums-20260211.asc 197821 BLAKE2B 653fa8e3aaf0b567521f7497b3a25efbde8f8847c25b143da83ec38fc98e8b1452a829a3190dd86ad9edfac26f0c56d29e229efca34e06f0abe04f5835d67435 SHA512 dab9453d842a580c1befd22e99252b25a532ef8d4b2ca91037026c31373b1b63843d15a86de684a2753808b326c1a19f9356c34fd417c736ee1adf5665fa8803 DIST linux-6.x-sha256sums-20260213.asc 198162 BLAKE2B 1c5e0f44ac5a938575cafa106348551c71636d1ff5af8f08485861aba0c3a7db31be93202bbb5b4f4a80506726abde04035fc8788d40d31e980caab7e2381ea7 SHA512 56714feb06dd768785041d29222bee8b35c621dfab223c9b22c03774f8d45da39619a86931b7b84133802879d14487b6aff9c9f4cfb930df8931dd1261a4ccc8 DIST linux-6.x-sha256sums-20260216.asc 199522 BLAKE2B 0512d7c55637a08a0f6a09e3f2f22343502a93ea71a4e0f6c234850d52fa2cb7a338a037e6323ada6ae77f04886dc5ff5e4090ac254ccbe4efcf1a27db1710b4 SHA512 d5f82aa8ad9ae46c38d61cb9f5af2eff8c301b156cf3107c2a0f863b3517afe8b03018e9528e9b959a534c0831d0ebabef83cc82d95047ecd85be5d1562deb5f +DIST linux-6.x-sha256sums-20260217.asc 200882 BLAKE2B 4b952ef85555cf9f21ea3c729a79f5f8ab51ffd4533485dc5eb3186fa9c795fd2e190b30035a5c2594d0d883be855fc0f0ebc378724aa0c0c729388503e9671a SHA512 2f9647ba4cc5d786b0b0dcf179132e6a755f23ed182a26e0557727502657d620aa74c701aa301d3304e4d8d81df29428ff68ff9d4910b13f8b0ab87835d29db1 DIST patch-5.10.248.xz 7072740 BLAKE2B 44e3fa53ac8d3c40d015261d5c0eaa2d7c8b9b07cf874190becb97a6182c9a6b719f7e115ffd5ff45be50305b5a00d0a9d5fff94d86af4b4eb4717e971082738 SHA512 375e15fda9468acb191ea1421fca74bc6e1f4b33369e77ecb04267c3575c282a63cafa6bb4c8136ee071f091dd61f94a8e7eeb584ef9eb1daf2cef16eb9def25 DIST patch-5.10.249.xz 7103128 BLAKE2B 7601051f14d8f5e128d92c4b6e15300d3918e8bdff26ce75bbea2540909f4578bececcd9a193add434c19b292c55e7f6c231fad5a70a60a885c34e86f47fbc6f SHA512 d2e236c9e5a771efad02a799892f31808adaf372a898191ecd42f496e7673e3168dcd46c4d90cce778e505a47679991e2254fa40f2eb17716f91df93cb08e646 DIST patch-5.10.250.xz 7108816 BLAKE2B ad9c09595e4a05b50dc6b3ab6387116b7f4ed0d0cea3d2e0c5b390a00f3ea12cd5ef465628fb44f0f7aef230a6f6ff62c3d093d35a9a345db4c00d89abe182b1 SHA512 7aff51241e7378fe0601bade548fa32acafe1ace5c9390bbcbad0aec9eabcf88beb4055098d34c1bd9781665e92ed9ddd33987d3b790ec7e85e2812ea996d89f @@ -56,11 +68,15 @@ DIST patch-6.12.69.xz 3832080 BLAKE2B f70cbf90f1a96e1b0384990bb238f6d433a6fe4e72 DIST patch-6.12.70.xz 3851836 BLAKE2B e271ff2ca48b4d7b339a66c3aaa0a47bb5311af45aa4a69adeabeec45377382290e9c9693444a36ae05bd63ebc5fedfe6e05130ad6aac1be972e1122b0e40d59 SHA512 66c8713ec2f637e0de4b357626d976dc6a1a55471d5c58818377a8913376ebb13ec6331a9fb5fb0c6905fd22a26ad972a4a6c824ef5dec2947eb5ab5dbd7d17b DIST patch-6.12.71.xz 3853788 BLAKE2B d472c0583aad7a51d7734b44fae29fe007dc4f7261f18ba725f863cfe053e99382fd587aab90c5a7554159fc6263667b51247f0aa1762cb9d693e5d83973753f SHA512 8f3a8d7aeee3bbbb4541002a6c9766836900e091a6c9ee0ea0d866d7ef6e48169f0187c70ef750e6e0e0e93259e8a991e1583d4e05d1d785b4b44d170128c3ea DIST patch-6.12.72.xz 3857460 BLAKE2B b716b5f20c75f1cb80a2b1e67383f3ff536ef0c4707a5b3b2d45f42639f409aaf9049a4a59ceca7c19b0ba684be31b416c214c03c2664bc909592a108239fe03 SHA512 5456674d084225295c9a1784c863608fb783690ba103788d7a27514a72dfcf04efd6817f6fa86e04fd12917ff51667dd100747ea5661a86687a8a7e062f016ee +DIST patch-6.12.73.xz 3856712 BLAKE2B e5adcfd54e99e232b6c682b8baee915bc9fb2b1ed1a3b22e3077f6fa27573c1449f57549c4476b1e6f11f864ae9886091dfd335c1a99f81d039277aa75fc0575 SHA512 a93d89091de7931ec187cd3043967e90a6959dd8a223481bbe84e89e98fe0b7166de42e4c9fa97f9bbf11dae6551578d3d18a290d406e87a4aa541ff71cf690d DIST patch-6.18.10.xz 658132 BLAKE2B 1ae06ff14a3f6e8fddc13044607db2aca2349cde4a2a6ed0dee08805d00344fce0653d292c5df5f063532fe4c3459d14ea2f3595bd173446e037cfba8c735855 SHA512 47441292df0bcfd1d673c98232ee82547d88e0c83b571d50d1ee4d5eadd46f2664dde74203c6df0183b33c4201b35e4d52543e47001efa23d37f1a664d022985 DIST patch-6.18.11.xz 670712 BLAKE2B 392006377b043bcbb6ee74f936e0b2f8d09b7be9f35c6aacdef68e60c3b117f645d35e3b4241dd0df603ccfc3866a3d307d2d4b654eb3f887d213240cb78ff68 SHA512 4ddf03816166d411924bc36a29e2f34ceac307aa07f7293863ddb75313e3bb05813d3b138f210164f77f6d8c0326c9ca95d5dbe4febcc2c7520a8e01f4121174 +DIST patch-6.18.12.xz 670328 BLAKE2B 777a3043ffd89dda18c6373e447b0181dbbc1d123efddd7a0d669cbcd02ae9e7d07529ee6380641976a56c7ca23c5c4a521c55d5824e07df6ed1fc9f40c9dec0 SHA512 b71074dfff3fb28d781b1cabc5aed4207de286a7e6f1b896e4aa40ecc794a38243496f8325bbacc39431fed71e283bec030157777b701da099ee772af5e100cf DIST patch-6.18.8.xz 571300 BLAKE2B 839d683fe10c1112d0dc6b71128b74e5de24bfc39f06b269845c7e2e74b4a5b05eb5bcb43104980354828af65c7b4af3c4b10c0ccbe2e6c6e398bf82b9462e0d SHA512 7c75c98dcae76acfae4d5b566509392ff91906ca813260f55b0b6425ff2267080289d2d1d19be656db161e0718a3073d9dc53288b779158c006ac84cac8f9b57 DIST patch-6.18.9.xz 603380 BLAKE2B 2296caebac3b92c0ed247229b1cd0f9d9d7cad6930b1a84a1cc4ff71567141a0a2e7e65d66c1df670df872961583afe13cfbad368a819d637d67d9e0b64aab65 SHA512 fd3822bec8e654b49d387eb94d9d4ca89c704d3ab52be2025c8c28e7cf648dc94cd9f1231227dd71abbc64ef1ace086aec7339691c4afd5234cba1e448ded9cc +DIST patch-6.19.2.xz 16380 BLAKE2B c23bb1db7f2c1dd085e060928fa8b25ad183e72171cbc526efa8db5b462474535d7fa68f682f6ae03a606eb80bb8c73a8447fd9dff9c012d1feb024f138ad247 SHA512 2c3435d27715dcb635c0b17b0d26a764749820f4b473c05306b68fd8d647b809ff57d469cbf6cbd5a95894bb7d0fad794145298f1c3d3ebe975c7ba487b47481 DIST patch-6.6.122.xz 5522356 BLAKE2B 80dc69fa15ee6746a26c864fe4b3d6db3f1c185799eca54ed1e7869b422050cbb500ce457d43711f1e5ea6e7b4de40a3edd9202a69d29337b9a1ff09ac318057 SHA512 2b4bdb199b6986cfb0beb4f53ff923812b7dc549227d7b50e69d811983b4c4e9374741e59f7acc3dc452b17a142392a1ac42c78230f0d22f01f6c8b277b4b32e DIST patch-6.6.123.xz 5532320 BLAKE2B 83b41dbd943b2f869b7fd920098ff86259d13caa118ed09edd61d32a1bd983a4231e36cebf54e694a81a81aca1e24545cbf0507364bf75455d80afe04d14cb79 SHA512 f1f7ef9dedf4342f3616fa8a8b3bf33db68c112bd0c119892f8042e20e030bd9547c00311f69b9b14f14fadb39f32cb4999f4c42114fb90b4268dfbe5e9c8384 DIST patch-6.6.124.xz 5545288 BLAKE2B 46002e1333a82285631ebe22c778dce3af0281a27ab460a4ed175c370b5fb558dc1a66401dae6c8348b8059c588780653de8d53e8448d68dabe3b85da246175b SHA512 d1f6af21cf5d089eb78b2408aa1afa08e0781fe15952709e68e115dafdcecb7ecaf232d624a28f1cda8917138714012a1ca74be5e7c14f4fcfb3723317364559 DIST patch-6.6.125.xz 5550500 BLAKE2B 3ffcf471bb0bfa8beb62217f61c958c0dbf410781ed2246985d2f4275bf143c8adf2e8c172ea2c3c5586c026a1b3e82ecbf043a4ff648e921d4b85f1e268dfdb SHA512 5d5a08fa0ef6cf52e6ebd8c6eddd731958f104e19094bbc2164cc809a369ff604fe832f749b12eaad2e948f4f678df764f2dd2f8408042039b213d8ce032f05a +DIST patch-6.6.126.xz 5550048 BLAKE2B a7a422fab271e3a2e1a1e5740429f8834dee20658862ba1adc58128f5d3eadb0f07ce6943ea8ca140913d4cace70f5d22bbc374b95bffa355b7e51c6a39abb4d SHA512 2ed65ddbb73355407a47eb78a21582e58449c674f0e8a40fa1d4d0b4e3a9558312fd93ed959f343e81fd694c358ae6a6bf3c70bfb6222f947ef98b5798c5cb87 diff --git a/sys-kernel/vanilla-kernel/vanilla-kernel-6.12.73.ebuild b/sys-kernel/vanilla-kernel/vanilla-kernel-6.12.73.ebuild new file mode 100644 index 000000000000..6953bdf2bfb7 --- /dev/null +++ b/sys-kernel/vanilla-kernel/vanilla-kernel-6.12.73.ebuild @@ -0,0 +1,159 @@ +# Copyright 2020-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +KERNEL_IUSE_GENERIC_UKI=1 + +inherit kernel-build toolchain-funcs verify-sig + +BASE_P=linux-${PV%.*} +# https://koji.fedoraproject.org/koji/packageinfo?packageID=8 +# forked to https://github.com/projg2/fedora-kernel-config-for-gentoo +CONFIG_VER=6.12.41-gentoo +GENTOO_CONFIG_VER=g18 +SHA256SUM_DATE=20260217 + +DESCRIPTION="Linux kernel built from vanilla upstream sources" +HOMEPAGE=" + https://wiki.gentoo.org/wiki/Project:Distribution_Kernel + https://www.kernel.org/ +" +SRC_URI+=" + https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/${BASE_P}.tar.xz + https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/patch-${PV}.xz + https://github.com/projg2/gentoo-kernel-config/archive/${GENTOO_CONFIG_VER}.tar.gz + -> gentoo-kernel-config-${GENTOO_CONFIG_VER}.tar.gz + verify-sig? ( + https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/sha256sums.asc + -> linux-$(ver_cut 1).x-sha256sums-${SHA256SUM_DATE}.asc + ) + amd64? ( + https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/${CONFIG_VER}/kernel-x86_64-fedora.config + -> kernel-x86_64-fedora.config.${CONFIG_VER} + ) + arm64? ( + https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/${CONFIG_VER}/kernel-aarch64-fedora.config + -> kernel-aarch64-fedora.config.${CONFIG_VER} + ) + ppc64? ( + https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/${CONFIG_VER}/kernel-ppc64le-fedora.config + -> kernel-ppc64le-fedora.config.${CONFIG_VER} + ) + riscv? ( + https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/${CONFIG_VER}/kernel-riscv64-fedora.config + -> kernel-riscv64-fedora.config.${CONFIG_VER} + ) + x86? ( + https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/${CONFIG_VER}/kernel-i686-fedora.config + -> kernel-i686-fedora.config.${CONFIG_VER} + ) +" +S=${WORKDIR}/${BASE_P} + +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86" +IUSE="debug hardened" +REQUIRED_USE=" + arm? ( savedconfig ) + hppa? ( savedconfig ) + sparc? ( savedconfig ) +" + +BDEPEND=" + debug? ( dev-util/pahole ) + verify-sig? ( >=sec-keys/openpgp-keys-kernel-20250702 ) +" +PDEPEND=" + >=virtual/dist-kernel-${PV} +" + +QA_FLAGS_IGNORED=" + usr/src/linux-.*/scripts/gcc-plugins/.*.so + usr/src/linux-.*/vmlinux + usr/src/linux-.*/arch/powerpc/kernel/vdso.*/vdso.*.so.dbg +" + +VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/kernel.org.asc + +src_unpack() { + if use verify-sig; then + cd "${DISTDIR}" || die + verify-sig_verify_signed_checksums \ + "linux-$(ver_cut 1).x-sha256sums-${SHA256SUM_DATE}.asc" \ + sha256 "${BASE_P}.tar.xz patch-${PV}.xz" + cd "${WORKDIR}" || die + fi + + default +} + +src_prepare() { + eapply "${WORKDIR}/patch-${PV}" + default + + local biendian=false + + # prepare the default config + case ${ARCH} in + arm | hppa | loong | sparc) + > .config || die + ;; + amd64) + cp "${DISTDIR}/kernel-x86_64-fedora.config.${CONFIG_VER}" .config || die + ;; + arm64) + cp "${DISTDIR}/kernel-aarch64-fedora.config.${CONFIG_VER}" .config || die + biendian=true + ;; + ppc) + # assume powermac/powerbook defconfig + # we still package.use.force savedconfig + cp "${WORKDIR}/${BASE_P}/arch/powerpc/configs/pmac32_defconfig" .config || die + ;; + ppc64) + cp "${DISTDIR}/kernel-ppc64le-fedora.config.${CONFIG_VER}" .config || die + biendian=true + ;; + x86) + cp "${DISTDIR}/kernel-i686-fedora.config.${CONFIG_VER}" .config || die + ;; + *) + die "Unsupported arch ${ARCH}" + ;; + esac + + local myversion="-dist" + use hardened && myversion+="-hardened" + echo "CONFIG_LOCALVERSION=\"${myversion}\"" > "${T}"/version.config || die + local dist_conf_path="${WORKDIR}/gentoo-kernel-config-${GENTOO_CONFIG_VER}" + + local merge_configs=( + "${T}"/version.config + "${dist_conf_path}"/base.config + "${dist_conf_path}"/6.12+.config + ) + use debug || merge_configs+=( + "${dist_conf_path}"/no-debug.config + ) + if use hardened; then + merge_configs+=( "${dist_conf_path}"/hardened-base.config ) + + tc-is-gcc && merge_configs+=( "${dist_conf_path}"/hardened-gcc-plugins.config ) + + if [[ -f "${dist_conf_path}/hardened-${ARCH}.config" ]]; then + merge_configs+=( "${dist_conf_path}/hardened-${ARCH}.config" ) + fi + fi + + # this covers ppc64 and aarch64_be only for now + if [[ ${biendian} == true && $(tc-endian) == big ]]; then + merge_configs+=( "${dist_conf_path}/big-endian.config" ) + fi + + use secureboot && merge_configs+=( + "${dist_conf_path}/secureboot.config" + "${dist_conf_path}/zboot.config" + ) + + kernel-build_merge_configs "${merge_configs[@]}" +} diff --git a/sys-kernel/vanilla-kernel/vanilla-kernel-6.18.12.ebuild b/sys-kernel/vanilla-kernel/vanilla-kernel-6.18.12.ebuild new file mode 100644 index 000000000000..3f19eabcaeac --- /dev/null +++ b/sys-kernel/vanilla-kernel/vanilla-kernel-6.18.12.ebuild @@ -0,0 +1,162 @@ +# Copyright 2020-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +KERNEL_IUSE_GENERIC_UKI=1 + +inherit kernel-build toolchain-funcs verify-sig + +BASE_P=linux-${PV%.*} +# https://koji.fedoraproject.org/koji/packageinfo?packageID=8 +# forked to https://github.com/projg2/fedora-kernel-config-for-gentoo +CONFIG_VER=6.18.12-gentoo +GENTOO_CONFIG_VER=g18 +SHA256SUM_DATE=20260217 + +DESCRIPTION="Linux kernel built from vanilla upstream sources" +HOMEPAGE=" + https://wiki.gentoo.org/wiki/Project:Distribution_Kernel + https://www.kernel.org/ +" +SRC_URI+=" + https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/${BASE_P}.tar.xz + https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/patch-${PV}.xz + https://github.com/projg2/gentoo-kernel-config/archive/${GENTOO_CONFIG_VER}.tar.gz + -> gentoo-kernel-config-${GENTOO_CONFIG_VER}.tar.gz + verify-sig? ( + https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/sha256sums.asc + -> linux-$(ver_cut 1).x-sha256sums-${SHA256SUM_DATE}.asc + ) + amd64? ( + https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/${CONFIG_VER}/kernel-x86_64-fedora.config + -> kernel-x86_64-fedora.config.${CONFIG_VER} + ) + arm64? ( + https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/${CONFIG_VER}/kernel-aarch64-fedora.config + -> kernel-aarch64-fedora.config.${CONFIG_VER} + ) + ppc64? ( + https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/${CONFIG_VER}/kernel-ppc64le-fedora.config + -> kernel-ppc64le-fedora.config.${CONFIG_VER} + ) + riscv? ( + https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/${CONFIG_VER}/kernel-riscv64-fedora.config + -> kernel-riscv64-fedora.config.${CONFIG_VER} + ) + x86? ( + https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/${CONFIG_VER}/kernel-i686-fedora.config + -> kernel-i686-fedora.config.${CONFIG_VER} + ) +" +S=${WORKDIR}/${BASE_P} + +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86" +IUSE="debug hardened" +REQUIRED_USE=" + arm? ( savedconfig ) + hppa? ( savedconfig ) + sparc? ( savedconfig ) +" + +BDEPEND=" + debug? ( dev-util/pahole ) + verify-sig? ( >=sec-keys/openpgp-keys-kernel-20250702 ) +" +PDEPEND=" + >=virtual/dist-kernel-${PV} +" + +VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/kernel.org.asc + +QA_FLAGS_IGNORED=" + usr/src/linux-.*/scripts/gcc-plugins/.*.so + usr/src/linux-.*/vmlinux + usr/src/linux-.*/arch/powerpc/kernel/vdso.*/vdso.*.so.dbg +" + +src_unpack() { + if use verify-sig; then + cd "${DISTDIR}" || die + verify-sig_verify_signed_checksums \ + "linux-$(ver_cut 1).x-sha256sums-${SHA256SUM_DATE}.asc" \ + sha256 "${BASE_P}.tar.xz patch-${PV}.xz" + cd "${WORKDIR}" || die + fi + + default +} + +src_prepare() { + eapply "${WORKDIR}/patch-${PV}" + default + + local biendian=false + + # prepare the default config + case ${ARCH} in + arm | hppa | loong | sparc) + > .config || die + ;; + amd64) + cp "${DISTDIR}/kernel-x86_64-fedora.config.${CONFIG_VER}" .config || die + ;; + arm64) + cp "${DISTDIR}/kernel-aarch64-fedora.config.${CONFIG_VER}" .config || die + biendian=true + ;; + ppc) + # assume powermac/powerbook defconfig + # we still package.use.force savedconfig + cp "${WORKDIR}/${BASE_P}/arch/powerpc/configs/pmac32_defconfig" .config || die + ;; + ppc64) + cp "${DISTDIR}/kernel-ppc64le-fedora.config.${CONFIG_VER}" .config || die + biendian=true + ;; + riscv) + cp "${DISTDIR}/kernel-riscv64-fedora.config.${CONFIG_VER}" .config || die + ;; + x86) + cp "${DISTDIR}/kernel-i686-fedora.config.${CONFIG_VER}" .config || die + ;; + *) + die "Unsupported arch ${ARCH}" + ;; + esac + + local myversion="-dist" + use hardened && myversion+="-hardened" + echo "CONFIG_LOCALVERSION=\"${myversion}\"" > "${T}"/version.config || die + local dist_conf_path="${WORKDIR}/gentoo-kernel-config-${GENTOO_CONFIG_VER}" + + local merge_configs=( + "${T}"/version.config + "${dist_conf_path}"/base.config + "${dist_conf_path}"/6.12+.config + ) + use debug || merge_configs+=( + "${dist_conf_path}"/no-debug.config + ) + if use hardened; then + merge_configs+=( "${dist_conf_path}"/hardened-base.config ) + + tc-is-gcc && merge_configs+=( "${dist_conf_path}"/hardened-gcc-plugins.config ) + + if [[ -f "${dist_conf_path}/hardened-${ARCH}.config" ]]; then + merge_configs+=( "${dist_conf_path}/hardened-${ARCH}.config" ) + fi + fi + + # this covers ppc64 and aarch64_be only for now + if [[ ${biendian} == true && $(tc-endian) == big ]]; then + merge_configs+=( "${dist_conf_path}/big-endian.config" ) + fi + + use secureboot && merge_configs+=( + "${dist_conf_path}/secureboot.config" + "${dist_conf_path}/zboot.config" + ) + + kernel-build_merge_configs "${merge_configs[@]}" +} diff --git a/sys-kernel/vanilla-kernel/vanilla-kernel-6.19.2.ebuild b/sys-kernel/vanilla-kernel/vanilla-kernel-6.19.2.ebuild new file mode 100644 index 000000000000..4936d3c7567f --- /dev/null +++ b/sys-kernel/vanilla-kernel/vanilla-kernel-6.19.2.ebuild @@ -0,0 +1,162 @@ +# Copyright 2020-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +KERNEL_IUSE_GENERIC_UKI=1 + +inherit kernel-build toolchain-funcs verify-sig + +BASE_P=linux-${PV%.*} +# https://koji.fedoraproject.org/koji/packageinfo?packageID=8 +# forked to https://github.com/projg2/fedora-kernel-config-for-gentoo +CONFIG_VER=6.19.2-gentoo +GENTOO_CONFIG_VER=g18 +SHA256SUM_DATE=20260217 + +DESCRIPTION="Linux kernel built from vanilla upstream sources" +HOMEPAGE=" + https://wiki.gentoo.org/wiki/Project:Distribution_Kernel + https://www.kernel.org/ +" +SRC_URI+=" + https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/${BASE_P}.tar.xz + https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/patch-${PV}.xz + https://github.com/projg2/gentoo-kernel-config/archive/${GENTOO_CONFIG_VER}.tar.gz + -> gentoo-kernel-config-${GENTOO_CONFIG_VER}.tar.gz + verify-sig? ( + https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/sha256sums.asc + -> linux-$(ver_cut 1).x-sha256sums-${SHA256SUM_DATE}.asc + ) + amd64? ( + https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/${CONFIG_VER}/kernel-x86_64-fedora.config + -> kernel-x86_64-fedora.config.${CONFIG_VER} + ) + arm64? ( + https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/${CONFIG_VER}/kernel-aarch64-fedora.config + -> kernel-aarch64-fedora.config.${CONFIG_VER} + ) + ppc64? ( + https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/${CONFIG_VER}/kernel-ppc64le-fedora.config + -> kernel-ppc64le-fedora.config.${CONFIG_VER} + ) + riscv? ( + https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/${CONFIG_VER}/kernel-riscv64-fedora.config + -> kernel-riscv64-fedora.config.${CONFIG_VER} + ) + x86? ( + https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/${CONFIG_VER}/kernel-i686-fedora.config + -> kernel-i686-fedora.config.${CONFIG_VER} + ) +" +S=${WORKDIR}/${BASE_P} + +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86" +IUSE="debug hardened" +REQUIRED_USE=" + arm? ( savedconfig ) + hppa? ( savedconfig ) + sparc? ( savedconfig ) +" + +BDEPEND=" + debug? ( dev-util/pahole ) + verify-sig? ( >=sec-keys/openpgp-keys-kernel-20250702 ) +" +PDEPEND=" + >=virtual/dist-kernel-${PV} +" + +VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/kernel.org.asc + +QA_FLAGS_IGNORED=" + usr/src/linux-.*/scripts/gcc-plugins/.*.so + usr/src/linux-.*/vmlinux + usr/src/linux-.*/arch/powerpc/kernel/vdso.*/vdso.*.so.dbg +" + +src_unpack() { + if use verify-sig; then + cd "${DISTDIR}" || die + verify-sig_verify_signed_checksums \ + "linux-$(ver_cut 1).x-sha256sums-${SHA256SUM_DATE}.asc" \ + sha256 "${BASE_P}.tar.xz patch-${PV}.xz" + cd "${WORKDIR}" || die + fi + + default +} + +src_prepare() { + eapply "${WORKDIR}/patch-${PV}" + default + + local biendian=false + + # prepare the default config + case ${ARCH} in + arm | hppa | loong | sparc) + > .config || die + ;; + amd64) + cp "${DISTDIR}/kernel-x86_64-fedora.config.${CONFIG_VER}" .config || die + ;; + arm64) + cp "${DISTDIR}/kernel-aarch64-fedora.config.${CONFIG_VER}" .config || die + biendian=true + ;; + ppc) + # assume powermac/powerbook defconfig + # we still package.use.force savedconfig + cp "${WORKDIR}/${BASE_P}/arch/powerpc/configs/pmac32_defconfig" .config || die + ;; + ppc64) + cp "${DISTDIR}/kernel-ppc64le-fedora.config.${CONFIG_VER}" .config || die + biendian=true + ;; + riscv) + cp "${DISTDIR}/kernel-riscv64-fedora.config.${CONFIG_VER}" .config || die + ;; + x86) + cp "${DISTDIR}/kernel-i686-fedora.config.${CONFIG_VER}" .config || die + ;; + *) + die "Unsupported arch ${ARCH}" + ;; + esac + + local myversion="-dist" + use hardened && myversion+="-hardened" + echo "CONFIG_LOCALVERSION=\"${myversion}\"" > "${T}"/version.config || die + local dist_conf_path="${WORKDIR}/gentoo-kernel-config-${GENTOO_CONFIG_VER}" + + local merge_configs=( + "${T}"/version.config + "${dist_conf_path}"/base.config + "${dist_conf_path}"/6.12+.config + ) + use debug || merge_configs+=( + "${dist_conf_path}"/no-debug.config + ) + if use hardened; then + merge_configs+=( "${dist_conf_path}"/hardened-base.config ) + + tc-is-gcc && merge_configs+=( "${dist_conf_path}"/hardened-gcc-plugins.config ) + + if [[ -f "${dist_conf_path}/hardened-${ARCH}.config" ]]; then + merge_configs+=( "${dist_conf_path}/hardened-${ARCH}.config" ) + fi + fi + + # this covers ppc64 and aarch64_be only for now + if [[ ${biendian} == true && $(tc-endian) == big ]]; then + merge_configs+=( "${dist_conf_path}/big-endian.config" ) + fi + + use secureboot && merge_configs+=( + "${dist_conf_path}/secureboot.config" + "${dist_conf_path}/zboot.config" + ) + + kernel-build_merge_configs "${merge_configs[@]}" +} diff --git a/sys-kernel/vanilla-kernel/vanilla-kernel-6.6.126.ebuild b/sys-kernel/vanilla-kernel/vanilla-kernel-6.6.126.ebuild new file mode 100644 index 000000000000..f186aeb6bac4 --- /dev/null +++ b/sys-kernel/vanilla-kernel/vanilla-kernel-6.6.126.ebuild @@ -0,0 +1,155 @@ +# Copyright 2020-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +KERNEL_IUSE_GENERIC_UKI=1 + +inherit kernel-build toolchain-funcs verify-sig + +BASE_P=linux-${PV%.*} +# https://koji.fedoraproject.org/koji/packageinfo?packageID=8 +# forked to https://github.com/projg2/fedora-kernel-config-for-gentoo +CONFIG_VER=6.6.12-gentoo +GENTOO_CONFIG_VER=g17 +SHA256SUM_DATE=20260217 + +DESCRIPTION="Linux kernel built from vanilla upstream sources" +HOMEPAGE=" + https://wiki.gentoo.org/wiki/Project:Distribution_Kernel + https://www.kernel.org/ +" +SRC_URI+=" + https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/${BASE_P}.tar.xz + https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/patch-${PV}.xz + https://github.com/projg2/gentoo-kernel-config/archive/${GENTOO_CONFIG_VER}.tar.gz + -> gentoo-kernel-config-${GENTOO_CONFIG_VER}.tar.gz + verify-sig? ( + https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/sha256sums.asc + -> linux-$(ver_cut 1).x-sha256sums-${SHA256SUM_DATE}.asc + ) + amd64? ( + https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/${CONFIG_VER}/kernel-x86_64-fedora.config + -> kernel-x86_64-fedora.config.${CONFIG_VER} + ) + arm64? ( + https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/${CONFIG_VER}/kernel-aarch64-fedora.config + -> kernel-aarch64-fedora.config.${CONFIG_VER} + ) + ppc64? ( + https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/${CONFIG_VER}/kernel-ppc64le-fedora.config + -> kernel-ppc64le-fedora.config.${CONFIG_VER} + ) + x86? ( + https://raw.githubusercontent.com/projg2/fedora-kernel-config-for-gentoo/${CONFIG_VER}/kernel-i686-fedora.config + -> kernel-i686-fedora.config.${CONFIG_VER} + ) +" +S=${WORKDIR}/${BASE_P} + +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86" +IUSE="debug hardened" +REQUIRED_USE=" + arm? ( savedconfig ) + hppa? ( savedconfig ) + riscv? ( savedconfig ) + sparc? ( savedconfig ) +" + +BDEPEND=" + debug? ( dev-util/pahole ) + verify-sig? ( >=sec-keys/openpgp-keys-kernel-20250702 ) +" +PDEPEND=" + >=virtual/dist-kernel-${PV} +" + +QA_FLAGS_IGNORED=" + usr/src/linux-.*/scripts/gcc-plugins/.*.so + usr/src/linux-.*/vmlinux + usr/src/linux-.*/arch/powerpc/kernel/vdso.*/vdso.*.so.dbg +" + +VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/kernel.org.asc + +src_unpack() { + if use verify-sig; then + cd "${DISTDIR}" || die + verify-sig_verify_signed_checksums \ + "linux-$(ver_cut 1).x-sha256sums-${SHA256SUM_DATE}.asc" \ + sha256 "${BASE_P}.tar.xz patch-${PV}.xz" + cd "${WORKDIR}" || die + fi + + default +} + +src_prepare() { + eapply "${WORKDIR}/patch-${PV}" + default + + local biendian=false + + # prepare the default config + case ${ARCH} in + arm | hppa | loong | riscv | sparc) + > .config || die + ;; + amd64) + cp "${DISTDIR}/kernel-x86_64-fedora.config.${CONFIG_VER}" .config || die + ;; + arm64) + cp "${DISTDIR}/kernel-aarch64-fedora.config.${CONFIG_VER}" .config || die + biendian=true + ;; + ppc) + # assume powermac/powerbook defconfig + # we still package.use.force savedconfig + cp "${WORKDIR}/${BASE_P}/arch/powerpc/configs/pmac32_defconfig" .config || die + ;; + ppc64) + cp "${DISTDIR}/kernel-ppc64le-fedora.config.${CONFIG_VER}" .config || die + biendian=true + ;; + x86) + cp "${DISTDIR}/kernel-i686-fedora.config.${CONFIG_VER}" .config || die + ;; + *) + die "Unsupported arch ${ARCH}" + ;; + esac + + local myversion="-dist" + use hardened && myversion+="-hardened" + echo "CONFIG_LOCALVERSION=\"${myversion}\"" > "${T}"/version.config || die + local dist_conf_path="${WORKDIR}/gentoo-kernel-config-${GENTOO_CONFIG_VER}" + + local merge_configs=( + "${T}"/version.config + "${dist_conf_path}"/base.config + ) + use debug || merge_configs+=( + "${dist_conf_path}"/no-debug.config + ) + if use hardened; then + merge_configs+=( "${dist_conf_path}"/hardened-base.config ) + + tc-is-gcc && merge_configs+=( "${dist_conf_path}"/hardened-gcc-plugins.config ) + + if [[ -f "${dist_conf_path}/hardened-${ARCH}.config" ]]; then + merge_configs+=( "${dist_conf_path}/hardened-${ARCH}.config" ) + fi + fi + + # this covers ppc64 and aarch64_be only for now + if [[ ${biendian} == true && $(tc-endian) == big ]]; then + merge_configs+=( "${dist_conf_path}/big-endian.config" ) + fi + + use secureboot && merge_configs+=( + "${dist_conf_path}/secureboot.config" + "${dist_conf_path}/zboot.config" + ) + + kernel-build_merge_configs "${merge_configs[@]}" +} diff --git a/sys-kernel/vanilla-sources/Manifest b/sys-kernel/vanilla-sources/Manifest index 7c6a37281299..a649f13c97cb 100644 --- a/sys-kernel/vanilla-sources/Manifest +++ b/sys-kernel/vanilla-sources/Manifest @@ -13,7 +13,11 @@ DIST patch-5.15.200.xz 7514048 BLAKE2B d46ef5fd5e4ac19193eb9f8890daff1dad3f1493f DIST patch-5.4.302.xz 6211824 BLAKE2B ace4b2d7c4aff1b425ec109d0e7f20b52fc1764ce66bab294dcb112df41a2293e19814e1f24cd43afbf5e15eabece8ccb4e045c47e733e24a7a5b959bf87bdd4 SHA512 8944974a78ca46bbb2dd794edc7576cb1eb4b068dc011447cf951f192aae83a9b00079a26f35bf482ffed8514534fd641b5e6d6f9d87f26266136ade6a62d429 DIST patch-6.1.163.xz 7059880 BLAKE2B 99f4dc3da7a9a4d088f51cbb577b63dc2a78c9e26f0e3ea5240fb964c97740682a25e401bbb25f135398d75f715fa69a898eba0e595cf550fab3a8496944c892 SHA512 c0385678d1a1bc8c13113cca5cc23f4051c4d7f86f2b00d6b15fde0bf6dcf5bfb6461091bbdac3b3b3732e21e06062647b29125fc03b3fd718c971d91a67c381 DIST patch-6.12.71.xz 3853788 BLAKE2B d472c0583aad7a51d7734b44fae29fe007dc4f7261f18ba725f863cfe053e99382fd587aab90c5a7554159fc6263667b51247f0aa1762cb9d693e5d83973753f SHA512 8f3a8d7aeee3bbbb4541002a6c9766836900e091a6c9ee0ea0d866d7ef6e48169f0187c70ef750e6e0e0e93259e8a991e1583d4e05d1d785b4b44d170128c3ea +DIST patch-6.12.73.xz 3856712 BLAKE2B e5adcfd54e99e232b6c682b8baee915bc9fb2b1ed1a3b22e3077f6fa27573c1449f57549c4476b1e6f11f864ae9886091dfd335c1a99f81d039277aa75fc0575 SHA512 a93d89091de7931ec187cd3043967e90a6959dd8a223481bbe84e89e98fe0b7166de42e4c9fa97f9bbf11dae6551578d3d18a290d406e87a4aa541ff71cf690d DIST patch-6.16.12.xz 808544 BLAKE2B 0fbd9b63869a73e5f4f1ba4dab26167faaeb9c178ef7ab0b0b9e158f493929eba9b70ca8681e05cb4b2d8e8983ee8ffa4b1845ad90cbef93671868fc9fa4c989 SHA512 64079698b0ad170b99f59db0ed119eb9920e2df7887c1738434583128cec578901e31f7f6002a7f397670d4d51ff2c2ac3f414c9896de9c7ba4f55e694364c11 DIST patch-6.17.13.xz 993300 BLAKE2B 368ed14af870d06af317a28b1e2ca5ae32fce924621a325791b4ccccedd12504150af2b24e0475dc8b9e408afe5aa49dde325270f342220ca40a39ad18a5f93f SHA512 dccfbc4e5f35936c14d3a7b035f16c76b1b80d07827ce148fe12f42313b9a407e2df14d0b1593be776cb0910805f8721b42075d09e9960566eb836f537f43d74 DIST patch-6.18.10.xz 658132 BLAKE2B 1ae06ff14a3f6e8fddc13044607db2aca2349cde4a2a6ed0dee08805d00344fce0653d292c5df5f063532fe4c3459d14ea2f3595bd173446e037cfba8c735855 SHA512 47441292df0bcfd1d673c98232ee82547d88e0c83b571d50d1ee4d5eadd46f2664dde74203c6df0183b33c4201b35e4d52543e47001efa23d37f1a664d022985 +DIST patch-6.18.12.xz 670328 BLAKE2B 777a3043ffd89dda18c6373e447b0181dbbc1d123efddd7a0d669cbcd02ae9e7d07529ee6380641976a56c7ca23c5c4a521c55d5824e07df6ed1fc9f40c9dec0 SHA512 b71074dfff3fb28d781b1cabc5aed4207de286a7e6f1b896e4aa40ecc794a38243496f8325bbacc39431fed71e283bec030157777b701da099ee772af5e100cf +DIST patch-6.19.2.xz 16380 BLAKE2B c23bb1db7f2c1dd085e060928fa8b25ad183e72171cbc526efa8db5b462474535d7fa68f682f6ae03a606eb80bb8c73a8447fd9dff9c012d1feb024f138ad247 SHA512 2c3435d27715dcb635c0b17b0d26a764749820f4b473c05306b68fd8d647b809ff57d469cbf6cbd5a95894bb7d0fad794145298f1c3d3ebe975c7ba487b47481 DIST patch-6.6.124.xz 5545288 BLAKE2B 46002e1333a82285631ebe22c778dce3af0281a27ab460a4ed175c370b5fb558dc1a66401dae6c8348b8059c588780653de8d53e8448d68dabe3b85da246175b SHA512 d1f6af21cf5d089eb78b2408aa1afa08e0781fe15952709e68e115dafdcecb7ecaf232d624a28f1cda8917138714012a1ca74be5e7c14f4fcfb3723317364559 +DIST patch-6.6.126.xz 5550048 BLAKE2B a7a422fab271e3a2e1a1e5740429f8834dee20658862ba1adc58128f5d3eadb0f07ce6943ea8ca140913d4cace70f5d22bbc374b95bffa355b7e51c6a39abb4d SHA512 2ed65ddbb73355407a47eb78a21582e58449c674f0e8a40fa1d4d0b4e3a9558312fd93ed959f343e81fd694c358ae6a6bf3c70bfb6222f947ef98b5798c5cb87 diff --git a/sys-kernel/vanilla-sources/vanilla-sources-6.12.73.ebuild b/sys-kernel/vanilla-sources/vanilla-sources-6.12.73.ebuild new file mode 100644 index 000000000000..099fab28cbca --- /dev/null +++ b/sys-kernel/vanilla-sources/vanilla-sources-6.12.73.ebuild @@ -0,0 +1,16 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="8" +K_NOUSENAME="yes" +K_NOSETEXTRAVERSION="yes" +K_SECURITY_UNSUPPORTED="1" +ETYPE="sources" +inherit kernel-2 +detect_version + +DESCRIPTION="Full sources for the Linux kernel" +HOMEPAGE="https://www.kernel.org" +SRC_URI="${KERNEL_URI}" + +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" diff --git a/sys-kernel/vanilla-sources/vanilla-sources-6.18.12.ebuild b/sys-kernel/vanilla-sources/vanilla-sources-6.18.12.ebuild new file mode 100644 index 000000000000..fad89ec105d7 --- /dev/null +++ b/sys-kernel/vanilla-sources/vanilla-sources-6.18.12.ebuild @@ -0,0 +1,16 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="8" +K_NOUSENAME="yes" +K_NOSETEXTRAVERSION="yes" +K_SECURITY_UNSUPPORTED="1" +ETYPE="sources" +inherit kernel-2 +detect_version + +DESCRIPTION="Full sources for the Linux kernel" +HOMEPAGE="https://www.kernel.org" +SRC_URI="${KERNEL_URI}" + +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" diff --git a/sys-kernel/vanilla-sources/vanilla-sources-6.19.2.ebuild b/sys-kernel/vanilla-sources/vanilla-sources-6.19.2.ebuild new file mode 100644 index 000000000000..fad89ec105d7 --- /dev/null +++ b/sys-kernel/vanilla-sources/vanilla-sources-6.19.2.ebuild @@ -0,0 +1,16 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="8" +K_NOUSENAME="yes" +K_NOSETEXTRAVERSION="yes" +K_SECURITY_UNSUPPORTED="1" +ETYPE="sources" +inherit kernel-2 +detect_version + +DESCRIPTION="Full sources for the Linux kernel" +HOMEPAGE="https://www.kernel.org" +SRC_URI="${KERNEL_URI}" + +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" diff --git a/sys-kernel/vanilla-sources/vanilla-sources-6.6.126.ebuild b/sys-kernel/vanilla-sources/vanilla-sources-6.6.126.ebuild new file mode 100644 index 000000000000..099fab28cbca --- /dev/null +++ b/sys-kernel/vanilla-sources/vanilla-sources-6.6.126.ebuild @@ -0,0 +1,16 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="8" +K_NOUSENAME="yes" +K_NOSETEXTRAVERSION="yes" +K_SECURITY_UNSUPPORTED="1" +ETYPE="sources" +inherit kernel-2 +detect_version + +DESCRIPTION="Full sources for the Linux kernel" +HOMEPAGE="https://www.kernel.org" +SRC_URI="${KERNEL_URI}" + +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" diff --git a/sys-libs/zlib/Manifest b/sys-libs/zlib/Manifest index 8a869ad0f161..0de9a5ea4923 100644 --- a/sys-libs/zlib/Manifest +++ b/sys-libs/zlib/Manifest @@ -1,2 +1,4 @@ DIST zlib-1.3.1.tar.xz 1305740 BLAKE2B 42d109223801a493de6d52e7343403d7fc3234a6ca816425fe41ac9c18019b01b93841acd28a235e99f2256a6a17f93624e96b2ddb58d588c8190a6bedb82910 SHA512 1e8e70b362d64a233591906a1f50b59001db04ca14aaffad522198b04680be501736e7d536b4191e2f99767e7001ca486cd802362cca2be05d5d409b83ea732d DIST zlib-1.3.1.tar.xz.asc 235 BLAKE2B b135336ef55a0c4b8e219e760bbe04bad082c405246ce51a2b373c3dfba0b05cb1e6f539363972f4cabd8290be1db1fdb2fc47fb562c6c612a08d9393065f75b SHA512 d181e9772a8139b3b2f3f42b994a65a966101db35eb46b5c84021c5eb0cc3b4511eb5e9172c509483bd9f7015794b15cfca78ed0959bd91e8216dc12c1c6e668 +DIST zlib-1.3.2.tar.xz 1320064 BLAKE2B fd3a6e4c275a925f4814de487075c136e28421ea34ca7f93141781e7a414b392cd849fbf96cfcb24e825441df5f3c64be54276c0f617dc2d5c865d4ab260e83c SHA512 cf3d49fbabddc57cca99858feeca8f910e9de42a16014cddd406814d2d24ee33fee2af3805d7efbb1b04b05f55818092b000daf82502b675df65f2512c353f73 +DIST zlib-1.3.2.tar.xz.asc 235 BLAKE2B 3d25ad364ecaf8ad235990e5072d4d8d4f7fe4c1daa91717e275b59655a724ccecdabdbeeda4f573ee87b05b6f9583d0f7fff813f6d0b1c596efc18767a5f798 SHA512 d6d608074cd15509b1f4a5465e4ae75e56e2cabba9ad1ed4e1276d2207c53429a080099b53581d4fc7be9c476eda1a5e300450db0022b75b3429de97e8df4a85 diff --git a/sys-libs/zlib/zlib-1.3.2.ebuild b/sys-libs/zlib/zlib-1.3.2.ebuild new file mode 100644 index 000000000000..4e1b9e6eeb13 --- /dev/null +++ b/sys-libs/zlib/zlib-1.3.2.ebuild @@ -0,0 +1,175 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +# Worth keeping an eye on 'develop' branch upstream for possible backports. +AUTOTOOLS_AUTO_DEPEND="no" +VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/madler.asc +inherit autotools dot-a edo multilib-minimal flag-o-matic verify-sig + +DESCRIPTION="Standard (de)compression library" +HOMEPAGE="https://zlib.net/" +SRC_URI=" + https://zlib.net/${P}.tar.xz + https://zlib.net/fossils/${P}.tar.xz + https://zlib.net/current/beta/${P}.tar.xz + https://github.com/madler/zlib/releases/download/v${PV}/${P}.tar.xz + verify-sig? ( + https://zlib.net/${P}.tar.xz.asc + https://github.com/madler/zlib/releases/download/v${PV}/${P}.tar.xz.asc + ) +" + +LICENSE="ZLIB" +SLOT="0/1" # subslot = SONAME +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~arm64-macos ~x64-macos ~x64-solaris" +IUSE="minizip static-libs" + +RDEPEND="!sys-libs/zlib-ng[compat]" +DEPEND="${RDEPEND}" +BDEPEND=" + minizip? ( ${AUTOTOOLS_DEPEND} ) + verify-sig? ( sec-keys/openpgp-keys-madler ) +" + +PATCHES=( + # Don't install unexpected & unused crypt.h header (which would clash with other pkgs) + # Pending upstream. bug #658536 + "${FILESDIR}"/${PN}-1.2.11-minizip-drop-crypt-header.patch + + # Respect AR, RANLIB, NM during build. Pending upstream. bug #831628 + "${FILESDIR}"/${PN}-1.3.1-configure-fix-AR-RANLIB-NM-detection.patch + + # On Darwin, don't force /usr/bin/libtool as AR. bug #924839 + "${FILESDIR}"/${PN}-1.3.1-configure-fix-AR-libtool-on-darwin.patch +) + +src_prepare() { + default + + if use minizip ; then + cd contrib/minizip || die + eautoreconf + fi + + case ${CHOST} in + *-mingw*|mingw*) + # Uses preconfigured Makefile rather than configure script + multilib_copy_sources + + ;; + esac +} + +src_configure() { + use static-libs && lto-guarantee-fat + multilib-minimal_src_configure +} + +multilib_src_configure() { + append-ldflags $(test-flags-CCLD -Wl,--undefined-version) + + case ${CHOST} in + *-mingw*|mingw*) + ;; + + *) + # bug #347167 + local uname=$("${BROOT}"/usr/share/gnuconfig/config.sub "${CHOST}" | cut -d- -f3) + + # for GNU Hurd + if [[ ${uname} == gnu ]] ; then + uname=GNU + fi + + local myconf=( + --shared + --prefix="${EPREFIX}/usr" + --libdir="${EPREFIX}/usr/$(get_libdir)" + ${uname:+--uname=${uname}} + ) + + # Not an autoconf script, so can't use econf + edo "${S}"/configure "${myconf[@]}" + + ;; + esac + + if use minizip ; then + local minizipdir="contrib/minizip" + mkdir -p "${BUILD_DIR}/${minizipdir}" || die + + cd ${minizipdir} || die + ECONF_SOURCE="${S}/${minizipdir}" econf $(use_enable static-libs static) + fi +} + +multilib_src_compile() { + case ${CHOST} in + *-mingw*|mingw*) + emake -f win32/Makefile.gcc STRIP=true PREFIX=${CHOST}- + sed \ + -e 's|@prefix@|'"${EPREFIX}"'/usr|g' \ + -e 's|@exec_prefix@|${prefix}|g' \ + -e 's|@libdir@|${exec_prefix}/'$(get_libdir)'|g' \ + -e 's|@sharedlibdir@|${exec_prefix}/'$(get_libdir)'|g' \ + -e 's|@includedir@|${prefix}/include|g' \ + -e 's|@VERSION@|'${PV}'|g' \ + zlib.pc.in > zlib.pc || die + ;; + + *) + emake + + ;; + esac + + use minizip && emake -C contrib/minizip +} + +multilib_src_install() { + case ${CHOST} in + *-mingw*|mingw*) + emake -f win32/Makefile.gcc install \ + BINARY_PATH="${ED}/usr/bin" \ + LIBRARY_PATH="${ED}/usr/$(get_libdir)" \ + INCLUDE_PATH="${ED}/usr/include" \ + SHARED_MODE=1 + + # Overwrites zlib.pc created from win32/Makefile.gcc, bug #620136 + insinto /usr/$(get_libdir)/pkgconfig + doins zlib.pc + + ;; + + *) + emake install DESTDIR="${D}" LDCONFIG=: + + ;; + esac + + if use minizip ; then + emake -C contrib/minizip install DESTDIR="${D}" + + # This might not exist if slibtool is used. + # bug #816756 + rm -f "${ED}"/usr/$(get_libdir)/libminizip.la || die + fi + + if ! use static-libs ; then + # bug #419645 + rm "${ED}"/usr/$(get_libdir)/libz.a || die + fi +} + +multilib_src_install_all() { + strip-lto-bytecode + + dodoc FAQ README ChangeLog doc/*.txt + + if use minizip ; then + dodoc contrib/minizip/*.txt + doman contrib/minizip/*.1 + fi +} diff --git a/virtual/dist-kernel/dist-kernel-6.12.73.ebuild b/virtual/dist-kernel/dist-kernel-6.12.73.ebuild new file mode 100644 index 000000000000..13848dc136b6 --- /dev/null +++ b/virtual/dist-kernel/dist-kernel-6.12.73.ebuild @@ -0,0 +1,16 @@ +# Copyright 2021-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Virtual to depend on any Distribution Kernel" +SLOT="0/${PVR}" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86" + +RDEPEND=" + || ( + ~sys-kernel/gentoo-kernel-${PV} + ~sys-kernel/gentoo-kernel-bin-${PV} + ~sys-kernel/vanilla-kernel-${PV%_p*} + ) +" diff --git a/virtual/dist-kernel/dist-kernel-6.18.12.ebuild b/virtual/dist-kernel/dist-kernel-6.18.12.ebuild new file mode 100644 index 000000000000..13848dc136b6 --- /dev/null +++ b/virtual/dist-kernel/dist-kernel-6.18.12.ebuild @@ -0,0 +1,16 @@ +# Copyright 2021-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Virtual to depend on any Distribution Kernel" +SLOT="0/${PVR}" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86" + +RDEPEND=" + || ( + ~sys-kernel/gentoo-kernel-${PV} + ~sys-kernel/gentoo-kernel-bin-${PV} + ~sys-kernel/vanilla-kernel-${PV%_p*} + ) +" diff --git a/virtual/dist-kernel/dist-kernel-6.18.8.ebuild b/virtual/dist-kernel/dist-kernel-6.18.8.ebuild index 8628f44619c5..9412050c2e4e 100644 --- a/virtual/dist-kernel/dist-kernel-6.18.8.ebuild +++ b/virtual/dist-kernel/dist-kernel-6.18.8.ebuild @@ -5,7 +5,7 @@ EAPI=8 DESCRIPTION="Virtual to depend on any Distribution Kernel" SLOT="0/${PVR}" -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~sparc x86" +KEYWORDS="amd64 ~arm arm64 ~hppa ~loong ~ppc ppc64 ~riscv ~sparc x86" RDEPEND=" || ( diff --git a/virtual/dist-kernel/dist-kernel-6.19.2.ebuild b/virtual/dist-kernel/dist-kernel-6.19.2.ebuild new file mode 100644 index 000000000000..13848dc136b6 --- /dev/null +++ b/virtual/dist-kernel/dist-kernel-6.19.2.ebuild @@ -0,0 +1,16 @@ +# Copyright 2021-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Virtual to depend on any Distribution Kernel" +SLOT="0/${PVR}" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86" + +RDEPEND=" + || ( + ~sys-kernel/gentoo-kernel-${PV} + ~sys-kernel/gentoo-kernel-bin-${PV} + ~sys-kernel/vanilla-kernel-${PV%_p*} + ) +" diff --git a/virtual/dist-kernel/dist-kernel-6.6.126.ebuild b/virtual/dist-kernel/dist-kernel-6.6.126.ebuild new file mode 100644 index 000000000000..13848dc136b6 --- /dev/null +++ b/virtual/dist-kernel/dist-kernel-6.6.126.ebuild @@ -0,0 +1,16 @@ +# Copyright 2021-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Virtual to depend on any Distribution Kernel" +SLOT="0/${PVR}" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86" + +RDEPEND=" + || ( + ~sys-kernel/gentoo-kernel-${PV} + ~sys-kernel/gentoo-kernel-bin-${PV} + ~sys-kernel/vanilla-kernel-${PV%_p*} + ) +" diff --git a/www-apps/element/Manifest b/www-apps/element/Manifest index 58465e40d277..3ca6ee6dc193 100644 --- a/www-apps/element/Manifest +++ b/www-apps/element/Manifest @@ -1,3 +1,2 @@ -DIST element-v1.12.7.tar.gz 39675081 BLAKE2B 3ecadb402a8d6d6306b8ff5b59f8fbb0b0e3a6e577a9160908b4e8b2a7ea443fb933f5b7f8d4470b839b842d691f11a6bc7d87c68be26e56796914c19e7cf852 SHA512 9a9f3f4bd47e858fecf8c3b652df4f3331cc2574b88f43a3757774ee65ae4b3f1dfea72961dce6a291ed2953d946dcda5d58e1503b3e74ef3e5b0aa658c737ee -DIST element-v1.12.8.tar.gz 39763325 BLAKE2B 507b6867d07974ef714dbb1a1b374408cdb52094937815618bdf7f5b66bf5ba3c60e41a7f8685a9ca50b7a9275af7cc38f8dccc990ed6b4188ceed057999fc25 SHA512 57e71b2eaca5bbf8fe6f98af1d5ec413635ef8f104c7208bdf77acb5db8aa5ed30e61ec0d23a3b8d7f8e631d1eea975b7592df7cdb60262a242dcbb0ba5f2783 +DIST element-v1.12.10.tar.gz 39734525 BLAKE2B 414e6ce60e6ff66227e5c23dd9632477eb3dccbe89f9ec0b53f2da35226d7d51a45c2211e136be88002a55b4da026171005dc47acbed5635f87e06d7c69ec1f3 SHA512 cd446b50c0c20a1811ad40f95320b678194981e6daed2440d409223b7e804fcb171e8797acc8093d37b3465025eea014d9879f71e8f96c253a33ecaec5d752ad DIST element-v1.12.9.tar.gz 39659624 BLAKE2B 3a9cd64fc6b59e85b4d5a45ca001bea17ae6d9eaebb3b647f118ca5f5dd4dfa7eb9ca81ba5228f59f21faf49eb6516b72317dfe4309df9bde072405e0389e92a SHA512 161a3fbf91799f75caf1e3fa7d8a926c7f825dce3559c73f78c119a6ee25a42951a05a0e12c70fafb9e9e5abf002bec77539aa514fa36c609dcfccaa628b5299 diff --git a/www-apps/element/element-1.12.8.ebuild b/www-apps/element/element-1.12.10.ebuild index fe07f634e30c..fe07f634e30c 100644 --- a/www-apps/element/element-1.12.8.ebuild +++ b/www-apps/element/element-1.12.10.ebuild diff --git a/www-apps/element/element-1.12.7.ebuild b/www-apps/element/element-1.12.7.ebuild deleted file mode 100644 index 3aefc3634a9f..000000000000 --- a/www-apps/element/element-1.12.7.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 2021-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit webapp - -DESCRIPTION="A glossy Matrix collaboration client for the web" -HOMEPAGE="https://element.io/" -SRC_URI="https://github.com/element-hq/element-web/releases/download/v${PV}/${PN}-v${PV}.tar.gz" -S=${WORKDIR}/${PN}-v${PV} - -LICENSE="Apache-2.0" -KEYWORDS="~amd64 ~riscv ~x86" - -need_httpd - -src_install() { - webapp_src_preinst - - insinto "${MY_HTDOCSDIR}" - doins -r . - - dodir "${MY_HTDOCSDIR}"/home - dodir "${MY_HTDOCSDIR}"/sites - - webapp_serverowned "${MY_HTDOCSDIR}"/home - webapp_serverowned "${MY_HTDOCSDIR}"/sites - #webapp_configfile "${MY_HTDOCSDIR}"/config.json - - webapp_src_install -} diff --git a/www-apps/nextcloud/Manifest b/www-apps/nextcloud/Manifest index ca27a9b1871c..b969e5839714 100644 --- a/www-apps/nextcloud/Manifest +++ b/www-apps/nextcloud/Manifest @@ -1,5 +1,7 @@ DIST nextcloud-31.0.12.tar.bz2 229431443 BLAKE2B 4da8d18a289dcce497bd586b2fe9bd87370b969c67e4d014bc7090deb5362729ad9633bdea993c06dc3952dbcf49357f651530dc96e9a54923873e623d92d647 SHA512 e4824d1794fb8cdabefc66ed4ddcd0512e205109083f4c088014461cd6f446ccf9c854726c230e588182dac4622683c5454e70cddca361dd22ce8c1dc27b73b8 DIST nextcloud-31.0.13.tar.bz2 230039156 BLAKE2B 132082f31f11910842eabbab6714605a1231902223c527d5263540e9197b5fa82ce9ae3dac659233485f688c54044704a1bf64f6d515a2e7756289bbc609583b SHA512 fbbf99011f110de2027f95f255546379e84f15cc5ebe53b77de82d068dfc48cd23eb7694bec8aed3f22a43c30fdd4c6530c33ff8a45340ccb4bfcc0ef6835040 +DIST nextcloud-31.0.14.tar.bz2 229536560 BLAKE2B 80c73dbaca0d41095711995887358dc6ebf04fd4ea00d5e15ce8d9e39782c068aa01c15f2c84db76266c947bc568b3246f85b62c9a0a3f959fc6319aeba9f024 SHA512 998a4ce7a773f4a8d422b3561185339a9678c28eb7f049f26ce8020ba8d2b43f3bebe3e82aa972cfde6224d2f3719611db48190b0ad6f52d4a5c99cbb52e53f0 DIST nextcloud-31.0.9.tar.bz2 229277439 BLAKE2B bc996c311c312f79d95f680295bba9c0e03245df31060e7af9ca24c4ebd42940a3efc30bd111180413873358f36cd041cae5a6fcaf4fb2b47c01da5d38841489 SHA512 eec86ab5b45cc3a4ee0208e1bb0ae8ddf04d35956ca8aef92f79d7109c9c5d2f58916c32c341883c10713f861c092050b568f577fcad754e45928ac4e21828ea DIST nextcloud-32.0.3.tar.bz2 272989969 BLAKE2B ebcdad594e0a9f7a180aee816f0abe4506fcc5ec6cca165290b565463c99a5dc3e6469d9b554923750248f6296d47be838d39a2821404cf61f872023c4ea7550 SHA512 fd06cd687ddfcb0baac2e0b03db690d1b4f9119e28c5cfbd26d911b214240f8273d7a805540afe83f7cc92f1377487c82fe65eb0b22ad9028410652ec55381fb DIST nextcloud-32.0.5.tar.bz2 275559310 BLAKE2B 76ad2a76774f6d3d468fe708fac5e25aae3eb2fdc7ea4501475ba4ead23846c38687eb6def44aaf96ad384390671c546804b30dce305c8c1d08185ab7ba1a05e SHA512 2fbae319f5208c34415c4663078489f86d2ff9c1ecc1b7a0ebb85d07088ded6903302baf20a990355c9ff7139579fe85bb97909b9e013271ec4465c04f6306b9 +DIST nextcloud-32.0.6.tar.bz2 271382484 BLAKE2B 699654ae2adaf61efb4dc757c1a900bf7032c78f40510f88c4d52fc9e9c333469b64786b503adb7500b04b4961664aab2a9488bdd784a1fb5a6400d75f6125e5 SHA512 f68b80a5444452594e37ca81721c8b529f268db874a2fac104bb27b0ec7a7aa529240b3ea6e3b24c5ef596b4490558e6c426c8aa79df4a2bb11ba37303e91de4 diff --git a/www-apps/nextcloud/nextcloud-31.0.14.ebuild b/www-apps/nextcloud/nextcloud-31.0.14.ebuild new file mode 100644 index 000000000000..ebfd33cbd09e --- /dev/null +++ b/www-apps/nextcloud/nextcloud-31.0.14.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit webapp + +DESCRIPTION="Personal cloud that runs on your own server" +HOMEPAGE="https://nextcloud.com/" +SRC_URI="https://download.nextcloud.com/server/releases/${P}.tar.bz2" + +S=${WORKDIR}/${PN} + +LICENSE="AGPL-3" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" + +IUSE="+curl +imagemagick mysql postgres +sqlite" +REQUIRED_USE="|| ( mysql postgres sqlite )" + +RDEPEND="dev-lang/php[curl?,filter,gd,hash(+),intl,json(+),mysql?,pdo,posix,postgres?,session,simplexml,sqlite?,truetype,xmlreader,xmlwriter,zip] + imagemagick? ( dev-php/pecl-imagick ) + virtual/httpd-php" + +pkg_setup() { + webapp_pkg_setup +} + +src_install() { + webapp_src_preinst + + insinto "${MY_HTDOCSDIR}" + doins -r . + keepdir "${MY_HTDOCSDIR}"/data + + webapp_serverowned -R "${MY_HTDOCSDIR}"/apps + webapp_serverowned -R "${MY_HTDOCSDIR}"/data + webapp_serverowned -R "${MY_HTDOCSDIR}"/config + webapp_configfile "${MY_HTDOCSDIR}"/.htaccess + + webapp_postinst_txt en "${FILESDIR}"/php-argon2-en.txt + + webapp_src_install +} diff --git a/www-apps/nextcloud/nextcloud-32.0.6.ebuild b/www-apps/nextcloud/nextcloud-32.0.6.ebuild new file mode 100644 index 000000000000..ebfd33cbd09e --- /dev/null +++ b/www-apps/nextcloud/nextcloud-32.0.6.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit webapp + +DESCRIPTION="Personal cloud that runs on your own server" +HOMEPAGE="https://nextcloud.com/" +SRC_URI="https://download.nextcloud.com/server/releases/${P}.tar.bz2" + +S=${WORKDIR}/${PN} + +LICENSE="AGPL-3" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" + +IUSE="+curl +imagemagick mysql postgres +sqlite" +REQUIRED_USE="|| ( mysql postgres sqlite )" + +RDEPEND="dev-lang/php[curl?,filter,gd,hash(+),intl,json(+),mysql?,pdo,posix,postgres?,session,simplexml,sqlite?,truetype,xmlreader,xmlwriter,zip] + imagemagick? ( dev-php/pecl-imagick ) + virtual/httpd-php" + +pkg_setup() { + webapp_pkg_setup +} + +src_install() { + webapp_src_preinst + + insinto "${MY_HTDOCSDIR}" + doins -r . + keepdir "${MY_HTDOCSDIR}"/data + + webapp_serverowned -R "${MY_HTDOCSDIR}"/apps + webapp_serverowned -R "${MY_HTDOCSDIR}"/data + webapp_serverowned -R "${MY_HTDOCSDIR}"/config + webapp_configfile "${MY_HTDOCSDIR}"/.htaccess + + webapp_postinst_txt en "${FILESDIR}"/php-argon2-en.txt + + webapp_src_install +} diff --git a/www-client/firefox/Manifest b/www-client/firefox/Manifest index 7a174acb59e5..a5480c8c35a8 100644 --- a/www-client/firefox/Manifest +++ b/www-client/firefox/Manifest @@ -201,6 +201,107 @@ DIST firefox-140.7.0esr-xh.xpi 272794 BLAKE2B 555ac6256ec1971c35596ce62b44b4c816 DIST firefox-140.7.0esr-zh-CN.xpi 460696 BLAKE2B 6045a642088c942e00b46a67c7b897057df63f6890ad12f3ab7556807afe27e7e340e22069b9931f5ad8a0f9dfb17358f103704262ad08ff8ed9e7065acc19c1 SHA512 2c6bfb8ab3bba19e2bbb5c48c48ce2632e07d6f8f2cc11a163d5a4217bb3980650897d05cad6a71816a795ec62cba7e6526f848b50e06f4d2e7e9ced766fc803 DIST firefox-140.7.0esr-zh-TW.xpi 463737 BLAKE2B e094e8d61ad12b90cb0226f73119a7b6af81a5ce965a8c0a56c1492eb42fff6ba221e6f82f7dc367a902f714724b82ee5a0ace5fcd1db35ac7f8a107484734eb SHA512 16cbfb24cd05139d7691374560b5dbe8efcfb65cf9497a536326dfcaa5199eb1977849b19063aa17034327ab63b9d2062248320fa7b5d917445c117627737ea0 DIST firefox-140.7.0esr.source.tar.xz 641146512 BLAKE2B cd5723595d1fdc0e52ab98fec5205bdc3228d367d2ca512a44a1ae98e1581bc961533a0a0fc57d468a0a10d9a1c480f28baab69def12f834eb51dd98c44cf6fe SHA512 7781b1e203130c1cdf2a0c2ecb05a9cfa824c75d467e7faca78b66bd5568c821324112aecb774883d9f447af7fa4ade36488ff1017255af5510c8f641990e472 +DIST firefox-140.7.1esr-ach.xpi 294367 BLAKE2B 3c4bf188ac92ac3323a483d64aee68a9442549ae43c996f7a85dac9f5d5e6ef701579549ba89c5e4647d7010522e0c6315481936a1c6141a46bcbfb40c36f3dd SHA512 3d9440a34f8436424eff33182c3cac0eebea8cea2724069177b3784ef875fd3c6279c6713287b6f2b86f55001e65010963f882ab095be8e42580f72ffd0fc1fe +DIST firefox-140.7.1esr-af.xpi 266626 BLAKE2B 7a3e997a980883ab5c60be166d49dd51ef2f96bb142b3b08dcf5f694ca2e205ea61ab9e996c71ee2bb5c8790dcf4665aae75cd710663bc059868b027ebe1a197 SHA512 74f3504a6594fc2997a8105a285b08f09ecb1dfbb85a259a0face7f92c3feae243f55df0e7e88e1441e1aed9c761bbe75ebf740e4fb8a5eb275400a2eee53d52 +DIST firefox-140.7.1esr-an.xpi 332298 BLAKE2B 16f6be9543711566835e85b3c16ac49f61dfe2879660c7f57662fc7f82af6e5d431a6adcbcb3fdb53849497563dda1363830b0d787f881c60d3a43370b391347 SHA512 677269bc36fbf1bc02423e2347172129572cf53b19e29e35e645652d3b766346dcc42f3c10ee91017cd33161c03dd6740e3e51dbd1877547b37c1255bec5649f +DIST firefox-140.7.1esr-ar.xpi 445278 BLAKE2B 729fcec1b27adaccc360905c55aeb1dbd398a4c52c0ea37f23fbf76e5fd2bbf9a488d2afbd65a082824e4cc779334c2747327937a790a38454e7afa3cf896f4a SHA512 a57f888fa44531976dbe098268c06b1dc63ac3cf12a6749ca7c621c427dd8234f7ff6b3552545c2ee534d4adb56fa05082859951b0c982e8a2cbb226a8ee906e +DIST firefox-140.7.1esr-ast.xpi 312214 BLAKE2B 800fefd52dcea76b13b8199bb30988829d9f6890833b2be1b996ae94e205527d050dd38550222ccf6111592386931e97288d5dbba33db018721c147bd66e9a3c SHA512 5c5da7de91d51a3755e2c4e04c391ce34ef0770b6679e7d5b1f9eeac78137b130e61d6eaf0a8d7548f6b88dd4c09a679ab431755e0a5d15ff1618ea12ee61b66 +DIST firefox-140.7.1esr-az.xpi 318400 BLAKE2B b42339d7848cbd9ee75239d38d60b86fdf45fefd4790acc0c40749215bb4598ea0b967aad4c60be495f02e01855d4ca55a71399b476dbe19a55c8c19bbc3c51a SHA512 f7688581dfd4fe85181107a5c843e5e1a3e2bd7d93925edef2c3b7efc16f744f50dcdeaa6353c9ee8f94223ca8b1ddbf46f04c3d2b1c6fa18a71d32b84199510 +DIST firefox-140.7.1esr-be.xpi 521197 BLAKE2B 8764d9e7762c9fceae2f4712a7bc22c56958587072095a40924f5536bbb3b66296322193515c9123231ef70ff783d0885f0da93467a28bd0309b528c1638ccc4 SHA512 25276e65bf613c0ce53902cb79dbf92522a9eac27988304820db5c255e812d7e82ffcb8e3cd5193e4a3c6e0bf614ebb6bef03811d23dcf0d5b5fd76254cbb383 +DIST firefox-140.7.1esr-bg.xpi 457547 BLAKE2B 3bb6e0185d98904d48d3472713f349f808a30431cf6fcb208d10b809ed85af235bdbd6af4469083c15763857e29749f2091d2b0a8fb20d6ae448a9969340c238 SHA512 9bfc910c70b984589f02120a5c468b129f2aca981c9803b29dca41e8b878da46599b3cb1b35041394bbcabf8966674785aa06f4f74ed41b160fef86b118fd22d +DIST firefox-140.7.1esr-bn.xpi 413373 BLAKE2B 41e75b387f111c18c11b66bdb928e0619bba02911a846846e98b35b93d8876e76114ba1ee3f591624f5781662ce2e28ea1e576bc87e4e83fc44a7c20b16711ef SHA512 bad7fb835a82d4923dd8d490073b95f0296ed69da7d99de4af61d051c94ad11e5bf1cb1a4383127656b0d4d2a6ef57eb524c3e914682f4053859a04f078d5ff8 +DIST firefox-140.7.1esr-br.xpi 395309 BLAKE2B 8024aa5e2983ebba812830a78ac151e415a623d64429e745be6161c5eb8b4da4358b5a6f786a607e3d1a60a9f61c13cb5bff2494b75299af499b42c2397aa1af SHA512 50f1cd365fb6fbc1e8e257843dd5be2e11d52566453c6fe3f0d7b2933c38d252aa0d6d4f270861a00628ee9a1f9e7f245fbab16e4180232a0ba275ee2f793713 +DIST firefox-140.7.1esr-bs.xpi 447175 BLAKE2B b9fe7fb8d103bbf0fdcd4fad6af9a9b5a71106d56bd530dff564017057c0fd8c26a6d87605fd5ed9ca501b1a4b2b289803987d620cc3f6fba8cb74c6c4a1b504 SHA512 8ad5532099c9de50b11504e88439b2a1a107a4d50e0ae058f2c0c5276c1ea06b954bf0d2fc9ff32d034b1a0a1942fd5e5d51b3e715f79902741e4f2b48c0c60e +DIST firefox-140.7.1esr-ca-valencia.xpi 357932 BLAKE2B a50e8870cd5e9fde5474b63b66dc7e3519206266f3c3b232b0d7c14059aa97efbebbe57e454ff93bf3a4dbc1ce9e522ed673484d8dd41d2e3e947f25d9638dc9 SHA512 1cf211bc0ca20e38c1cde136c826e9e6b9d36e6697d9dbe92f436546a692e5b8c0a41569b4ccaf4bcbcb4366a531fec8cc236f59123425fe3cb7671e76f6ae40 +DIST firefox-140.7.1esr-ca.xpi 404820 BLAKE2B c1e0ed416edf7d38b5aea8d4b7fc786fb9e9a2840684c31f3a3fc8a31b50c09d21c67517d617dc45c22b557bef5ae9ebdcd0114599502920ea7da732adb6d6ec SHA512 9bf087b648f982fcca93721b1f791c283c81f52ef2ec1acd0704a7414efa6e1b2eb2eb920e444002e2758efb178ea4c06c2e10ac3161815819698dfc35e83a83 +DIST firefox-140.7.1esr-cak.xpi 390839 BLAKE2B ba60ee252059ab29b7124916ab52b7f0a2f3898dae9579180b9fb0e203a2a254ec606ab1a0c63db7b6862e9c03be8df16eda74eafc33667a6b03ef7fec528861 SHA512 98e5584ae6f4426661c1efe6d192cb65b70900c992dcc2adc5f477adc3279b3069c637f668f967039422f9ec05d1bc281e4c43cc5dadabcfd4d17efbf7728250 +DIST firefox-140.7.1esr-cs.xpi 475924 BLAKE2B 09b0fac341174c11c063c08b37b30a82224b14389c98a316e4127e21e5d636abcf9cacc08a20432260dac9be9f99cb94d08402fd03c153c2cc553cf1adfecf47 SHA512 4241f5787fc2a85e67bfa2e0cfeb98e94220c050b9b93aabbc4b21f3504a33008e4679cb8a307af31551be4938d4826c1fb009af4d01cab41e848dcc3b8b926c +DIST firefox-140.7.1esr-cy.xpi 441961 BLAKE2B 96e9e705db4df0fb53ba41b56005fd75a65dd2bada5b4daffb8fee8456629dbe5e84d0b35a7be68ea68fcbb63a96031b7afd4a4cfcbbca8a22a1825c507acf1c SHA512 b8f2dfd0258116e2bcec7945d9a9c6e5dd1720ca5707d32a749788478c59085acd2944e9f4ea69564485c782ee4184e698c0580ccccf702d2baf9e848da44bcb +DIST firefox-140.7.1esr-da.xpi 431122 BLAKE2B 64a9e817f6ac4cff82bb16e8aafdf7ef5c8470de4ae9ac7e43aa9fce07b33f30c41a02e58967300395a49f7eb0ac45ba0078f240e9c0dc35b4802a6984fa4c3b SHA512 3e3824367b9c9bda9d39dc4a8dd5eef5f4cea9bfba71be5835568859340cc7630b99bf591b4679e6d35ba199aa0afb3c7ab2b99e3bf6a4a6ac2d2eaca4c86b92 +DIST firefox-140.7.1esr-de.xpi 452700 BLAKE2B 5deb1ce54d7673ea1ff714fd410b0546ddc332ee2b1e6bbab09c06fd397f68cf76e86a4721745525e536baeaaae69de0bd56d43becadc9e76cf5fad8dda5ec10 SHA512 631edf225020e8c19c73245fc91745ceaea76b00682e721322e8c13b864f69d5526a1a03ea42a4d06e7bd8be24b0a5d0e931d85f6fdd107556902e727235fb04 +DIST firefox-140.7.1esr-dsb.xpi 466061 BLAKE2B 718e2eb81d26791e59b3d2f54ab1b96cdd04dbbcb2ae69085d26e1b48936335ba928877f29d3be8c3758b0c007822a255a894e0ad0920df51d300d0312c7c731 SHA512 70aa0b658b9b350b614c45e9f226eb8ef14ce9099bc29ebbb75fa4b2acf17e0f345b1420e6a106fbc8b59f1c5592b7d7801f539a6fb763f8e56262e2bb6ee559 +DIST firefox-140.7.1esr-el.xpi 536818 BLAKE2B 72754f653d8c75eaf4bbb4f7558bb326c56461ee9378e2370af4063e7f2b23afe541e03ef0e7a057ccf0c3f41f763de3ac210e1ec1c089e1f188f56bfeaa3ad8 SHA512 8b32d82e026600dcf241c494baa865456c584aceb7dc0e10484ba170be22f23e53e6bde906c25aedb9a10387ea9b9a13d334e959734365a7443340212eb9679e +DIST firefox-140.7.1esr-en-CA.xpi 411055 BLAKE2B 57c3f782427038046fd06927f51d01ce3e3677edea8c4dabfbd0da3c4eae79580e4ca29baecdb55117a743e7d4ba437d1ad41f472205ee6e31abd60c7221901c SHA512 cb30889c2e237c08868947591fb58e9e97ec16dffd0377946637600493b96692950ea386c72521109bfe7ad00982cf2cc3de7577b943908c6b73994076849a6e +DIST firefox-140.7.1esr-en-GB.xpi 411404 BLAKE2B 5ee0053fb636ffda69256fab7c416fe8f91b800a6578a64959adfee2cd44bb42aac42a5193a95b6d59103d8c810432da0f9f64d191b39f896e6d9be54e7ad52a SHA512 ba008b41673f1e2be82bc748c693b792310c934222424e0db953d8cc6afdcc5ab5075630decfb62087ea46e623531d925c323d5e1a01a7f0937c2c4e888ff3cb +DIST firefox-140.7.1esr-eo.xpi 433466 BLAKE2B e2193bbb341700b71c7bda28418017f91008344af04586e47277e7d43eee7c24ea1f3266bfebfd8eed416a2aeb13be02063cfc65877a7369ed21b0e329563cf2 SHA512 434303fde53f07db7554c17d4da720dee96aedc70080f7930a39f3e06dd2644c5d674d6f567c8bf69c0734cef2b00a4a8f6f7479be04a8b6729de2e72054c464 +DIST firefox-140.7.1esr-es-AR.xpi 445517 BLAKE2B 248bd765fb8f1520cf4eb5071559f670ab0ed0e6532f712068fa7576e97bcb534fa56ee1cb445ef146083a70f7a1b3796cdd777974cf5e9c54514c3eccda0300 SHA512 391b1d8e707b3c93c3cca4012cad7ab951370342b90e309b269601dfc51805631a6bd2a2b46bd93b448289dd627ff2ac05fed6acb75d3bea36e6f373222421ff +DIST firefox-140.7.1esr-es-CL.xpi 446308 BLAKE2B fc1a052561b3455d1e7a694c1da05576e7f778315bb21865a2031f30a51f08c53d8b58ca645877e91380cc53117aee5246fc47653008282fb7451aa4ed395bc0 SHA512 ab67fef6df087ae9646a7030d1ffcccb02b38f9451c233e29668117a2f21280c76382613ea5622566c6b2d7c7f74479a503a285feecb3e67069edbbd9f45b899 +DIST firefox-140.7.1esr-es-ES.xpi 447011 BLAKE2B bb33905922d2e014ed6080aa34d3f588ff5be04767604231cc0b6a777185f2fc3de1665cd4ee41eb854e97586b7f8cec9b62e728d3b58bec3760029ba58abe0a SHA512 e8f761236aa099d07819b8ff77b75df1b5316d2a97c99a537047464dd7e03dd24f1df3fb533b52515a2aa6e173122072e30b8696801d2321c6da6dd85b327f1c +DIST firefox-140.7.1esr-es-MX.xpi 446241 BLAKE2B b940f38b434a55f645120c06779c273fc5c37661482fc08e4cc925375e936b991df0df8dfa2ad3ea33f8eeca8298a946e131e0030c15000551d958b14dad4aef SHA512 af3d7ed34831c09e4d5b14cd2d15353ec2f0f4a51994bbb83470c618c6002c5c8d4aa288501154e78361a7476d6976d0ea3e5e283ec1bef0856fa2adf6e17241 +DIST firefox-140.7.1esr-et.xpi 359312 BLAKE2B 854f8809c230cfe12e97ae16b46b01a400cb7b0316d42bda0c590b95daaefb289a3b2535061dc328b6d4015191814febeaf3e92cba2810262a8099f7ff240121 SHA512 5c8587dc1b647b6810de64fc625ba2d49471e9fede930e32bbf8b50357a50bc4f42b6be5c50f0995898f647a1cc3c1c0703643fc984558465941e9ad938e9eed +DIST firefox-140.7.1esr-eu.xpi 417293 BLAKE2B ecb01d2208d6eb4219ae6586a6d88bf4ed3ba42af52b51299a583537a5c9a3a5f1ae46ed488157047c29a4888d3baddcaacf0c83bddbac8732450950cbef6f41 SHA512 39f4c4ec960681857ece8154054580e7323254900bd5ad400ff58e3179bc2cdfe0ad8a3e7b7b1c3aab19c488659a545479b7d988669006ce2c3b1162e9022c9f +DIST firefox-140.7.1esr-fa.xpi 421636 BLAKE2B 9f39a6271255019229cd4dd661a83754d0987cf5d1ba1187062803a3d5c1a52d73a5214c09152b0fd031aa126f44adc33f45f0a26894988ff70c70f9eab719f9 SHA512 dc9c3766fc08d29eb3657cccb3aea9f0491118b0d708463e1aebe9a65a4657726e7bae98a90ff3e988a68cf6a9b999ff50c7bc7e0c587eb56bb967e7d08a9c25 +DIST firefox-140.7.1esr-ff.xpi 310177 BLAKE2B a35d326782ab43753614a81fbbf41df63df284f03ded47386222378bac9c88d70ea36242157d1b44806a77716590d5a7fecde94e0012e04d1457cef9e82214a7 SHA512 fc9252327586647f030806d13a850ab51ebf45c248fab8d4b0a2cae1d58e244b13fd7a1763aa1965d477ee15e416e22086e1a48adb4de80a9f7c8b65d18aef6c +DIST firefox-140.7.1esr-fi.xpi 430159 BLAKE2B f1494655492d694cb9422ec3f39e3e206bb135aa57ad8a1dcc109fa77fc48cada8dc35df709126fc6c332035d4175e065df0d756af8e2e8434cf8396c60e0473 SHA512 fce604680098242642f19ecc97fb4f0b91acf5197f2e86091502faaa6a28a3fc66a136ac31e0f3a05c154391a1dad21c2fa87a95d528d6d10bd097cee3973510 +DIST firefox-140.7.1esr-fr.xpi 458452 BLAKE2B 65c64b0f58ed6c531ad7ceac27d5fea945307a05f2342e04d908ee76d28020a0b1281c518f43ba63f2a7647f9d724d3c1c2481d0673dcf8971bc2f0e744faf01 SHA512 23def56b0eb653a2fd444d529fa22bae169aac30375079f99aede80e5b24f0ac31e39ad5c74622c3209b540d95cf07e3354703982ad91be53eb7269fc676599a +DIST firefox-140.7.1esr-fur.xpi 451825 BLAKE2B bfc243879f7748cf0a52d49366b89b8c55fa714536ba0512c443c50c6fd5f520a6672cb9d9c0423a04e85c8bfaccaaca0a5e61d6f5c2db6491aac850c89d3c3f SHA512 c9da834426f1d70bd018b6e1a957f8bcf383e0e218cab149dd5df7b863e34e75ec5e012291414117988578cd9cba68ba4d0ec464ced38caa551745d6967df252 +DIST firefox-140.7.1esr-fy-NL.xpi 442170 BLAKE2B 173ef5e29ecf8c60ced63f129d9f5eac549967866087d7012c542c2933ee2dd02c1a262ad2e13ea7f9d5a32bfeea4378a1b297ba4634854d46b28763f7a2f14e SHA512 72858045b20a1dd6da1b3db7966631ae1b91afca5bd797154a99e55354b5e2aea46f8a0337ed569d7fc61b555c431e3b16a3fb245ecd0b680e86f8b9db63fd49 +DIST firefox-140.7.1esr-ga-IE.xpi 315275 BLAKE2B abaa515c01097b760e9a2824f44dfd5df131955b4cb0c0835f15da8ac394cac52f87f84be1230ba50fc853c75673049f3472aa2d73469396d09ade56d8388b23 SHA512 ecfb58b3fbb3709567d6f72e0a346eb5622b9493c40aa44800bb50737062c0a7826c7687475eea3c606081c4a653b396bfa53ef039371d3de3dd8934a0508751 +DIST firefox-140.7.1esr-gd.xpi 399432 BLAKE2B c078771c27207a030663fd87424016ceb393886b8d14d7fa71537cfb8da8288b11f991194690a747cd221a815e734e9abc7082bef4f5504a013e32312aa0f82a SHA512 9929e989062073fe0626f83dcdaa15450e91f2fbb71bf43679d2bc0e7e99084cebcdc045469cfe873fadfb542e4d72efd66f2560b8fd16efe32a359ba2ba4650 +DIST firefox-140.7.1esr-gl.xpi 442899 BLAKE2B 5f65f4f9f61abc4525f085ca92d7696bd353e4307c91417d49da97567f578dfbc12d374fb6705d1fff51fce5da2e491e2b609abb3c1d6b1f7f2c0e78f37187f6 SHA512 d35e93f8fa5182b7c4714652876dce74fd65ed4f165533adb69ffdc47a8628211971b6ce004cb456d6d7463e198afa97a412ba6b0e8c136313f4a7b3761464ed +DIST firefox-140.7.1esr-gn.xpi 451083 BLAKE2B 855103609564a970e2800964e8aff7a1274abb6cc12e74be6a754affee0a9ff068b9734c8048eef2e6b73dba03499c8ddb750747fa8490557ec02862d19674c8 SHA512 5cde86e48a2ab885f44929aaecf1c91c78b7a64ddaa00d2ec39eafaa390807bb036ce9d223756a490837224e548d1f9f7e78f8093d4a651b1f825c7ea96cc1dd +DIST firefox-140.7.1esr-gu-IN.xpi 358965 BLAKE2B b90975fdc97302b91ef02b36130b8205a1dd14bd802de93f562f4b3195d504b84af46a0ebf0acf257ce263ac445cde073c360f1bc19f2def1ed9e40c69b5943c SHA512 7c32f5f05bb9a3933b22b8f33209ffddd29c029db12d51041e9c12e09251ed28b102d5e6bc1be372fa0645f5644ddffc84627d94721c2e4784610277deffa270 +DIST firefox-140.7.1esr-he.xpi 444983 BLAKE2B 35fb37416ba05e4b64550bce6d32a676985fccba4593557274038357110e73c0de093880b32d41a30546b28f92fc0845bcbaebd7101bbb727b54dacf85affab2 SHA512 9ebc10edb755895b52bee01cc729a9187471c4d85221bc0bff43babd3c3c444a5544ec993c2bf4aca32cc62eb3d60b76f01fb46a57613c770187c727680c4d21 +DIST firefox-140.7.1esr-hi-IN.xpi 377458 BLAKE2B 2257e3931a44e74d2c75930bc8ec5cc07b6e08bd091864421e40b351bdff0ebf24a58f028761984ec0db392d2d1dde20a41e109f029e348d681ae8a7edf196bb SHA512 9b2fc2f3e196ee1b24ac69d8d90bb5b5eac8e112446b52238cdfd58eb12793b7e1aae8bc3d9d815160048acbe2940b8c960dcfc0cc061cd6a19d1b7803d6ab86 +DIST firefox-140.7.1esr-hr.xpi 437683 BLAKE2B 9ca23fbf1eab240c0569388b06d98b943a06eb958347beafd6fc001330b21f717ea4577a3978c45331fe1d6c862810afbf779473a7386c5294ba985f9eeace7b SHA512 97cbbfc639122839c41e8a96a383b33b2ee63c9a7390ac15c8e47f454ce460a98459cd1aeedb90968c9febc584721855d438f96ab33dd668e9bc3e1d3d6b78ce +DIST firefox-140.7.1esr-hsb.xpi 462689 BLAKE2B cb12e83ffe1fe593b024e2dc533c1ec4e7d6d664f940d0ca7d18c9c81ceda021f392dbeb41520767acbdd5653a870f334ff6798dc4b800718785a2256c53f598 SHA512 9776b909a9af4e954ec370b68a257114667f7caf20d48acbc22ca3a5fd76fed8236823b6e2df9c6da999ffab1b4ebac17a0ec30e2802c57f66991f8ba7b4cd07 +DIST firefox-140.7.1esr-hu.xpi 466172 BLAKE2B 2f66ae781963a9b8d87506168cbc4c033f38db1a6d6b69f27c44e83921ea5d0cd96ff505504a2c213f3d17a9ca2a81fc31a60096fae794195ad8dc21335ee1f5 SHA512 9ef8ea200f9d651dd169513db0665c56bd14e5215fcb661d54b813e14a5575c61a3997462afb4ca317c429a2f2f39e5a56187f2eda0b9ac4352428cb93195a24 +DIST firefox-140.7.1esr-hy-AM.xpi 461609 BLAKE2B 584e6ac04b03ab92cb663f7d11bdd8ced67ea0493f6f5c0dd55821ca442c3f5d1e98fab2b88470151f173bdf860d318c462e0d06943e9215a141dc9b4def88df SHA512 36e2f7a0411470e5aed949c788f745b8abd90a4883a1a44f7f61a6bde2c4cfed98ddb3a9cd25964d874aea2f68533fab766796e6e7c322137eb43ea2529d2c5c +DIST firefox-140.7.1esr-ia.xpi 430108 BLAKE2B 78ba794061e193710a6f6cc0a3f6125129087cc80c4e2d7ca2cb478755fb931ea26e34d4f0ad7e91b412937144b63bd250be7aa258cce3661f9848a7026ca9a2 SHA512 64357116934b2685e23e00d9a39f678e15cefaf5368b67a0206ea6ea12678c975b636fab1fa9b6510d54a621fad6b6b58348e661ee2a6e93d387bd02ebc49810 +DIST firefox-140.7.1esr-id.xpi 422737 BLAKE2B 3de318cba5e860cefe9e72b1d2658523bf661234e2cf871c5e60f82f02d410f969d9f44a96cfede9591b50369b0b90bb05900a235972340e9f1a39c808b8574a SHA512 f95e4586baa898a59f9f81bc0017196813654b684da1bde9ed7e708ddd0492c0cead625c00bd083b5b09d7540891ecafd1f3ce3d40512513e92dc83091d5851b +DIST firefox-140.7.1esr-is.xpi 432674 BLAKE2B 384043b4c8fb3f3ff6c0123d846194863ae542b76bb5757bccf6b8cc5fa9df33e8f497745d49cec88ccd19b824417fd5db32e4a4bd2e007dc549b1dbe5725b12 SHA512 69a8bb307a125274b45e0ba41aa446d08d877e0dd3365f681fb563816c028323c40116524eb67e3b774517301cd06dbd4a9249ad39e519cad342ca75615ceb64 +DIST firefox-140.7.1esr-it.xpi 440900 BLAKE2B 97a1a4a626ce978ee6da429c12ec4a49577f74787718c0109b8ddc1d306c6d5640ad90d08b02c4ed67f437440b62a330beeaf65b38306c1d1afcb8b460f5dce2 SHA512 29126ffd2a69bfa7b01aa58c8d8f5f5ba17ed3d028d7959758c55a2a60266b3ae3909129dd25a9cbcaa45c0efb6fd998495e6df5726f03e63d8cbf18229336b5 +DIST firefox-140.7.1esr-ja.xpi 481314 BLAKE2B a3279ce69d58419e039d534953109c907766482fe9fc8c95606b05f2e39b52ad9fc3dc4a788303bee3061eda8cf688eb1be73c479e2b6eefb1f2984c188fa651 SHA512 f665b85146291019301e8f4a47a6d249500405b5e13a132e7b54addba6cde74b4f70aa8a7f6a2516b4860ac5a44b7dae1704dde2999b1e141718f28f3fdf9fff +DIST firefox-140.7.1esr-ka.xpi 494867 BLAKE2B 850a396bb7139c55d04b6d748895fdacf1109517a96a7b263b701a14324ee6accbc6181927bbe9440971d10634e2f971e4affaf89f91644b5d681ea176d5e116 SHA512 e45ced7bb51f38724918e8a627bb564f0fcd40d2f1984fc4aeaec166663f3668bedb594257d979aba5957f3ba36bef77ab49f302147493a917f5afc406a2d427 +DIST firefox-140.7.1esr-kab.xpi 422842 BLAKE2B 85c64b0da4c9245cf888fbd3e6587d606d0bc6f4a51a0878dac8115fa196ffa0f642020ad7c7c7d6bdbf6afe2c2d1a7d600f46b51bc155b9e59f2ad1eadade1c SHA512 dc20a7281c1796b1b5613d884aa0e8a0fe6328da69cf21862568895646a77148fb57d6d4523513dd035f8125d83a96e3a4eca19e535356f68267f167a4aa9d52 +DIST firefox-140.7.1esr-kk.xpi 506686 BLAKE2B fe1947919048ba562d5ac4cf76972e3ea8b25ac4c6fb577c97905d12691069eb2d9b8b4bc063c44da7bec24f7585dea105e8f536411d7b3f9a8b80043efd9fd5 SHA512 0603e6a881e1cc077d66b0c7e1b6264e83fc92dd17d2a04379cfc5cfede5383d2be64a5596454149bba693126acc31f553b58f25b5a26ff1dfee8b58febfb46f +DIST firefox-140.7.1esr-km.xpi 348775 BLAKE2B cb4231ac5c6cc026604017dfe56371a3b917e529a7a237e82664e90421dec7181a6f27c43d7cd8ee55491e798ef911be128114a1e2a7a2708338dc2fcd2d5cfe SHA512 0d16309ee6ac8354abdd9e054fe178151d49ee3c9180ec4edbfdb06febff2ed99817e3f7b12beb62525a3fc5c5f40f441a2d64d4583100379c55aab3ba099dcb +DIST firefox-140.7.1esr-kn.xpi 331777 BLAKE2B b31e4861ddc9611155d3a736f69558bbb68eb8f369f72dc9c93e9281d80a95fa0162df1daec2e4e7d095e04d1d601bffd8b1cb02bd9289224bc8fef6e3b56888 SHA512 77202009a117fec5b82ce81666da5b96dd893900a28ffbb8d1794d849da0c4969423378634381b44e18f466597b4a908f06b01bceaadcf7b4e0fa902c670aebd +DIST firefox-140.7.1esr-ko.xpi 467538 BLAKE2B a2d325a8708dd7290e4a3e0736e3fdd61dc9d2fe58120a3bda9b4d37502365db163239c44c5f49c8732ad4572bcd863e4cd4fb86b5cfa39694c39ddd5e167f1d SHA512 cb2389f674d021a18d4fe5e03a732801b0b239b04a083fd481f9ed8a2c705a5369505cb3e5ced0924c83c3b346304ed4011b73b705b44b747489e7fc34d9bcaa +DIST firefox-140.7.1esr-lij.xpi 319275 BLAKE2B 4c902b8e8542d91c107b11c28dfcec91d35d622257bb59dec9138dfdac3881f1ff2ae9b64d6f956e0b142562611da5ca988353cdae01d796f52c6e8ce6bbbf77 SHA512 f56822c6dd33402d0475b2b4c79b7095409f05b785fd7c0d782b029e9059b446c70c7c0df59272a085e0fc1fa913ef797791b2def0fcb02e56548c6c6620f445 +DIST firefox-140.7.1esr-lt.xpi 379953 BLAKE2B 8f25cae79f8918ebc3b61ef54edda08a467f7c53e7a407ce99a7964dc3e5be826fdee7ba5bb773c619bca487f91878b57e51c5f9a71b260b42e1949692f8b2e9 SHA512 eb0f5f60e1166409748fea50f8678357419b2f55d64cdd9dbbb4f4b4ca6e085b7c5004314ed3679dfd020098c0b6ac379d759eefc37d5587bc1adba699459b10 +DIST firefox-140.7.1esr-lv.xpi 389076 BLAKE2B 3f6d34541dd7ec69176d2505142bec60c6e00095c46c55c9ae44c9e16d927b2e343e649dece50f33b7468526b86bc44c5672552357b32d5e08086794bb96ebbc SHA512 9cb59e84eddf5f58b08ecf0320b34cf9e95b4572ef38c8ca5ffad8ba727c97e1027b5b250f16ec8b9a3a577c806ddeb67e88fc9e07c63ac1d74aedb218f13db3 +DIST firefox-140.7.1esr-mk.xpi 316828 BLAKE2B ee1b67ad9ac6c88dd8ed4f241a9b2846d18b4a30915151ab2a18d25c3a3546cdda132eb02a1c39c5ef0ab6f19b98526fbf1b6d2b83ba46524583112117390676 SHA512 5757979ef058877742020c96173527fefc01ac55d2a08c772b2b3823cbfbf46549747620dcbee4577f32118f5bf1c67beed8a98c81b4bcbeda62c96ca5ad84c6 +DIST firefox-140.7.1esr-mr.xpi 356252 BLAKE2B 0fdb1b6416086af9df51fa4bcd26db2dd401154ef2f374081f08200996592680a6afc9fa838616bccde1fd36e17e556311d47b58ea8d33381ce0db592783a02b SHA512 cecb9d60d676a8af5bf4c7d0d144230fc4966bed1df70abd7344455625e932604f4bb5241b4e9579c45d254a71285e872bfcf8502679f70264f0bc2a063ac3b6 +DIST firefox-140.7.1esr-ms.xpi 295388 BLAKE2B b9ac3eabcd7cdb5422ba72af4e0f1add073004e05c228c9fa225f79fbb1572eeae37e7bfd48e3ab672c8163d11a3ab16d2e0466fffd129010644f532874c2d60 SHA512 7d2a6f413f3ad5e3c115aaaa9532a4a0c3eaf6a37297c47a466820a6ded1968b4360659b7692ae7d3c588c2b72b9702f6f1ecaf372dd12234399fecea34de2a7 +DIST firefox-140.7.1esr-my.xpi 343021 BLAKE2B cc2a1e9f2af1d69b7f6effb535e4057a168e678c703988d40619e583eda255005bec6e00d8540917e76e75f7cc9059228005b922adf083724ce031c359bc7efb SHA512 5d45af5dffb1d59d33fe3be64caf95bacfccbc61cf42ddd695d4aa90b3d3d78b61eba4b977df6efdea8c7f6775a02dfe31e292ea1f3b81b3bb9d546c05ef4f59 +DIST firefox-140.7.1esr-nb-NO.xpi 429338 BLAKE2B f4912ff87cca577906a2b35594e8b6648a7453d065deb7464f6dd922986fa1329160f8d84a4fda72e4abfe19eb74c9e26482cf9df58b377481409b78781e0bfc SHA512 d2ce6f8c10ae56184f5764f280bebcc2a43f951b76a519d02a45bfb4b705d19984dc298e8c48d92cd4b5b235f9aedb84b302e2d8301d97ceba7abe27e6cfd5d5 +DIST firefox-140.7.1esr-ne-NP.xpi 349015 BLAKE2B 6f48a703f6fc2eb55d90ad819a2573dc7b5c66ed5f25361b8509d512f7d5f4db908a570b67d8c3f2b5992483db1cc3ef56dc96fb5ac3b72bac436d4863a30e9a SHA512 00d1db81cb0e84817942b74aeccebf794cbec62efc5eb5f76b67fd651d81d66b137dc33ec650538ac1c86bce3802c68f3d45d552f0492f9648b410f2e6c9edf9 +DIST firefox-140.7.1esr-nl.xpi 436184 BLAKE2B 717cf5a58c73e9fbb580239d2732b264cc89951c2848f74d40c115612b7aa15d3a40a5f6ee21ccf8ef10515e6ba9b9db7fd75ff26734e95fbecedbaffc954ab1 SHA512 fef5af8dd656da0b49d7a0a1d8b4f363f994311525cd6153da7c1418e1ce9c55aa310265a0025e189ff35e654458b4b501c776d062d17a6ffd27029a49ee481b +DIST firefox-140.7.1esr-nn-NO.xpi 432214 BLAKE2B e8cc36fd6420db21dff7dc2d92cc17bed38d9e44317bad91144f8bbf7c3c6c0c53b658e2947fb6a94d834f398cb1b35b2d50e03703e35ec689c9c62e9f4e3a61 SHA512 fe7705808ccbb1eea17f011347ef9ec9a32369fefd7aa9594f13c9d6e7607fc4ae8cdc49f26ad052916dde6a7922082a64a3d1ece4285181858b5a7359241519 +DIST firefox-140.7.1esr-oc.xpi 410926 BLAKE2B 9bc789025b1e0cbc2cab41f38b7b8214793f540def4e4e510f71ec465777148c1af84586156c13733a15fedd738a60408122bec80f770b08bd79f69552421f12 SHA512 356ad320439056680778ba243fb4253ed4795dd33958f5dbb0f0016847be3ae22623cc598877de8a84229e61b91eab240d800d7d2c96c753d7020d6e4829fa52 +DIST firefox-140.7.1esr-pa-IN.xpi 494411 BLAKE2B f9abdb08f12aff81e10348efac61c2d5a70be044f2e8e487500cd4e28e25c719c39e663c0da01ffe74420faa35c5d847b5f67436c21a07ffd103ef2054c7444b SHA512 e3d956f0f5b0e4171707d5bb9f3c59ebf67d9f969bcb4a812c66a0b43d78f2cfc03a96f41f6ee7f12407b4807e9b240a31564cae386e34ed92064bfddab6cfc4 +DIST firefox-140.7.1esr-pl.xpi 460928 BLAKE2B 5beb6e84fb1b6c300b8a19710d29b91e931d1cc6fb00a17e36ad0d13d58699b0bd2e20bbae2577df4c3060454a2ee55380e567e9f0103f98fb6c0443f64c5664 SHA512 b9af99997656f176eeec81d986e34f146b629a18de4f6dded2d0d0d742e62d75a73a7301740c6d28aa282d0bdc8ebd8d4956567f433d32fa8e0c318eee59e025 +DIST firefox-140.7.1esr-pt-BR.xpi 440758 BLAKE2B 93e16918df89c1aa28e2ad50464fc7b3f72cfb4cf518d9e0b37df3a325c3998665dd8400df58ee608328a857558ee9f1bf09a6b90cde83f6437e3dcfa2c1f9a8 SHA512 dff3613d6daa59cfc82ae62233b3defe0d6cc02e7f1bf867e59d1675fa17bc55ca4d289422551745eb0ae3cd31f100d9a703c2d1614bfd15881bd44d6cbe4138 +DIST firefox-140.7.1esr-pt-PT.xpi 446404 BLAKE2B 2da8d8938814d7bf9c689bd8fd8c41c1e60ad78c0e0dfafe1cadd53b8d4e335bd0cf82ef2c931de5fd1244104d38a6f34958466f8138f2a8b9fde38b74866ce5 SHA512 2b5ce065a1be860c8f8cf734d6de9891a89dde4dabefbaca9bd5a703c800455b08e3b27e39a0a6b1db0577e5e1c5965742a4501e2038a9af2ee35e69032011ae +DIST firefox-140.7.1esr-rm.xpi 438019 BLAKE2B a056b4d20fe63d65f2f97a4e806d7ff0e498e4575b9d43035a063568337943ce6ba8f5ad8037e9e4fabfee3ba198d9172064fb1883b7045a5586fd31329c5ff2 SHA512 b49eec1fe6c48d11e5419858de814205d43beacda4110022fe4773d76047247f989df2c130b6cd517786dcf69410c3422a0bb9614d09b63a86071fc9abdec351 +DIST firefox-140.7.1esr-ro.xpi 452828 BLAKE2B 40f9dba74b7c9bacd0c00a8b38597bec6500d68386f8a7fcc81e74626e673a9e5b1cbe108f27019112c52c2539b163bb3b03ae9d71a627e7c44d91e5f6a40552 SHA512 c932f35443b8b633ff388c1160b00d035cf891e32711c51e2297376cc7b45ec8dbebfce050b79596065d6f865674f70fa681352ada4438fd42ff36c3dee91c54 +DIST firefox-140.7.1esr-ru.xpi 525178 BLAKE2B f7cae91503231f2f13614e50f9b70857ecb99b7cca5185d9db7f44c07b75d986e5ec62eb7fff42ff3ebcbddd6226e70321786145fce3b08d89ad6539b0983bc4 SHA512 e8b42db2a02ecf41086c32717917569ca321a2d7af5315d1c60c0a996036eb717cc9b8bdfce15630af965851f1ab017cdfa09c8d2e062f2277627b6a932f17c1 +DIST firefox-140.7.1esr-sc.xpi 410460 BLAKE2B 202df0993977e8b0621af4b432e43cffd52ee7a9ef57d67bd3d60948f23d2ce9a3d139dedca907609a3158a76dabdf100e45529b4d6300226f771674f213a9ca SHA512 f8739c006e60dd4ef2221ed2f75de77e51247e432fef5875857c8a427f528a71192d667435030453f8bdfdb0e7a7ce444346fcd82ff5a0e66fc062c71760572f +DIST firefox-140.7.1esr-sco.xpi 322643 BLAKE2B 530a364c85b339dfc117904ff522cbc7e85979278e0524ba423db06cf2aac54092b2b6a7e75f07f268dd8e7fb4309a4e3b39495c065df4498b89115ffcd16b05 SHA512 73a164ce7cd84c2c9fd1adc18e971ac237c6787e365636c17fb116806ec225314932466f11c5944a5d94f0dffc7c7c7cf2b423dc535800655fe5d1271c9ff83e +DIST firefox-140.7.1esr-si.xpi 411606 BLAKE2B 4ab27a14795cee4c248ee74c9c08e4ad16e9b739cbc375572eca74e6ff9f71ebaf6402794bc82a99ea44c2580560d0d7f8f1a9b1e1a3d4dc5746e69aea1ad8c9 SHA512 24ca9bc2717b982604898b3f20a835772dbac0c6c30a2f5bfc27ae639546f7dcd681e18e438d377a2826c3e0b6ded94cfa588b00bfabb0f4616f4ba40ad39012 +DIST firefox-140.7.1esr-sk.xpi 468223 BLAKE2B e3e76116f95aa81c87396643a48ef4e9c56eeea0968eb5368b8afed28c553d5c6f77379b9214e1db58783d6e8b863acda945e58be37028f3acf0a859823a9751 SHA512 f4b1a8816f0ca3d8c60871797157747bd014f2a1d982a3ca810faa1903a9b66b721b6dc4a2f940604e8f7c0d067b108017b0bf2586a26e1a6c3ad186ab178386 +DIST firefox-140.7.1esr-skr.xpi 485867 BLAKE2B 6bab747d0e7aec64ce7f0962f55231c042b815b062eb61ae48c90515206560e05d80fd8c2a00b2ebe2295bb296f73befcf9329fdedd25b0161e84c7f2dec8a4d SHA512 53313fd973f408efae26413e7fe14bca83cb1617a1decb150c6f316f7f424115082595f04718ac4f0a35acf5f75df6762b6f5fa135f76ed04ee62dafabc0d140 +DIST firefox-140.7.1esr-sl.xpi 441196 BLAKE2B eb16a22cfcde9416bb746a99313ddfffb046cad2226538325fcc9dc2612491dff1536070e93b3941835dea9c41768201983e25b7044f17e876f2a378eb2aa940 SHA512 09cf998f1e8b0187be0764142500eca2b71ca3c9ef12efe049271686c350988b814c871acbc56880c0eb0c2738ad1a9af88ee4ae0ab97e0f60038efe9de079ba +DIST firefox-140.7.1esr-son.xpi 273121 BLAKE2B 5634c3331fe3782bb3cabdaf28e82f979f312ac43be0c44aa741186d39672e1d35f16a8a27c5df3adfc6656fbedbd754bf457485ac2b253d0e24b075989927fb SHA512 13f86c12d8014c9ff1f81068e2518e168cab0b461e196924ad0b84a5834fb95318ede38d83a4f2a46007bea2194c34dc313bcfb01d23cd02cc8a62a28635b761 +DIST firefox-140.7.1esr-sq.xpi 456009 BLAKE2B 8d26ebc42ffbc37995088266a0d60b27478f80ed13f9b76fa413d137e7ea1dddc111441bc2a7311764a4da01f7f0692536e7a315b27e7a8711ba25f3364f3787 SHA512 41ae060bb492ee861be23b64b9923cb17ee2b7525d5c0aadeddd953890d27b3340130ec86c1273a85c50634e6618e227b075870b74439c84ed2392351647f042 +DIST firefox-140.7.1esr-sr.xpi 453368 BLAKE2B a72bd459ce5dcfbf96b1d3f0ed3791c44e02522d30d63f545d6e77de692f5c57d1ea2f494231b11bdbcd7411d1219bd3d67954223f2dc8873286372720d19796 SHA512 d7b3e4f6e59dbebf0351aa767bc203727e4ed935325584087ac9645ff6bd64e0a58551bf7d9d3bbd88ed413eed0087520bef9aedac511f66b874255ed41787d8 +DIST firefox-140.7.1esr-sv-SE.xpi 436150 BLAKE2B b6d4de642991b12c9e7f80cd9f1ac9e89f36dee7206cb603e63fb61f875f31864e05ee78cce38e3e89835af8021a24e741a798bc3a877a6ac10c0a1eef2a8c07 SHA512 d0d0ecd8fea251f75721afb0775bd0a49d692d5c644f7709e00d970f65f167c98db17194436b01354711272ccc9a967d49e2b64cd2b0c55c7c2896122e0841b1 +DIST firefox-140.7.1esr-szl.xpi 341666 BLAKE2B 394323297acf225ac6727329f11ee8768069d3146a22e1d6594646f7ded08cb61c1ec61c4b22974828c1e1212c66842a17eedd8a030954104baafae84d820ca1 SHA512 8a6665089697faa6af6fb71b3ae0b205bc0f9a24a5520fa241759b3802505a49efbcde23574796c0b31c38478c104e2de6c23a9bddfbc3289dc9761e522bbd7f +DIST firefox-140.7.1esr-ta.xpi 338140 BLAKE2B 17481bafc30a519ffa41f6edc2cf4ad5779961138953990c1d2b2de799518d893bb70723443876c1a044d70a111f51fef0d5c341a47e6ea4e4dcf15d7276fdd7 SHA512 c8a0231f1c35d3a6083548cc2e3ab8ae2898dbe145200292e31d284afe6b1ef2d1cf10ed6d7e44e612f81414067daef76bd53eb29db755700c9b73893a07a9d0 +DIST firefox-140.7.1esr-te.xpi 382200 BLAKE2B 92a2285b547f722baac3dc3e0e16faee5aa0b52e539e69ec4ffec4d1939c01d788c793e67fe9103044b3eee9a76834c92d36cab9eb791ac622b652dc1552845c SHA512 4ac9650e6113513a55efe76463aa521c43ef0a6a3a9b87f2fdc6fb79c0b6de0142cc444ec6d51b4e5a7575c3941297aea442c876ad8b84abb4cc6a76a0190a4f +DIST firefox-140.7.1esr-th.xpi 505495 BLAKE2B c6a2d20cc3b3a69a0bd33fcc34e7600adc564ab3fde7442e1998e6d0c449220ebb70b3f43d5cd2191ecef8e32a50670d0a8196a1f14b0e6899c0a27a6ce4995a SHA512 b28f40c7d04d6db68d72fbe368ac38ab4de2cca4f4af275476440698d6b0b512847cc410376905716082d5fb4c65fb97308319dc7609991cda28bbfb00191218 +DIST firefox-140.7.1esr-tl.xpi 356649 BLAKE2B 2614e6f3a084a734bf1eeb560ed439477030c6c2e3287b3599306900a335debbc0400d32e25e7a4ce2279ae234ed5a9e7bda6572173eb1a4be176b880a126ac9 SHA512 8cee058180c0acded751d0bc9a1cd97991d577d1683021b7a942a8de4f089f42ffe2bd659933e908dffae8dbb4b31397ab51605a918d416abbc7b43b48d2c5ff +DIST firefox-140.7.1esr-tr.xpi 449319 BLAKE2B b4e5eecdc680c84d37d64dee649637e19728008d76e277fe7fe1f606da74b40e97f11646ef15dbc8de7c01744597a895a90e62dd48333f89e3ed63634c37d4a1 SHA512 80d27639d8b2b5eee7fdc7c22175dd2e51f13bc431c0b6682e1fef9c366da2b6d5b3522403168d853127d6156f9d1387d4fb80b4a334b6797a8bef2183a1b6fc +DIST firefox-140.7.1esr-trs.xpi 324525 BLAKE2B a31b5f1d8731f3fce340fdf6ec5f4bcba260324577d99e03552d4b9a5c46af3782cec097fa36c36e8003b26afc3e57dbf23734dc2e597d8e67e476709d200436 SHA512 7e14cdfbad379086a4e4bd522d3c6c40ea34c716df44d199c04f88cf0a772310a4547865ff3daca28468bb4df8bd2ff855cb54b1ee89b3f6f3f87c660897b338 +DIST firefox-140.7.1esr-uk.xpi 516722 BLAKE2B ae0e7c49245dce00d88d53a8030d6afcbb205a23d0056d240cdd70f5a22167e9476275593e75730701f206676b1fada21e4a8a549735ac9cf93257b2626ea123 SHA512 0a67eb295dfe1defdfb6cdfad09f02ec536bb967136e94993a41faee7453126382837fe6f87f9cf296eb826dbb3a0b4dc2dbae6c74d694df18eb681439069967 +DIST firefox-140.7.1esr-ur.xpi 370174 BLAKE2B 8ca0bbd5970d61f963695dd0561a2eb00dd935473e7eb10f432b6b102f0ba1d5c6abd808f714658f637de013b4dde42d6b8bfea9fa47d2a5f1420cfaa070ccbe SHA512 7287046302dc803f87d6b2bcb1fd4f258291f391127e22b301b1facfa2c9fbfd03300ffd582cd30d41fdd2242c8cfdcda7a6123c353c6707150df9782e0dacb8 +DIST firefox-140.7.1esr-uz.xpi 303477 BLAKE2B 9eb68f063e71049d9ad2c50a09d74539e0d83dd9c682a70f2c36737c9acbcc2cd07ef62184b0c38c52c2ae5497f42197582a3ca9c6b95770f159127700957886 SHA512 1c250ebfccc27b7988db17b2daf0c47e61a09166cd8fea5e09a0107bbec84cd212263504c33c1b12b6d2d4cd9e0ef8ad4b0cea92cb228e7f53cd1bf56e0e2e37 +DIST firefox-140.7.1esr-vi.xpi 469146 BLAKE2B aaa6b8e313b180a749880581e2aa4cc964f6f8efb2186bbbac86b0e2bf1d7748b4e6426a354398436b649404e52acedba0b81ac7d1808eda91f4e267c862a400 SHA512 c7a8bb1f9c73f3f8e134fcd1cc79a476dd546bb7e6704d025f7c014ad0c6efcf373ccc3a84e5986913f221fb99265e8866a312ca152359ee2bdc8ed038fd5ef0 +DIST firefox-140.7.1esr-xh.xpi 272785 BLAKE2B 5acef7ca961284fdbba06598188a06d8e5c960ffcab0172839a4acb7115521a49f63520c07d3c5ebd2dddd01b956590aa126d21b73bd78927ccea1e7a1a90605 SHA512 f690b033e11437dc149ed5ef618a0b91471f6d47b89fe978d6dace3ca63493b2ad2221695714f053dc1d6e55a9bb48d125b58f1ff21deb1c454e613981797e47 +DIST firefox-140.7.1esr-zh-CN.xpi 460698 BLAKE2B cd5387a47a820d774815527e0ba8fe8f7b6fb210b12f8b399fb9cc36d31392797f89b45729b61cbc329e9536823d0dcff010904f43e09038e1a1e1ce0e9287bd SHA512 42f2658a7b130dcb917ae887673019d438fc59d0ee7dd273853fbd846bfdb47fa872d07bac16b4b8d512c2f411d149782131e8f32a8883593e9b6cbd7cd66469 +DIST firefox-140.7.1esr-zh-TW.xpi 463741 BLAKE2B 18aa719aa26d660d0ced096aea783e5318b411633bbc9635ee9218015d8e4cfe6db7c1c57f3a8e2ce275d11e4b5eab5459f915b0bdfc6c4be792b3feeaad5ea0 SHA512 8b4683a7a1518293bebff1ee1a4648dd828152569535d2a82f815ee0a0379bd7e485785c690633889ca03827c15b5ca59c0cc9779af138c8a06e9d57c333e10d +DIST firefox-140.7.1esr.source.tar.xz 635535480 BLAKE2B 89699f1200a913205ef93aac5ce24aeed1be41f2befa7d5fcb4d5a7a0124ad8b42fb7075243ee09efb0de7e793df1e753bb8b275515d5b3efa690d49be28b249 SHA512 7d867fa3c9c94903f6583be75ad4aa8d918f98f74c99c6615a0e40caf21c545a30149115214876693ef1758a320ebdccef017c484365c195e55998cce088663c DIST firefox-140esr-patches-04.tar.xz 124424 BLAKE2B 89fd2cedb67a9d82c339fed01b79c9c4b3f58051b68764121f982d4eba04d979c9d16238a7599fbab4f9d3965253f3ec4886f2da590b05116bc6ea0ee027e935 SHA512 b8c268fd5118007490edb7ef99f90148af4fa88ec7cdec03d028630476c85862e896b1ad3a6964215835f6f442aa71df96d6dd9aab632802773792bced8dc17b DIST firefox-140esr-patches-05.tar.xz 124432 BLAKE2B 9281214dcf3da5d2e288112a99dc1fbee44ee93c4b83e30d73e8383805bd9c8ad9b1918d11351398cd963fdc30ec3cb50d7f6b5c9905d7c1303d21fdef440fbe SHA512 70551bb7eea2a50bbd30418438a78a8ace07467fe852b7655c24373c651f816df89fceeb98b6fa6c7d95944b0c5deef76b89b3e742795a8ac04259f02bd25c10 DIST firefox-146-patches-01.tar.xz 10568 BLAKE2B 643ed4298d7ab2251ae1f813473a7b461aa386dfb72984e46201b22b6cb0f69f28e92b44a4783dda32a81b4b0dacbe8b47a25b9232481ecd79a19550e74e4812 SHA512 9e2474eedda1c2644ddcb0f9fd2d90ede764469337eab1267d3d4dbe8e3487bb519106449acf1da9798050d61a51e96a882f365e4587f88747161f6418203e4e @@ -812,6 +913,107 @@ DIST firefox-147.0.3-xh.xpi 275245 BLAKE2B d52ab1fe0377d0f74a9e032dc479077f0c7fb DIST firefox-147.0.3-zh-CN.xpi 483913 BLAKE2B 9b4feeb135365301d9335e799540043e4cce6b66c3824632f00b6d38d338c549eaf7d0e00ae7cc23b326d40be2cf31b58a2aaa9c9677aa1684dc7f35debb2e09 SHA512 84da912a6e8f49440a1ef7e476e1f9197134b32bcf8046320cf867dc9094a1c50cd2633edd8fcb2bf41dcb0cb3da04dbf70c474f1bf83d7e3fff2bb30881544d DIST firefox-147.0.3-zh-TW.xpi 487258 BLAKE2B 95f2fe937fedfa3c97d5f23141796c9017d9f535b30448a1ab62e434aeaa8e280f520a51237c280ac5268faf9f15937aac992cf4e8ff4f349482890518588a14 SHA512 5fead566fa76ff30c708fbf22702a2c67e42cc69dd773bf3684f19deddf6ff28782097eb45910636cbc4b0f4297413fed0b7db9053f41658255114b2dec7e1ce DIST firefox-147.0.3.source.tar.xz 658641660 BLAKE2B d1dfb15a47dbbaf50081c61b7b03d712886ec4b3ae749abf7886c7adebeb7e03831c65e49706f09bd670a11359aa91be45921d1166003ba89cededf61e7a8c96 SHA512 37e39c47d694eccdcabb7d8a0a4cfe1b02860a97f604653f364c60f4e98796ffc7f1c6ab51226b2e5034a4b4805ccc6ec3983f0d830c9f36692df2ec261273d9 +DIST firefox-147.0.4-ach.xpi 295780 BLAKE2B 3432c9695583b69efa7a1288a87706cb7d2bd235fed6d4e44a7feb288e0eed9d188aee3660bf073d661c3a6cc6f759ea16088371b85dd6aa4bf0c8dafbb98613 SHA512 559f855d1abfceefc89edeadb3e67344449269a289c9ee39c5c4804b8fd56cd4df1b50ccccd540f19b16e69fd55031fafc75775383c6f3fcdd2bd29c53c67dfd +DIST firefox-147.0.4-af.xpi 269137 BLAKE2B 4797859d9a589dc1ab18a100f6ace84f65acd47de48bf1cc3cb2fc8a43ab7c21d9b9bae03384761be40707335a91100e032124b4b8c56802e8551522a5e598b1 SHA512 66199f48a99b8e9f865d235371da8db459bda10d28fec7042110a93e1826f95932c0f47fa55c8ddb86f4d0f3366daa631d07d9f104452902cf94b650999c9b13 +DIST firefox-147.0.4-an.xpi 333190 BLAKE2B bc10bb3e81f9b5892ddd6cdca6a65c6e55e51d4b833f22c629e9e541086bffb68f55b4bdec861447d3b8941141c7e8493f76f853601ccd64a6633d2769ad75e9 SHA512 a0b5ae232ee1ad6333a2809ea0384c15ca2ec3f0e21f722f2a3926237ed294ff47b487333e259018e76f27a97a824f2fa3112e3dcdf28a978ed4a3a006d21113 +DIST firefox-147.0.4-ar.xpi 447289 BLAKE2B ed120add6a94f75a36584b779893f6856a96228542617bdb416b001fdf5571faf5bb18318fcdf819b3be10efd7d88ba9cbe66f5e239395ef01c8866e4338ca03 SHA512 62e8f478090701cf485ec4e6bcfbf6c2a82210c7816a8237beff93dd0d1b03de8e3bc94c94fd0e58540ac41019054f73b697582ae7c387fc4e555a55d99cd401 +DIST firefox-147.0.4-ast.xpi 313507 BLAKE2B cb56aebb80b8169d6b659a16b0fdd9f8bf9f1bd1530eda91275b8475ebed9ccf59d6e486a1298977ed4713cbe9232391eaed827d9d1c0592f27c252e6c68f3f9 SHA512 8d3246e65f42c2ee3665a9e16551e4ec342e0dc65f166be9ee016212c82f8c1fb1e328e78c46e079331ea9610912d4d395045f80b4f15a1771372107987f23c7 +DIST firefox-147.0.4-az.xpi 319876 BLAKE2B d9cca3fcd5f761311bfdbfc31f4b1c53a6e12ecb018be4cf29a50d7b61e930d4f4852e7d22597bf258ff8858d69eff34be2bee6978bc8cdf9771b902dd9dff75 SHA512 a59b35ecf1877cd35a7e606183f69418a83754a63b797199309e2f55134ceaefd960805366050dc0384e0f4615a5001dadc20b42e41766d46dd0711dd0bfb21f +DIST firefox-147.0.4-be.xpi 549303 BLAKE2B 92d4f602fd517c93e2e76272ce518b93cce084d34632f372f222cbba7635448c4c5d47ad188d5e83271232d464a00914a6b5a47794f5bb26a9aa65e457371fd3 SHA512 b92530fe4d2aadd2786713479cea6fd9a9142b875b49b7078e6dfac6b30013a59d53f2aa1822be0d845511fb73ddc4ecb52eb29b90a49114e1a96aec2cc6dc41 +DIST firefox-147.0.4-bg.xpi 462995 BLAKE2B 6bad515c302b5ad9082862672e16fc8e330fa8301b5e844c5677463e07d5da31d6c9d45df7ce2e26b57b94c746d5b519e5fc6bc4868918c8509351ffef2b69e7 SHA512 8908f861e7127bd20a1e242ca1180cf138f7f466000d9d1d77b7a166e95867225b641fbed04e98b614c2b4387dcfed64c448c87dda622483fa5bb53ab0de864b +DIST firefox-147.0.4-bn.xpi 413888 BLAKE2B 870d90c90485f68892ff38264265524c6e688100e90f60e577ab9e633816601a0ba0c2635a55bb2895930b3ed78da28ab0203e97db65142a65e4534ee22eb203 SHA512 7d2173ed62753076c4fb1b4cb78f57499293871669d716f8e03c5dd1ed96f5ba0ab3fcfc321966e4eabbc6fc9744b58213b25ddc096be9a7ca99a65510dcf749 +DIST firefox-147.0.4-br.xpi 395371 BLAKE2B ff5c22d891b32e3dfb93351401f7f114e847659a09affc97e7c9e2f0eb9e2ed4dd227264e11234c48f96b4a3551ac9ca30cd3424f9d1d11f4eae7e4afe5910fc SHA512 45af05a98694d2f7ad6f79c273086a08ba73c8a02b0c80523211ea7d435dbbb64f88a87d01851610cd445b10976615b8fd027b043e11936356b8f3e58d3d4232 +DIST firefox-147.0.4-bs.xpi 451396 BLAKE2B a2a5ed9b1ab7e75a1550d30e0291b34e2b1dd1df185a0276fc47f5a792dc5a9dc47e30538981a1e15b76c57ff67479e315e557d47820b2caa267a38526f28632 SHA512 e184496a8a920392cfb757cf5310a5dfbf80906755e855d7e331ef6b5ad6530a6bd95684f0b4778b4f356d6f460e94582396270688565df744805a3cc225f7a6 +DIST firefox-147.0.4-ca-valencia.xpi 358878 BLAKE2B 4ed5472e0f1b14b02cc64ca2f6a25db4bbf527f6f45c1aee43745201d245fedcdeb7c77442a40df6ae05f3974f1d4c0e8d7dde97e7f9e9384590d1e328cc4d3a SHA512 f6a9cc2331658bd67c2c57904f717e95c2fd5922cdeefe73519dad7200a59d0e2e386f44886d6338f7d59a557d96cb7ef90bc0b591dcc467bdac93626e462fda +DIST firefox-147.0.4-ca.xpi 417702 BLAKE2B 344555093ac508d2289f62026c6958cfb6a27dc959d57c9187e623766a5be7a4755b24f1263af3d810cea4353a394212a491a8175d679021f352d3b0758fd5a2 SHA512 0dc05a52f7edf91195eba114c4f1bc90402710266c10ecb6c5329ec918a2267aa4c31ac839051a566de1aee5ad8efd7ba5e5a3b404319c830f942e04c9091fd2 +DIST firefox-147.0.4-cak.xpi 390716 BLAKE2B 41be5ce14b05ebdf7fef19bb4abe8d1bb2e3020cb3067af4f1cf487049ef4319bda7c6f711f0dc7921f5eaa3207b7f236057e5bd3d6af43cecb04dd436f9d438 SHA512 49144d58e6370d123a2af2d53400f62737c93e7900ecaa29d60870b0dc2f0ab979d0b3003dc4ddc8da8b87c2ab8b3f1083053823072550ed66b1c3f9fa28a8dc +DIST firefox-147.0.4-cs.xpi 502176 BLAKE2B 5dc5f675e71bba70036542a30e336c761ab19c8760eb506f02f7978ad0f2b8a013d525a5e020186cd656f2cffa6ccb790e886d1fe7ed7979997c5e86eee7d3b9 SHA512 d21f93ca59f353088f882e663a17add839526cc7d78e0fe34ffcfdeee2738c5e35765ac863b1344918eba9a02b74eaee325aa629ff7328e692fe8e66d5ac6f1e +DIST firefox-147.0.4-cy.xpi 465505 BLAKE2B 08a4eb35fcad41882ce797cd10997a0dffb26578603011ee7d73f86027bdc8eba053f6fb9765e2a45afea273862f8d828d57ad604b8980c53240ae28703493fc SHA512 a1c4d3a0853c0c3971c8f4ab1f6d2e60c01249423059801546674b43ff52677d17bc330f36b70a30b995d4375208d667388630af36e9a51a095e04ce7f0dc4bc +DIST firefox-147.0.4-da.xpi 453661 BLAKE2B dcc3f173db8e5b1436832bef89a0aba7ba0983d419fa2ebe6b8aeb79f29351a0d278ccd5fe674ae1e5f08ac512c1d3ea9feba3820b605f0d602648d84f5f0570 SHA512 8757baa3326576c581c621abf377c798bf36a6498d54d20e2306604454ad56ab9005607a8bc9e3bd286da26274094e3c8218dde897cf2bbf33a225fe51105d3e +DIST firefox-147.0.4-de.xpi 476586 BLAKE2B 13e2a0eca74546a7f9088d33648ce0836f3a8430e3f087e45f1b780ed80a25d3134aa5ebda190b2ed5080921ba08315e80ba170e67500835c17a97b5ef7e44c1 SHA512 30793dc681987de6822e0ba34a6a4224ef996eda8e3e434aa9009701ed761ee6b6883aac7e63a467e0a323089470b71e684645461e744246cc1228b3590508bc +DIST firefox-147.0.4-dsb.xpi 490400 BLAKE2B eb79d374952e1da69f9e69dce0d632b8cf2f9bcd3a11488337edce33ac52ab8bb25de62872ba57a2ccbae294b85225487e3bde5496cb3f3f7f87271db77816e9 SHA512 6e79d594e4b21d5066c63d0b50617e0a5513b857d69bb7c3845e044149e197d4538b5dfbd277415f4f1a9ee4d4b6c8a6e27ae0999f3a512d9ff495ed362265b4 +DIST firefox-147.0.4-el.xpi 564764 BLAKE2B 50f41253073bb935b32b8f75332c719ec425a13749907f21598cee50edc91590d40bf84eaa9f64220f775763753ef08ce1b22a928b660dd1cbb7ed823de5136e SHA512 04974890b3598343985180bd873932ef8e0319c2062a903bf37c4b004b875d41f2af871c9ab5b27e0eb0db4210f7b13192f782643430e8d373d67bedfada94df +DIST firefox-147.0.4-en-CA.xpi 431930 BLAKE2B 23881a57f695e676562aef850d284838aae06f979e1b2bae5e7501fb257dbdf8f12163f29886171cb089c7e1ed555d2845cdeece9be65c4bb3d7422119187ae7 SHA512 c31c461ed24b541aace0d3919dfd0f17bafb80806bb54424edf1b3b6f49c7a6b9472c1012cda90eaa9798e4a7e5862b32d0d57cad2bfe77440a0b46b3b0f6812 +DIST firefox-147.0.4-en-GB.xpi 432239 BLAKE2B e017760cf80c34417c1345ad9c7e8312202ade3b757288b85c07ea4016f56b3f104c6dcdcae8806411ec865689bd854507006ade4df44c462a6ed73ddd3d7019 SHA512 4ce6c6715df15fb958ad745b2addd2338b8127c66e64c4eab8820955c64dc780ea94377d7c00a68e2d5cfdee2bedf371559755a980f3de099020e7a8bf877be4 +DIST firefox-147.0.4-eo.xpi 456001 BLAKE2B 4017c54c5072af0c78d86b9dc14361b002de9c78e769282af5368e011b21a788647d50737876ca0ac45bb2be4a5e1b6bb6233039a5bd9c603acc930a37b62c09 SHA512 513f79a946dbaf793c749138f319e5c004684a9b62397624789fef8ca4485abbf4df7082538c89c0d9911948e1a94de248508d1c9bd1f5dc6e684ab206d501af +DIST firefox-147.0.4-es-AR.xpi 468356 BLAKE2B 908ef7dd7b7653ae8f53eaf8b5fa7bdd8db0f8ed367974b3613e961cb92a0691f09464130c56bb13a23f51145b0c1f12e9691fe2bd7a4934d0802774c7c9c7fb SHA512 bf4e892a80ccf1a5f563c640716b60b85b8f9413aa8728aff6ff2b6d497dd396fea97c00061909674503f4be5c2d1362fd4fd921604fdaf27c5d2fcc19f3122e +DIST firefox-147.0.4-es-CL.xpi 469497 BLAKE2B db4d54d186dfb49b3636a3d87bb4c3102e023be6594b81c9413e1020714a1369fdf2f208a5469d1fc2cd40975beff3091337a56b8d1d78a7b845827e41a41647 SHA512 6f0c16c07becc3b2624ae5f8e6053ef107c2d9b69c1f376dc7555b6db286750019553606be90c6c7685e0012c74b8e90f54ee5c3c79c46b788a20bdbaa16bfc4 +DIST firefox-147.0.4-es-ES.xpi 470170 BLAKE2B 2d22cd20913ea57a235fab74f6664b1171d2afa08ed7561064f50ce98067ed50c6e726dee222c534a3d0111ef868489876d6e304b6f80f936ba1454c8457913c SHA512 22907b4f3a55042c15a91cc80f52ba2285a136b294092202594c82b9576f7119a98ca3d19569f6ceee46da14e902ca19014cbd7cd7e14d0c849017a9b5dd1a68 +DIST firefox-147.0.4-es-MX.xpi 458615 BLAKE2B b75323bdaaa48271a2ee35af993ecf48255dd23ee4f6c991134b5f8e7c88814ab27dd331d79598b2223326743a397e3463cd75fc508b94bd20574ed37089ab60 SHA512 48d37a9adcca269ddf88314b87d6d2cdb8743476bdb36e6b5f7e99cd90979ccb9d5bb576ed92833b1688c25f3a411822c3018b65c43c33fe78f6c50fdfe4c1b0 +DIST firefox-147.0.4-et.xpi 359821 BLAKE2B 847cc49631cd7cdb278145455ac5a63a298a810aa63f2f14c6dad9419408d984d3cef9656eab1238936bcb68940b28c0bfebee0eb0ea25dae8c5bdb8542ed942 SHA512 0329dc7b125dcd7cc5d84024f183ff2d794e46206e874228593f47bb53743e6c55a30322b19f48d2dd72de8ddcaa4384019d43475400bacb56722c524d2d1b3b +DIST firefox-147.0.4-eu.xpi 453272 BLAKE2B c4ae5a4aa89a35fcd752acf62352342d88f350b9591ecfd20ae94a31677703ee0772849187b12cd2cd362b49f3b340a58113a86ca07c85c01c8be01752d507e0 SHA512 ca9baaefece0f82692d5b3953853279256e79547caa08bb4478830ca0affab07fe049626248eb5f558d61d572407b8f4afcbe1793d5485dd02fdc5b579e87fb9 +DIST firefox-147.0.4-fa.xpi 421564 BLAKE2B be82f560629735eb1367762b71e48729c06915fd9eb8d210c7369e65673c57a72487dad5de3d6041827b08dad19fb198ecbece8f55cd964c352d667da170345b SHA512 524b15c010fcdbd94130be75f07346dcda078e25d49913d630a07dae3b5693620b86e597f23f58965cf6f08dde94f79720fb9aeae14cfb0f1e47b9636000a402 +DIST firefox-147.0.4-ff.xpi 311420 BLAKE2B cb159e8dbcf5bbedd1bfd8745eb56822e174ed0eecb72954445057c724e3cebd4573fc59753beacc144e8cc2257367f634b1f905905d67318c9db719f5f105dd SHA512 41b263eae2813af7d8c88014d85fc270f40f5a86a92f842934d66b18998432082e656d93ca3e5610ea2f3c18a0f70c4fb73c661428101c6fcd06acab75cd7c69 +DIST firefox-147.0.4-fi.xpi 452919 BLAKE2B 4ce9d99618f217bcc29347724e5acffa7437b0fbaf4bcaa008f4c680eeb7bbf0760058928ef3aee4770c5d56e1762f1f9130b26afa7577470691df8d8dbc8ff2 SHA512 0e70638f6f150a29418fb86a1036cb859bddd76fb43af742147f489c43a954799aabe16bbcf78f76c2a921de7ea9ef99d647a8a23a296713d15f97c20e963319 +DIST firefox-147.0.4-fr.xpi 482425 BLAKE2B 83dd7ae2b8c4abcd7e51fb1a0f6dda26acf0d6791e16b1c6b0d9263ad68cc6b10e6a384a8408f0085fcd511a2a0793581bada1496263c3902ff897cf85a0f217 SHA512 585d3d899b7ef2e080ba598fde45398871080f74bbfe7852f6a6ed853eb4dc8af9fe0224b7589205de748f80071c8a43f6c4dcd2ea5569eaf58c07efa33ef56d +DIST firefox-147.0.4-fur.xpi 475458 BLAKE2B 20ab3fd0f2583717427d3e068c209f1824f03362877f8b7fbe84ac7733f2444cca455deb57aa01c33f2bd6fb15b7aea5f5c3b2ea6f366501d1a586b043c1a4f5 SHA512 e80c9487d3ffe5854c0e5baa07e2d72d423589b0ed2f15eb0c200e73755688a80be4cdda80a752ba7bfb76e86458d7f1bbdf4a47ac21a1c8b09c951f9e4daf27 +DIST firefox-147.0.4-fy-NL.xpi 464948 BLAKE2B 45b22aab5dc08996a20fe84b6bbf262e3dcb64a9b8266a94fe36ff94fdbe2b041ba8f06221511cf034fc6237d5c39fd9dcef032079ba69b7a9602a7a0e789730 SHA512 abcd104504f6dd262da9a9a25459acf211b6464bf01253a5645301e7224296bca4ede3c7ca84dcc05d0da97d7ef91b54c4db07e3ae380178e5d1081eae3992b9 +DIST firefox-147.0.4-ga-IE.xpi 317060 BLAKE2B e43c2ed1808711f944a324499d660e7bcf0fe3a4103103aa5818ed4b5ae438b4adc21f07854edc568d9d18aeace3cfe33f6b87ef361b52cbc0f92f1e9129c69e SHA512 9cdbc3d98862e0b32e3775604ee978ac745eec761c75d346e749adbd223b7f3020b77eb2d9a505d308b00f0081808c0ee70dfb589b51ff86607718b2bd1fe15b +DIST firefox-147.0.4-gd.xpi 399448 BLAKE2B 0275220f8296aa98ab56e4b1bd75542942412a3db0c81382343ac2d64619a4f3c14507c073ebbf550010bf0920b00b7d04c3aad8a9c4e3386f83ab818a6a942c SHA512 7662fe0f9f7b8713530898ee97bef824cac6928e743d83c11c1abc6845ce2bf5df6505f541c75be60f24eefe3aeacad3acf3e3059f46f123943ca1eadf4d4fc3 +DIST firefox-147.0.4-gl.xpi 447913 BLAKE2B 05633940ab2589b156a6308f8d805bc4839b834e39956a4d08b92ba3af5c2d488d6c2bd7155f05430e65a8aa0ac4f0aeed6bdb73d497c79b54c360aebeec4d3e SHA512 4880128985f9f4cb20398caabf8aeba5f4f2c59d7b3f2c0f1acb883de0f8fb873eb0548a7f4a0edce3440f440a8fa06f06cfd40c49de3a9781f249858a8d4075 +DIST firefox-147.0.4-gn.xpi 473482 BLAKE2B e1802b8371fefc06f4ddc6787e899435973f919bd4c7410effb727060b7d8d0bf2b67a7df63e6fde924c085413f30b310a5cda6a4faaf4700145d59d80c578be SHA512 a1f8f63d8441a699161100c330d5f873dfe01c6497d460fbd070db2b17cb9845e9effc36f0eeca45b901d62661d612609de1fee2f913d775a73fc8fde95c765e +DIST firefox-147.0.4-gu-IN.xpi 359738 BLAKE2B 13029c4e3e1caaaaac8f9b4ca6a2a3ce960c0ee62e30d32413698f657db1a1fe606145bbf18def4b24db4823e7958d6cdaeab1e0abc605cad83839ebd885286e SHA512 cb8d3cee17f5ec5cf4877c7a97b32c96c1608c3b1ad52e40f19fa67c18215607316991fdf2775a60a8d70ab0fb767f87c7078a3ddca6413959c44fd815799743 +DIST firefox-147.0.4-he.xpi 468544 BLAKE2B 32f7a3e5fd050ce90d7af4e7ff9bcea02200b1f56639878ae60e1dce69e79ea9362ffc7211f4731551f4ea0c58a5a05088daff27ff5c54fd189b23b622c031d7 SHA512 0c8c791c9c57bf750de7b0d45017489955ed9f2bc3194b919184ef23b06bdbddad6e2ea85521a93578774df50a1fbab49080b9c6c2436292deb4120da85486aa +DIST firefox-147.0.4-hi-IN.xpi 378469 BLAKE2B d824ceb93e3c2b67c62da0b89ad0012aa59ce1f27243936cf5aa0e05bd31000ab5ee7c36da6bcc5cace25366a7e640c57441353dae4d41f2abca3c8cf7e6dec6 SHA512 a5b0939d562dffb831e4462045c13fab21478328624d89fcc33eb976a8b74b48c6b5de1e47d61c701d8152d1d6a195806a8f3f95bf38f517131f5d9768af4f5d +DIST firefox-147.0.4-hr.xpi 458876 BLAKE2B c0f3d96134eadef2315d89944111cabcf70bef6587e1edd154f1f59547954d9f42908c4c70c2a3186b3745bff08593662bc746fcb8e9b27d881c251e6706a4d1 SHA512 7537b37edadaab8994e16a6796d9c85e3163623a180ab39e7268ab60a9679c8b420ce85e04a767f7b41f50e0d3a4aae12aa33e245e270d74f7ec8abc6eaf822d +DIST firefox-147.0.4-hsb.xpi 487072 BLAKE2B b632534a013942a9fcdf21c9359b9a1f27a46ba136808e257b189433d7a7084bea172f9c049890927663853d1d2223ab3f1d36b0e1b1dd2207fdd856f4f7e75b SHA512 cf5829651c2ae25f31731f80606da03cb5850e6fd42e301786c37de73b4387128fbd0be225febadbf6bc429bd69730792903aad720b84470ba99dc2081ebce45 +DIST firefox-147.0.4-hu.xpi 490849 BLAKE2B dd30c7ee430b5d207ce7e2aa20a7a3bc52648b150b54662f5ad323c768e4f031a5f105bb84b32d7c36897356fb301e823b9b667e7786efe8e0a4bd21e2499118 SHA512 adc364d920e1d0fdcbf8fc60ac77d1add23af84afb460a4c9b08452e0ed441d62de1670e5a7558f3e7fa32c5ce5df16f357ee500edecd7de3d31d9da26298a37 +DIST firefox-147.0.4-hy-AM.xpi 472703 BLAKE2B 1daa9b59d43349a8cc39cb7f9ea8be5e6dddc583037049845cdc0f3313e8a22acdad03e8b6f5076816bd7fce512c51534a4bd9f4dfbe0ef83c0b0ef5c9414d85 SHA512 16774712f40a118ebf572685de06e8be7f590fecc35d0e3f5b108daa883496fd322e752e0e537576d6a665d140b6f4a09d4f9ccf4b3b7d3b4fd6230531d7f513 +DIST firefox-147.0.4-ia.xpi 452340 BLAKE2B afebe59e624cfd66ed4ecec52ba3e7aed6a83eee777427e0657d888734b09e226fbab68e495d336b041d41f6e44a36262cd44dfb5be3985a329e1766143998ec SHA512 44dbe5e3ce0df81b0e7cdd0ed401d8c4cb1754d17f0d2bf4c63dad4350994250404562e1bf530fbdb0aa37dc4c8bd4663bc67b2e267334cce509d3f2f46512a0 +DIST firefox-147.0.4-id.xpi 433187 BLAKE2B 5ae94cfbe1b0817e08055392c4c545ffe15e7b40f2cf57402eb07cf37de5ead7c67ca5d45c0ca98a25d4c17733a303ee77b66f3228d5c8a3072c9b13171d0784 SHA512 b09d773b2708eee67f024d013ec5687c39968ff0f91f4999e152f54eef7839c724304297d9296b41e03d60b8a912455462011dcfe38f317d56d53b415c621983 +DIST firefox-147.0.4-is.xpi 441228 BLAKE2B 823e20c643beea4c41fc2af36719570b3f7d11de5eeeb098aad39778f353a57cd701afa93e422565ffd9306b23f22b56ccaede7738d72a43b722f8dbe013dcfc SHA512 f9d0dd2384c5bac53e5fb3c5b57d3854bac513e42a1d74a1b5e61e6674da298b7533c680ab0adcba10464b19eefe80aae8ac246b508b66a832631ad1f2ace28b +DIST firefox-147.0.4-it.xpi 463745 BLAKE2B 40d09ebafeb8573f2d8e5b25c4496b2466ebfdd0e4970f2fc3384d1e5d5f3e6d7516972da8c1e7be7f471b86ed46a8844b0d6c05c2ce7221f6e733e03758ceb6 SHA512 a51da6c581323cd988aa98a676c44e76d0e77832ea4a4a9d2f35db38c65e8675302ae02033cd5ed57cee1fe1de50090136ffc66f077b48167f5d381ca28abff1 +DIST firefox-147.0.4-ja.xpi 505789 BLAKE2B 6f2a603ba1fc03615d3ad6a0cad951c1ea008066b4ef555ed62867876c1b31947f17f936cf6561007edc6a85565f3dc96a737d5623a1e7562998caf06d782f3c SHA512 9de802cf98d1211f1eebd26f5f371300f9187eff3a17851c5eb8f64e64b5f655f2cb6a15e7b72b774c5304fd53921f4d74a56c0c0d9aa23756b53204e43a77f1 +DIST firefox-147.0.4-ka.xpi 521274 BLAKE2B d77bdee8e16232b4c901cc7142f7f61e86828c7caf7cdc1e849cb96084156e2dd04657b7a72c25018992fd330565282cfbb5fac7ee0c61114ffab1f55f66c00d SHA512 8c3910ccb9affd5d9c5cbdf54838aac4c051c4bbd525324196ce05f69ab415e64115f937f4f9e94f1ce845af25286095e0069cac2ca8b4e048ce5e64871b3bec +DIST firefox-147.0.4-kab.xpi 427535 BLAKE2B 38fb7f0ad768911522fc2d7a18977b66c9c87f037faf08f4ca864a0d0309c2a4c54b1c543984ebfbddab376cca9579871c4b97a36f248c5713199474741da9d2 SHA512 c5daf4f2d724ff64c28fe11e3d17e1b423b667806497c44ecd5af44221d7428fbb99fa8f59815539b9568adf8c6e1e6449ac48bf1513b12d31410420079d809e +DIST firefox-147.0.4-kk.xpi 541310 BLAKE2B dc99ead6c81894b594fcdbd0e520df782ff186e023aeb902f433570736d97eb5703df29412c0c598134e9aca82a567324fcaf05b1f979d78bff7caf4e4faa991 SHA512 b3e26e83fa9e4b59418f6bef5d4c317759290b1586aebd264e27a220ab650a314b55f1523207afd2ff9c079587334721a99b57736af9e37eb1c40f993ce79fa7 +DIST firefox-147.0.4-km.xpi 349287 BLAKE2B 1c5689c32433c4f6f5d1734a61f2eb25bc74b10d8dfa331817bab08edaa3ce10b35bb300053d3fb0bd767edccc0894eb4679ddf784318241ff917a055fabef95 SHA512 187cfd3931db7b97592105946b05d6693f66161a4ceca97963eacc03a26da3121a2c7db4b75da2a64bbf4f6254cf5f553696c40a23998666a65a2f1aedc813bb +DIST firefox-147.0.4-kn.xpi 333593 BLAKE2B ae5f2f2eac75d33d12b5f383ec603680ec7163f326fbf6cb70b83637867147b7456b22a1c47366622a42f82d3de9847b095f11338fba152fc12e11eb8af2f304 SHA512 2d9e13153ef112f4501cd2d1df1158ca1bf508af9ec9138f802e10af7448155c68755d59473a2787873ae66d2ee7bb4ba150ceb293ae844e3bcf3f2b4a27f85f +DIST firefox-147.0.4-ko.xpi 491176 BLAKE2B 197b3358f9573d911727588e32b717ab970df72737f5325d73a6bbf3d7ab0f68f81e8239073e69c41629fd6592498c9539ba4b1c4328db32fc7372285e0945af SHA512 c4223f82cacc37c4d925cbc2036c14b97c2c3b0ffc76096c7d89ed38d224134aa2d4d3ada88992bd67f1e657a0b79296739d69a34d38d8a0ac590f10d7c49f54 +DIST firefox-147.0.4-lij.xpi 320643 BLAKE2B 871066b644a993cde5803a8f0485ed80745d126958b6b6104ddf27b773f937031a1c969121bb7bcbec36641974f5e423e204d602cfd11a50ff0ea0b73254673d SHA512 0be796eb1542df46e752b2ae3664367f774f23d7748eaf738de3fa878870ccfd6f2409be75f20c702daee4083277c586fced6cd4a3ed2803fb4a471d0545f159 +DIST firefox-147.0.4-lt.xpi 380538 BLAKE2B f8eb90ab8357f544e5e0fbae27194803c6cc089f191ff363f12aba79fe5cc4b5ef8f5122766f3bd55e18d619c4fb0d789862e626dc76bb9c7f6c913e64a75a5a SHA512 c2f6dbe015d3d7768532603c6e426c3e40d441ef227c00959d25ab905d7c2b20d06238cc5ab1e5c2438b82d0eb9fb595c864ffc6f4eb3b442501a089e266da86 +DIST firefox-147.0.4-lv.xpi 391453 BLAKE2B aa4a1e4c5037c07850de8f82a70abeafb290ea7f0bff64d1d5fddd441a620ac5e8a11a514389295d9556ef7bedcb79069bc2daae5f3f9f6e751aa2727fc0f10a SHA512 2d1b9953406307c914f5ab46bf6e019daf54140de068e682ba1932264324d1a08b1f0b6c3a981e5367c50fcffb6b627c3d4ae4fbbd7a171b0a67c44a213bba58 +DIST firefox-147.0.4-mk.xpi 318213 BLAKE2B a4be409374a2c0e12d213d648bd4d81fb53d6047b84d0c59685dd23e2d62993bf4be3acb8bed80fd7de0020eb9743f77b9649abd496851315527145a541fbd01 SHA512 a7600a600f2ed04b135befd93fc0d92a0e1664b9692a49b663cdd77d2310245e501c83d28692cef350a6a7c665bc3bf04ace79e7c10001af8f271aeb3a409544 +DIST firefox-147.0.4-mr.xpi 357569 BLAKE2B 3c8b99b40200bc722cfa87b29e9b02cd984f26793b0553f6677cec72ea2cb4c09e4c3556532fba1af80da93e15dccfb291bccf1eadfbcb9184c21546c646280e SHA512 6737ccbae37b758e419b6aeaf7947aeb7b420b6309a9353331419fcd687b8e10a8a6fecfec9ab44848129435e5cbaffa4bb3e3ece6b7d427935a30ec48d9b704 +DIST firefox-147.0.4-ms.xpi 297210 BLAKE2B 54e79238ac7224985b7d2ca9d1fd1b198f4c8302d365b820e0cd99558c441fa09625231ebbc36e7a2e68fa70bf14d6c2d0a511eff6cadd39246033973058ecd3 SHA512 70d586a9ba5e9f2e8aaee5d4e06801987ecfd3559565ebad2bf95ce3852de7d62ab70322c9e2e8b328cd118aa6585a910f415dd8049d0c29dd98a06dfb1085a4 +DIST firefox-147.0.4-my.xpi 344481 BLAKE2B ce8a41347182212f4b5f4177882dfcb350fe8c1437420a9cd7661f22908cea9b5c32203019cd100c8025b0485ac78ffe7d6bde5073369710f9ebe7a3fae99f3c SHA512 796bddd5b203591690df94ac353c23b9656afa550487100f87de3040b91aeed3f31505a8e7e8d3ac4040abe26fa5101096c8a83964a0572d536a22ddb3dc122a +DIST firefox-147.0.4-nb-NO.xpi 451562 BLAKE2B 9a5012ba671720fafce2e8e0635361f1ffcefef6356ead47723e0bf949d2c4cf92b98c80edd59228ea1b84a338ed9841dd99c4de358a453290f5c562a9ed7d2a SHA512 a812dec493c23dea459a000f5d67183771f20353e4e5796398c2ab44c73c417713730a708c95f497f6dd59c34590031ab00428050263ce1d0c0d8f23ed1658e6 +DIST firefox-147.0.4-ne-NP.xpi 349638 BLAKE2B 86ff7c58dd639ad48f348e19a449f8e3967af6b8da18ece29bd9207ac71c283a95c7c5211bad4c7f17af107845c8d1aa0c15e6ce6972f718b18b5b5e5e37cf72 SHA512 46b7d867017ccbed4e80477b6d47f8e98e4e85e6e935f526d917d6bb199c8e3484c80f3eaded9a6645a1203607d14269e7f54f00b5b0e6dfe2fbd092419aa05c +DIST firefox-147.0.4-nl.xpi 458872 BLAKE2B e7f150e7ee02fe6e39defe3183d408a940d83a6e9448f7572a38a6e0e697f9dbc7ddc34561dd9d08162ed7fe889f68472eb2c0a377c0f48bb63ea60676637707 SHA512 b62f3cd535a41ca1255aacf486f693de2eb9b388536f300ed3c7fb12f8415420d2fb98d8d05d24aaa616913528da21b8efac0eac154315a4479368080d72b358 +DIST firefox-147.0.4-nn-NO.xpi 454771 BLAKE2B 6fa2bdc4444dfd158b45cf9da37c85c7d697cb0a362ecd70a7b04c3ffe1a3082c2982ab55455b41a9804a826f5ddbf88005b6dca1d7b352fd818bf47e17140c9 SHA512 69338545270c696fa57ad7fc7860337c79a2e4ab49f09375bf451bfba16f5b4bf05d53ed91eaca18e4e8072bdec68ad5252f92f8693726315e9d7dace1707ef4 +DIST firefox-147.0.4-oc.xpi 411254 BLAKE2B b10e5448095bf293a0a0caf2fa7f93f3fa843b51043a7b70e7e336fe305734f00f638a46b5e2acb76b924fafc985deb5c561b172d89c6eaf9f7e6a1cbcb937c9 SHA512 032c5a9c003de21080b1e1354ad483e9a530bb3d2489db96f23330d19bf5e952c8423ab52b30c38b00abceaaea93e1671570002f2dd86b84232edb6d465dc480 +DIST firefox-147.0.4-pa-IN.xpi 520340 BLAKE2B 20419e039f25a9efca265c8098d8fcd87547f492011a155a05fbcb6a43828b8af72a6f17348a654b6ddcbfb3fdd7cfd8edbd0f18efb1e6b76474f618f9647ac5 SHA512 685411106bf89190ab6147a1c7524e4d9e59a75ea22533849dbb7ecd0f922c3fbae489db96257e20bb4e1515b9ab44424e5e8188d3e21f4d6e31fa2e3141dc39 +DIST firefox-147.0.4-pl.xpi 488093 BLAKE2B 4eafad8fc1367e0fdd044c18231e17e97abf3a96032a413a10466ce1c3b498ed7ea2a3d569e08c6a0b6243e70295a3d33a939e370553ce08e4cb7459a923a93e SHA512 0cdb2054505f99585162aed5df7b4f17968ac0831a712ad68de09d6f94d1ea8662496151dbdbd322d8a966346a52d8fefbba8ceefabf565fa961a99adc81cd56 +DIST firefox-147.0.4-pt-BR.xpi 463356 BLAKE2B 9d2f7590ba348317dc7464e5ae4db00ad6ee69ff971bbad05a4e908af9372cd7e1d58edfd6072c2c95a8bf7cdd1d6e64f93e0ffb7e5f311a9d7eed627d6bcde2 SHA512 1f6fff266a348e8bb45c2a8d52a9aed01c0c44bc48847c7020c849fc0b0d8b553cbd738d435e820872e3976cf4d10361a023deb5df3a630773c748ad272086cf +DIST firefox-147.0.4-pt-PT.xpi 460510 BLAKE2B 01914a75b8364a45d25051ebf3997fd6d13b3bdb715e4ff3c6f0d66fb1c68aa99bd319acf6f89f1e5bd1345b51f81cb4c4621a4a7cb044b3bac16c638edfec8e SHA512 12f5103be62ce6f4da8956f8e1fb14545179ad3e8de1dd84d7c5da24c5b32f08a2cbb736d4debe5483a34c189ed53fddcb09f541f76706f96eb798867af2bfb9 +DIST firefox-147.0.4-rm.xpi 456411 BLAKE2B f2d0e1beef2fb8fc9f4deb0d3081f5226a917e7ddf28345cc34102dea7974338f1dc1104a7311f4bc7965af59f50c530f290f2ada0fa41c338ee909bcc41b89d SHA512 7f1297cfd84938d78879c6d23ac6e70580ad219620a737f265a25f386a67a69c5142c5db0986cbac00ffc5d472bcb004d5440a44d1d50fef3aa41d66864cfa1f +DIST firefox-147.0.4-ro.xpi 476235 BLAKE2B 1c8e8bd68b289745547d7270b294e0540b07d6eaaa27a71e98a4fa08a68a7e26fd14a93be892d18f38d4eedc0c6891c5344bfc26f1b45fcceea5b0b04b305896 SHA512 06998026bc13099f9a58e445cb77644825ef65881645a723ff2ec9d5e915248a78797eb48376191ae8b4a787fe467ffa37f99cf739f4daecdcf55028d844b24d +DIST firefox-147.0.4-ru.xpi 553268 BLAKE2B 16d5d64831ec2e61690b8acc3bf411df5ecfdec780b4b16fc415d4fff65588748fb844934aab174c57864da95f65eeeaa77d2a95f1216ac4622d134c3c4799c5 SHA512 b598179dfd23eec0d23c06207121c784a8f89da1bceca22362db1c4a1b5cb70df70d0abde91041cd701ac5e25e829b47dd9a35a9ea3d350220189d230b4987c2 +DIST firefox-147.0.4-sc.xpi 423919 BLAKE2B bea5e776591c8711e7bbcf9409b40ddc05b1b4156468a22d24f892dd62a7eb811ab3d3d83ef803d747eddee8147b3af9e045c6c8a6f6e96fc3d77e46da117480 SHA512 d8c2906e72ce316947ded5b3b724355bb6224785f4d853123195ecf3f5ff7af69c0cec6e716464a495f93385e09f3acc3ff4935aaaf3682efa17139d48a2c9c9 +DIST firefox-147.0.4-sco.xpi 323631 BLAKE2B e68f04643e5822e4eeb48d1eb3250ba1e67d700662f9dec9d231680b55629733a6a12575e02bd9f6339bc53b5c5c96e764c5f659a3f9570319952466129a346b SHA512 996564b92ea3dbee2ddb0d5faeb42e7893b2e2cc0d2e030f3ad215bd085d35e617c4cffe7af687bdd73e0ef691d8a86b443100c0354cc246f79be9f8fc18e45b +DIST firefox-147.0.4-si.xpi 410471 BLAKE2B 93687a44c963b24fb758c775d8120f18a2d898c93d643db7bd33a9bd9fa04754fdaa3180f491675c7bbd6a0c524e10c079985e5cacb732957eaa12f1144ac2e3 SHA512 08ef28d0c7a08fe66e6492a558770cd8c4e37707c5c7c21592aa0c41a21dbeadd31c80d76d9fef6434565f791316477a43ddedf6e2585defc407ee130d201a60 +DIST firefox-147.0.4-sk.xpi 493509 BLAKE2B ccdae628aec113018a8ee3ec2d2755f6d646953c0e53f173a252853b06782321fc4da8c187b875bb58788aac9a751cef59142768897b1dad923ae55260f18758 SHA512 4ac96b503355809210ad2d0525e04a1e1a715f85aa62e5c6eccd34631b28b18348343ff287697b61e4284ec80071dc3f4bf4f28aac5706c5820f47098f92b312 +DIST firefox-147.0.4-skr.xpi 484858 BLAKE2B 809fc538a521991b0b7c77d7ca8707bf8f8152421713d3bea441728089191cf5055de9451983155a4c0ebaf9c875e71b116228449dacba5c01a76c5ae8084712 SHA512 008209b438e10d2e278d9579e8026a6b5021df8a3358352b7c5a913bd1bac762ad09464af7ded70eba292f25bc387046747a8da4aabc2a9afa0ca3db061c627d +DIST firefox-147.0.4-sl.xpi 461498 BLAKE2B 3aa40dc4a6fae675ec705067ba35033bb34843312b5fd0a00def17772e05eff83ecf18552450a829789a371c4730f0f9d1ccd6f0c06d9420f4ffd43f0a810c76 SHA512 b6b5519e4793adb3640b71fbffdfeec1d9b57a220e50eb841ef21c41c9f8fee109673ecf9936195e8dc2aa822609e43a3636cbcdda5fffb8297046bddd9dfc72 +DIST firefox-147.0.4-son.xpi 275635 BLAKE2B 6777ba17a459c18126b29e6a61fe1c51aa25f411429347cd9fbb58b3ce28aabf050f6efa61425787a9d750cf52ca62a9c4ef832928d469fd178b09f063840049 SHA512 aa71521ea71a234c6143aa83e0ad868b7b6a60fbedeb4ebeed2440049acf3b3a0ddc505ca4a2b7772d46708bda02ff29b5ef368d7c5aec34e61c20aad654f10f +DIST firefox-147.0.4-sq.xpi 479970 BLAKE2B 79e6c2b66f460eea3594977ae797b6916d44f49fb30badf7d7fee75206d3dbd76bf01e47e4cd0045e7373f9b27e9d89d837b4da0e9f0dc627d8c55391ff93773 SHA512 06bddc9c48f046154be4411d9b96f02bc896736c1caaab2549bce51ae87b8902c23608d8fd57b17632457b8d07f94b9be02a6630cb4e8838d9c2bf4720a667fd +DIST firefox-147.0.4-sr.xpi 452649 BLAKE2B 3082a9a8d1db71245f740cea27c6a0cc1518f61cf3a8709a3ea320af2cdf85be76be94150563783492af99ba0a9a38b32daaf55008b84d10bab4bf77672cbfce SHA512 c13afc058ff0295b3c80e0a70f44fef28954996498ca26dd82b00365c7233e1481b20c1edfc8b8176847a1aca53c418e9853cb22e5e35a2293eb562ffd95c3a5 +DIST firefox-147.0.4-sv-SE.xpi 458672 BLAKE2B d1d2cc31dfefe7065966541e7f8d221b4549abae66ff93da7aedbe41085b9da67800bd2e685d5057c43dc5ec60835d7d332995a988a4f6a69880b379f06b5518 SHA512 d9406e9978e17442ddbb1d14fb9324778d57b78be57777254109b5ea884e8688a0a27ab073ee3b640e8c8a140cddf5095cd017351169334dead6d3cd293ef497 +DIST firefox-147.0.4-szl.xpi 342181 BLAKE2B e4067335b3ad8fbc956519dff7b8cc4521d4092763e0073608218b963fbb3d1abd8f59b134e27cb4cc7a3ef754f5d765fad3602f6f2cc38983f73eecba35cda4 SHA512 58aa689ce8ace9feeec289466cd8bfe11226c5d8fef4d7de304b7b0222568d8c8832db012fac02c05a78e21faf157b00ba79fd68b7d929182f613fc2b17da772 +DIST firefox-147.0.4-ta.xpi 339617 BLAKE2B 0d7d1fe5166b2f0a908b5a46a1a4b73c12ab61fb037fd5ebe162a657bfb9fb5f34228c790898a5e378fff93cead40141ba585f6469f9352318a3a273e1c431da SHA512 bfc47e052c523a82737074d3fc91fbfdceac820063e2a811c393d96c86a1d80718565d7b56a950dee85a88937901af458208bab33ce252f77c10d89b25a37833 +DIST firefox-147.0.4-te.xpi 382691 BLAKE2B 205cb55c2deaf31479b94b4afe98f71ee2d9b502264b7699f2d13fb7124f81d56d86895a5ebadba756a20e76bdeae755171a32727a8c5316d5ece8000064c093 SHA512 cdd3151e4fc0635c593cf881fb783b40fbb7b4d122f88f9a25451ec06c8bc2261b48fbc343dedffd17d7e3c818ba6a21d56f1cf744f62e208bc81467d0cd7a59 +DIST firefox-147.0.4-th.xpi 530514 BLAKE2B 3f4c5c0bc2ea13ce94e08d310237ee2ac99ccb0fc9c15fd09f1f232bad50d74e92ca3731e1b833c661a3a77338f50396282befd411035df948a72f021feb1536 SHA512 951bcd2333c78ff971eb313df4b1bf173e795e519bd7783f60b0cd5fc4121656af5bd7e1de79787c6ae7ebb2b5a1d94e414e57cb67b14cc4a5586d0591c32372 +DIST firefox-147.0.4-tl.xpi 356874 BLAKE2B 986ef0f0c6f06d853583508c8ebb78bf5dde68922c7e960271630205b1d995cf4e22432eeb66adb24da1bf23df82effa4bca5cf342b5dbf35711df293663444a SHA512 3018041dd833228ea9d1d5dac84bfe47bb2d9f3d77b482bf7f3ab8442242a80ef1185ee561dbc7518950d05a10556f2adfa6f55767427b407061529650d0b5c6 +DIST firefox-147.0.4-tr.xpi 472582 BLAKE2B e27341577296d7136727d57bbf8f616fa8e4937505de3429dddb5b4dc8c6dbffe6518afa209eb1a943745b37048f3bed5aa612312bb116741dbef484951952b0 SHA512 72d27f52b968a3c8ecd2f040fd68ef89ab76009039782468c1a607f2c1e846085b2a47bc12d61179881a8fc5f6e02857118dd04aa03684cfd2a36c3595c8187d +DIST firefox-147.0.4-trs.xpi 325446 BLAKE2B 3ba835ce657049a5d76995661a010acf86b341a3e2d9a1c7bf34fa378b0cc414644a0415d83b71877462ec364ea316fb7040705c2375b5a4661dcd7169ac7671 SHA512 2364e6f0e20a3eda5d314ea417d7059879c4103a36108c9be6964de2d591074b62b2ba899b7344fc9f3c2bf7fdfa336d1e837ca3fef5d2691950e222b554d11d +DIST firefox-147.0.4-uk.xpi 540531 BLAKE2B 7a87cb550e229624f18d1fbeb908b096293371b5410f85afab684f5a80c3c3eaf65be1ef98bac738b8135672c9c50d6cad5f5d0c9ffefe6ae977f37742a5cc39 SHA512 ab6355bba85edae76f6d1359dd468c75aafdba0a2c25f748b84b723f1893b94e23636fd821daf00d966d19792217c7d048031b1b20d46d8b6c492c08781bb511 +DIST firefox-147.0.4-ur.xpi 371423 BLAKE2B 000546696b153853f12958f8648402778704f7c62c541785f259f8b4e9b47827d70a2221b664a18793e706beaa780eb0267c6ef34e391dc016aaa4d14baa9b40 SHA512 3a2ebc059ad72994e87319124c64b563b31342d4b2835ec036bf899e7602601b19fb3ee8580f845a43a6bc40cd75bfe201a3e7dfdad9f5fbd159de18b0088e5b +DIST firefox-147.0.4-uz.xpi 304848 BLAKE2B 325c6d04817a647db75d888c57d17f3f9d4f99a6638ab50954ca1a67ed0f1a9e238c63d8946b10a31325ee6b065885766b20b1d8d255e8aa3ceda2575718dffb SHA512 b5d231133193278363127f7a3166e3918f37beffd6d1568bc7d63d16c198e1a114fd26f962eded364ef80e6e7e88c0acf4be7840d7a13d78c6dd7b65d4fb3672 +DIST firefox-147.0.4-vi.xpi 492943 BLAKE2B 8e932097585e58d505d23a76aa86c2de307f4b6e4f78bf5387264f0952cf1a274280e97f3304afa85eb8c5fa70cdc344d6d60efd82fd0f315afd2812772a54b9 SHA512 3cd26b25f9b27b815a19236ec4d13adc0e83b57751355ea9b349c4f39f4d8cde0ebae3df93eb2322e628e378ecb3a203a120146dedd29cdd9baea647b6a12022 +DIST firefox-147.0.4-xh.xpi 275239 BLAKE2B 2ca0098a5078ff69225d8b18535809b536ed4bb3f5c5d58a3a9df198a78e3575952a9d1448f2514416ab559b5493e917651d2c1e59ede7c8ffdc9baf9646488a SHA512 f9e0e82b4858a34a0e5e84023ee758291897aceb338385ce76633769266a42fef9ae5beedbc70a84c6735d96def0db4c27a79ac5bf11148ea5ab5cff1f95d87a +DIST firefox-147.0.4-zh-CN.xpi 483916 BLAKE2B 16097dc0e0548906c6ee9a597db3ba7551776dcd56b05d6bc27b404fe4e8fdf1f6554a6f89222391d40ccb57da592c0d6d5ca8fd8ff3db653b807740cf6dd84f SHA512 fc981e8ceb43e87efe93604f1fd49a4f58f16e826f116b8e24d24a0204133bc254f4f733ea4c13b9d221180fc13baf8f60aad4ca5bc943b03e46e7d837bff9eb +DIST firefox-147.0.4-zh-TW.xpi 487262 BLAKE2B 774b28b7e29eeb962e0495b39c8945a9c88bb00a944d425d75b6ea6a67143f3a2ef273bd7886b361251a316083db33b32800dba67f4e3f62d1ee4226b9a100cf SHA512 8d619d9cfa5e86cdc4d33a5191c9b316f7d87bc257691b71a3e67971999cd8b537b0706b17076999ed86714636ad011c65c5ea2327b0e5a87ccdb07e3b76ec2b +DIST firefox-147.0.4.source.tar.xz 659531384 BLAKE2B ede1c530139bffa5858c1146fee5fff1b2cddd7836be4f4a1dbcabebfa61ba5f29d9d9c104524ac6a6baf1c870eebddf921839eea65fa560b67c5bbac6bbb593 SHA512 981368916582e1566594ab8e2c03cab471aaf04613d2c77a0d4e067ab159bb81b5929a801bbac20ef0506ef048cde91b2e2f89598fa8d4e8d66a8c8016bb9b33 DIST firefox-147.0.source.tar.xz 659319748 BLAKE2B 8d5e474bc37d7bedd20953a6c519129fa1d56912ef1ffd06582c8db9128e714239173c954b6f5f13a1fe7740d7391c770c684562108f7fd79900d0bf56c4e12e SHA512 ac9017b1a2da7b2f139392c394c36341fd3476e3d4ea1a3c7e5e7bf100dc30d185132ef9256be7e6b0f9dbfc69234ac571ea1fc6db9d84543b15772f4ec85161 DIST wasi-sdk-28.0-arm64-linux.tar.gz 121761064 BLAKE2B 044a93cf1790dd652a86927bd74cf2a8b081a8db1261c2879d7fa72d5efde6a1ef65be63ff94c94d1e39d179ab829eded95121e2f6fd6c8f83374690763d532a SHA512 5ed16fdcdfa573630a75986cddde5ddc6a7e010ad9ad20cfa939becb78c1cbb0740fd1a53064e3d358b929b7b9ef6264612644293a1840c54a3e1868b4c15d7b DIST wasi-sdk-28.0-x86_64-linux.tar.gz 121193888 BLAKE2B eaefdd7f0432b3a2432e09fce659282e1e1a515a0b31f63cc2d48953e180229fe494deff2e1019f60ab38179f7f93e6dd13d4763355b706e5f447efac1e5f08c SHA512 805412c73b4b2d3c9df9af25b95dd2ed7625dd1b4424bbf07286caf24fc87e54aee1fbb4fbe3904f180a7cca9decf00177915860ca216e87421d8c91a0693875 diff --git a/mail-client/thunderbird/thunderbird-140.7.1.ebuild b/www-client/firefox/firefox-140.7.1.ebuild index 6ff755a1aea7..59034aca8cd6 100644 --- a/mail-client/thunderbird/thunderbird-140.7.1.ebuild +++ b/www-client/firefox/firefox-140.7.1.ebuild @@ -8,17 +8,22 @@ FIREFOX_LOONG_PATCHSET="firefox-139-loong-patches-02.tar.xz" LLVM_COMPAT=( 19 20 21 ) -PYTHON_COMPAT=( python3_{11..14} ) -PYTHON_REQ_USE="ncurses,sqlite,ssl" - -RUST_MIN_VER="1.82.0" +# This will also filter rust versions that don't match LLVM_COMPAT in the non-clang path; this is fine. RUST_NEEDS_LLVM=1 -WANT_AUTOCONF="2.1" +# If not building with clang we need at least rust 1.76 +RUST_MIN_VER=1.82.0 + +PYTHON_COMPAT=( python3_{10..14} ) +PYTHON_REQ_USE="ncurses,sqlite,ssl" VIRTUALX_REQUIRED="manual" -# Thunderbird will have separate release and esr channels, matching Firefox's rapid and esr. +# Information about the bundled wasi toolchain from +# https://github.com/WebAssembly/wasi-sdk/ +WASI_SDK_VER=30.0 +WASI_SDK_LLVM_VER=21 + MOZ_ESR=yes MOZ_PV=${PV} @@ -35,6 +40,11 @@ fi if [[ -n ${MOZ_ESR} ]] ; then # ESR releases have slightly different version numbers MOZ_PV="${MOZ_PV}esr" + HOMEPAGE="https://www.firefox.com https://www.firefox.com/enterprise/" + SLOT="esr" +else + HOMEPAGE="https://www.firefox.com" + SLOT="rapid" fi MOZ_PN="${PN%-bin}" @@ -42,11 +52,8 @@ MOZ_P="${MOZ_PN}-${MOZ_PV}" MOZ_PV_DISTFILES="${MOZ_PV}${MOZ_PV_SUFFIX}" MOZ_P_DISTFILES="${MOZ_PN}-${MOZ_PV_DISTFILES}" -inherit check-reqs desktop eapi9-ver flag-o-matic gnome2-utils linux-info llvm-r1 \ - multiprocessing optfeature pax-utils python-any-r1 rust toolchain-funcs virtualx xdg - -DESCRIPTION="Thunderbird Mail Client" -HOMEPAGE="https://www.thunderbird.net/" +inherit check-reqs desktop flag-o-matic gnome2-utils linux-info llvm-r1 multiprocessing \ + optfeature pax-utils python-any-r1 readme.gentoo-r1 rust toolchain-funcs virtualx xdg MOZ_SRC_BASE_URI="https://archive.mozilla.org/pub/${MOZ_PN}/releases/${MOZ_PV}" @@ -58,35 +65,39 @@ PATCH_URIS=( https://dev.gentoo.org/~juippis/mozilla/patchsets/${FIREFOX_PATCHSET} ) +DESCRIPTION="Firefox Web Browser" SRC_URI="${MOZ_SRC_BASE_URI}/source/${MOZ_P}.source.tar.xz -> ${MOZ_P_DISTFILES}.source.tar.xz ${PATCH_URIS[@]} loong? ( https://dev.gentoo.org/~xen0n/distfiles/www-client/${MOZ_PN}/${FIREFOX_LOONG_PATCHSET} + ) + wasm-sandbox? ( + amd64? ( https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-${WASI_SDK_VER/.*/}/wasi-sdk-${WASI_SDK_VER}-x86_64-linux.tar.gz ) + arm64? ( https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-${WASI_SDK_VER/.*/}/wasi-sdk-${WASI_SDK_VER}-arm64-linux.tar.gz ) )" -S="${WORKDIR}/${PN}-${PV%_*}" - -if [[ -n ${MOZ_ESR} ]] ; then - SLOT="0/esr" -else - SLOT="0/stable" -fi +S="${WORKDIR}/${PN}-${PV%_*}" LICENSE="MPL-2.0 GPL-2 LGPL-2.1" -KEYWORDS="amd64 arm64 ~loong ~ppc64 ~x86" +KEYWORDS="amd64 arm64 ~loong ~ppc64 ~riscv ~x86" -IUSE="+clang debug eme-free hardened hwaccel jack libproxy pgo pulseaudio selinux sndio" +IUSE="+clang dbus debug eme-free hardened hwaccel jack libproxy pgo pulseaudio selinux sndio" IUSE+=" +system-av1 +system-harfbuzz +system-icu +system-jpeg +system-libevent +system-libvpx" -IUSE+=" system-pipewire system-png +system-webp wayland wifi +X" +IUSE+=" system-pipewire system-png +system-webp test wayland wifi +X" -# Thunderbird-only USE flags. -IUSE+=" +system-librnp" +# Firefox-only IUSE +IUSE+=" +gmp-autoupdate gnome-shell +jumbo-build openh264 +telemetry wasm-sandbox" REQUIRED_USE="|| ( X wayland ) - debug? ( !system-av1 )" + debug? ( !system-av1 ) + pgo? ( jumbo-build ) + wayland? ( dbus ) + wifi? ( dbus ) +" + +RESTRICT="!test? ( test )" -TB_ONLY_DEPEND="selinux? ( sec-policy/selinux-thunderbird ) - !system-librnp? ( dev-libs/jsoncpp ) - system-librnp? ( >=dev-util/librnp-0.17.1 )" +FF_ONLY_DEPEND="!www-client/firefox:0 + selinux? ( sec-policy/selinux-mozilla )" BDEPEND="${PYTHON_DEPS} $(llvm_gen_dep ' llvm-core/clang:${LLVM_SLOT} @@ -95,6 +106,7 @@ BDEPEND="${PYTHON_DEPS} llvm-core/lld:${LLVM_SLOT} pgo? ( llvm-runtimes/compiler-rt-sanitizers:${LLVM_SLOT}[profile] ) ) + wasm-sandbox? ( llvm-core/lld:${LLVM_SLOT} ) ') app-alternatives/awk app-arch/unzip @@ -115,7 +127,7 @@ BDEPEND="${PYTHON_DEPS} x11-misc/xkeyboard-config ) )" -COMMON_DEPEND="${TB_ONLY_DEPEND} +COMMON_DEPEND="${FF_ONLY_DEPEND} >=app-accessibility/at-spi2-core-2.46.0:2 dev-libs/glib:2 dev-libs/libffi:= @@ -126,7 +138,6 @@ COMMON_DEPEND="${TB_ONLY_DEPEND} media-libs/freetype media-libs/mesa media-video/ffmpeg - sys-apps/dbus virtual/zlib:= virtual/freedesktop-icon-theme x11-libs/cairo @@ -134,6 +145,9 @@ COMMON_DEPEND="${TB_ONLY_DEPEND} x11-libs/libdrm x11-libs/pango x11-libs/pixman + dbus? ( + sys-apps/dbus + ) jack? ( virtual/jack ) pulseaudio? ( || ( @@ -146,11 +160,11 @@ COMMON_DEPEND="${TB_ONLY_DEPEND} sndio? ( >=media-sound/sndio-1.8.0-r1 ) system-av1? ( >=media-libs/dav1d-1.0.0:= - >=media-libs/libaom-1.0.0:= + >=media-libs/libaom-3.10.0:= ) system-harfbuzz? ( - >=media-gfx/graphite2-1.3.13 >=media-libs/harfbuzz-2.8.1:0= + !wasm-sandbox? ( >=media-gfx/graphite2-1.3.13 ) ) system-icu? ( >=dev-libs/icu-76.1:= ) system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1:= ) @@ -169,6 +183,7 @@ COMMON_DEPEND="${TB_ONLY_DEPEND} net-misc/networkmanager net-misc/connman[networkmanager] ) + sys-apps/dbus ) ) X? ( @@ -184,7 +199,12 @@ COMMON_DEPEND="${TB_ONLY_DEPEND} x11-libs/libxcb:= )" RDEPEND="${COMMON_DEPEND} - jack? ( virtual/jack )" + hwaccel? ( + media-video/libva-utils + sys-apps/pciutils + ) + jack? ( virtual/jack ) + openh264? ( media-libs/openh264:*[plugin] )" DEPEND="${COMMON_DEPEND} X? ( x11-base/xorg-proto @@ -192,6 +212,19 @@ DEPEND="${COMMON_DEPEND} x11-libs/libSM )" +# ESR and rapid dependencies. +if [[ -n ${MOZ_ESR} ]] ; then + RDEPEND+=" !www-client/firefox:rapid" +else + RDEPEND+=" !www-client/firefox:esr" +fi + +# Allow MOZ_GMP_PLUGIN_LIST to be set in an eclass or +# overridden in the enviromnent (advanced hackers only) +if [[ -z "${MOZ_GMP_PLUGIN_LIST+set}" ]] ; then + MOZ_GMP_PLUGIN_LIST=( gmp-gmpopenh264 gmp-widevinecdm ) +fi + llvm_check_deps() { if ! has_version -b "llvm-core/clang:${LLVM_SLOT}" ; then einfo "llvm-core/clang:${LLVM_SLOT} is missing! Cannot use LLVM slot ${LLVM_SLOT} ..." >&2 @@ -218,13 +251,52 @@ llvm_check_deps() { 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 es-MX et eu + 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 ) +# Firefox-only LANGS +MOZ_LANGS+=( ach ) +MOZ_LANGS+=( an ) +MOZ_LANGS+=( az ) +MOZ_LANGS+=( bn ) +MOZ_LANGS+=( bs ) +MOZ_LANGS+=( ca-valencia ) +MOZ_LANGS+=( eo ) +MOZ_LANGS+=( es-CL ) +MOZ_LANGS+=( es-MX ) +MOZ_LANGS+=( fa ) +MOZ_LANGS+=( ff ) +MOZ_LANGS+=( fur ) +MOZ_LANGS+=( gn ) +MOZ_LANGS+=( gu-IN ) +MOZ_LANGS+=( hi-IN ) +MOZ_LANGS+=( hy-AM ) +MOZ_LANGS+=( ia ) +MOZ_LANGS+=( km ) +MOZ_LANGS+=( kn ) +MOZ_LANGS+=( lij ) +MOZ_LANGS+=( mk ) +MOZ_LANGS+=( mr ) +MOZ_LANGS+=( my ) +MOZ_LANGS+=( ne-NP ) +MOZ_LANGS+=( oc ) +MOZ_LANGS+=( sc ) +MOZ_LANGS+=( sco ) +MOZ_LANGS+=( si ) +MOZ_LANGS+=( skr ) +MOZ_LANGS+=( son ) +MOZ_LANGS+=( szl ) +MOZ_LANGS+=( ta ) +MOZ_LANGS+=( te ) +MOZ_LANGS+=( tl ) +MOZ_LANGS+=( trs ) +MOZ_LANGS+=( ur ) +MOZ_LANGS+=( xh ) + mozilla_set_globals() { # https://bugs.gentoo.org/587334 local MOZ_TOO_REGIONALIZED_FOR_L10N=( @@ -412,12 +484,13 @@ pkg_setup() { fi fi - if [[ ${use_lto} = yes ]] ; then + if [[ ${use_lto} = yes ]]; then # -Werror=lto-type-mismatch -Werror=odr are going to fail with GCC, # bmo#1516758, bgo#942288 filter-flags -Werror=lto-type-mismatch -Werror=odr fi + # Ensure we have enough disk space to compile if use pgo || use debug ; then CHECKREQS_DISK_BUILD="14300M" elif [[ ${use_lto} == "yes" ]] ; then @@ -484,6 +557,10 @@ pkg_setup() { fi export use_lto + + CONFIG_CHECK="~SECCOMP" + WARNING_SECCOMP="CONFIG_SECCOMP not set! This system will be unable to play DRM-protected content." + linux-info_pkg_setup } src_unpack() { @@ -552,6 +629,24 @@ src_prepare() { fi fi + # Pre-built wasm-sandbox path manipulation. + if use wasm-sandbox ; then + if use amd64 ; then + export wasi_arch="x86_64" + elif use arm64 ; then + export wasi_arch="arm64" + else + die "wasm-sandbox enabled on unknown/unsupported arch!" + fi + + sed -i \ + -e "s:%%PORTAGE_WORKDIR%%:${WORKDIR}:" \ + -e "s:%%WASI_ARCH%%:${wasi_arch}:" \ + -e "s:%%WASI_SDK_VER%%:${WASI_SDK_VER}:" \ + -e "s:%%WASI_SDK_LLVM_VER%%:${WASI_SDK_LLVM_VER}:" \ + toolkit/moz.configure || die "Failed to update wasi-related paths." + fi + # Make LTO respect MAKEOPTS sed -i -e "s/multiprocessing.cpu_count()/$(makeopts_jobs)/" \ "${S}"/build/moz.configure/lto-pgo.configure || die "Failed sedding multiprocessing.cpu_count" @@ -578,6 +673,24 @@ src_prepare() { # Clear checksums from cargo crates we've manually patched. # moz_clear_vendor_checksums xyz + # Respect choice for "jumbo-build" + # Changing the value for FILES_PER_UNIFIED_FILE may not work, see #905431 + if [[ -n ${FILES_PER_UNIFIED_FILE} ]] && use jumbo-build; then + local my_files_per_unified_file=${FILES_PER_UNIFIED_FILE:=16} + elog "" + elog "jumbo-build defaults modified to ${my_files_per_unified_file}." + elog "if you get a build failure, try undefining FILES_PER_UNIFIED_FILE," + elog "if that fails try -jumbo-build before opening a bug report." + elog "" + + sed -i -e "s/\"FILES_PER_UNIFIED_FILE\", 16/\"FILES_PER_UNIFIED_FILE\", "${my_files_per_unified_file}"/" \ + python/mozbuild/mozbuild/frontend/data.py || + die "Failed to adjust FILES_PER_UNIFIED_FILE in python/mozbuild/mozbuild/frontend/data.py" + sed -i -e "s/FILES_PER_UNIFIED_FILE = 6/FILES_PER_UNIFIED_FILE = "${my_files_per_unified_file}"/" \ + js/src/moz.build || + die "Failed to adjust FILES_PER_UNIFIED_FILE in js/src/moz.build" + fi + # Create build dir BUILD_DIR="${WORKDIR}/${PN}_build" mkdir -p "${BUILD_DIR}" || die @@ -662,10 +775,14 @@ src_configure() { export MOZCONFIG="${S}/.mozconfig" # Initialize MOZCONFIG - mozconfig_add_options_ac '' --enable-application=comm/mail - mozconfig_add_options_ac '' --enable-project=comm/mail + mozconfig_add_options_ac '' --enable-application=browser + mozconfig_add_options_ac '' --enable-project=browser # Set Gentoo defaults + if use telemetry; then + export MOZILLA_OFFICIAL=1 + fi + mozconfig_add_options_ac 'Gentoo default' \ --allow-addon-sideload \ --disable-cargo-incremental \ @@ -676,12 +793,8 @@ src_configure() { --disable-legacy-profile-creation \ --disable-parental-controls \ --disable-strip \ - --disable-tests \ --disable-updater \ - --disable-valgrind \ --disable-wmf \ - --enable-dbus \ - --enable-js-shell \ --enable-negotiateauth \ --enable-new-pass-manager \ --enable-official-branding \ @@ -693,7 +806,6 @@ src_configure() { --prefix="${EPREFIX}/usr" \ --target="${CHOST}" \ --without-ccache \ - --without-wasm-sandboxed-libraries \ --with-intl-api \ --with-libclang-path="$(llvm-config --libdir)" \ --with-system-ffi \ @@ -712,7 +824,7 @@ src_configure() { mozconfig_add_options_ac '' --enable-update-channel=${update_channel} # Whitelist to allow unkeyworded arches to build with "--disable-rust-simd" by default. - if use amd64 || use arm64 || use loong ; then + if use amd64 || use arm64 || use ppc64 || use loong || use riscv ; then mozconfig_add_options_ac '' --enable-rust-simd fi @@ -720,7 +832,7 @@ src_configure() { # amd64, arm, arm64 & x86. # Might want to flip the logic around if Firefox is to support more arches. # bug 833001, bug 903411#c8 - if use loong || use ppc64 || use riscv ; then + if use loong || use ppc64 || use riscv; then mozconfig_add_options_ac '' --disable-sandbox else mozconfig_add_options_ac '' --enable-sandbox @@ -770,7 +882,6 @@ src_configure() { 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 @@ -779,15 +890,7 @@ src_configure() { mozconfig_use_with system-png mozconfig_use_with system-webp - if use system-librnp; then - mozconfig_add_options_ac "+system-librnp" --enable-compile-environment - mozconfig_use_with system-librnp - else - # This controls the backend of the bundled librnp. Choices are "botan" and "openssl". - # RNP Upstream recommends to use botan. In Gentoo it's preferred to use system-librnp. - mozconfig_add_options_ac "+bundled librnp backend = botan" --with-librnp-backend="botan" - fi - + mozconfig_use_enable dbus mozconfig_use_enable libproxy use eme-free && mozconfig_add_options_ac '+eme-free' --disable-eme @@ -810,6 +913,8 @@ src_configure() { mozconfig_use_enable wifi necko-wifi + ! use jumbo-build && mozconfig_add_options_ac '--disable-unified-build' --disable-unified-build + if use X && use wayland ; then mozconfig_add_options_ac '+x11+wayland' --enable-default-toolkit=cairo-gtk3-x11-wayland elif ! use X && use wayland ; then @@ -818,6 +923,15 @@ src_configure() { mozconfig_add_options_ac '+x11' --enable-default-toolkit=cairo-gtk3-x11-only fi + # wasm-sandbox + # Since graphite2 is one of the sandboxed libraries, system-graphite2 obviously can't work with +wasm-sandbox. + if use wasm-sandbox ; then + mozconfig_add_options_ac '+wasm-sandbox' --with-wasi-sysroot="${WORKDIR}/wasi-sdk-${WASI_SDK_VER}-${wasi_arch}-linux/share/wasi-sysroot/" + else + mozconfig_add_options_ac 'no wasm-sandbox' --without-wasm-sandboxed-libraries + mozconfig_use_with system-harfbuzz system-graphite2 + fi + if [[ ${use_lto} == "yes" ]] ; then if use clang ; then # Upstream only supports lld or mold when using clang. @@ -857,9 +971,15 @@ src_configure() { fi fi + # PGO was moved outside lto block to allow building pgo without lto. if use pgo ; then mozconfig_add_options_ac '+pgo' MOZ_PGO=1 + # Avoid compressing just-built instrumented Firefox with + # high levels of compression. Just use tar as a container + # to save >=10 minutes. + export MOZ_PKG_FORMAT=tar + if use clang ; then # Used in build/pgo/profileserver.py export LLVM_PROFDATA="llvm-profdata" @@ -942,6 +1062,15 @@ src_configure() { export MACH_BUILD_PYTHON_NATIVE_PACKAGE_SOURCE="none" + if ! use telemetry; then + mozconfig_add_options_mk '-telemetry setting' "MOZ_CRASHREPORTER=0" + mozconfig_add_options_mk '-telemetry setting' "MOZ_DATA_REPORTING=0" + mozconfig_add_options_mk '-telemetry setting' "MOZ_SERVICES_HEALTHREPORT=0" + mozconfig_add_options_mk '-telemetry setting' "MOZ_TELEMETRY_REPORTING=0" + fi + + mozconfig_use_enable test tests + # Disable notification when build system has finished export MOZ_NOSPAM=1 @@ -1019,6 +1148,29 @@ src_compile() { ${virtx_cmd} ./mach build --verbose || die } +src_test() { + # https://firefox-source-docs.mozilla.org/testing/automated-testing/index.html + local -a failures=() + + # Some tests respect this + local -x MOZ_HEADLESS=1 + + # Check testing/mach_commands.py + einfo "Testing with cppunittest ..." + ./mach cppunittest + local ret=$? + if [[ ${ret} -ne 0 ]]; then + eerror "Test suite cppunittest failed with error code ${ret}" + failures+=( cppunittest ) + fi + + if [[ ${#failures} -eq 0 ]]; then + einfo "Test suites succeeded" + else + die "Test suites failed: ${failures[@]}" + fi +} + src_install() { # xpcshell is getting called during install pax-mark m \ @@ -1043,33 +1195,53 @@ src_install() { newins "${FILESDIR}"/disable-auto-update.policy.json policies.json # Install system-wide preferences - local PREFS_DIR="${MOZILLA_FIVE_HOME}/defaults/pref" + local PREFS_DIR="${MOZILLA_FIVE_HOME}/browser/defaults/preferences" insinto "${PREFS_DIR}" - newins "${FILESDIR}"/gentoo-default-prefs-r1.js gentoo-prefs.js + 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 \ + cat "${FILESDIR}"/gentoo-hwaccel-prefs.js-r2 \ >>"${GENTOO_PREFS}" \ || die "failed to add prefs to force hardware-accelerated rendering to all-gentoo.js" if use wayland; then cat >>"${GENTOO_PREFS}" <<-EOF || die "failed to set hwaccel wayland prefs" - pref("gfx.x11-egl.force-enabled", false); + pref("gfx.x11-egl.force-enabled", false); EOF else cat >>"${GENTOO_PREFS}" <<-EOF || die "failed to set hwaccel x11 prefs" - pref("gfx.x11-egl.force-enabled", true); + pref("gfx.x11-egl.force-enabled", true); EOF fi + + # Install the vaapitest binary on supported arches (122.0 supports all platforms, bmo#1865969) + exeinto "${MOZILLA_FIVE_HOME}" + doexe "${BUILD_DIR}"/dist/bin/vaapitest + + # Install the v4l2test on supported arches (+ arm, + riscv64 when keyworded) + if use arm64 ; then + exeinto "${MOZILLA_FIVE_HOME}" + doexe "${BUILD_DIR}"/dist/bin/v4l2test + fi fi - # 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 + if ! use gmp-autoupdate ; then + local plugin + for plugin in "${MOZ_GMP_PLUGIN_LIST[@]}" ; do + einfo "Disabling auto-update for ${plugin} plugin ..." + cat >>"${GENTOO_PREFS}" <<-EOF || die "failed to disable autoupdate for ${plugin} media plugin" + pref("media.${plugin}.autoupdate", false); + EOF + done + fi # Force the graphite pref if USE=system-harfbuzz is enabled, since the pref cannot disable it if use system-harfbuzz ; then @@ -1078,6 +1250,12 @@ src_install() { EOF fi + # Add telemetry config prefs, just in case something happens in future and telemetry build + # options stop working. + if ! use telemetry ; then + cat "${FILESDIR}"/gentoo-telemetry-prefs.js >>"${GENTOO_PREFS}" || die "failed to set telemetry prefs" + fi + # Install language packs local langpacks=( $(find "${WORKDIR}/language_packs" -type f -name '*.xpi') ) if [[ -n "${langpacks}" ]] ; then @@ -1085,11 +1263,12 @@ src_install() { fi # Install icons - local icon_srcdir="${S}/comm/mail/branding/thunderbird" - local icon_symbolic_file="${icon_srcdir}/TB-symbolic.svg" + local icon_srcdir="${S}/browser/branding/official" + # Prefer the upstream svg file they use when packaging flatpak so it's always up-to-date. insinto /usr/share/icons/hicolor/symbolic/apps - newins "${icon_symbolic_file}" ${PN}-symbolic.svg + newins "${S}"/browser/installer/linux/app/flatpak/files/share/icons/hicolor/symbolic/apps/org.mozilla.firefox-symbolic.svg firefox-symbolic.svg + dosym -r /usr/share/icons/hicolor/symbolic/apps/firefox-symbolic.svg /usr/share/icons/hicolor/symbolic/apps/org.mozilla.firefox-symbolic.svg local icon size for icon in "${icon_srcdir}"/default*.png ; do @@ -1105,7 +1284,7 @@ src_install() { # Install menu local app_name="Mozilla ${MOZ_PN^}" - local desktop_file="${FILESDIR}/icon/${PN}-r2.desktop" + local desktop_file="${FILESDIR}/icon/${PN}-r3.desktop" local exec_command="${PN}" local icon="${PN}" local use_wayland="false" @@ -1132,6 +1311,33 @@ src_install() { rm "${WORKDIR}/${PN}.desktop-template" || die + if use gnome-shell ; then + # Install search provider for Gnome + insinto /usr/share/gnome-shell/search-providers/ + doins browser/components/shell/search-provider-files/org.mozilla.firefox.search-provider.ini + + insinto /usr/share/dbus-1/services/ + doins browser/components/shell/search-provider-files/org.mozilla.firefox.SearchProvider.service + + # Toggle between rapid and esr desktop file names + if [[ -n ${MOZ_ESR} ]] ; then + sed -e "s/firefox.desktop/${desktop_filename}/g" \ + -i "${ED}/usr/share/gnome-shell/search-providers/org.mozilla.firefox.search-provider.ini" || + die "Failed to sed org.mozilla.firefox.search-provider.ini file." + fi + + # Make the dbus service aware of a previous session, bgo#939196 + sed -e \ + "s/Exec=\/usr\/bin\/firefox/Exec=\/usr\/$(get_libdir)\/firefox\/firefox --dbus-service \/usr\/bin\/firefox/g" \ + -i "${ED}/usr/share/dbus-1/services/org.mozilla.firefox.SearchProvider.service" || + die "Failed to sed org.mozilla.firefox.SearchProvider.service dbus file" + + # Update prefs to enable Gnome search provider + cat >>"${GENTOO_PREFS}" <<-EOF || die "failed to enable gnome-search-provider via prefs" + pref("browser.gnome-search-provider.enabled", true); + EOF + fi + # Install wrapper script [[ -f "${ED}/usr/bin/${PN}" ]] && rm "${ED}/usr/bin/${PN}" newbin "${FILESDIR}/${PN}-r1.sh" ${PN} @@ -1141,20 +1347,45 @@ src_install() { -e "s:@PREFIX@:${EPREFIX}/usr:" \ -e "s:@DEFAULT_WAYLAND@:${use_wayland}:" \ "${ED}/usr/bin/${PN}" || die + + readme.gentoo_create_doc } pkg_postinst() { xdg_pkg_postinst - if ver_replacing -lt 136.0 ; then - elog "In this version of Thunderbird, upstream introduced an in-app notification" - elog "system. Setting pref 'mail.inappnotifications.enabled' to false and nullifying" - elog "'mail.inappnotifications.url' may help you avoid these messages, if you don't" - elog "wish to receive them." + if ! use gmp-autoupdate ; then + elog "USE='-gmp-autoupdate' has disabled the following plugins from updating or" + elog "installing into new profiles:" + local plugin + for plugin in "${MOZ_GMP_PLUGIN_LIST[@]}" ; do + elog "\t ${plugin}" + done + elog fi + # bug 835078 + if use hwaccel && has_version "x11-drivers/xf86-video-nouveau"; then + ewarn "You have nouveau drivers installed in your system and 'hwaccel' " + ewarn "enabled for Firefox. Nouveau / your GPU might not support the " + ewarn "required EGL, so either disable 'hwaccel' or try the workaround " + ewarn "explained in https://bugs.gentoo.org/835078#c5 if Firefox crashes." + fi + + readme.gentoo_print_elog + optfeature_header "Optional programs for extra features:" optfeature "desktop notifications" x11-libs/libnotify - optfeature "encrypted chat support" net-libs/libotr optfeature "fallback mouse cursor theme e.g. on WMs" gnome-base/gsettings-desktop-schemas + optfeature "screencasting with pipewire" sys-apps/xdg-desktop-portal + if use hwaccel && has_version "x11-drivers/nvidia-drivers"; then + optfeature "hardware acceleration with NVIDIA cards" media-libs/nvidia-vaapi-driver + fi + + if ! has_version "sys-libs/glibc"; then + elog + elog "glibc not found! You won't be able to play DRM content." + elog "See Gentoo bug #910309 or upstream bug #1843683." + elog + fi } diff --git a/mail-client/thunderbird/thunderbird-147.0.ebuild b/www-client/firefox/firefox-147.0.4.ebuild index b72e26eff40c..bc6bfe805ef3 100644 --- a/mail-client/thunderbird/thunderbird-147.0.ebuild +++ b/www-client/firefox/firefox-147.0.4.ebuild @@ -3,21 +3,26 @@ EAPI=8 -FIREFOX_PATCHSET="firefox-147-patches-01t.tar.xz" +FIREFOX_PATCHSET="firefox-147-patches-02.tar.xz" LLVM_COMPAT=( 19 20 21 ) -PYTHON_COMPAT=( python3_{11..14} ) -PYTHON_REQ_USE="ncurses,sqlite,ssl" - -RUST_MIN_VER="1.82.0" +# This will also filter rust versions that don't match LLVM_COMPAT in the non-clang path; this is fine. RUST_NEEDS_LLVM=1 -WANT_AUTOCONF="2.1" +# If not building with clang we need at least rust 1.76 +RUST_MIN_VER=1.82.0 + +PYTHON_COMPAT=( python3_{10..14} ) +PYTHON_REQ_USE="ncurses,sqlite,ssl" VIRTUALX_REQUIRED="manual" -# Thunderbird will have separate release and esr channels, matching Firefox's rapid and esr. +# Information about the bundled wasi toolchain from +# https://github.com/WebAssembly/wasi-sdk/ +WASI_SDK_VER=30.0 +WASI_SDK_LLVM_VER=21 + MOZ_ESR= MOZ_PV=${PV} @@ -34,6 +39,11 @@ fi if [[ -n ${MOZ_ESR} ]] ; then # ESR releases have slightly different version numbers MOZ_PV="${MOZ_PV}esr" + HOMEPAGE="https://www.firefox.com https://www.firefox.com/enterprise/" + SLOT="esr" +else + HOMEPAGE="https://www.firefox.com" + SLOT="rapid" fi MOZ_PN="${PN%-bin}" @@ -41,11 +51,8 @@ MOZ_P="${MOZ_PN}-${MOZ_PV}" MOZ_PV_DISTFILES="${MOZ_PV}${MOZ_PV_SUFFIX}" MOZ_P_DISTFILES="${MOZ_PN}-${MOZ_PV_DISTFILES}" -inherit check-reqs desktop eapi9-ver flag-o-matic gnome2-utils linux-info llvm-r1 \ - multiprocessing optfeature pax-utils python-any-r1 rust toolchain-funcs virtualx xdg - -DESCRIPTION="Thunderbird Mail Client" -HOMEPAGE="https://www.thunderbird.net/" +inherit check-reqs desktop flag-o-matic gnome2-utils linux-info llvm-r1 multiprocessing \ + optfeature pax-utils python-any-r1 readme.gentoo-r1 rust toolchain-funcs virtualx xdg MOZ_SRC_BASE_URI="https://archive.mozilla.org/pub/${MOZ_PN}/releases/${MOZ_PV}" @@ -57,34 +64,36 @@ PATCH_URIS=( https://dev.gentoo.org/~juippis/mozilla/patchsets/${FIREFOX_PATCHSET} ) +DESCRIPTION="Firefox Web Browser" SRC_URI="${MOZ_SRC_BASE_URI}/source/${MOZ_P}.source.tar.xz -> ${MOZ_P_DISTFILES}.source.tar.xz - ${PATCH_URIS[@]}" -S="${WORKDIR}/${PN}-${PV%_*}" - -if [[ -n ${MOZ_ESR} ]] ; then - SLOT="0/esr" -else - SLOT="0/stable" -fi + ${PATCH_URIS[@]} + wasm-sandbox? ( + amd64? ( https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-${WASI_SDK_VER/.*/}/wasi-sdk-${WASI_SDK_VER}-x86_64-linux.tar.gz ) + arm64? ( https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-${WASI_SDK_VER/.*/}/wasi-sdk-${WASI_SDK_VER}-arm64-linux.tar.gz ) + )" +S="${WORKDIR}/${PN}-${PV%_*}" LICENSE="MPL-2.0 GPL-2 LGPL-2.1" -KEYWORDS="~amd64 ~arm64 ~loong ~ppc64 ~x86" +KEYWORDS="~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86" -IUSE="+clang debug eme-free hardened hwaccel jack libproxy pgo pulseaudio sndio selinux" +IUSE="+clang dbus debug eme-free hardened hwaccel jack libproxy pgo pulseaudio selinux sndio" IUSE+=" +system-av1 +system-harfbuzz +system-icu +system-jpeg +system-libevent +system-libvpx" -IUSE+=" system-pipewire system-png +system-webp wayland wifi +X" +IUSE+=" system-pipewire system-png +system-webp test valgrind wayland wifi +X" -# Thunderbird-only USE flags. -IUSE+=" +system-librnp" +# Firefox-only IUSE +IUSE+=" +gmp-autoupdate gnome-shell jpegxl +jumbo-build openh264 +telemetry wasm-sandbox" -# "-system-librnp" requires clang, bmo#2006910 REQUIRED_USE="|| ( X wayland ) - !system-librnp? ( clang ) - debug? ( !system-av1 )" + debug? ( !system-av1 ) + pgo? ( jumbo-build ) + wayland? ( dbus ) + wifi? ( dbus ) +" + +RESTRICT="!test? ( test )" -TB_ONLY_DEPEND="selinux? ( sec-policy/selinux-thunderbird ) - !system-librnp? ( dev-libs/jsoncpp ) - system-librnp? ( >=dev-util/librnp-0.17.1 )" +FF_ONLY_DEPEND="!www-client/firefox:0 + selinux? ( sec-policy/selinux-mozilla )" BDEPEND="${PYTHON_DEPS} $(llvm_gen_dep ' llvm-core/clang:${LLVM_SLOT} @@ -93,6 +102,7 @@ BDEPEND="${PYTHON_DEPS} llvm-core/lld:${LLVM_SLOT} pgo? ( llvm-runtimes/compiler-rt-sanitizers:${LLVM_SLOT}[profile] ) ) + wasm-sandbox? ( llvm-core/lld:${LLVM_SLOT} ) ') app-alternatives/awk app-arch/unzip @@ -113,7 +123,7 @@ BDEPEND="${PYTHON_DEPS} x11-misc/xkeyboard-config ) )" -COMMON_DEPEND="${TB_ONLY_DEPEND} +COMMON_DEPEND="${FF_ONLY_DEPEND} >=app-accessibility/at-spi2-core-2.46.0:2 dev-libs/glib:2 dev-libs/libffi:= @@ -124,7 +134,6 @@ COMMON_DEPEND="${TB_ONLY_DEPEND} media-libs/freetype media-libs/mesa media-video/ffmpeg - sys-apps/dbus virtual/zlib:= virtual/freedesktop-icon-theme x11-libs/cairo @@ -132,6 +141,9 @@ COMMON_DEPEND="${TB_ONLY_DEPEND} x11-libs/libdrm x11-libs/pango x11-libs/pixman + dbus? ( + sys-apps/dbus + ) jack? ( virtual/jack ) pulseaudio? ( || ( @@ -144,19 +156,20 @@ COMMON_DEPEND="${TB_ONLY_DEPEND} sndio? ( >=media-sound/sndio-1.8.0-r1 ) system-av1? ( >=media-libs/dav1d-1.0.0:= - >=media-libs/libaom-1.0.0:= + >=media-libs/libaom-3.10.0:= ) system-harfbuzz? ( - >=media-gfx/graphite2-1.3.13 >=media-libs/harfbuzz-2.8.1:0= + !wasm-sandbox? ( >=media-gfx/graphite2-1.3.13 ) ) system-icu? ( >=dev-libs/icu-78.1:= ) system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1:= ) system-libevent? ( >=dev-libs/libevent-2.1.12:0=[threads(+)] ) system-libvpx? ( >=media-libs/libvpx-1.8.2:0=[postproc] ) - system-pipewire? ( media-video/pipewire:= ) + system-pipewire? ( >=media-video/pipewire-1.4.7-r2:= ) system-png? ( >=media-libs/libpng-1.6.45:0=[apng] ) system-webp? ( >=media-libs/libwebp-1.1.0:0= ) + valgrind? ( dev-debug/valgrind ) wayland? ( >=media-libs/libepoxy-1.5.10-r1 x11-libs/gtk+:3[wayland] @@ -167,6 +180,7 @@ COMMON_DEPEND="${TB_ONLY_DEPEND} net-misc/networkmanager net-misc/connman[networkmanager] ) + sys-apps/dbus ) ) X? ( @@ -182,7 +196,12 @@ COMMON_DEPEND="${TB_ONLY_DEPEND} x11-libs/libxcb:= )" RDEPEND="${COMMON_DEPEND} - jack? ( virtual/jack )" + hwaccel? ( + media-video/libva-utils + sys-apps/pciutils + ) + jack? ( virtual/jack ) + openh264? ( media-libs/openh264:*[plugin] )" DEPEND="${COMMON_DEPEND} X? ( x11-base/xorg-proto @@ -190,6 +209,19 @@ DEPEND="${COMMON_DEPEND} x11-libs/libSM )" +# ESR and rapid dependencies. +if [[ -n ${MOZ_ESR} ]] ; then + RDEPEND+=" !www-client/firefox:rapid" +else + RDEPEND+=" !www-client/firefox:esr" +fi + +# Allow MOZ_GMP_PLUGIN_LIST to be set in an eclass or +# overridden in the enviromnent (advanced hackers only) +if [[ -z "${MOZ_GMP_PLUGIN_LIST+set}" ]] ; then + MOZ_GMP_PLUGIN_LIST=( gmp-gmpopenh264 gmp-widevinecdm ) +fi + llvm_check_deps() { if ! has_version -b "llvm-core/clang:${LLVM_SLOT}" ; then einfo "llvm-core/clang:${LLVM_SLOT} is missing! Cannot use LLVM slot ${LLVM_SLOT} ..." >&2 @@ -216,13 +248,52 @@ llvm_check_deps() { 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 es-MX et eu + 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 ) +# Firefox-only LANGS +MOZ_LANGS+=( ach ) +MOZ_LANGS+=( an ) +MOZ_LANGS+=( az ) +MOZ_LANGS+=( bn ) +MOZ_LANGS+=( bs ) +MOZ_LANGS+=( ca-valencia ) +MOZ_LANGS+=( eo ) +MOZ_LANGS+=( es-CL ) +MOZ_LANGS+=( es-MX ) +MOZ_LANGS+=( fa ) +MOZ_LANGS+=( ff ) +MOZ_LANGS+=( fur ) +MOZ_LANGS+=( gn ) +MOZ_LANGS+=( gu-IN ) +MOZ_LANGS+=( hi-IN ) +MOZ_LANGS+=( hy-AM ) +MOZ_LANGS+=( ia ) +MOZ_LANGS+=( km ) +MOZ_LANGS+=( kn ) +MOZ_LANGS+=( lij ) +MOZ_LANGS+=( mk ) +MOZ_LANGS+=( mr ) +MOZ_LANGS+=( my ) +MOZ_LANGS+=( ne-NP ) +MOZ_LANGS+=( oc ) +MOZ_LANGS+=( sc ) +MOZ_LANGS+=( sco ) +MOZ_LANGS+=( si ) +MOZ_LANGS+=( skr ) +MOZ_LANGS+=( son ) +MOZ_LANGS+=( szl ) +MOZ_LANGS+=( ta ) +MOZ_LANGS+=( te ) +MOZ_LANGS+=( tl ) +MOZ_LANGS+=( trs ) +MOZ_LANGS+=( ur ) +MOZ_LANGS+=( xh ) + mozilla_set_globals() { # https://bugs.gentoo.org/587334 local MOZ_TOO_REGIONALIZED_FOR_L10N=( @@ -381,8 +452,40 @@ pkg_pretend() { # Ensure we have enough disk space to compile if use pgo || use debug ; then CHECKREQS_DISK_BUILD="14300M" + + if ! use clang ; then + if tc-is-gcc && ver_test "$(gcc-major-version)" -eq 15 && has_version -b "<sys-devel/gcc-15.2.1_p20251108-r1:15"; then + eerror "<gcc-15.2.1_p20251108-r1:15 and pgo detected. Firefox-145.0 can not be compiled" + eerror "with this GCC, when also enabling pgo." + eerror "See bug https://gcc.gnu.org/PR122620" + eerror "" + eerror "Your options are:" + eerror " 1) upgrade GCC to >=15.2.1_p20251108-r1 - note that even with the 16.0" + eerror " releases, make sure the patch set is equal or newer than 16.0.0_p20251109-r1," + eerror " or use the \"trunk\" version," + eerror " 2) compile Firefox with Clang by enabling the \"clang\" USE flag, or" + eerror " 3) disable pgo when compiling with GCC for now." + die "Firefox-${PV} with gcc+pgo cannot be compiled with the detected gcc version: $(gcc-fullversion)" + fi + fi elif tc-is-lto ; then CHECKREQS_DISK_BUILD="10600M" + + if ! use clang ; then + if tc-is-gcc && ver_test "$(gcc-major-version)" -eq 15 && has_version -b "<sys-devel/gcc-15.2.1_p20251108-r1:15"; then + eerror "<gcc-15.2.1_p20251108-r1:15 and lto detected. Firefox-145.0 can not be compiled" + eerror "with this GCC, when also enabling lto." + eerror "See bug https://gcc.gnu.org/PR122620" + eerror "" + eerror "Your options are:" + eerror " 1) upgrade GCC to >=15.2.1_p20251108-r1 - note that even with the 16.0" + eerror " releases, make sure the patch set is equal or newer than 16.0.0_p20251109-r1," + eerror " or use the \"trunk\" version," + eerror " 2) compile Firefox with Clang by enabling the \"clang\" USE flag, or" + eerror " 3) disable lto when compiling with GCC for now." + die "Firefox-${PV} with gcc+lto cannot be compiled with the detected gcc version: $(gcc-fullversion)" + fi + fi else CHECKREQS_DISK_BUILD="7400M" fi @@ -402,20 +505,53 @@ pkg_setup() { use_lto=yes # LTO is handled via configure filter-lto + + if ! use clang ; then + if tc-is-gcc && ver_test "$(gcc-major-version)" -eq 15 && has_version -b "<sys-devel/gcc-15.2.1_p20251108-r1:15"; then + eerror "<gcc-15.2.1_p20251108-r1:15 and pgo detected. Firefox-145.0 can not be compiled" + eerror "with this GCC, when also enabling lto." + eerror "See bug https://gcc.gnu.org/PR122620" + eerror "" + eerror "Your options are:" + eerror " 1) upgrade GCC to >=15.2.1_p20251108-r1 - note that even with the 16.0" + eerror " releases, make sure the patch set is equal or newer than 16.0.0_p20251109-r1," + eerror " or use the \"trunk\" version," + eerror " 2) compile Firefox with Clang by enabling the \"clang\" USE flag, or" + eerror " 3) disable lto when compiling with GCC for now." + die "Firefox-${PV} with gcc+lto cannot be compiled with the detected gcc version: $(gcc-fullversion)" + fi + fi fi if use pgo ; then if ! has userpriv ${FEATURES} ; then eerror "Building ${PN} with USE=pgo and FEATURES=-userpriv is not supported!" fi + + if ! use clang ; then + if tc-is-gcc && ver_test "$(gcc-major-version)" -eq 15 && has_version -b "<sys-devel/gcc-15.2.1_p20251108-r1:15"; then + eerror "<gcc-15.2.1_p20251108-r1:15 and lto detected. Firefox-145.0 can not be compiled" + eerror "with this GCC, when also enabling pgo." + eerror "See bug https://gcc.gnu.org/PR122620" + eerror "" + eerror "Your options are:" + eerror " 1) upgrade GCC to >=15.2.1_p20251108-r1 - note that even with the 16.0" + eerror " releases, make sure the patch set is equal or newer than 16.0.0_p20251109-r1," + eerror " or use the \"trunk\" version," + eerror " 2) compile Firefox with Clang by enabling the \"clang\" USE flag, or" + eerror " 3) disable pgo when compiling with GCC for now." + die "Firefox-${PV} with gcc+pgo cannot be compiled with the detected gcc version: $(gcc-fullversion)" + fi + fi fi - if [[ ${use_lto} = yes ]] ; then + if [[ ${use_lto} = yes ]]; then # -Werror=lto-type-mismatch -Werror=odr are going to fail with GCC, # bmo#1516758, bgo#942288 filter-flags -Werror=lto-type-mismatch -Werror=odr fi + # Ensure we have enough disk space to compile if use pgo || use debug ; then CHECKREQS_DISK_BUILD="14300M" elif [[ ${use_lto} == "yes" ]] ; then @@ -482,6 +618,10 @@ pkg_setup() { fi export use_lto + + CONFIG_CHECK="~SECCOMP" + WARNING_SECCOMP="CONFIG_SECCOMP not set! This system will be unable to play DRM-protected content." + linux-info_pkg_setup } src_unpack() { @@ -510,11 +650,9 @@ src_prepare() { if use elibc_glibc ; then rm -v "${WORKDIR}"/firefox-patches/*bgo-748849-RUST_TARGET_override.patch || die rm -v "${WORKDIR}"/firefox-patches/*bmo-1988166-musl-remove-nonexisting-system-header-req.patch || die + rm -v "${WORKDIR}"/firefox-patches/*bgo-967694-musl-prctrl-exception-on-musl.patch || die fi - # Enable jpeg-xl only in Firefox. - rm -v "${WORKDIR}"/firefox-patches/*bgo-928126-enable-jxl.patch || die - eapply "${WORKDIR}/firefox-patches" # Allow user to apply any additional patches without modifing ebuild @@ -548,6 +686,24 @@ src_prepare() { fi fi + # Pre-built wasm-sandbox path manipulation. + if use wasm-sandbox ; then + if use amd64 ; then + export wasi_arch="x86_64" + elif use arm64 ; then + export wasi_arch="arm64" + else + die "wasm-sandbox enabled on unknown/unsupported arch!" + fi + + sed -i \ + -e "s:%%PORTAGE_WORKDIR%%:${WORKDIR}:" \ + -e "s:%%WASI_ARCH%%:${wasi_arch}:" \ + -e "s:%%WASI_SDK_VER%%:${WASI_SDK_VER}:" \ + -e "s:%%WASI_SDK_LLVM_VER%%:${WASI_SDK_LLVM_VER}:" \ + toolkit/moz.configure || die "Failed to update wasi-related paths." + fi + # Make LTO respect MAKEOPTS sed -i -e "s/multiprocessing.cpu_count()/$(makeopts_jobs)/" \ "${S}"/build/moz.configure/lto-pgo.configure || die "Failed sedding multiprocessing.cpu_count" @@ -573,6 +729,26 @@ src_prepare() { # Clear checksums from cargo crates we've manually patched. # moz_clear_vendor_checksums xyz + # glslopt: bgo#969412 + moz_clear_vendor_checksums glslopt + + # Respect choice for "jumbo-build" + # Changing the value for FILES_PER_UNIFIED_FILE may not work, see #905431 + if [[ -n ${FILES_PER_UNIFIED_FILE} ]] && use jumbo-build; then + local my_files_per_unified_file=${FILES_PER_UNIFIED_FILE:=16} + elog "" + elog "jumbo-build defaults modified to ${my_files_per_unified_file}." + elog "if you get a build failure, try undefining FILES_PER_UNIFIED_FILE," + elog "if that fails try -jumbo-build before opening a bug report." + elog "" + + sed -i -e "s/\"FILES_PER_UNIFIED_FILE\", 16/\"FILES_PER_UNIFIED_FILE\", "${my_files_per_unified_file}"/" \ + python/mozbuild/mozbuild/frontend/data.py || + die "Failed to adjust FILES_PER_UNIFIED_FILE in python/mozbuild/mozbuild/frontend/data.py" + sed -i -e "s/FILES_PER_UNIFIED_FILE = 6/FILES_PER_UNIFIED_FILE = "${my_files_per_unified_file}"/" \ + js/src/moz.build || + die "Failed to adjust FILES_PER_UNIFIED_FILE in js/src/moz.build" + fi # Create build dir BUILD_DIR="${WORKDIR}/${PN}_build" @@ -658,10 +834,14 @@ src_configure() { export MOZCONFIG="${S}/.mozconfig" # Initialize MOZCONFIG - mozconfig_add_options_ac '' --enable-application=comm/mail - mozconfig_add_options_ac '' --enable-project=comm/mail + mozconfig_add_options_ac '' --enable-application=browser + mozconfig_add_options_ac '' --enable-project=browser # Set Gentoo defaults + if use telemetry; then + export MOZILLA_OFFICIAL=1 + fi + mozconfig_add_options_ac 'Gentoo default' \ --allow-addon-sideload \ --disable-cargo-incremental \ @@ -672,12 +852,8 @@ src_configure() { --disable-legacy-profile-creation \ --disable-parental-controls \ --disable-strip \ - --disable-tests \ --disable-updater \ - --disable-valgrind \ --disable-wmf \ - --enable-dbus \ - --enable-js-shell \ --enable-negotiateauth \ --enable-new-pass-manager \ --enable-official-branding \ @@ -689,7 +865,6 @@ src_configure() { --prefix="${EPREFIX}/usr" \ --target="${CHOST}" \ --without-ccache \ - --without-wasm-sandboxed-libraries \ --with-intl-api \ --with-libclang-path="$(llvm-config --libdir)" \ --with-system-ffi \ @@ -708,7 +883,7 @@ src_configure() { mozconfig_add_options_ac '' --enable-update-channel=${update_channel} # Whitelist to allow unkeyworded arches to build with "--disable-rust-simd" by default. - if use amd64 || use arm64 || use loong ; then + if use amd64 || use arm64 || use ppc64 || use loong || use riscv ; then mozconfig_add_options_ac '' --enable-rust-simd fi @@ -718,13 +893,14 @@ src_configure() { # bug 833001, bug 903411#c8 if use loong || use ppc64 || use riscv; then mozconfig_add_options_ac '' --disable-sandbox + elif use valgrind; then + mozconfig_add_options_ac 'valgrind requirement' --disable-sandbox else mozconfig_add_options_ac '' --enable-sandbox fi # riscv-related options, bgo#947337, bgo#947338 if use riscv ; then - mozconfig_add_options_ac 'Disable JIT for RISC-V 64' --disable-jit mozconfig_add_options_ac 'Disable webrtc for RISC-V' --disable-webrtc fi @@ -766,7 +942,6 @@ src_configure() { 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 @@ -775,22 +950,15 @@ src_configure() { mozconfig_use_with system-png mozconfig_use_with system-webp - if use system-librnp; then - mozconfig_add_options_ac "+system-librnp" --enable-compile-environment - mozconfig_use_with system-librnp - else - # This controls the backend of the bundled librnp. Choices are "botan" and "openssl". - # RNP Upstream recommends to use botan. In Gentoo it's preferred to use system-librnp. - mozconfig_add_options_ac "+bundled librnp backend = botan" --with-librnp-backend="botan" - fi - + mozconfig_use_enable dbus mozconfig_use_enable libproxy + mozconfig_use_enable valgrind use eme-free && mozconfig_add_options_ac '+eme-free' --disable-eme if use hardened ; then mozconfig_add_options_ac "+hardened" --enable-hardening - # mozconfig_add_options_ac "+hardened stl" --enable-stl-hardening # not available in TB + mozconfig_add_options_ac "+hardened stl" --enable-stl-hardening append-ldflags "-Wl,-z,relro -Wl,-z,now" # Increase the FORTIFY_SOURCE value, #910071. @@ -807,6 +975,8 @@ src_configure() { mozconfig_use_enable wifi necko-wifi + ! use jumbo-build && mozconfig_add_options_ac '--disable-unified-build' --disable-unified-build + if use X && use wayland ; then mozconfig_add_options_ac '+x11+wayland' --enable-default-toolkit=cairo-gtk3-x11-wayland elif ! use X && use wayland ; then @@ -815,6 +985,17 @@ src_configure() { mozconfig_add_options_ac '+x11' --enable-default-toolkit=cairo-gtk3-x11-only fi + # wasm-sandbox + # Since graphite2 is one of the sandboxed libraries, system-graphite2 obviously can't work with +wasm-sandbox. + if use wasm-sandbox ; then + mozconfig_add_options_ac '+wasm-sandbox' --with-wasi-sysroot="${WORKDIR}/wasi-sdk-${WASI_SDK_VER}-${wasi_arch}-linux/share/wasi-sysroot/" + else + mozconfig_add_options_ac 'no wasm-sandbox' --without-wasm-sandboxed-libraries + mozconfig_use_with system-harfbuzz system-graphite2 + fi + + ! use jpegxl && mozconfig_add_options_ac '-jpegxl' --disable-jxl + if [[ ${use_lto} == "yes" ]] ; then if use clang ; then # Upstream only supports lld or mold when using clang. @@ -854,12 +1035,21 @@ src_configure() { fi fi + # PGO was moved outside lto block to allow building pgo without lto. if use pgo ; then mozconfig_add_options_ac '+pgo' MOZ_PGO=1 + # Avoid compressing just-built instrumented Firefox with + # high levels of compression. Just use tar as a container + # to save >=10 minutes. + export MOZ_PKG_FORMAT=tar + if use clang ; then # Used in build/pgo/profileserver.py export LLVM_PROFDATA="llvm-profdata" + else + # Attempt to fix pgo hanging with gcc, bgo#966309. + export MOZ_REMOTE_SETTINGS_DEVTOOLS=1 fi fi @@ -925,6 +1115,10 @@ src_configure() { mozconfig_add_options_ac '!elibc_glibc' --disable-jemalloc fi + if use valgrind; then + mozconfig_add_options_ac 'valgrind requirement' --disable-jemalloc + fi + # System-av1 fix use system-av1 && append-ldflags "-Wl,--undefined-version" @@ -939,6 +1133,15 @@ src_configure() { export MACH_BUILD_PYTHON_NATIVE_PACKAGE_SOURCE="none" + if ! use telemetry; then + mozconfig_add_options_mk '-telemetry setting' "MOZ_CRASHREPORTER=0" + mozconfig_add_options_mk '-telemetry setting' "MOZ_DATA_REPORTING=0" + mozconfig_add_options_mk '-telemetry setting' "MOZ_SERVICES_HEALTHREPORT=0" + mozconfig_add_options_mk '-telemetry setting' "MOZ_TELEMETRY_REPORTING=0" + fi + + mozconfig_use_enable test tests + # Disable notification when build system has finished export MOZ_NOSPAM=1 @@ -978,6 +1181,10 @@ src_configure() { echo "==========================================================" echo + if use valgrind; then + sed -i -e 's/--enable-optimize=-O[0-9s]/--enable-optimize="-g -O2"/' .mozconfig || die + fi + ./mach configure || die } @@ -1016,6 +1223,29 @@ src_compile() { ${virtx_cmd} ./mach build --verbose || die } +src_test() { + # https://firefox-source-docs.mozilla.org/testing/automated-testing/index.html + local -a failures=() + + # Some tests respect this + local -x MOZ_HEADLESS=1 + + # Check testing/mach_commands.py + einfo "Testing with cppunittest ..." + ./mach cppunittest + local ret=$? + if [[ ${ret} -ne 0 ]]; then + eerror "Test suite cppunittest failed with error code ${ret}" + failures+=( cppunittest ) + fi + + if [[ ${#failures} -eq 0 ]]; then + einfo "Test suites succeeded" + else + die "Test suites failed: ${failures[@]}" + fi +} + src_install() { # xpcshell is getting called during install pax-mark m \ @@ -1040,33 +1270,53 @@ src_install() { newins "${FILESDIR}"/disable-auto-update.policy.json policies.json # Install system-wide preferences - local PREFS_DIR="${MOZILLA_FIVE_HOME}/defaults/pref" + local PREFS_DIR="${MOZILLA_FIVE_HOME}/browser/defaults/preferences" insinto "${PREFS_DIR}" - newins "${FILESDIR}"/gentoo-default-prefs-r1.js gentoo-prefs.js + 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 \ + cat "${FILESDIR}"/gentoo-hwaccel-prefs.js-r2 \ >>"${GENTOO_PREFS}" \ || die "failed to add prefs to force hardware-accelerated rendering to all-gentoo.js" if use wayland; then cat >>"${GENTOO_PREFS}" <<-EOF || die "failed to set hwaccel wayland prefs" - pref("gfx.x11-egl.force-enabled", false); + pref("gfx.x11-egl.force-enabled", false); EOF else cat >>"${GENTOO_PREFS}" <<-EOF || die "failed to set hwaccel x11 prefs" - pref("gfx.x11-egl.force-enabled", true); + pref("gfx.x11-egl.force-enabled", true); EOF fi + + # Install the vaapitest binary on supported arches (122.0 supports all platforms, bmo#1865969) + exeinto "${MOZILLA_FIVE_HOME}" + doexe "${BUILD_DIR}"/dist/bin/vaapitest + + # Install the v4l2test on supported arches (+ arm, + riscv64 when keyworded) + if use arm64 ; then + exeinto "${MOZILLA_FIVE_HOME}" + doexe "${BUILD_DIR}"/dist/bin/v4l2test + fi fi - # 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 + if ! use gmp-autoupdate ; then + local plugin + for plugin in "${MOZ_GMP_PLUGIN_LIST[@]}" ; do + einfo "Disabling auto-update for ${plugin} plugin ..." + cat >>"${GENTOO_PREFS}" <<-EOF || die "failed to disable autoupdate for ${plugin} media plugin" + pref("media.${plugin}.autoupdate", false); + EOF + done + fi # Force the graphite pref if USE=system-harfbuzz is enabled, since the pref cannot disable it if use system-harfbuzz ; then @@ -1075,6 +1325,12 @@ src_install() { EOF fi + # Add telemetry config prefs, just in case something happens in future and telemetry build + # options stop working. + if ! use telemetry ; then + cat "${FILESDIR}"/gentoo-telemetry-prefs.js >>"${GENTOO_PREFS}" || die "failed to set telemetry prefs" + fi + # Install language packs local langpacks=( $(find "${WORKDIR}/language_packs" -type f -name '*.xpi') ) if [[ -n "${langpacks}" ]] ; then @@ -1082,11 +1338,12 @@ src_install() { fi # Install icons - local icon_srcdir="${S}/comm/mail/branding/thunderbird" - local icon_symbolic_file="${icon_srcdir}/TB-symbolic.svg" + local icon_srcdir="${S}/browser/branding/official" + # Prefer the upstream svg file they use when packaging flatpak so it's always up-to-date. insinto /usr/share/icons/hicolor/symbolic/apps - newins "${icon_symbolic_file}" ${PN}-symbolic.svg + newins "${S}"/browser/installer/linux/app/flatpak/files/share/icons/hicolor/symbolic/apps/org.mozilla.firefox-symbolic.svg firefox-symbolic.svg + dosym -r /usr/share/icons/hicolor/symbolic/apps/firefox-symbolic.svg /usr/share/icons/hicolor/symbolic/apps/org.mozilla.firefox-symbolic.svg local icon size for icon in "${icon_srcdir}"/default*.png ; do @@ -1102,7 +1359,7 @@ src_install() { # Install menu local app_name="Mozilla ${MOZ_PN^}" - local desktop_file="${FILESDIR}/icon/${PN}-r2.desktop" + local desktop_file="${FILESDIR}/icon/${PN}-r3.desktop" local exec_command="${PN}" local icon="${PN}" local use_wayland="false" @@ -1129,6 +1386,33 @@ src_install() { rm "${WORKDIR}/${PN}.desktop-template" || die + if use gnome-shell ; then + # Install search provider for Gnome + insinto /usr/share/gnome-shell/search-providers/ + doins browser/components/shell/search-provider-files/org.mozilla.firefox.search-provider.ini + + insinto /usr/share/dbus-1/services/ + doins browser/components/shell/search-provider-files/org.mozilla.firefox.SearchProvider.service + + # Toggle between rapid and esr desktop file names + if [[ -n ${MOZ_ESR} ]] ; then + sed -e "s/firefox.desktop/${desktop_filename}/g" \ + -i "${ED}/usr/share/gnome-shell/search-providers/org.mozilla.firefox.search-provider.ini" || + die "Failed to sed org.mozilla.firefox.search-provider.ini file." + fi + + # Make the dbus service aware of a previous session, bgo#939196 + sed -e \ + "s/Exec=\/usr\/bin\/firefox/Exec=\/usr\/$(get_libdir)\/firefox\/firefox --dbus-service \/usr\/bin\/firefox/g" \ + -i "${ED}/usr/share/dbus-1/services/org.mozilla.firefox.SearchProvider.service" || + die "Failed to sed org.mozilla.firefox.SearchProvider.service dbus file" + + # Update prefs to enable Gnome search provider + cat >>"${GENTOO_PREFS}" <<-EOF || die "failed to enable gnome-search-provider via prefs" + pref("browser.gnome-search-provider.enabled", true); + EOF + fi + # Install wrapper script [[ -f "${ED}/usr/bin/${PN}" ]] && rm "${ED}/usr/bin/${PN}" newbin "${FILESDIR}/${PN}-r1.sh" ${PN} @@ -1138,20 +1422,45 @@ src_install() { -e "s:@PREFIX@:${EPREFIX}/usr:" \ -e "s:@DEFAULT_WAYLAND@:${use_wayland}:" \ "${ED}/usr/bin/${PN}" || die + + readme.gentoo_create_doc } pkg_postinst() { xdg_pkg_postinst - if ver_replacing -lt 136.0 ; then - elog "In this version of Thunderbird, upstream introduced an in-app notification" - elog "system. Setting pref 'mail.inappnotifications.enabled' to false and nullifying" - elog "'mail.inappnotifications.url' may help you avoid these messages, if you don't" - elog "wish to receive them." + if ! use gmp-autoupdate ; then + elog "USE='-gmp-autoupdate' has disabled the following plugins from updating or" + elog "installing into new profiles:" + local plugin + for plugin in "${MOZ_GMP_PLUGIN_LIST[@]}" ; do + elog "\t ${plugin}" + done + elog fi + # bug 835078 + if use hwaccel && has_version "x11-drivers/xf86-video-nouveau"; then + ewarn "You have nouveau drivers installed in your system and 'hwaccel' " + ewarn "enabled for Firefox. Nouveau / your GPU might not support the " + ewarn "required EGL, so either disable 'hwaccel' or try the workaround " + ewarn "explained in https://bugs.gentoo.org/835078#c5 if Firefox crashes." + fi + + readme.gentoo_print_elog + optfeature_header "Optional programs for extra features:" optfeature "desktop notifications" x11-libs/libnotify - optfeature "encrypted chat support" net-libs/libotr optfeature "fallback mouse cursor theme e.g. on WMs" gnome-base/gsettings-desktop-schemas + optfeature "screencasting with pipewire" sys-apps/xdg-desktop-portal + if use hwaccel && has_version "x11-drivers/nvidia-drivers"; then + optfeature "hardware acceleration with NVIDIA cards" media-libs/nvidia-vaapi-driver + fi + + if ! has_version "sys-libs/glibc"; then + elog + elog "glibc not found! You won't be able to play DRM content." + elog "See Gentoo bug #910309 or upstream bug #1843683." + elog + fi } diff --git a/www-client/vivaldi-snapshot/Manifest b/www-client/vivaldi-snapshot/Manifest index 41b5363a4c22..b5e81ae13842 100644 --- a/www-client/vivaldi-snapshot/Manifest +++ b/www-client/vivaldi-snapshot/Manifest @@ -1,4 +1,4 @@ -DIST vivaldi-snapshot_7.9.3936.3-1_amd64.deb 125047496 BLAKE2B cc2f6f09c60a8965bf8c93e5b6b442a62fe8c27227b70362de4bf2bbe736c58d918ed41c9fdb2b404a0ce7386bc1ad640c0225df679e7d1d967e577569ac108a SHA512 9c22bcfb3d56b5c30bf39e3adda72921b97ff58e29f4e2e2748b65a7578bf0a1e83d5d0c27f593904192a5dd0bc3ad519f4791b897a65a49328556a6aecf464b -DIST vivaldi-snapshot_7.9.3936.3-1_arm64.deb 118228704 BLAKE2B 024e8006986e9f75f6a4a63adc366207f56a68a207a1ce4edc0294a24360c412adae7cf74a24534a20ea2ce83a2fb90a7a4db4e25b92122f14e4b3e6914bb336 SHA512 9c0b8bc4997ff7a9854896ebfffd62797da9a6029fe9d8f77abf920e2aab193ed294d7fb1aa2f565542afc16b1aecf92e7dfa1c472c9349114a7e3bf2dfd87aa DIST vivaldi-snapshot_7.9.3943.3-1_amd64.deb 124796232 BLAKE2B bc7693b08b8ab579320d6be03ab4181e70590c3ec4d7a847a8280ae17ee98e90965e9c49013007ca1f1ede52052fccc835f1f2c4024f7c2191d630933394d5ef SHA512 c3b263f0ef0f98692d4dcb498be023bb6c75bdaf7fc983d124ae9bdb7af98435501e609f017baf6442ad8c408150c6411d316ba802bcc687058b36f673638fb0 DIST vivaldi-snapshot_7.9.3943.3-1_arm64.deb 118306840 BLAKE2B 488250852154aba8b749b1c957248c50d84046c9d5fa46b4324e9cdcc0325cc34b438cafdb9a7daba765fffbc6077c9267a5d54667d76b32c56c2654e838b80d SHA512 37d215e1527a815a041aaf1859ef022bdc9bcceb925a665427deefcd4ea189ebd437699d59f9e8a2a8fcc0ffdce9d3840e2bfaa9545d154088f198eea195700e +DIST vivaldi-snapshot_7.9.3950.5-1_amd64.deb 125226620 BLAKE2B 5502d57bb209f80ec9ecde20603c569d8f3b9511d0073f80202579c5aeb4d813e07406837d6ac2b6c5ab9d6ebeda392ce70eec55c2c61db615937612cbf38203 SHA512 371e26efc04f3aba8bccd11557b23a8ecb61ca8ff76d5a0ea4852d1fa706800079f6d13c79c4ea4c0c2aeb5f57b9090065e63a820786cade5fd829d0a8673001 +DIST vivaldi-snapshot_7.9.3950.5-1_arm64.deb 118437124 BLAKE2B 7fa20373f5f8865307db0e2d3841401334b2b527bb5864a94af2f2997de9777e2aca74a9246bcec4472b3c758b1162b2020186c40dbfbd02dc13120baea836ac SHA512 cf000c1221064958a5f5d5857ca2dbc2431ffbd494beab919df5e5074a63993568923402a1dbb7cae448b0cb0015ae59dc30fdf832d54829085a1216bde4f2c2 diff --git a/www-client/vivaldi-snapshot/vivaldi-snapshot-7.9.3936.3.ebuild b/www-client/vivaldi-snapshot/vivaldi-snapshot-7.9.3950.5.ebuild index 40e5e4d4a78f..40e5e4d4a78f 100644 --- a/www-client/vivaldi-snapshot/vivaldi-snapshot-7.9.3936.3.ebuild +++ b/www-client/vivaldi-snapshot/vivaldi-snapshot-7.9.3950.5.ebuild diff --git a/www-client/vivaldi/Manifest b/www-client/vivaldi/Manifest index 99f38905b254..87a45c7a45ac 100644 --- a/www-client/vivaldi/Manifest +++ b/www-client/vivaldi/Manifest @@ -1,4 +1,4 @@ -DIST vivaldi-stable_7.8.3925.56-1_amd64.deb 124997400 BLAKE2B 1766956b28264ef17b778c8d35a3db090a0d68b20e0ffa6e514c1f413202854989effc394058efd50ed285550e5974a7c1791bdd560508563033bee01e562f3e SHA512 5fb9d0d4f5a3e1d3fd0828b5b2bcb5bcdf85127a416eb59e57f9798474d431fb6635b4203d69d9b3ea69afbb31f06fdfad2992358b3d5153b1da744ded1f87cd -DIST vivaldi-stable_7.8.3925.56-1_arm64.deb 118202432 BLAKE2B 227924f28c33defc36393cae176577512f62af49c9482d41f3e15b4a8234b1a3a6bb5ebb009b65a02cbea14d9bed797ca90788d737703808c0c1cc175d311e86 SHA512 0ffef130feedb497d0b5f645477df6ac2920e1851beea88544be1e22326911ade26d9e4c1ad8dff66e0d25cfd430d559f1bbf80092d9e9e4bec38a04a744b553 DIST vivaldi-stable_7.8.3925.62-1_amd64.deb 124796620 BLAKE2B 01302b01f0c43f0ef5a882b7eeb152c526778b8cc7203ae753bd3b6554cde48db8a7e9684ec985bff3de293a9c6a46f85e60a3bd7427206ad3a102164fc52a08 SHA512 834d0c171945f6082dbf043e6108460a53523005dbca3c4480fef07de03f270df1c3121ebe3dc38790cc2fc632cb096fe377af4989af5cdc6e72a8fa4c9a3485 DIST vivaldi-stable_7.8.3925.62-1_arm64.deb 118268948 BLAKE2B 59e9080e75cfccc05a8282fed4c193e7b99fa6279b18490b3f721255c1d07642e378934b15556661a4e6ddea0cfbacc838a080e71eb6c5eb3ee330e10df6b757 SHA512 d14e26cfef5b0b03bc719e774333a75156c9b27751aa8b74a720f322ac3de4eee17757c7b0c036e6e506a697e09515c127bad74ecdd3768e6877909cccc14d8c +DIST vivaldi-stable_7.8.3925.66-1_amd64.deb 125008784 BLAKE2B 8556d0b78b7ab3d4cb29eb092c549bf3cb8aaffec72f711d439512d2ebfb2761a188667889e4628d2c75a4c9080e2897c143edfd4d0ddc759ea415973c4cac4e SHA512 4d6a383f7a528f43f3b8f1e6af4c0da5b70a480ab9f5759852b273eccb569bc9b1004a81037a7c71d4c13100d1296f6043bd0ba2158b33737b08df016fb61a22 +DIST vivaldi-stable_7.8.3925.66-1_arm64.deb 118286400 BLAKE2B fb647c64b36bdbaf128e87bf4da9177505a59928e3056079052b2685d482c8ee4996ebdb61f9ccb1a5a941549f2ea3eb2c5383471ab0cf554caf80bb522a954d SHA512 3cd4705e171747a8a6ebd715477d93cbc0c6a9e8c978d14e83578e668ddbdcde2b11212e136e965c87cb0e5f82927e30865279968ef9e677989722486610be66 diff --git a/www-client/vivaldi/vivaldi-7.8.3925.62.ebuild b/www-client/vivaldi/vivaldi-7.8.3925.62.ebuild index e3267e83cb59..639e0f4c71c2 100644 --- a/www-client/vivaldi/vivaldi-7.8.3925.62.ebuild +++ b/www-client/vivaldi/vivaldi-7.8.3925.62.ebuild @@ -108,7 +108,7 @@ SRC_URI=" S="${WORKDIR}" LICENSE="Vivaldi" SLOT="0" -KEYWORDS="-* ~amd64 ~arm64" +KEYWORDS="-* amd64 ~arm64" IUSE="ffmpeg-chromium gtk proprietary-codecs qt6 widevine" RESTRICT="bindist mirror" #REQUIRED_USE="ffmpeg-chromium? ( proprietary-codecs )" diff --git a/www-client/vivaldi/vivaldi-7.8.3925.56.ebuild b/www-client/vivaldi/vivaldi-7.8.3925.66.ebuild index 639e0f4c71c2..e3267e83cb59 100644 --- a/www-client/vivaldi/vivaldi-7.8.3925.56.ebuild +++ b/www-client/vivaldi/vivaldi-7.8.3925.66.ebuild @@ -108,7 +108,7 @@ SRC_URI=" S="${WORKDIR}" LICENSE="Vivaldi" SLOT="0" -KEYWORDS="-* amd64 ~arm64" +KEYWORDS="-* ~amd64 ~arm64" IUSE="ffmpeg-chromium gtk proprietary-codecs qt6 widevine" RESTRICT="bindist mirror" #REQUIRED_USE="ffmpeg-chromium? ( proprietary-codecs )" diff --git a/www-misc/quixotic/Manifest b/www-misc/quixotic/Manifest new file mode 100644 index 000000000000..41286125708f --- /dev/null +++ b/www-misc/quixotic/Manifest @@ -0,0 +1,198 @@ +DIST actix-codec-0.5.2.crate 14085 BLAKE2B 751e592c79bfb691076771803f92b788b13d7d97ec30262bec1af7cc1e9ed67904ff6a4bba51fd75a89bb807e7f91aeddb8b8515c2d760b5fa8be0ef122ce7fa SHA512 9fc455a3ae36b93b3b9358b1f0915934f7e52ea1486d4d1a943c47759ff7cb6b7733e3c423378725a3da456669dcca02150cf44033707affff756579d5adba15 +DIST actix-http-3.10.0.crate 164457 BLAKE2B 5b59fb7f259486e9cd0bad602fb5791a47c1e3a54fcdf2a66f8008058ff7e64e12456e9ef19e6ace48fe44bcd2210666c9477af22ca586df6ddba58087b97787 SHA512 f15c8d0a7f23ff3584db551eb1082826635c7b59a5792eebf4b22c56d70fce04cf344a603f3d17099d75f2f3be8ddceae69c964fa96daced4d4f86a5632661d4 +DIST actix-macros-0.2.4.crate 8380 BLAKE2B 43c19c9bed00e042d8704191484a720ed22a1cbd5bf4cd13b5d52163153beeb459d52eea394fbd8ccd2eb149e6766038085559e1a3c6e1fcfe4cd900f45c8bad SHA512 e8d4f488304420d779f19bc4aa6deb8fb02b02c6de1bd393a0aba42c1c7bd8f49ef40ba2eb54251254882bd121cb30575e18e60cee521b07353d96a285681207 +DIST actix-router-0.5.3.crate 33145 BLAKE2B 1bd0748bf1936da090d87002b8720dcdd9036123671c2c0662c0c0e4176803ef55ffbd6fe9841487b2655f1c2495f8059122aad39b9276aaf8f3503261c1d725 SHA512 863f24f9c1af2c497a2a423bdd04c324ea9c41ba56a3d364e3ce1dba0aa4f704968debc79fd475cf177fdf8d26091e9c5a83a66af89d4cee34b257bf9261614c +DIST actix-rt-2.10.0.crate 22608 BLAKE2B b1fdcdf301fabe74b10d0078ddc74b52e68199fab3ca90d5623336a343ced150b0158cbdc579ea58b96e9481656d2d377dc3a2b88f0ccb2fe474e01134a3c7d0 SHA512 3f9f76ba181cc92a980d24542a0c5f647868736adf9ac636622a74ac4ad03d1cf567c2c4c5e188e401c83a65300c28b96e22607cadc9736433934ea485f63df2 +DIST actix-server-2.5.1.crate 40988 BLAKE2B 26288fccb53d912e2432086483c3da43bb27520a93534160f53fc6c96ceba2a9ce3d128576a1d51ed1232742c17ae4606e2768e954f1f2a206914f7d2b0f3124 SHA512 190eb6e506644e514689f78a44c61309e5b29ab8188d6f4561838f419352d3d2c1cfd021205dc6a23a8789e3a2cd48ad34213cafa8096881d01fd3065f47155e +DIST actix-service-2.0.3.crate 28409 BLAKE2B 1cbe3a190a89f08ac3ede659a8300c71967d8b4ca48a57982a1a6a85609dd86f1ab8812764524cdedd00ef679ba63e1ba111d7e1fab4f55a16a4882b48455f87 SHA512 d7f972b011ce96103bfedc06606e128a22988b3b4daf2d14dafa50d27761af9371d767d5ce1b4d7bd461488f24da37584532b5f0bedb8b51c5030c0552c01c27 +DIST actix-utils-3.0.1.crate 10096 BLAKE2B 5d1fdbc469ad15f288494d3d4a3ec5c665a95e4768ac0c680b07ed751cb8f5e113082ff0fd880929b25575cf3b33be2a08a8af56e5e181e837f59953af5c9b54 SHA512 1d0be4de0569d0267bb12e2a20e74f41f3cf13328ab77baa873166c868e9b4bc06d1b6e36a2ee7a24680ee5c97d19937cf5ec448575a58e47d0495f973b5d0d8 +DIST actix-web-4.10.2.crate 247273 BLAKE2B aed61afbf8f30996b7ff0fac7b73abfffe75b655b53c2da35df60d5fab591b1eb48100a563f03169cb5b625fd769f86c8b0100eb22fd067eb623da4b01609df3 SHA512 e6ba0685f51fa3bc332ba41c38b513cdbbe1c110b7e8d2c8ca8deec61812bee26e5280d41cbbf7c9ea32882cb7efb226403b42fcb71c83e33b60b5e0963e4d62 +DIST actix-web-codegen-4.3.0.crate 20382 BLAKE2B c3f90389b2622e920437dd8dafd8e517e503f738c7faaf89e7c6f49f6daf35dfe25e3cece4fe4c34540740dd6f08fcd17be42bf037d7d25bd91adfcaf6df1c5c SHA512 22961a159f45bccd48f1e462ec4a7891e5d644b3296abcbe4a12ea70fdafea8b57263c5c25c3e5527d2f2ac557b2abe17138ac54ec3316adc4026c65d3f0c177 +DIST addr2line-0.24.2.crate 39015 BLAKE2B 57186d6b957542cd71a0aa19f1355dfaabe6efa19b853c42f306494728b03d1e3183efdb2d2c7734a3e2347cd83a985d004f50c097e06b7520bd152310532e9b SHA512 39cbec3c920ffc0f37584afb55e1cfe4f182e4415319a4e9bfe842360f102f7b9315f6171c0cf71ba0337123903e604096cd573fe98698a26c8eebc2376d965b +DIST adler2-2.0.0.crate 13529 BLAKE2B ec575b0bf12e321399ac3a1d59fce4ddbeabcc60cb3d7c2f362cce23eb29b4ea836451372d6d88552a4435ae29bb41d6230d55f625a4359eace680b9b771d0ad SHA512 12d12579ad617cf1a94cf95ab9d3f5db566c3b2de4bd5735eccd83c668fdad0eff134c996b73c46cbb9f932837682043878b8cc4764191625e9f93ccffcce423 +DIST aho-corasick-1.1.3.crate 183311 BLAKE2B 8dfcbba0b9d94e55eae739b16f5c6474baa43ee7854c5ca792f426a9f46fb0eece79cd493b804e51449181bcad338b96819fe977c02c9907654d713e26b9f830 SHA512 ba422a54688c4678fcf16e34fdf3ed06c333e6e3fc8b75af9272a215add494d43ebaef319021134b61327fd5d3572aec0dc655b714ffb3bc71ba3c265c9ebb69 +DIST alloc-no-stdlib-2.0.4.crate 10105 BLAKE2B afa0bfeb7df1d742edb412dca4c22957fc21c2a1be21c64c58503d4b943c06e3163d0f3c90525b25323b8dc38e6c64136ec4f9608758c5c6f3bd07c2c033ee74 SHA512 6518856fa524ee0fe8e04cf133c11028efcf2f6a28f3a70e401566a4eb343c954dba34aec2a02c0d0359757dfb5dcf48279610646215eea190d699708d838904 +DIST alloc-stdlib-0.2.2.crate 6693 BLAKE2B a22faf3482e416664f2e104f5f45c4e6d116a42b890216b80102e266f7a3a3accd2933aeca71650a4c4626e3d9da76b6488ffc9ea2ae4229cdfbf1ce9ca6c7cf SHA512 9c4169052ad460af2be6f2a128056661b2f26da0122877f13fcd4f4f3e2e9537783cb2b2bec47af43569629639aa8ad507ab010833982e5d942f5b26cfd46c14 +DIST anstream-0.6.18.crate 29681 BLAKE2B b6f72cda084b38f1e1cfe60de2562e8d62ebbc352176bdf668a2d6be09349bec46d291cd475e8af814ce66def44d95cb98c325761150130752284a82d8a84f21 SHA512 5149977d6f7b5e9cf6350f1ef130caa3ff46c7e78976358452a185ce196cdd77fee48a3a9838f434ae6ea9c15b19f6bfbab156edf819f81179d6774318f08963 +DIST anstyle-1.0.10.crate 15725 BLAKE2B 36e656bd8f9c584f11fda5cfe0c2e24e8426b9e1b602aad34ed118ae6950a55440e292d2e0ff7615f5e4f466fd06f07536be198a59506a587d40cb0c4ede4f80 SHA512 621e7a89fad13db985f07375d316cf8efba57fd44ae18628a8049a65aefbaef27949f99317872e91e0922bb089a00234055199ea3167f80ae03d00ada4f75dea +DIST anstyle-parse-0.2.6.crate 22343 BLAKE2B 85eba405dc5cf806283cf442984e86583dfe6c681f849eb7a347b7b67bd2b6f692e84fc9b5bd86486633cb2f05960ec16e8778300df114ae6676da43442db9bb SHA512 e28c9818afcda0e9b84c205d9c6697ce64cb06c21df2c3666869c07d66893105d9c5e96a27fcf2410a09f6af00735252e22b5c7d8c6cb3f68c4a8f376c49d396 +DIST anstyle-query-1.1.2.crate 9969 BLAKE2B 179b8dd6dd709c2ca67f4eb5c9a502b2867cb6744a39f824c4fdebedc67c6c3e07d107c7d817e2ffb589d13b7ed4900cf9653ddc0a43663217042ee92ce8c9da SHA512 26069d936c4b1fb09bc65cda0253fe9be8fa4e96c0821f980c772602b4e9230035ec8c9d092ef95e0a0354ac559f8d25f57a14c34086d4d241b5fba688951837 +DIST anstyle-wincon-3.0.7.crate 12400 BLAKE2B 2023529aa12ebe1b7073a88180ac7491fbba7e8556ba20061bec22b1db9d0f3da058faa5bd7f499d8e5da18422dec7e7648f3b4acd7b4a2d2064824f1b881259 SHA512 782440c1093235ad481f0b854f5a3d3acb7908d2e5ddbd4143139b8bfd0faaf2f9816c1034e760d9261a233e6d645098cd5a594064f190662908eaf79972c903 +DIST autocfg-1.4.0.crate 17712 BLAKE2B 7f7300439899be03d001dd32b7e797bc4b9a58103081b6f7353c4b5897813cedf870b3fb1fa25d320a75326b334b44d8287e8603de34fc560d0b567143915cc6 SHA512 3b5e7c30bc73e105e4bfcab584c24fc4016db41fac9c356c6649fd841051704bbe8848e09546eb50d7c1f18ea8ce1cb72fbc268a620d5c609b3472114b5be73c +DIST backtrace-0.3.74.crate 88516 BLAKE2B 594b537f3860560bc790d04d72a91ea25bbf5f2494b9c43377129a8021c02d9c16471a223e518889775a816c45513b14bf097c453846b62302a58b59753a5fcb SHA512 00cb2be0626f0bf6ec8b8f525bb129d3ac74c386c5e46ee0f343edb78c863222521f8132876057a5a1facacf40792dea51f2f20e986b35f3a85bca3dcf5c1520 +DIST base64-0.22.1.crate 81597 BLAKE2B 6f216a560bd36e6e6b74e908344b457594cc768d9763070e269b56a14b150cbfc4b7f599d4c2a0a5f783638170ee132f0796fefb14fcac7fd73c58db0791007a SHA512 91cf2e4e7fc8815f9b8a86a7fa722a20eee3dc1dd57111b29e420de87ce7836bcdb1db01d3cafb9a977710ef63e7cc41b7772762323e68e0e832156858aace20 +DIST bitflags-2.9.0.crate 47654 BLAKE2B df924872ccb929f3e428976764d50e5468112cb83e563f663a5e51a21ef4363b4c639e617ed8afd42a39fed522ee468ce7186adf88bd41f5f4a2a6c833d9ff35 SHA512 f314d5391745e5a7eeeda0c014d739981d8639a8e23e1120d9c006ef1a6d5d5b9292ec85ed2fdc117121b6ed7a67df41345116ed311d8523344928a725763446 +DIST block-buffer-0.10.4.crate 10538 BLAKE2B d819c4f9c4be85868e8b105fb7e479d2e58d3ed85c3339bd677a3e111f85cb1ff624a54d7802ab79a6e1d9221115f66388568340480fe83eae1cb448f19f5b11 SHA512 b7d436d8e627e16e6ddc300ee8f706a6cef28ff6f09eff848eedee46f84bdcd03601303c92ab8996042e55922866a59259948177c0a4496eed723523e77f6fdb +DIST brotli-7.0.0.crate 1356970 BLAKE2B 6d060e6fe4ddd463b0b4603a067de152ba2bec9f337b5c94e790bdbac6ea28b5d9fb6404d7db5d98dd81e69dcc77698949e026f990267f388a396d37c45055a9 SHA512 577b2efc324bf461e06af94b8b509a095a917d4ecb2bfd2f3097ab4663ad699317c2fdb0b470344c762589c75dfac073b828603ce5609295ddf1748a39b75622 +DIST brotli-decompressor-4.0.2.crate 193388 BLAKE2B eba06680719069c9f8f435544525848f21d0b58db9a398e920abfa9602e15a7c5a087021a7ecff808f2b8310493c42b7bc8e1c924e19c2e2816d623899454c14 SHA512 df0451a1ba23ddc187b6868ce7614c77b0bdf3e409b55416dc997bd898ab2cb25d68fd7a0ccb0dd2bd4da52c6a25985772357101df1a218bf87065c6833b0549 +DIST bytes-1.10.1.crate 76779 BLAKE2B 96573ff7852cd2d4f37a68cb4d76bc43d2018dc25b7b7e2164df022de4e1974f22d4d3ea7cbfb280667650cdb5063d600f4f76cbdca43dae508f29ced449b0f7 SHA512 03429f01927b94ba6c958c46b2e5bf92a23b39ce9385689e21accd34a5d3be01fd0f665f4bbffb1f7c5bdf1edfb1bf11d5ccad00eff0f9388be39fe2f753d296 +DIST bytestring-1.4.0.crate 9747 BLAKE2B b45f16f8267dfa85776b64b68ad07776a3b648cff3109df9bd95a4c82fb24a814576430dd776384a43aebc402e6f2357de335805cc661458f7d278a233020726 SHA512 e04e77e3ba9f770a120369cd030686aece97d30456c7d6a41df270333b618dfebd8b7750c9a4e60beb100308f409df7a005e13e2f491fc91b42e6c4c5fbe1241 +DIST cc-1.2.17.crate 105794 BLAKE2B d7d733a72a29b836e3ba160ebca45817f7605ec4d2d10ca79ed8b97cc1013ebc75e07a33027eaaf5aeb803d248a77ef541568de24520efb72ee764ccf368b010 SHA512 3fe7609a6427a37b7fce6e1ebdaa0f108a9c5134892c181ff028e5d50341ca27c9e8982cbfc10595e9ff2fd4c4fe3d46670d10ad6f3c91efdfba373ea1f853ed +DIST cfg-if-1.0.0.crate 7934 BLAKE2B e99a5589c11d79d77a4537b34ce0a45d37b981c123b79b807cea836c89fc3926d693458893baca2882448d3d44e3f64e06141f6d916b748daa10b8cc1ae16d1b SHA512 0fb16a8882fd30e86b62c5143b1cb18ab564e84e75bd1f28fd12f24ffdc4a42e0d2e012a99abb606c12efe3c11061ff5bf8e24ab053e550ae083f7d90f6576ff +DIST clap-4.5.34.crate 56980 BLAKE2B 863e51afe9291e9cc2b12be4e6a62af836ed3692ad3df1c1199ee85434bf3f2c4d26c72dd43a78e41663b51631ef5517282b8abdb71b03a59b5ed35d7073280a SHA512 e9096041883deeef893a9692532529a19646666dadd2acf57952c076f63245081a030e61d99cbeef7413b9108cd7ab8009f28e570356dac8d2c10e2072e19322 +DIST clap_builder-4.5.34.crate 168417 BLAKE2B 4027d22847ec9d825bdfdb3ec60167325ce05c64d5de16b93d9b49d12e9fa100a475925cc5a98361b90b2cd1eb8cb3d8367169cd22b18b247b909f9a38fdf4ba SHA512 3100431394bc8847e4f29ada9ed92a02b75342a59886e0a3c6b94c62629d720ecbac74890e1b430d6c3908fcc4b6dc8f45348d883e9543e4e1cedad63edd4044 +DIST clap_derive-4.5.32.crate 33441 BLAKE2B de532305380fd457c0fac504f845ba595f157661de7ae72b14598dde1f3d4ec1961196220354a2eac97943004ca8354f4623b29fc2b6557c6ef4a83ab6fd61d8 SHA512 ddac7bfd885efdc97ed07b23eb1a42827aff9cb0c6eabde0a0b247233316f99fb80acb8122d8faa054dc65b6fd7a76091ea2e533cb44e85e8dda125330cdbf86 +DIST clap_lex-0.7.4.crate 12858 BLAKE2B a5ecd50cc503157dd69746f3b6e9c288e0fe4f6d5d82271499f657134fd401fbe076255e2be6a23ed0b69daf3941c6429dad8b288223b0ad390a2c435575cdd1 SHA512 a2566868f4619679d3b74b70592ffa6a04b13e38e3196c56bb1dae8bea0c711bddbccd778d2aba3cc0ee074c9b1cc0335222818f0d47fb3cc8109cbc35bb992e +DIST colorchoice-1.0.3.crate 7923 BLAKE2B 7055fe61677143f0d4445ed5f6be2cbc284c155aa6ceac04df6f3fa2563a225e440ba708bf40e298ad09775ab7c7e1842b5f6dd78422b06dbd1250908e3227ee SHA512 fc26696189d3935d5510a1237504339c1f354d03ffd3b4e830b7080335aa778bc72787ac5fa9a67a731b9bde2788da778d497f2ef97ec68bdec5145fedf4cd14 +DIST cookie-0.16.2.crate 34632 BLAKE2B 095c8c4fbd8bd2aca5f1bc2bf7f37f231878e3ea9e2646e7c2e63bc7ff824ed0a55f80216e9d1f0466e6fab306a0f211d08c093278f4f23c07762ded9e2033c5 SHA512 f006bb19f63065c6ba9a7553c1d97643e261723f3d5087586811acfe595b3c7d90f7e5c83431a44a50d0b4a36667635ad09e5cb307e323cde14820dfd38e57c6 +DIST cpufeatures-0.2.17.crate 13466 BLAKE2B c6392b635542a6fe29958fabe7ce725354a31e24f6f144718553218247881013f56659d2efc671d47394294373db2d4ff8f45c7cb520ac22f2ee5c462858a1dc SHA512 9ae64656a21cfdd0528d87ba95f6213860bf72ccdf866019e65ed6662633e73490f92c42c80125559b3dbb7822090b5faa8ea564c562e04041232809ec2f58a2 +DIST crc32fast-1.4.2.crate 38491 BLAKE2B aaa3acca66e5814a45f12a90ae09f6ff5fc14ca94c8539184dab6ed928abc68cd1d37e539c268c1effd50ab3af20de6038593fb9c6bd6a664785dac52f6939fd SHA512 c7608d33022062e217d3576f536ffbd51479855a5e5874529c71db2bf6a937ce04d814c39cf777309c38445393bf43cb9996161947e28738abd432f11beb7266 +DIST crypto-common-0.1.6.crate 8760 BLAKE2B f2422bfb89c15d47a8f91c8f6695e05eb56990a922e3cdf3d426044736f9932324c0d899a151a6df4d6683e6a6b21659c657d3988734014c02cd854bb4b924e7 SHA512 471dbc43f517089d2cfe0868e29510c6ca579875b3bb5d013c70796db969b609b6c4bb35c9a07b9a2917012dc5708b717d48e317a20038adbe7e7039bf3ada6f +DIST deranged-0.4.1.crate 23541 BLAKE2B 1e3802541057b4550400fb2ebed22f7e363efb6fbd4171aab3f1157d32a139a2dc80bc61d037d0cc30a75041f2ea28cde010adecae908563df3f1ac391c4f0a5 SHA512 899e57e35d9c87d26359be14aa023f8fc31c1073d2c5383c176f3b75d2022492649f70e15b5463d810619ad632ab6989d503dfd54b8eec53cec1d3790a75d39a +DIST derive_more-2.0.1.crate 70127 BLAKE2B cf20f53528e07ea53a8ad4e0cd9698eb44dd95a711ae5a969322518e5b545d4355d1ef396584bac07e73805cb44443a737a3f21e279654faab79b29e6d19093f SHA512 eb80e75fa43bda291b1437dc4df48d39570c3d9f94c758be5560bddc29170ceac6d9a2b51bf414729b8b7331d60998caf930b905951156aee0d07a5b62eb8028 +DIST derive_more-impl-2.0.1.crate 78233 BLAKE2B 84d195fb78479ecde38abfb5311fb220835f4150a301ed01c0aae6058ac00f04ef5a9daf122ddeb180b18bd0eb714fd24a5ba72cf9100896a7bcc1787532ed01 SHA512 e776a931e98b1cd37a8410f6376831c7e3c5704deb57b8c21aa6ff6546b9764c32e705f9055b14cff6b0c802f19ddc7254c14b60082acc176f33ec33f781fdc4 +DIST digest-0.10.7.crate 19557 BLAKE2B 61e69d78cb8d6850ae26ad7ff2d52dd6dce820d8c621230def11cc0e8aa6d883a6e1b25340fb45748db52a8ccf3c8d36a8aa0c8cdf4d4eeb4e3f870d86abe09a SHA512 0dd8c012468ab9011b89413ea4d3647d95b1f683b020a0e6274c95ed5148638b56fef19cd9044c837ad53715b582b88eed277fe96e917c27c5d7abdbf7c3794c +DIST displaydoc-0.2.5.crate 24219 BLAKE2B ba3396c93d27a99a92ff4a0f01a8d192b419bad25e48d9427b76260ebf2f9982291d77f2eb24d239c0b1fbb097e866a20bc46dc1879fdfc6637ea49928444a92 SHA512 5ca35fa59f263162389c1180331e9df607d9374bcb056cb04bc46c98e4d87277162ddb2335ffa8a8c5f69218abc3eabccdcaa71c21b8dd9081cc4146f266b948 +DIST encoding_rs-0.8.35.crate 1381050 BLAKE2B 2db6797e4f226b3836c18496ed77f3fb113fbc075864fd264f23c4fec8396eb3a01c439985ba0586a4464ac4043ddd3acac80e0ecf897cb59569e5065ce2137c SHA512 4b55b53553c5cb6fe05ae81d1c6f3b0bab73ecd3d426b15c58b9de9ea8dd61617bf0bb2e6d3ae2514c7cb6e73019b1a083173d1423b3ece2d190770c597114c4 +DIST equivalent-1.0.2.crate 7419 BLAKE2B 7ce4fb7b911961cd4ccfb48323eea4952110a069789c6bd177a63391c270df861afadd00c07db7b22768f0864f320e429e0200c433284f528336e2f81d071eff SHA512 8e0e2dc070794a85b276e93f9e4a65d3bbb8587b33fda211c34479a0b88504c913d8bef9e84d7996254aeabe1efe4ff1ef6259ff4fe3f9ccb90dd90070b3e4d4 +DIST flate2-1.1.0.crate 110650 BLAKE2B 1245a0050ac2f6c966b0c869f772c24544206e1e29ac7bfbd1bb20aff20151f50332e3f2bfcc3edcabdde706b4ac9180e393e4944216183f7319c3b09bf5bc12 SHA512 7f240d413aeead2fd15c0b4cab1ea45b99987c185968ccc22778ecc7e08ff32ad6fd44abcf763a7c708f5bb7c43b325aaaeb30ea9bcea2b0917c9f7542bbcbdb +DIST fnv-1.0.7.crate 11266 BLAKE2B 81da85889c91b6567e0f555e37dd915f1bd919719d1ca10c31a6861d7aec29a49ae9c1e8bc500791bf9d6b8dbb318c096d04872c5872a4b1f7d45fbd8e12842d SHA512 2195a4b34a78e2dd9838caf0ee556bf87cbb4a8ef5505aac663b614eb59dcfc0c40f432463ede41ecca57bfe7711f72673d39a85fe03d426f1324097d5628334 +DIST foldhash-0.1.5.crate 21901 BLAKE2B 22c3a266becac17995ac996f5c9caa8dea77e36786c50464e4e7750d8f3f13321a0a1abd3a9abcfd6ff441ddea257066b2dfb7fc6fcf7468f537dbd1b0db737d SHA512 3a634fdec410d87ffced8aa1bf8dacd9316a04c51424563d60b4dd611617041f09085edfd0ec96e6bb0e0db74a0e950b0616d1fb94a31667af35af1637604c22 +DIST form_urlencoded-1.2.1.crate 8969 BLAKE2B 383d3a197b73fba199220b7708e16d770591ac16725faf4efc1a8c230c569c381870d4a11b8fba623e761e68f9d318630b22101d461e67dd26c67e13a73358a1 SHA512 c65104e2dc08fad572bb31f981700fd43dd29fcff42b01c7ccdbd3d4c23dec12360aed3f1b5fc4766fee386d418a65349b2941b8735f788cb0d35d631a6a8dd1 +DIST futf-0.1.5.crate 11344 BLAKE2B 2cc5e5f5d4ace47e9273546e46c500432da47f246cee18f24607432305dec9481ec3d02b8a9bff4724efe05ea1d235294c52ee4eeb2f5f285ce56c2987b62d24 SHA512 4cee071c067c879742839d3d32192ca94ee2f9241468656357c3aed116cb7c656bf81722f32b67d60214b7db66858dca6443f0d52f0ff2114fc70971bdddd2d3 +DIST futures-core-0.3.31.crate 14318 BLAKE2B 613d16e4f18547e45ed0dd56a7b908306393e479c379ff64f358844eacb1f8d37008ffbbfe6b1a4ed184e501ee9214db149d9cca31651b7d353ab4a99c8f5ee1 SHA512 d2f4c2476c4f480f724a880ee16566fcdd545579d3cacd2f16745812eed9ac4a7a88d59d4a38b163ef466c6f6b612b9cb06308a09d52256506a8a90e358db935 +DIST futures-sink-0.3.31.crate 7958 BLAKE2B 7d42180cfe19ae42e2ff486d83ed46f3aaa4b333256d4c30c5a2ce0e0d0b05ae93516b029e6d07105b4296bf23ba29e6fcce19f0e38ecf59b53c6ec9cfe2e188 SHA512 79a57dbee5cfe98f2c003bd463d252648743f70d13e2054af072978b758c7cb8e5fb652fd2f36c760df358ad23d2893cef24ca6ae3df44def28f1d39bcf348a9 +DIST futures-task-0.3.31.crate 11217 BLAKE2B 8c0e0aa0aa14bfc28e668af00a3fcc2532950ca865a9f3935717a4a3770cb60477cd8f4cd080675379315b649fbdc5fee9dce49502f0f24f44db481a24c884bf SHA512 4872fd2f24b07c626efc6fd76c01b44d56efecb9697f972d0877307b38d3ccb06277ff029df38981470ba1f8ac5f93086123ab3af44d3c49bd9c10b6c9158a81 +DIST futures-util-0.3.31.crate 162124 BLAKE2B 69ca647a261fe24f90a4221d8629169a8dc7eff9dd1c4e07cc700a52a8609ce9b8aa3974b9b09e1ee64d0121d7bcb3efeee6fc15983347aaa0b0b23b068afc34 SHA512 429b1de584546b931b17d475aacbdb0c14824a57d960c44e615aa808e8c0f9c126473e313a7150b3de87ea91b7eebebb1041509f61b3493fee8a9cd2c75c4df3 +DIST generic-array-0.14.7.crate 15950 BLAKE2B e74c785e3127095625951da192a018281ea9976aaeb11019f9088c3f27748c5fed1ef25d577150864486dc48b5138d6892e42f99979339f711a66fc70756c82b SHA512 363a7b04e4102f9ca63d429721c1ada6272be6bf0a2e97da681faf76381f73f0e3acb86623b9ce2dae441de9fda704088391779b9769ec02b3c8c9f9f35f897d +DIST getrandom-0.3.2.crate 49140 BLAKE2B abe823a8e91fdb83461007909ed447c64adceffb33dce63b18c6561e7c14263c66119370fecc9c564583bff6206800d5253704ca29be1824e210096abb3452fc SHA512 8c5ce6a6180554749a7eac237caaa852aafdcc92f052aa9b3eef24e10c4ec3794a0a1a1f35580d99dd864d464eb79121fbd19ab8f8780021b60378bc967e16a2 +DIST gimli-0.31.1.crate 279515 BLAKE2B c8924ce351af5b8f96ef757a189f7a9be14533c024d496c62037cd4eda790b3f6282cd3013ba82ecc83082acab1b60ea80b83e0fd5f8eeb381fd7f9df88ce0ee SHA512 b9c8c11547dc7420fe936b9f32a4f5ccf3bb68d1d9f39dedffd40d631360f6e032e719d858668826f1099b8a262e8096aa7ae1f6d7d3d7aaf47934d832715949 +DIST h2-0.3.26.crate 168315 BLAKE2B 81c65e519bacc8570a28b82808828044d1c94f8cf9111ae432b1684f216ce51c1b583b87a2bda3c36cf206dd508084b8f0877e93d58c8d511f87eb143bc77ca9 SHA512 3e1fb02d42d86c9fbaee6f10fec78eebd9a31a70efbead1f4ca22664ee0e96809a52b06e23a9b6f5d0646422dc8054b5ff5d82644ef65cbc0ed2b3729d849163 +DIST hashbrown-0.15.2.crate 138478 BLAKE2B 453888ce68b10cd6e93d787986603fceb29b83fe2dc417e7e57316b9e0060d0bba51ec7fb71d46a038662c99f60deac8237a8f349297208d1d223bcc13f0d0ea SHA512 d6fc0613623f9313533dfcab1240e97f652f78f05baa21419f7edb2eff030c4a2c5f426d3eaae747923cffdd8aa9cc2648340e5fc229395b5eacc6fae087c8cd +DIST heck-0.5.0.crate 11517 BLAKE2B 5365ec43b2239a76b33a174f1a4292ece4147f9d382a68c6c60db78fdc8bad0afb1d51a65bcb25e96675372faa4ea37c318265030b0546ba51942f7c929e1835 SHA512 f044fc9c3d22466629fd8f772ec0555350fd611c0cfadca51d99a3d2f10e155f77c1091916c8a95a6b9b499f366c2e99a5fbf45b010f988bfb9b2501bf9f6a76 +DIST html5ever-0.30.0.crate 72797 BLAKE2B 350080285dca3e7f7a57be5c8024d3d3e1bce28e2ae65dbc8dfe80afc652e39690a74a4c1f35dca3bc2502a26c7054cb1b6ca875c8101aa4f1a87c696bff92b9 SHA512 3af55c61ef7be28dbfb70a3b60c08255527546163692645c5b6340b75a6ea8e6aa80ff84c070f68ad9a53121c9ab56bcc3392b3a0e84b99734abd0a58dead831 +DIST http-0.2.12.crate 101964 BLAKE2B c35c2ae5f9494cafdfacefd778b4b6824588e74685fe5204bc6efa87b667d00b28f59cae667115fe45ae332d8542e7a0c2c7c42fdeb302302f89b00cb716f380 SHA512 e32dd4600aae7e26f1d530871815b30fa0b9bf95293005649bd9a7bc4df7f69a1d8de503d1b8873e67a5496e644d0a47db2a0680fa1e9058bee4dcecccebee58 +DIST httparse-1.10.1.crate 45190 BLAKE2B ce166e68e60434c9e5659b7fd8d2b014247e798be12bdd08ed1a28bd71d9aab4047f96c6179e00fdbeff8967d27ffcc9c9ad3b76a4fbc5791c68c14ab36ac31d SHA512 b9988b4657e54931a9f8beab694d938bca7c15783c7181059770e56a7cbff801531e96eaa396615f19b0d99c37f73b39194c6ae06df1309a02097ba13e33ffd0 +DIST httpdate-1.0.3.crate 10639 BLAKE2B ce0b401c69f76252639c10f6c2e4a823574a58565d7c5cc3633c72837aa4ec3630b34b148de4378ec498db196e3b2e1413ca0e5a4d9247855380fe19a8c20f94 SHA512 0586888fe89f40b838d5ceb083084d0b8058feff1d2933faedb96896dc86eec68b541a0374a508fd11b86eeadab3c62f88568ffe2c53206fad438373a50b2e5a +DIST icu_collections-1.5.0.crate 82762 BLAKE2B ab89336790ceafe62dd72f0aaef16a6eb47fa5e41424ed990e6c059ad431cdb3dcea943436aed0bf9c6eabd7aba12d255a2233fbbcf9cf5f666ef1dfd5b79a16 SHA512 127f1c91101ba69405b10a2590579606df766166fcf1fe6aa9a74c4900296425cba5c47a391a53a01b02026af5581f068fce4a7a400179809f7ed9922b94c0db +DIST icu_locid-1.5.0.crate 55131 BLAKE2B cde2b988f0af200b8e7851a66b8ae08881670ad6ff79c5caf5135a04c200e5ecd0acf27d8856fb0fce46d502527d506095f469c28f325b9b9d21d2a3657149be SHA512 4b85f0e7cc73166a542b2e502b3ffae1f30d2a9609ab83acf98e90b0edb37fa8ae4592f61ecf48a0ae0779fdd376abeff59e1d5cb97475012eda99ce2a97da57 +DIST icu_locid_transform-1.5.0.crate 29094 BLAKE2B c7bb5c5ed273a6a97279d4599f612dccdd796f3ae717411aa5b21949721989986d8b766041b9c7e49a91cdd42a48fc965effb8d7fb6d33554926d203a6535953 SHA512 1779078e2ef9859bee2bfd5414ad7e4b0f0a40e6813f4ccf8de2bbe8c764fac7f99ef001cce22332a8b3840af22e9c7fb7cc0341cf8ba61303794ebe87071e63 +DIST icu_locid_transform_data-1.5.1.crate 42937 BLAKE2B d9d1d66a556ba5383abe07c23cb96765312fe9637aeea50d030488faa9431cdeccfe42a5367d84c8fddb7a3fd2550fef106876798a1f020821ebc1cb6d32cbbc SHA512 fe5b5563248ea0c78f63b8f5fa19b7298776e0d6dca062af108e388565c932d098b98f1e7eba1469c705184684a369e9d142b3123b24451bf5084bc7b83245db +DIST icu_normalizer-1.5.0.crate 53113 BLAKE2B ccd58f24469da1f237ed9a349f0b3bdbb49b8f5b1995d6254c6e3eab53a71208ff4a0b09bdc68082cdbd288df66499efb19555f41d12a19205d724af22fb504c SHA512 22612b86a24e3ea222469392763ae9d40dcbb37191dd8b9fa1c64332463a4299a53275a1cd3deb7e0f057d137f4312d990762f9925d0ceafbc8839d67c425a13 +DIST icu_normalizer_data-1.5.1.crate 50737 BLAKE2B 3beba44344a525220cb64bed28c1d869d2df0cd7091c92841ed08b1a82b958e61d388653ffce6dbc49781a8a157d427f7ff89f0b5a3bf874d1dd3f4461a1f00f SHA512 372ea6d0ed10bbba7392cb563997dca1601b3799c5c9ae585602629cd064461d096bbb0c624f14e43ccbeb6186d28d2d75e7f2ae98bc3a5ccbc0893b15dce7f2 +DIST icu_properties-1.5.1.crate 64479 BLAKE2B be7d3a1663664095f4af654723ebc74f385a6423fbd3acad325ba0d6188dce9d9321eb323c1b1d8e6d75fc9aaef3d873b609d7049525d2402456c6331bcbf486 SHA512 7e347c0a02a41a3add950290bee90a339091a713546d4369c2995022e64f127f54204b0d46cbb88f396b3bccbd4cf12720a93d8551b73926f78fd5ec01829cac +DIST icu_properties_data-1.5.1.crate 229231 BLAKE2B 9bf61185e1e99f213fda4e28e0fe196e9884de0bf00783357607ee9d055d43c4303e611248b174e7cce0df3978f028d15188503160ae2b08ef9696f9dc835d35 SHA512 f37bb469d33f6a0d5126a37469783bdbd268dee081cdcaa8d18461c8bcbf91b08a75ecabe6df8c47e532838c95816778ae7aa36a22571fbba452d84fa6d63228 +DIST icu_provider-1.5.0.crate 52722 BLAKE2B b1e53ac677e2db5870df0a91de405ebbc635c3f7931960f3bd744b57350c7536116f3861d4177faed2145b79c1c957d79815fadc2dc85faa656a1f0bb338a16d SHA512 6c11d89c7d2b788a44757f02b0e298b558ebe174fe917664401d91109cdc7bd1aba5526b3cdcee1f066018de1b775bc9dfc294bdfb40476c53d552bd6f29d6a1 +DIST icu_provider_macros-1.5.0.crate 6436 BLAKE2B 7405924dca41db72ce422437434a4affece69f888e5c18d2a92f761a8d83b180f40c8de9a34ec15d0e107b63b2fe0502cebd0a0ae6f98d9d6ee37d197e754703 SHA512 a0dd58d731556a010428fe4aebbc9dbcd626b46d380cf28ba5236ec8824045a20f6f2ec986e0c1e791bc8bc2b692a10306f448279f079b4c37237e4a3c3cef63 +DIST idna-1.0.3.crate 142515 BLAKE2B 6835a64772e5d301c2456a94f8f5f40ebe6828aaeb1d48e3fbe015917dc3ef95ac7cfd0e1f1763e23950482f4b46ef7987928c8dfddebab63947d5a29fb490ac SHA512 e75ab18297878df11d82bf3623b005a3dbf7a6fa38c8f78830c219adc7d6f4ac07dce24a5f1186de69035ec316421319e487396cfacb053674137342d72a4126 +DIST idna_adapter-1.2.0.crate 8206 BLAKE2B 5e8d7dbfea699584542cde53039df9d8c3dd408efa2534f11fce7086f679872c45d9905d6b2cfe523148eda3bb0cd4820a7b14317f91725f3d9cdb475aafbd57 SHA512 1d8b54c19878645749a1bae768dacf353b07d266f2cb3bfa1071a7afb56ca68f534dc1d54cae277b777bc97e5986f297cbe2051a82e14f553ea73cd723d9da7e +DIST impl-more-0.1.9.crate 15583 BLAKE2B 894a7b18168270736e302571d54ae68fe6c80792eac142600ae5076ae8adbfdaf91db137200f9771ffa0569e13792a9162226013087ab946778b212134a4b783 SHA512 a4f708e1852a64082d082e8403ffd51756148ac1babb8e7148209827ca51ffa7151eb0507adad19a2da2372808aa4ddb8e1619dc3174f63be078af1837323110 +DIST indexmap-2.8.0.crate 89670 BLAKE2B 65d206045ca5c8479f9436df693d282fb73e79873fa1c586e5a2922e29ceba0adad529429bed87afb4ed4fcd66bb03c29711ee4bda9b9f848a2c35dcd7cafa8f SHA512 4ac87d1b1991d4a3c332bf4f3c6fa864ce783e1abd04e80558f6e4f3b28180062afec5bd1587511d04883c52d1756f25eeed48a45a4395b9a4bdd66e6f9668ab +DIST is_terminal_polyfill-1.70.1.crate 7492 BLAKE2B fa663f858ab8e5fd56202d731b572bfdd4ab0e8262100424e27360a9ffd2820182bc57d6718a305ef82d04c3798111841c0d9f9dcfe219765c0f63edb560dc1e SHA512 4730fa09401cb4e69c92b38b2b43afd74699c61f5bd7b37605efbc0c08ca7a1318d43e4a844e46e0f84f83f42432f01e33771be2b18eb5977702ab9f894837e1 +DIST itoa-1.0.15.crate 11231 BLAKE2B 17c261baf95bff2f6cf0dbc33ab78ebbab0cf5dc56aeb7f8977377af868deb5957918f1763c2fe8c080e931489ea89ebcc16b3ebd976eeeb7663ff74989a1071 SHA512 158ca5dd4b04cb12d9292a4df63c72443adaf5aab1bd9aacdb964dc58878d847a64251f84897cb25c34648d4c973b44fef5b4c175d7c04cabc2c13b4631c2e42 +DIST jobserver-0.1.32.crate 27549 BLAKE2B 5f6556788d10af992fafcb578ecfd2c81698eea31b636d3adb7544e12155796082623735c8b10ac4c04d891d1acc307fb4e4ac3f88b2006e181013006f51c8cb SHA512 d4528113dd5a5d4a3765d55599a07e0998c69c7d21a90d2872679755ec4bd7726e9721af9220c36e1179b153ad8a39214a422af63aea15eaafd7cefc828ddff4 +DIST language-tags-0.3.2.crate 53420 BLAKE2B 7c6d6f6db5c79b00d9e2b70f1a33769b83ec6d75a3e282f61db459146cbd05cec855a9979e3f229d43439f045ee3e9eafd1255c8b7167e623c2d990b2fd0c110 SHA512 1257bef56efd927db15d98dd6d40d5607408d08fb352d6dc0323fe2bbd0367625bc045fcddbf308387d71b9cecdda3b9f8c785683b6988fbb49c87daf4cb3c3f +DIST libc-0.2.171.crate 785246 BLAKE2B 2bfbb3146d63444632b924520bc3d8af4adc6bbc38f4a7c6e8a003365430372ac1c05246684b54f0a98c36c8a7f02c325e1a6dd7fec44adeff41767e427ea77f SHA512 aca8b5f769dff18d9b3d73cae2c496f64a9828edfb0b57412da01a89158e770a5dcbb74bd83612870f9a08eb31647c1a2c92463189f16b01be8cdfc76fe0bacd +DIST litemap-0.7.5.crate 29962 BLAKE2B c94ddff0b5f6fb99d6adf31ee7c953bb1bb3741e5a68cfa598c75f58f6f426a53d19423e40b0b3ae2010e1533b4d46eefeeb7e86fdfc72289748cac897ba99c9 SHA512 722345f73b4ec2e91a9407dafd3951f1aad0acfb66e0adfed8b0a83dc1ea71d513fa5570bf960ef51409c9d50aeac23f85410ec6392f5620dc1f1e1e1f884659 +DIST local-channel-0.1.5.crate 7881 BLAKE2B b9f613bedfe6d99e2a571cc3a4149d32afa36d46a71c553de71e927620159d93c18191d9cf08f83b0b5cf0f5d100afaa939f72180dccff7319fa7c2512195b22 SHA512 a38f5edb36c4881dde9ece58e7f71af4fe3edcd60bc7f64ae52292cf8d00055c3e4ab1d85d02f40419ced2e9e104da5b2100f25402ff6ac99b0fcd02a60fc3b4 +DIST local-waker-0.1.4.crate 6730 BLAKE2B 02c85d8aeff2432727fcfb14627f3ee9b89b31ad8129d6acd66285903bf88167ac8f64e36b368f3ffa711861bb077482e4541c0f13b32e9e27a8a22ad7661e8e SHA512 f4b8d3ec7b0bfdbd755f1cfe939fd292e4d3e8d243b4d3b3a2b64b2d9c366d87b431ba7dd1ded23247ddbc7e3f620423cce31aeaa08f83453febed8d9714e858 +DIST lock_api-0.4.12.crate 27591 BLAKE2B 4504d146a114d8f8e1fe9ae70b993c713cbfe884dd69c61c54dec978733b95a853c3e5af26f237e48ebb4ee9dbebfce0f6c06067f74a3d122e92f5ace40e22d7 SHA512 525d971f495449bbd02eb70fcd84d4aab05ca582142144a5f314f9aa67ad4c5b4c98dc919a416d0ed2e555063eab037a441d671d56b633f2cb75dfab5d99bcf7 +DIST log-0.4.27.crate 48120 BLAKE2B 09a2159032baaff7eede480062da30ffec1c1d4c77e76288467941dc13722ab1566742c1821326ca5f8c2f9f7597099e235213ecbf883fd93daf5ae9ad5ee981 SHA512 8d57219b76c8a25bae193e4d16d4d03bf0b8523e1ed3bdc80a692cabe00fc0359ae9bc3be989f04476ecda7187f27e4ad23fe260a96fcefc819af00fe12a1151 +DIST mac-0.1.1.crate 4838 BLAKE2B c87e9f9283f179acd28c189d02d9d3de0ec99f9cfbefa590daa2880c275894951c5b0b935b652ab6c8c0172ac59e87f52fd49b787b230e6730365dc076d17578 SHA512 dbc6def04c482911ace311f34be79992fa04042c7ce36b71459b5af5c1c43e9fa66b6b40f63f8c3647daba287bf1c1be9b1a8031ead1d855f99a988898c96f1a +DIST markup5ever-0.15.0.crate 38104 BLAKE2B 95374e73dd7d3d1fee3659467418a1c7d4bc559fcff2bf086913d6fa4dde1d69e412231a794ba1c0cf4fdae8c8c2bc266515373860f393e27f1bfa66d5dc061f SHA512 a9931aa54681aa968a08899c3cfd01df8ec037756e4876711e4b27f94f5d7245bbb6aa3ffe5047ea091158645e1c6d10652a3d94034f332a287f2f8e097d0da2 +DIST match_token-0.1.0.crate 4903 BLAKE2B 2a0fa25e39047adcc988fd092a59980b06e07db4b4b119850dac2f87e1da2dd9c94431ed4a2bf2d66167f8d9c61dc3ce03384c0a675dc552742929f6e171dc31 SHA512 60466f65e6ba17734db87cba9732d5dc9b79826a7906182b2a625b82066e46de566c7faa586c3c011880918b8aa9b60a2a7dbd92f64d91538c431bf524d90ad6 +DIST memchr-2.7.4.crate 96670 BLAKE2B da38114beca670467c3e1fbf4e415af6f22d52e3223715d52e181babb89b872b46511563985bcc16d7ff4e82f812c6e83ad904b0fe2501b14445119dfa8240e6 SHA512 8d0e8b9c30208897d4b1b920f1bdcccd0c2b75d92a06abe4a1b2407938768abb6487d63de56c6a80419798fe69517210643dfaf11f5f5540185f0eccf220adb2 +DIST mime-0.3.17.crate 15712 BLAKE2B abb892b75b40657d356b6b53b9a45b2c822a05873453e919f2bbfeed9e5c06104f24db9cef2716f302198020870eaf96b2c62aff55cc11d8ca4f4f614d7c8e17 SHA512 e6d2ca92bb58fc747c1bb65a7f9023e5dbf4b94966003a72e4913bcaaeccdd6752725cdbd5081e0fd69d9e8f364d79664fcbe70061737d5c39e5b3e3a154a0d1 +DIST miniz_oxide-0.8.5.crate 62237 BLAKE2B 6afb3df5938ce0427fa8f61b0962b04ebb8baf76f304dc9c1b6d89b685be89c4bcc241a3cc54fbaff73a4607e58803bb6eb1689c817ac1302476db7a01d12abe SHA512 a82e36fdec6d77876c00bc4d03f2d8d90be898091a7c2f474e1b0c21142df2f362d5bcde407ec6bb48be982b22e2bc7fb23572c8aacb2b063ac20149b4564251 +DIST mio-1.0.3.crate 103703 BLAKE2B 0d2360e4ef45f37104208a31e9aa467d6db041dfeb97403a010a36e1e1427f51d97f8408948c75c0084e6c118f058267bfe87d36e7911cb37366f2b1ac6eb693 SHA512 2142edc7e9378fc3437110c85ba2cee9c9683e87034cd44275d2c389645979db53fbbc29fec304f1d8c8f0464ae17d2a5db1aa9215d696fa0282f5069700b1e2 +DIST new_debug_unreachable-1.0.6.crate 2582 BLAKE2B 2ac3dd86f1a532832a40ccfda95654e43709a62faebb8182c87309827afdd23e6d3f250f2345f044cb789015c30b7907be63253b487d368e68c4fdbc7de20492 SHA512 73a61acbc9b20b3595925360827ba8798f3338471b291fa37c72a1c9505b3ec9f688808fcaac9a2eb494e5f3ea5331d30545d5f21f89559111bec6126ac90b48 +DIST num-conv-0.1.0.crate 7444 BLAKE2B 4f5c4695006aa3ae77aaf5c55999a07d8ddfab294584fe10d73eb6abbb3f551846646156581599f966a28c74d80d3ac4373c49d2099991f7ed9edb56d36feec4 SHA512 7884c0c6599c66e40b9a79435e1bbcec60aa7e68b59686922dfab19ccbcac6a6e54f208cfb3d5a8a12e86e4dd67e09977d60b69ef6940e308a28256733f36100 +DIST object-0.36.7.crate 329938 BLAKE2B 0b02cf2f44e99002909b38125edada1a259feae59fd0e5ef52001755b6878cac710c87c60fbafdbe405281e039f68572ea3d8093d16128899090fd70df7f2fa8 SHA512 dd69172349ecf51fd2351d32cc4453760ca1d15e854a1cf5ed99112032901a54b4645b24163b946deed11f81d3e3035e1a5afd8bff20f335dbd05eceab073478 +DIST once_cell-1.21.2.crate 34518 BLAKE2B b8c64845e0e9bd80affdc59881c067351bb99e1b5746aac4393b8f23f7c536fe30ceb782c5bb54343b8d0e75809b9ca46009fcd78f970a2fc2508abdb6dc722b SHA512 f54783c33e025d298be807a2674e6cc208f952fbe0bd0a7b53e2f2d7f68d5c614a13ce9710efee405ed298700a590376df2fc07296fcbe537648e314b843d98e +DIST parking_lot-0.12.3.crate 41860 BLAKE2B d1899a1132035aaea3a784290cf4951ea3b36b2018d407e27d333b2a2ce3820e040d635009c44cb6e58ad07cec6565c0347af6f6fb02954eac2d4c348bb036f0 SHA512 368c17203fb5b9e4ecfd4857e3b1ab96b86da3770b8f21be392818c845952f72dde1072a10265760a62aa8a1dd65332bfd585667444e5fbb9dbe3280b5862703 +DIST parking_lot_core-0.9.10.crate 32406 BLAKE2B 25339d028579eb45a957ae5fdbac00288b1472d784c0aa7fa2953fcf9279c750d243ce69744993ee8cbe6899633e71e0a54ffc11e39247755685107f2f8dea54 SHA512 4f30fb60ded274d3154ffb00f6f50ac284b6fb97daebc1a2ac897ce97fa8e2ec6ff30cbdadf3b7419617a410fa7525f30ef5e580334e07d4420f4c0200a57389 +DIST percent-encoding-2.3.1.crate 10235 BLAKE2B cf8e2fd7b359a05b7bdaf731f9ae84c7fe6f468a53482eb2db7f93dfdaab64ac812b3664899db260055a93449462e6d219c695942fc5b030517b197b4df9b95f SHA512 5951ea8315e52cf3acfbaa023cb9e13a136b114c54a7da0bd44619ae24cd2159d4a96469d7572a2fdabd94e19513a033387117d7ca81d0eb409fb383e4acda44 +DIST phf-0.11.3.crate 23231 BLAKE2B 588ff9dfc05a3d2cbe223d97c36c8a596d89cd421b568a0526992a089958e4b4ae8f7d33b3f15cf935d20bffea8f60d39ef2d2e1904101f285ca9b8b8155ecb0 SHA512 20a834481bc43ac8c560b00e337294d3c14d1fe359e7f78ed08166b096305e40277f4cd3c179a740911b5c241aeb4e263afa1a50d37f383ef63da113bd6270a9 +DIST phf_codegen-0.11.3.crate 13741 BLAKE2B 88b6f0c206a95945c115401a30ba1bbf6a74e3acd4458f892fcd1eae5312765ed4e17272a814b6242240b97cc0d4eaedbf8c1c37a090d9aeda6ab23bd2280e78 SHA512 e86c3b73de198aa0ac67beb6eeebb88865f77d075b9d7f290eb9b73bfdd6728d9479f796d56e4f3358226ee88b877d848017cd951a14804534e4cb656eed209e +DIST phf_generator-0.11.3.crate 15431 BLAKE2B 0c8fa88e391141d36d6f128fdc3708a87e34ebd56e201ad56d62de8c05e9bff62258dd7f3a03b432ddcbd83c4f61fb9a57d93574a9f9a68e931720733ecfe1c6 SHA512 52998e20648b6ecd1eaafa407f7da4667fa829d48fe0c9f8f718377cc86a232a6261fc2f831ffc7051b62dbdb880654b1207ac314e57b23d2b70f634d07c2115 +DIST phf_shared-0.11.3.crate 15199 BLAKE2B 82441a3f6db12e9021552b51ef4ad8b564532833dce782938d7d721e9f2d8b7015eee7483724552b8fcfeeed365259cdfd5044e9d2a999f42baf476df8141db4 SHA512 34bc3c0dff5568f0276777614d92d87882ca6be9e3d405c1e7de90ac16ec52a12acc30ea9ab2033074d0e988fa514247f37de1a21a3727de0ef43f42f477e27e +DIST pin-project-lite-0.2.16.crate 30504 BLAKE2B efd0b426fcc6ea8852bce499fac61f9755a11c6a2999cbec514f093ba7b3f94b1f2d437ee9abb243e31f3838ac1c74491a212851d7798eb249e209b35e015332 SHA512 971adfe54cfed304647fd944c1c915e78b37eaf0de3a582fb984a5e91f1b7d4db2cf0f53a9a64b64427062d4b41c0a36baddef782411a76ae3be0f8ca45f0718 +DIST pin-utils-0.1.0.crate 7580 BLAKE2B 457e1287202f16d1873b24bf4f1de1828300128c4ba3131758e64f9784d36d47365f22d85493c3a85d854f0d8dbb4c6cef3a0f5b064014dc03943e58b7ba9178 SHA512 828422b8440cc82ac6b0743e0112fa7540d437aed457564999092b1462cd7672cd6b1f0201b67075431aeedd3d9c5127468a3dd028744109944f7f023c82fd70 +DIST pkg-config-0.3.32.crate 21370 BLAKE2B 74ded191f066bc223739b3d4afec58f23de57566e7604e3dd62001d9a095a7b6a3633fdb01fdc46960c8134a694d6bf097d9ecec62b38c4f14acafbbabd6e893 SHA512 59569110185fa665f76a13e884a67ad1578c55246abacfc18cb9f037b2d2d9ec3f2078a3adfe5cc82a451892c9ad55f918ee01362a741f57dc9ff6846a4e32e5 +DIST powerfmt-0.2.0.crate 15165 BLAKE2B a3e1ce63f5866f75526eeb749bec6607e42cb495bbb953082cde7e98e6aa429ecaa41889d98ff7ed4cf5031258b4f7e0553ff8fc435b3b6f8b4ef2b6d53d9b61 SHA512 0623f92e4d6ab284b3f6dae58220d79d9185df4a738999d68040c50d72fe0380d70358cb622f079c629bab53bb03c6e085e165d5bddfbeea84245864fed90029 +DIST ppv-lite86-0.2.21.crate 22522 BLAKE2B 150b2ae019f296dc0a15090bcabcf4981bc58159d592b07da729565ef8976e3d1b4416381c6ecaac77874d8e259995254255c8831861ac20922b810753128cd4 SHA512 94710d5b25b67539cfa828476367849e1ecaca744f2e0429b48c05b47ec48cd57f950fb9845a361fbfd96f361ac00fd2d47cc27c584b79ce3d9d8fc133f5b7bc +DIST precomputed-hash-0.1.1.crate 1640 BLAKE2B 64a37ef3edd317f771e833bb394f7c19bc9b8c844156c831d2b550692c7e2e36bce44ecf18dd9f2d0f0511346eaf0d2a0ebe792fc288ca0e94a93933f2051846 SHA512 a118a98286a47e2f0cf35d2678d0325c18b9b7d5bdf40ceadc16483b282307fd1498434d5bdfa25477a4f420d97c34d786e42e9fa70431b788b4b8fde9718e05 +DIST proc-macro2-1.0.94.crate 52391 BLAKE2B c50986bb34468379e22215c6572c2b722f54381c02258fcba6805eef0166e4bb591d20b94b9084b5d68972df8ef12476ce0d1081588cf80dad3c4ffffa347660 SHA512 3fc4552187d4130f0fdb415f94e625c156a1fdc6cc955fda8a68b49983ac8a83b897f43d1caa130c4f0932fbd9651140b7670601faa2b9b936947c3fd89f7769 +DIST quixotic-0.12.tar.gz 22600 BLAKE2B 4cc78afd08812bcf2ea08dd5aacafb29c388e7acf3e02993174c23f9ec1bd51fea1bcbc021ef62ef8bd5509785130605ec0fdbba2f827a27306145f101a3d14a SHA512 ec7204e05b9c40314858cdde68afd79ec1bc7ca25f9289a342dad6ae486053742de5e644bf11e65acda621ab4202b423a75c510af2a3e9647151bf2ab8a69f19 +DIST quixotic-0.12.tar.gz.sig 566 BLAKE2B 17dbff718de874bc23fab0e26e3e072d7debdd7398f8dfcad15f6982c3859ba181b7cfcdf28e5169f3d8d4b4a65fdf5036c04cfcd744579786f6c567738755a5 SHA512 b552215db032595f35e0abca9ee1d86ec6cb1e2687537e1f2258050f6eaaab4cca82bea9f280da704fbedca44eff6e47c28f4add95ecba8b44e26d89c0de42a7 +DIST quote-1.0.40.crate 31063 BLAKE2B 09036ff3e5ebbd775c466bb936de91d4c070481eb4b98c62a4cddcda57cd7b67d63f979b321f6ec64aabee3f5da6c28e7a3efb83f4647768ba578f1bd0bd0bdb SHA512 45a76e22a2b0bec47e4ba73c3b73cc41d821dfcce9876134c5d8eed514da214aee4ce7612e372c8709f888c0d8b9b7e5442f27adb7a59f3571f0339ed7e2ac99 +DIST r-efi-5.2.0.crate 64764 BLAKE2B ee17fae983b2c39137cb75698062a3bf8edb4bc680b04900797730618b54298e2f1d13ceab6b660f7a1799f6fc4113ca15d4320b1b95fc42913e0930f3aa16f8 SHA512 80f89d467b482297ec2c13cb0dc8e310442495483e25c33bb523f1cb66d6ce01fee4a57b36880a4f51c0e9f20eb3f993a5bc0a13224d52693dbc81b97c630158 +DIST rand-0.8.5.crate 87113 BLAKE2B 516f26bb2a969d0d79e957818133f35d2c0b4d9f1b401098ea23c5b80d27599e842b9298c0c5e46e2a6cb6953857bf8a9fb71ec9366c5ce6708cf17df14f179c SHA512 8b33a8988906ba5e2057a9a84bdd11f867a5536c22f5056eec59ed4ec4e3a6da2fd773da4c0510d343762e5a4ea0f007db4c4a7cef87a47f90e36c1a84d86fb2 +DIST rand-0.9.0.crate 97798 BLAKE2B db07e33ceedec70d4cf094ba18d010e45036d9ab847beceefd1dbfd3cf7a608d9e333ff1a0f157cd920dd71d8e63d0e3634f24076b72a88aa3ccd29f25770536 SHA512 e07c9650dda7f9686b4f604990bb7f948667bc820322f464302fac3b2a8136a2a5d48ae6399f104e47bc1ebfda105f99ad8b031ce090cdb71840afb85f6a3032 +DIST rand_chacha-0.9.0.crate 18258 BLAKE2B aa0efd158877a116b2587177f2da84832ba8153b629aaf8181ca7622bc8ea624b5a5d205d1b745caafaad78d5a55aa08a4f35822b8925acdf7d1212baf62abeb SHA512 f62a7bb067ff984049c96cddccc841cd9931daeb5b25bb69f056bfe577f62b1b35c08f2bb5028590eefa04a9369beead4e6b03607eec97256e0383b20542af96 +DIST rand_core-0.6.4.crate 22666 BLAKE2B 8b6b66d50aade877f2779c006f8038db450f808c66d73d79efa66c4178dc03db06f12201bf0e7930181c4b0f4030c49b20cce6eb7839763cf2217cad9710789a SHA512 36c67eb845aa2ccca49d6d680f28d418229bbc5a050729e487fe6b9f9f384fdd7b8d67fc6508b90b79ffb3c26688e72feceb3ecae57d3d7f59338aeb62296f79 +DIST rand_core-0.9.3.crate 24543 BLAKE2B d611130e240dffaff33f8384f13a008af93254b1530bbbd2369057ca33f295c7037178010efe76e4d7bf18e36003f843409fabec060c8c78077cba00772e66f9 SHA512 6e8e4067dbf5853c55b0ed38293b6bc6bdecbdd31bb9d624609b0222f706f5b29281ffd5fffd5c316367ba5b22c29e5282c61de3738344798ce0f9cf9cf2ce19 +DIST redox_syscall-0.5.10.crate 30226 BLAKE2B a61a155b8b490d12c62389e51540e691cd63a06a830006b06bf7959cd0d9a1f53b62827052fa72b9627c0a4f15a08bf40df44c58bd5a468fbf3fffda3fab482b SHA512 fb27b2624d26488eb439efed79a63f8e6991d51cb7c7a8deaa97fdb9fa3f5f7cca4f5a0a7ab3f9c33ab4bcd62694067d84489218e7a3885981c1dcfea611d8de +DIST regex-1.11.1.crate 254170 BLAKE2B 5cf41012fc2ba8a006c0eb4a922cbbf1614bf300be361c9e2d98956a9a5e9b140e37bea09132fab7bfb633d4439158723624bcf45e8c619c4061b399253c1b82 SHA512 d065f6dc405771518260425f39a5eaaf8cab62e78c91ceed3b3994a9a121674d2484cadaaf816bdad89c87a40550d57b66a3d9de6618a7119a658301ce7e67d8 +DIST regex-automata-0.4.9.crate 618525 BLAKE2B ee3fc41c8c445be4c1aa3e5b19a3e61efd641b1a24e7a1ed55f837c1fba9c816272cb4645c13232b66b170bc7c413802928beb22e3891500141ad4ede65b60b0 SHA512 40bde0ec91cc27bc0c3fa237a37ecee5a1f023dbe006a999c5888f8f578ee2c4c64d9edfe1827546cea8e92ca3c10f8b4d494d81f3d0422b40d90bca9cf598d2 +DIST regex-lite-0.1.6.crate 95278 BLAKE2B 02b9cf7758e6eda37384cf8d0ca2560bc0ee595015c17cc8a230f7dfa365305eed8d5a99218aa53ef49fc62ce1158014ab81a7c8497beea5a3729867e984eaf3 SHA512 98b5224ae530c78ce9f1981f31d8d9ab5ffceaa2e391ee33d74e7fd21650bc5f40eaa8e627c596772cedf084f37f0463c57c9bb1b7180473c6d0c5f95906aa9d +DIST regex-syntax-0.8.5.crate 357541 BLAKE2B fc6d125f7a8574c37d81c75cbfd447cbcff736f2d9991b19814ffc1a414ebc5b76e84fb8fd36c983b38e8e391d165cdd9047832b0d9100f0e1ba7085484b7db5 SHA512 549d8d130fea9ec0d5806126f57f31d433f50e9328c5532ad417c44bb5488ec0d20acb0983dbe54dabaa0b453cbea4533cf7baac7144df119e8f78dfe55c5ab8 +DIST rustc-demangle-0.1.24.crate 29047 BLAKE2B 8248b014eedb26cdc0b748544ba91b9aae9c992a6f93b4d3ac256b78f691d572f8885a3575492ea556698a241d2759743968293079ca02bb6a5f318b0ed66dd4 SHA512 eb897c35300b87766e6105917a907fca1c5b1f7691fc03c6c1aaf38075ac883a73d1eb54a245d13ba59c7b0f0333d6543e23fc1b1c542fbbd5c750a84660b9e8 +DIST ryu-1.0.20.crate 48738 BLAKE2B b126085448cb58639a7b5867fe313dcaabaf19df478f67fcb6cf15b8e881a21e641878345e0bf1fea7d24b56b921e667fd26a39cb81fca7ea02585332068263f SHA512 329c581429d9b8baa7d9edd9cf20e23fb8002f339d9fb3d50ed4c7eb68fb19c1ba966d52a9c9602265ca5f59f2bd4393ddcb3a7ac20c64aee3096e137eb2a384 +DIST same-file-1.0.6.crate 10183 BLAKE2B a320c8343e0b38078ba81c4f0159d886bf47764c74efe0d7cd2b3218426e8341b51e523c00a9e5fbc2ee1057618296bd70b576c68751bd55d6ddb352defaca15 SHA512 3ba35309742c8db63210d9ea78bff4ecd80471d69e6238eb96c7bf0673814f221e2d838fe6311bfc5a0e71b4a7ccba33e07859c0b9cff2171969ff08a4214a7c +DIST scopeguard-1.2.0.crate 11619 BLAKE2B 8b7e9ed6cefef9ee55407fb9690d57a2a98bb93e5105aeebdb475a52485e9e185255249e1dce8f83cd80534e7402d485aac3efa7e8493b13135de27550cd4bc4 SHA512 6247719a15fe1e4e2d179127b9a934bd2f99367724f41175ed9522f58824b6bc69b35002eae66b35880375ff61d77ac43ddaa78cbde7160a35183a1da32d3fbb +DIST serde-1.0.219.crate 78983 BLAKE2B 7e9542a04c7f1aeff95b821245034368ff1721d98d7138bb1e0a99cdd6436dc37d69606308834fd33daaea3a1792409b3b2305b802433fa1d155816c55ca2a7d SHA512 0d3fe9a47af027d0d79499e60d940661dba6e29e8f0ce47d0db2ab722030d255aff637248af6f893a9c4224239733db09ffcdc6e1923a7177bfae55c98ebe769 +DIST serde_derive-1.0.219.crate 57798 BLAKE2B 071f02019f829a2753769ce915d11df8f0d202ca67314fe83b42e1f1f3d07bc91b7e7c38fe498a0513714f80d3a3dbf2b447b1f85762de06dd021119801afa89 SHA512 1676bbf09e11273705a35c540d52d35d1bba7cdf1f347d40a364d7ae9269167f9f0f62ff4fa384aaa613c83e432a8eb3c016587ea643bb11434c00664a5c116b +DIST serde_json-1.0.140.crate 154852 BLAKE2B 733aecfb88fc37de37b60fdd33a45fecc2bf0ac2165b81bdb12665de7e26633836160e927be5d538eb2056a799e85ca4a1008cbd30af23b72a594643c6015f22 SHA512 bafa26fd43ba30cbf73572b8203292b1f275995636e9dfc3d47954939453fe4ecf0c60f25d2af1ec16c7cb0e7ce3b96cc07507d1b53b7db566fe7cb2624f0e12 +DIST serde_urlencoded-0.7.1.crate 12822 BLAKE2B 38c74ea862f041828467dfa586bad9b8e1d1d64a9f82fb7f98727e3965377d00e59f2dbf20955a9dce976b6911c0a619d2a6e4cc9dfc73cf0f6c449d873fd072 SHA512 b209ad01b6565e95c1d5b431a3f4f8a0df3d11c2a06a44123048bfa4b34ebb6807eec593f0c1c89de3a06ac3786a14747df9c70b4f4d5e4b72b4feb53084eb60 +DIST sha1-0.10.6.crate 13517 BLAKE2B 85ad8dcd237125945f6f9c2d7a48bc9802dfe8398a2bac86ddb96763486092fa18e80a2e69f89cfd6e95599d34d60ced33b26a68cbbe39bf158238a79433584b SHA512 fd37be7e3f1d4b6addd313a36b55215fb70abd21be7831b71de28bd3eb03b7352817d8a7b1a166df002c3a23eadc8224e49edd4a37556c0e5357565305d4128f +DIST shlex-1.3.0.crate 18713 BLAKE2B 18800c364d3a628f1a3125097ea82fe6286550c2997235df0bf8483a3906aacabc81308cb239887d46ba2f457cc6f8acd5aca78316707eea5098cd5666aea67d SHA512 5c8cedbe666a14b8a0874defb9208146ce64579cde52ed483e4a794cac5dde6a24bf8d684404edff582f842e1fd4fa3fbeddbe074f191e4ec4aa517aa456fe8a +DIST signal-hook-registry-1.4.2.crate 18064 BLAKE2B 7274d4c115678eae2640a709bf9d682ce867c1f6295a0c5f49e492f95dd1c457f20b56207a74221df1fd9d744b24c6260e28f705777e3c7d47b7bdd36f1d57fb SHA512 16362d232b1d301007c069198d7716848aa73d898ef92e050422b36c09001b4334390dc95a6650e5315377fd8960d4336e5ae869b0a305e8525e977b8327c508 +DIST siphasher-1.0.1.crate 10351 BLAKE2B 6653898cf0eb071fe83b7c317f93ffb73bd26ed601961173875b26ec8851632599891ec178b7e14318abb9eb98d522db8022deb852af9ad9f6bf38a5a5708e82 SHA512 d230991add51a555af95b30ef104c0e5ed7011fafb92d6ac9ba0f238c8bf4d2fbd39f4b04dbbe960453f8fdd16d3768ba39f39e4877ad453562e689ec8f24a28 +DIST slab-0.4.9.crate 17108 BLAKE2B 8e5288c4d00efa915e7be27b55f2204850968624f0d8101c091a357131106bceeea7a63c98007420c12f67893dd2228b15d3f23508108c3a0ceaa605474bc7a9 SHA512 b6b5423ae026472920f7c9a4abe0962314140a36dc562c0a9e3fa60725b2b8b7a8b343110d9d4c0e18fb318b0103e14c0ccbc9ae350d5563a5ac80c35f228c40 +DIST smallvec-1.14.0.crate 35561 BLAKE2B aa8ee61800a6d13eda5acb4e9dc03543160849479a96a72c50ab38013b23e9593a665773b455a09777038edd436d7a35b501f6d4a0e16ff49544be60345a1e50 SHA512 90de38f208f551cdbf4980fda2314dee57d4e2bbf769a01c47bc849189e9243474932052faa92fe0ca59ecc9c5d1ed84091ef87f724343d38ebbbf710ba232be +DIST socket2-0.5.8.crate 56309 BLAKE2B 309e5a0e46d0b9debbbd6049a138e56b82df4fc0e9d1115745ed935eb40c81b004ad748844f641934e13b5b88773db5cc4a57fc9e61dc82b5322fa0232110864 SHA512 b7d03608a3d4cf3e2d1539b5a375412effcc96279e8f57668fa8cf67b3f0a3a6b611ea5e2e72f282460582954acbb5364320611f7798a11ec9e4833e53830b60 +DIST stable_deref_trait-1.2.0.crate 8054 BLAKE2B 287a65c3e5b47213544a43e57c60a54add60b4c2e3c8d042407d860cc950ba7ca01a2e67ce56aed6744992b61ec1f9aed3321e3d88482e33129548b7d51df205 SHA512 a13cfb22723f1f2cf089b2d07d657846f50c37bc0438d1a76096bea30214cad226b7a422c21f9e191ce87071da8a141d61882aedf9e0203a5fffdfda86a5fb03 +DIST string_cache-0.8.9.crate 17408 BLAKE2B 7b38afd1f0bbd5a6cee1d2cee3579fa071a118025463dd18a1298cee580eade5bbd5c5c780398aac40c1a290a9813ece0f48b3f83ce1f2d594f13f8587ee196d SHA512 a1b85e609d52b2dc01536a34d1b297e353b60255fba538b0e80d37771d180c009500d237050fb95cc80c9bb69b01763d2c367b9dde71c1a0e475967fcee9b0dc +DIST string_cache_codegen-0.5.4.crate 9406 BLAKE2B 20e38c57d612d8b78677e664128a451f50eb18ca7ae839955e4b106b92a667ff7332496b23f24622e5448c7fa44180a27f0c5b7e8bdabc4f7eb18f47f7f7fafa SHA512 0c5e6b3cadde7fa48e5cdf899ae941026b7a8409447b777973afb7cea449ae439b59d0c9d4394cf96a9c34f3e52118696305688771a2dfddcf49bc31a0e6b161 +DIST strsim-0.11.1.crate 14266 BLAKE2B 252a9ede4241b165525486aa8855dece37af77f5b28e0e1858c4a5d2047db9fa958328db10989234aad69463ab51b2303785ec056c63ea8c95bf95e111ddabf2 SHA512 0cebe0155a92640e56db9a599ae62078cbb32e1d2da8bfa67ed0e8f410a7558dfcf7b3c2720ff5913282e291ecf076aed9fe9bf84c8d44e814a642b1bed3335c +DIST syn-2.0.100.crate 297947 BLAKE2B 50a9b244732eebc16464bef152bb620d86aba590942b0d68710d36e89c0ee752629be5bb8db48866c7d252d545ab910625891a5a9b499ad9142191881eb9b42b SHA512 082a975c6448febe38abdc0b43ae929a97a303c0f980ecd2bdd6c44aa2b39ee5aeedf6b1c84316cf088e0d97aff011ec0482a5242ddb338dcf7db5d55926cf6c +DIST synstructure-0.13.1.crate 18327 BLAKE2B b29ee88c559a2d58fa46b7af155b448f001649ea79a1898f0ac87e69108b87c65cbd287d8f9001f360df7fef06ff39c937b48d33e487a30c8eec6a46c639c0c2 SHA512 09024193b44fc9a8901bda845b9f86c57dad65d0f53e309b2e7e968538fab6f67db1c86e5e52a2eb8fd116dc073e3ad10983bd60764662ec6ba94fee22a958aa +DIST tendril-0.4.3.crate 37210 BLAKE2B 0a70926644e8dc492247d49b8939169702903c2458d7b2c0fea2e6ed54166909f484e8e876eddc8ff7491642ec24a200c5d1e51412c6a7c26ee60f1f4164e98c SHA512 53f074aec6e59717fca280b1764f6c2e0a1c073336f48d012ff268a7189697d42d24a91a6a549c7d9e1fe8b0006e34c219f4dba3cc95247d3905c6f8a6a8186f +DIST time-0.3.41.crate 138369 BLAKE2B 1e6e22c973dc33c950886e9628864dfc07e52dd05fb6880ff233ee4815f41172374af9672c44d53c56c6ba1ca38c53315ae1b4999f1fea3706562880481ddecf SHA512 be43d521ed6bfff6331d614112877b0b68d99ee7bad8533dc0d49193bb130f25c933bd7c9b6af873de252f9aba59becb47ef72774ee2e57de106b6f34b646170 +DIST time-core-0.1.4.crate 8422 BLAKE2B 3c9fd96b77b2d405ef696d62d18639945b81d1c8d84f1613f440a4d61a373f767aa204cf557f82d41a990cb74e952b5ae51e467f9ad0eca0175bf3cc4385dee2 SHA512 677e6b67081901b2f0bf2856a2cc29ffbb0ec3a4363e6deaa3082890f4972669f30cb55863462d8510462faa6dd698b013e04921a0657005633506b51dbef531 +DIST time-macros-0.2.22.crate 24604 BLAKE2B a511923e4c8d790ed422e4635244796154b6893a3dfdd32e9b960fe0a12749a23656335573b42c1245984988382e6991e242830c770378580a61e9f451bd06a5 SHA512 7633ea40338364add29e7cf6beb7f2e9c441a8fd6079fba9b9fd13dcda6537c2ccbc3091cb6551715649d13080567fa26ed6db4e4b3402736105f526da2f45bc +DIST tinystr-0.7.6.crate 16971 BLAKE2B 33a248261c4cded41a81f0d6e6c8df55437f042b37f235c39787986ec562f0dbff50b282ad0f1483daaf49c4b33e6618e139a6677d1238c21f4e12082562b4ae SHA512 a33051848de248cac0a2d151760a78cb3aa62c787d84ff7aac38b11c0660e9188e4d43d43a77fb8676e49ac6102015e9c3db057848d809e71981851875d0fb25 +DIST tokio-1.44.1.crate 830115 BLAKE2B aa5782eb5c17671154aaa5f306cd97a7f47c298b0aebbd9641183796a77fead391c837986873e27ba617e3ad61d92af050ea3e1bf269a7b6eaef508d1571a635 SHA512 41250b12a7fef14026215f098eb5aec128c83d601cd6f005943fa06f89a096a384c0a5f66c409d26281aa44b0039598d8b058ca86d9e58d9a76a780a58db7d2f +DIST tokio-util-0.7.14.crate 118861 BLAKE2B 77ce7e2a6eb3bad6da00a4614642ed8493a9122e096e81ed5c529706278b8ed03ff732df2d8ae053f82407942fc13f23cb4b4eafd040a31a65450db73cb0d171 SHA512 7a4652f539acc7b7ca7b726e63279a5cdd2863620f0e79c7a643dcb4ff1d1778a1734ee2fc02759575cd651bf5ecc1d0228562693d62c02b5795bde3f712e555 +DIST tracing-0.1.41.crate 82448 BLAKE2B c056d938e001654e03efaec7a11eb8ecfbdfe9af2099271fcefa43f4f4683b40c59f7111fdf7f27df4da38bcbe94f1b2ac0abb6ec3d6e6a0d165b9fbb14da3a3 SHA512 dffb8d3a1375f1b9d5418550a46cb7b1d92b2cc8ffbccb430a38f7731547960775bb42798074186711847d256eee30fb3e74078b69cb36f28c07d9f231dbf96c +DIST tracing-attributes-0.1.28.crate 33280 BLAKE2B 4f4bfab16ad8a296c9399125edfd4314d55ef58977d8a1f3e867618617feed898cd14766527c9b788d5fe3d3f8ee5bcca0e26dae79a2e6cf05366991ac23dc10 SHA512 4a3d5fd76efc414c86af0721aab9e9aa70fcd6b08eed4acee8c2af5af56fd665197aea612187c7f6022d1acf5567d5b9e72a7dcdcf25cc401135d875d95a99ed +DIST tracing-core-0.1.33.crate 63434 BLAKE2B bc36332ffe5f4c95ae2d12df43944bcf589746cdb923a39098e5f4007fd1f19d7c3bb115011ddc40c13e3ae0e5cfc9a59c49861824e99fed7430fd29479abacf SHA512 1c6f0cf3b7bd6c8f6316ed9ea0b315a619308de6cbf7e50e665a193cf8c3399b5227d4f145d83b10c7e01a2f9fbc83d16e108cf09b7fd6cef413aa5c1acf89ef +DIST typenum-1.18.0.crate 74871 BLAKE2B 99116d32b5317a658526daaf4fece2b9dc8cdbbc30c1e7a32fadf913e56a270a742abe0a0d348ea6039ae74fd4258c702d4626b14071626b7c5d2e2c31d82dec SHA512 c30ca78f8ba2e3e1bbfb3472c01974a0aeecb4471640ef373ddbef984ab37bca87ad4eced8193e5db6206d35ead31ebc25cdfe958f371625eeb97b6664f9c9e3 +DIST unicode-ident-1.0.18.crate 47743 BLAKE2B 517ab42a847020515b2b871844d0571ea672340f89a762631a791eac18935ac122122fa5566e58b99ab47de179eadb5298e8ff1d05b123c4e93b7fa989c8e31f SHA512 d11f89fb696f9e2953c96a40b5478832651b268c83b9c7a700b07e768e795d6e8dc346597d1226df21219d36866768d1f640bd8edb68db8bd3d5d437b2bfd324 +DIST unicode-xid-0.2.6.crate 15744 BLAKE2B b1bad25897717f6346f988d5a7c90c51fb842da113f19aa434a64add8f2e637258d9fab0f7b871fd2aac02e83c68359fc679b326232793cbc804523e2bff5056 SHA512 f68e78484479a5341b14d7e3391e691265851fa00feeca53af745479af6aa9b4ce3570456df785c8362043db9b04e2e57f9bad05d8305946f16af405bc611764 +DIST url-2.5.4.crate 81097 BLAKE2B 74943c63809ca41a526a146bedae66f91f390fbd2ccbd90f9397d8074ee7ec26535f0f67170eb1d7232e139d8d795fde99be37f53f1bc32c6a6a4d46aad1369f SHA512 8f1d62bfdd45f52fa12ad657a521a3478d0ab54d187346a29dd59cc66a0f140ca96d850948e09f6316f08b44b3fc68526c58bd620fed5d065b7e8528df3cd46d +DIST utf-8-0.7.6.crate 10422 BLAKE2B 296690040895ba9da9e69d527aea415f4bd6bd3c010e67a08f9cffd2f4cd92a99f9ddde77512f9ef5a0db069ac9ac3cd6fd91aa18f0bcadf870ed212fdd76f2b SHA512 6bf0787cc297a1ac4e47389464d05ef6850602f549621687e776618bec96c1f7bacbb1ac8faaa63e5d28d975b850db8d6c784eb66e2466128f0521b91c14015b +DIST utf16_iter-1.0.5.crate 9736 BLAKE2B edcd9776113d4d2b267a9cbd58cab11c5497ff1a8252c4e695de619fc8e5eee1595343c857651774b3670d13392144e9d7df579f2e226842aa7e4e023a76fb65 SHA512 44dcbc5a7db149392fdaa31862be240f78fc5d7616f54be32cfc8f3adbee310e8681ae1bbe6edaad8a7fe6e7759dbac8ae4f69d0dbdbe5350c21dccdbbe975fa +DIST utf8_iter-1.0.4.crate 10437 BLAKE2B 1e7a8b9241ebbb62cb497542b970473780f735010a0af900771a43abceae4e7f362d21d4f79f7c00630e4549400875ea17574b2cbe4f5ea19e8ed428e3b5577d SHA512 a72671995b3eb295581c60dc632e4a25ba257227fb5d58a8bec322428b6d69529bba79a6f02b8e7ee6698b7779d9d6695f5badad73e07c254b00c9d6256c9090 +DIST utf8parse-0.2.2.crate 13499 BLAKE2B 095b5d219ab8ff04c06fd6303e03d913ae36a57845f0b2ca3217a40e31a54cb0fb5ecedbde165d28f5f60f1553d8252986d7098fa83befc84a7cb20bf3b76144 SHA512 f3dbf78fe924f1dc3cf9498b6e43fb10174699463f31091a7a8136d8f31ec84fc00e80e3d8551b7e86257e8b3573cfddb56fc0de797fdb2cde0e962a8f239266 +DIST version_check-0.9.5.crate 15554 BLAKE2B 131e75cc287518831e142430e2a39b48e4275874f4473780d47a27552294097aa1cddb65c385583e1022478f940b495eb43c24a8b1617b8ac5a24af3340c0d72 SHA512 d11d5a2240ab0c67ea69db56561ce202201edeef9a8e5eda3d9ae7ab7bb5752d8f343fe7f6536d8383de8d55f9024efa84f66a0c21e69563b7a38c4a628014db +DIST walkdir-2.5.0.crate 23951 BLAKE2B a2d3a973f206e94699adec0263dd5e211347722cf3ab82536295019268b3125084da5dbcad818070bfdcb6a5de08da4eb483475bc225a829f58a1e3e040b5fba SHA512 da36a121dc6656942dc9cd9887fcf4f6eea7750354ef3f59c7c25d836e7afe06f33260b4d55d0d99421104ed4ce56ef2a1f0f4c3b713766fff90548c21793fad +DIST wasi-0.11.0+wasi-snapshot-preview1.crate 28131 BLAKE2B fe501889f25d65e2d032f885cc50c4f8bf7dd70fd5cbc438de349838370d8699e9627b0a4fc76030ea9fe6d508f41d0c9928a875fdbc47e73bfb17241cf7b155 SHA512 043500ab28cd9cb779475255da5d109ebab7fccca72b64873dc28d77bc5a157ba8d96b9e8f05223b5b36c7089bb7b4ba87657fc69bac16b78972f897294a865f +DIST wasi-0.14.2+wasi-0.2.4.crate 140921 BLAKE2B 6b3ce7cb8ed888ad65053352b02b827bced3b59118d546ba593ffa9de48305bef62419751036e22b0f95c22fe34ea1d7bdf7fee0f6981181026d1eedfacf73d9 SHA512 57e47ba27fb2b66b34f017c85743b99687eb8bcdc1312fb36e30d0c501e670f00dc7d6113730d819364abef5e8ec04d95f0d1150ec2b6049e605fa8bbdaa2cb3 +DIST winapi-util-0.1.9.crate 12464 BLAKE2B 7fb9dd803fc2608c4e5bc75674472992d82da364f24c22072d5624d6ae6abc44abd3e3ea3c45a7558e045331f3d87572b306b4ab5de52c07ff3706e7f13c2a38 SHA512 c46b893f67ec6e36499b00736bb6b9421e0e2611e76784afa6da01d7ebd033df82f1be7cf8d871d541125d290983f98f26f759488ba9aface49efce8edd682e9 +DIST windows-sys-0.52.0.crate 2576877 BLAKE2B 69d6b560ccfc8f679e2678663ba606060d71fa28efa82c8aef8cceaa2c63b06f2052764d60163964f939649a26bbec6361ee4b094555e941fae92070db566980 SHA512 24ee0df246c2b456a4987a9124786a28acd358768cc7d1305bccd81bc5bb8822b81a03fb18d35174a520b911c6d9b685f81a34ab319fee13da3b985273584f03 +DIST windows-sys-0.59.0.crate 2387323 BLAKE2B 3110c8cd2bc005f8c95cd038a8d574af648dc19788fe4485f977376f92e36b911b1a542d669a07ae9cd4ea72a884ab01ec78b8a2b5587456eb202452d1d8fa0d SHA512 d35e009e979633a1f3c8468cd038bd5c8c0381405165ce03497decd7d9edaaac485d704487e4a61d9aaf4e4d011b4248408912df6a0044d50e8457259867e061 +DIST windows-targets-0.52.6.crate 6403 BLAKE2B eb98d0a8daeed5fe76e7fa8edb2743e2a3e77dfb9c4ea68605a6ab10532cb7cfc43bc1cea0180869445bd940be762a40136500e26b84ca88b5e0c502004c7a4c SHA512 d6d2dbd96096c6c396dba141a9817e377c35877f3b2fe58b2553280c7cfcb1ed6ee75bd4d62c9b882662de67ddaf0c1049b91530d29c94dd709c230e08eb895f +DIST windows_aarch64_gnullvm-0.52.6.crate 435718 BLAKE2B 8b12ae02892cb69401329034bbca671d13bd268a112120b56b90504707cef89decfbd2560492844a9f0588fab62dc1476ab7e931126b939015d25a8cc91ca334 SHA512 f62b2d942bdb3a9353465b07d47b93de179bb706511aa497e4addd74cff95e689a9b633e7801ce786e73b5ae5f30b506b6faa199c5ab86eefdc1d94652df79c5 +DIST windows_aarch64_msvc-0.52.6.crate 832615 BLAKE2B adc8ff61b6dc96d39c92c7d4221ae6aa0575edfc016cfcd046067ca5d8fcfd56d10e8e227be1c038ce34684be22c7ccaf5f18cd5a7638d28fbff4ba15b48b90b SHA512 a3e21305ad0e6de38f5b5ed5d37ee5825b7521064163bcdf31d63341cd87983f54377865d2daf3bb480d2d0aa66d6f598fa09540ec1d71baea74569c86bd213b +DIST windows_i686_gnu-0.52.6.crate 880402 BLAKE2B 5aab8ee07132eccb7695807eb44811beeb0657aadfb672c54e99b6ae39c067ba9b93e38fc69bb5b9b14a9759f263ccd5e301597d2727d83b31b49a409b6bd405 SHA512 a1f6b5dd23d17ec3567bc9d11a4be6f35e196eee21ca342e9b88dbaa6a5f7c46e439c834b77e724f32ac22c0d81573746b3b513a6c944a221b92b2c76fe98822 +DIST windows_i686_gnullvm-0.52.6.crate 475940 BLAKE2B fec4fda8bb2bf319a501a22372fa642ae682e4dee3235b258a028190ee73220bfc55b3142f06249bb4579b17e5fde662bb2b121aefe18544653350d7d0fe7d8e SHA512 95f13af855d530acc0b856214478d4b11b8dbab3f8f79dd223d0b009790c0e46d096fc1773e0277997deb2d5b96c704f17f23c7df11411524629f75415dec99f +DIST windows_i686_msvc-0.52.6.crate 901163 BLAKE2B 99ed34e052db5ba77bab240ed5d38ce450be347a794d63ec39b719304c32722c9999b540ab40abe0216318900b7412970df99dfb36d1516a9517cae0c77d1bdc SHA512 ca97913ce202d73266cf55947b868bea7e964a4516b6a096a81aeab6a60ee73867171032ced35e3afccff741ddfb2def7468343b6eceb95253e4d4f349efbf96 +DIST windows_x86_64_gnu-0.52.6.crate 836363 BLAKE2B e2335829155cdbd4a55cc9f9babc237e14e32aab97f6f91afabcdf80d2aee37d6fb4b8669aaf433ff532c85dba59b3d366c7d41b61a2f29b96f960169c900687 SHA512 c4086bb0280042f2bef9b556283b67f8a5cacddd209e1c5fabec63decec6d4fd2d6a7071407973981b98ae0c0cf7034fc612f9e70dc6d3eed9acdec771ae31cb +DIST windows_x86_64_gnullvm-0.52.6.crate 435707 BLAKE2B ab77dccd06328cdb00175f41cdbc120594050a9678b7f9820444391fb50aada3911a91ea00f3a6db2b4fa1820fd23bc9a007dfbe65ad41417c26ee1137ef9b96 SHA512 67681f5859e249c56b0183181811f6212cc7008d6471dad78aecc7ebe3d027686b19210b8aa9014c554410f69f913d21ce2aca928eea905eab779bea26464cbd +DIST windows_x86_64_msvc-0.52.6.crate 832564 BLAKE2B 8e9a3044654c6de99a9153e7cacd575474e7a8a3d883c67b02132af5d3fc99d03cd5f7a4dd666a3947451d11218e6acc6eb5e2526f012481106cc13453839719 SHA512 21944cd8e3a481b514509e73ae3f62722fe7ed380d37ea0c25f8fbdeba79174dd52ff65d898838da5df4197894b74e00f45d47489418e978753b4e55c7e623e7 +DIST wit-bindgen-rt-0.39.0.crate 12241 BLAKE2B c8cda3c7a513dca58e2ad52b03692714750870801af37a235bfe1f217afe880f36df56d8e54b52ee1cb9f4e30f5580b8a28519b44084d2191146977f237e406f SHA512 24b559688991083057b7fc0b6fa9f84445ae11cf53fca20887f55da93c24d97c9a3ed6488b3a845fe88243530b46442d3c2de70da4dc1c64f3ac632a440ea2c7 +DIST write16-1.0.0.crate 7218 BLAKE2B 548796314339463e4b71f8af3d344e45dc89480e103180b6d56c90fcb816ad1a37ab2ba20766c4b9754f2cc686752eb1f3a5a12ec1ed4369a9cef749ad4f3e97 SHA512 655a207b8082bb88e462f992ecb4833cef9d590da06d6356b41d109df2862b49ee5705189c78a607b549e7343035119d158020d58fcad49608e51659357a83c1 +DIST writeable-0.5.5.crate 22354 BLAKE2B e4ff9862c070b413568ce0c75d1eccafcf1db8578eee4795ea9046dadd643f8a77258b437be288b93af247199d63455298ac2cff909226bc432f91c0aa863921 SHA512 818b2546c8ec25816aeaf5e31a1ded927d197bf7256e7c5073738c2709bc58a95d382a0256eb38a99235ae83729b578701261866d42ea3357a26024906e196c1 +DIST yoke-0.7.5.crate 29673 BLAKE2B cd2e42103140e080a29bf579fe5176b36a192f9b1309c1f2fd7557fe93b2f6eadbf6fca4a6a3b1a7b6288403d2f643841dfc7a5b6a4476776943950abe5c1613 SHA512 6bbd99671d1a5a5217890eaa267113d193b3636b265393afb6e72a313f01704d462fe017264f061405e8e84c188b590094c29e3fcf19a63c375ae165d1a0bbef +DIST yoke-derive-0.7.5.crate 7525 BLAKE2B 9b6b97eaf3c50f0f5ce8cebf685a1a17d4c21eb9b26d38eac99e0a4c0f9d592e95a7843b7a0b897945a14c4eb78ffdf2c0972b448d31d7bc7b077f27aad81d9a SHA512 e30b06b020aa283080905004295fb643c539b130d0d53bda51927b95e79ba562336aad30d8a6202d9a0c62d5b64559a01218c6f02f3faada6003d4b03c205cd6 +DIST zerocopy-0.8.24.crate 243777 BLAKE2B 01742167e36d19de6cdbbbddbd0ae303e729094fc68ac05a11cedc50a99c6fa6ea7622cf984d6945eda133b73d87e2bcf3173cdb57a9e15707882e119ae3849c SHA512 8d9d909486248fd2b3487cb7dbea1d944ceeb5bcfeca227df80c869dd0b6b5c78a73389f171d3f6c33d9a8772e7d6197abcc540d47db70906f12c45cc76dd6e8 +DIST zerocopy-derive-0.8.24.crate 86487 BLAKE2B 0a66fd7d9a07f919fbe774a1480e1b4a9d5302ef207d8d7427a03b05f457792f6f758969ccae0e4f3422edc06d017e635dfee4129f8030b36ff9f9443856bd36 SHA512 cd683875b46361fa0423e4fe0c933018b254c753681d5e14b941e443374a065236e6af553caf1f452c1aaa4ebf22e0fa6f304217367b66e141eb31b265e6b31a +DIST zerofrom-0.1.6.crate 5669 BLAKE2B 1428e9cfdcdae13b39b7465524d1b8b79bdd89f743d3db4a3305c2b39d61ad7ced958dabd673a135147a04c8ace69d8c710dc06c6a07b1dd3987fc0a45148094 SHA512 e87c50b4f87caff70d026099bddcced73398c432f6aade32d74ad199cb3a985956bac282f48efdd501e64e80297afe4f8a4518db32437bf297fcf51a6f94bbd9 +DIST zerofrom-derive-0.1.6.crate 8305 BLAKE2B 9ab7425b450bf8c47538be7ff32901045393bdd91b9687b8a32ac194b7272dbd4f5310629647c6710f97a50cea45c722c018a77006f24da2b44a4c475daa54cb SHA512 ef4226df3c9ca9c0146639b19d9aa611f2ea3148c10ea875f43ca1960ee8ed438a553b078a9b449a58862f44cb7d4434fa35bbd6db6f0a773618f63d2575c985 +DIST zerovec-0.10.4.crate 126398 BLAKE2B b078784d6f178bbb9de1c3c1b6c7ef996f00bdd7dfd2924bda921e62f3e09e953fbf50f8d0da99ac6ff6d134f146253846f5663549dcf8df08eaf34b9d4016b3 SHA512 db12bba1d7476ddead92e6dfcdcc30e2e0defff4f263a740244eabee265a2cab265473a663d3dc3210f48e113b66d951da496dfab7965ce1bc792e5f2db422a0 +DIST zerovec-derive-0.10.3.crate 19438 BLAKE2B 9f7df8a4e4a0b62ab25aed967b26509db4bcc5d5b10b3bd73305099a4c49a60be8921484ced1a34d9b7ae30ffa5abe789686f432416a8f1cfc07de1db1dff594 SHA512 caefbffeb35265db9f74933bf07109d57f0da48156cafd4f330af78a5c7eb9ab0831a80789ad4fb119875ebc6cfd7e3de68c9984b77dca5151f9be41f1ae6e09 +DIST zstd-0.13.3.crate 30514 BLAKE2B f849d794a4e9157c95d7fcce57551a0fe25098348759086219adab57f37b328e9701b65994da30d8756adf12feae4407f5be92f6c1ca43a57807097520fcd04f SHA512 07e1589ebf2aa169cdc50381f5078012574e3613cc89f3d02914b286d37a9028124c6d40ee8efd75ecc50f31e51a24d2ad0a6e83e669d7dc6477fc43878d4751 +DIST zstd-safe-7.2.4.crate 29350 BLAKE2B d14a28f39faf7ed77b9dc11d79cc3b0b79f904a2cf2e78b184a0e57f02bb4a5c49c71c6693352a4f1e6d4653e570c491d52a4dca80293a7f98f49659d1d2ca82 SHA512 b4f3a4dc63814a2a088e549a0fa0bdeeba3e5ab3416c414207eb9ec1772f8913002f3b94ccf0675b651af94ed12eda427cc90dd40a8e81b3ed565ce80f4db1de +DIST zstd-sys-2.0.15+zstd.1.5.7.crate 774847 BLAKE2B 9174ef2085fd9f8195e035abc49d4f1670f256ba81ffe60ddde8e7f42fe3b584e4eca5a455deb1da23cc5598a8f81784f09c22adbf3f5266218fa71338b9419c SHA512 c684e3d966746dfac12947174d7786f528f2e26ed2802e24b457a751616a9b6e6a274d77f70f7e75a111caefdc4357257ed4c2e2137cd2f051206f56e9cd19cf diff --git a/www-misc/quixotic/files/linkmaze.confd b/www-misc/quixotic/files/linkmaze.confd new file mode 100644 index 000000000000..2273924c7f03 --- /dev/null +++ b/www-misc/quixotic/files/linkmaze.confd @@ -0,0 +1,10 @@ +# May wish to run it as the same user as your webserver so it has access +# to training data. +#LINKMAZE_USER="nginx" +LINKMAZE_USER="nobody" + +# --linkpath controls which paths belong to linkmaze +# e.g. if webserver proxies /foo/ to linkmaze, then --linkpath should be foo. +# +# --train is for training data, point it to a collection of HTML files +LINKMAZE_ARGS="--linkpath linkmaze --train /path/to/training/data --listen-addr 127.0.0.1 --listen-port 3005" diff --git a/www-misc/quixotic/files/linkmaze.initd b/www-misc/quixotic/files/linkmaze.initd new file mode 100644 index 000000000000..9e6d10450622 --- /dev/null +++ b/www-misc/quixotic/files/linkmaze.initd @@ -0,0 +1,13 @@ +#!/sbin/openrc-run +# Copyright 2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +name=linkmaze +pidfile=/run/linkmaze.pid +command=/usr/bin/linkmaze +command_background=true +command_user="${LINKMAZE_USER}" +retry="TERM/10/KILL/5" +command_args="${LINKMAZE_ARGS}" + +start_stop_daemon_args="--wait 300" diff --git a/www-misc/quixotic/metadata.xml b/www-misc/quixotic/metadata.xml new file mode 100644 index 000000000000..7005c32b12c1 --- /dev/null +++ b/www-misc/quixotic/metadata.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "https://liguros.gitlab.io/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>sam@gentoo.org</email> + <name>Sam James</name> + </maintainer> + + <origin>gentoo-staging</origin> +</pkgmetadata>
\ No newline at end of file diff --git a/www-misc/quixotic/quixotic-0.12-r1.ebuild b/www-misc/quixotic/quixotic-0.12-r1.ebuild new file mode 100644 index 000000000000..6d08c87b36fa --- /dev/null +++ b/www-misc/quixotic/quixotic-0.12-r1.ebuild @@ -0,0 +1,260 @@ +# Copyright 2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +# Autogenerated by pycargoebuild 0.15.1 + +EAPI=8 + +CRATES=" + actix-codec@0.5.2 + actix-http@3.10.0 + actix-macros@0.2.4 + actix-router@0.5.3 + actix-rt@2.10.0 + actix-server@2.5.1 + actix-service@2.0.3 + actix-utils@3.0.1 + actix-web-codegen@4.3.0 + actix-web@4.10.2 + addr2line@0.24.2 + adler2@2.0.0 + aho-corasick@1.1.3 + alloc-no-stdlib@2.0.4 + alloc-stdlib@0.2.2 + anstream@0.6.18 + anstyle-parse@0.2.6 + anstyle-query@1.1.2 + anstyle-wincon@3.0.7 + anstyle@1.0.10 + autocfg@1.4.0 + backtrace@0.3.74 + base64@0.22.1 + bitflags@2.9.0 + block-buffer@0.10.4 + brotli-decompressor@4.0.2 + brotli@7.0.0 + bytes@1.10.1 + bytestring@1.4.0 + cc@1.2.17 + cfg-if@1.0.0 + clap@4.5.34 + clap_builder@4.5.34 + clap_derive@4.5.32 + clap_lex@0.7.4 + colorchoice@1.0.3 + cookie@0.16.2 + cpufeatures@0.2.17 + crc32fast@1.4.2 + crypto-common@0.1.6 + deranged@0.4.1 + derive_more-impl@2.0.1 + derive_more@2.0.1 + digest@0.10.7 + displaydoc@0.2.5 + encoding_rs@0.8.35 + equivalent@1.0.2 + flate2@1.1.0 + fnv@1.0.7 + foldhash@0.1.5 + form_urlencoded@1.2.1 + futf@0.1.5 + futures-core@0.3.31 + futures-sink@0.3.31 + futures-task@0.3.31 + futures-util@0.3.31 + generic-array@0.14.7 + getrandom@0.3.2 + gimli@0.31.1 + h2@0.3.26 + hashbrown@0.15.2 + heck@0.5.0 + html5ever@0.30.0 + http@0.2.12 + httparse@1.10.1 + httpdate@1.0.3 + icu_collections@1.5.0 + icu_locid@1.5.0 + icu_locid_transform@1.5.0 + icu_locid_transform_data@1.5.1 + icu_normalizer@1.5.0 + icu_normalizer_data@1.5.1 + icu_properties@1.5.1 + icu_properties_data@1.5.1 + icu_provider@1.5.0 + icu_provider_macros@1.5.0 + idna@1.0.3 + idna_adapter@1.2.0 + impl-more@0.1.9 + indexmap@2.8.0 + is_terminal_polyfill@1.70.1 + itoa@1.0.15 + jobserver@0.1.32 + language-tags@0.3.2 + libc@0.2.171 + litemap@0.7.5 + local-channel@0.1.5 + local-waker@0.1.4 + lock_api@0.4.12 + log@0.4.27 + mac@0.1.1 + markup5ever@0.15.0 + match_token@0.1.0 + memchr@2.7.4 + mime@0.3.17 + miniz_oxide@0.8.5 + mio@1.0.3 + new_debug_unreachable@1.0.6 + num-conv@0.1.0 + object@0.36.7 + once_cell@1.21.2 + parking_lot@0.12.3 + parking_lot_core@0.9.10 + percent-encoding@2.3.1 + phf@0.11.3 + phf_codegen@0.11.3 + phf_generator@0.11.3 + phf_shared@0.11.3 + pin-project-lite@0.2.16 + pin-utils@0.1.0 + pkg-config@0.3.32 + powerfmt@0.2.0 + ppv-lite86@0.2.21 + precomputed-hash@0.1.1 + proc-macro2@1.0.94 + quote@1.0.40 + r-efi@5.2.0 + rand@0.8.5 + rand@0.9.0 + rand_chacha@0.9.0 + rand_core@0.6.4 + rand_core@0.9.3 + redox_syscall@0.5.10 + regex-automata@0.4.9 + regex-lite@0.1.6 + regex-syntax@0.8.5 + regex@1.11.1 + rustc-demangle@0.1.24 + ryu@1.0.20 + same-file@1.0.6 + scopeguard@1.2.0 + serde@1.0.219 + serde_derive@1.0.219 + serde_json@1.0.140 + serde_urlencoded@0.7.1 + sha1@0.10.6 + shlex@1.3.0 + signal-hook-registry@1.4.2 + siphasher@1.0.1 + slab@0.4.9 + smallvec@1.14.0 + socket2@0.5.8 + stable_deref_trait@1.2.0 + string_cache@0.8.9 + string_cache_codegen@0.5.4 + strsim@0.11.1 + syn@2.0.100 + synstructure@0.13.1 + tendril@0.4.3 + time-core@0.1.4 + time-macros@0.2.22 + time@0.3.41 + tinystr@0.7.6 + tokio-util@0.7.14 + tokio@1.44.1 + tracing-attributes@0.1.28 + tracing-core@0.1.33 + tracing@0.1.41 + typenum@1.18.0 + unicode-ident@1.0.18 + unicode-xid@0.2.6 + url@2.5.4 + utf-8@0.7.6 + utf16_iter@1.0.5 + utf8_iter@1.0.4 + utf8parse@0.2.2 + version_check@0.9.5 + walkdir@2.5.0 + wasi@0.11.0+wasi-snapshot-preview1 + wasi@0.14.2+wasi-0.2.4 + winapi-util@0.1.9 + windows-sys@0.52.0 + windows-sys@0.59.0 + windows-targets@0.52.6 + windows_aarch64_gnullvm@0.52.6 + windows_aarch64_msvc@0.52.6 + windows_i686_gnu@0.52.6 + windows_i686_gnullvm@0.52.6 + windows_i686_msvc@0.52.6 + windows_x86_64_gnu@0.52.6 + windows_x86_64_gnullvm@0.52.6 + windows_x86_64_msvc@0.52.6 + wit-bindgen-rt@0.39.0 + write16@1.0.0 + writeable@0.5.5 + yoke-derive@0.7.5 + yoke@0.7.5 + zerocopy-derive@0.8.24 + zerocopy@0.8.24 + zerofrom-derive@0.1.6 + zerofrom@0.1.6 + zerovec-derive@0.10.3 + zerovec@0.10.4 + zstd-safe@7.2.4 + zstd-sys@2.0.15+zstd.1.5.7 + zstd@0.13.3 +" +RUST_MIN_VER="1.81" +VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/marcusb.asc +inherit cargo systemd verify-sig + +DESCRIPTION="Feed fake content to bots and robots.txt-ignoring LLM scrapers" +HOMEPAGE="https://marcusb.org/hacks/quixotic.html" +# https://github.com/marcus0x62/quixotic/issues/7 wrt 0.13 +SRC_URI=" + https://marcusb.org/releases/${P}.tar.gz + verify-sig? ( https://marcusb.org/releases/${P}.tar.gz.sig ) + ${CARGO_CRATE_URIS} +" + +LICENSE="MIT" +# Dependent crate licenses +LICENSE+=" + BSD MIT Unicode-3.0 ZLIB + || ( Apache-2.0 Boost-1.0 ) +" +SLOT="0" +KEYWORDS="amd64" + +RDEPEND="app-arch/zstd:=" +DEPEND="${RDEPEND}" +BDEPEND="verify-sig? ( sec-keys/openpgp-keys-marcusb )" + +QA_FLAGS_IGNORED="usr/bin/linkmaze usr/bin/quixotic" + +src_unpack() { + if use verify-sig ; then + verify-sig_verify_detached "${DISTDIR}"/${P}.tar.gz{,.sig} + unpack ${P}.tar.gz + fi + + cargo_src_unpack +} + +src_prepare() { + default + + sed -i -e "s:/usr/local/bin/linkmaze:${EPREFIX}/usr/bin/linkmaze:" linkmaze.service || die +} + +src_configure() { + export ZSTD_SYS_USE_PKG_CONFIG=1 + cargo_src_configure +} + +src_install() { + cargo_src_install + + systemd_dounit linkmaze.service + newinitd "${FILESDIR}"/linkmaze.initd linkmaze + newconfd "${FILESDIR}"/linkmaze.confd linkmaze +} diff --git a/www-servers/varnish/Manifest b/www-servers/varnish/Manifest index b531128a62ea..9ceffe44a7f1 100644 --- a/www-servers/varnish/Manifest +++ b/www-servers/varnish/Manifest @@ -1,2 +1 @@ -DIST varnish-7.7.3.tgz 4235804 BLAKE2B 74b9fded0daaae7bc2b36132586f17d1717a0539656a0ce5dbc6f2cb4f9c6c5d6a710e4289f3223cb679f81de214c91ce38f3cb0adce60a9d2bad55b10c710c7 SHA512 2de3f19d24e42ec092076226b629dc36d4d3c9961454502e7f9a8ff1d440cf54104198e2b5302361f093fa221f04f836bb8dda441921d1721b1d05c90c0f1661 DIST varnish-8.0.0.tgz 4385715 BLAKE2B ebc6103ef2375eddf7ce6b89f8cb8b89900c3533dba97916d953bee20935cbccae814340d3a83b0fe1f6be211c950ba0a0d874dd0503621d8baeeb86333e4f23 SHA512 c381928e23deaacb863dcf389a494f30a56d22a4e88fe0c5dc7d4a93828f3dc0595c7ae41837f3549795828aca1a30e08f4456d4a752a6d12c19b61943dd99e9 diff --git a/www-servers/varnish/files/varnish-8.0.0-configure-make-python-output-match-autotools.patch b/www-servers/varnish/files/varnish-8.0.0-configure-make-python-output-match-autotools.patch new file mode 100644 index 000000000000..abbfe79d8214 --- /dev/null +++ b/www-servers/varnish/files/varnish-8.0.0-configure-make-python-output-match-autotools.patch @@ -0,0 +1,45 @@ +# https://bugs.gentoo.org/882725 +# https://code.vinyl-cache.org/vinyl-cache/vinyl-cache/pulls/4451 + +From 3565765b8b2fbc854432fa0ce7b5ca2facc0a7b8 Mon Sep 17 00:00:00 2001 +From: Brett A C Sheffield <bacs@librecast.net> +Date: Mon, 16 Feb 2026 19:50:32 +0100 +Subject: [PATCH] configure: make python output match autotools + +When calling out from configure to python to check compiler flags, make +output from wflags.py consistent with the rest of autotools output +rather than printing scary compiler errors. +--- + wflags.py | 6 +++--- + 1 file changed, 3 insertions(+), 3 deletions(-) + +diff --git a/wflags.py b/wflags.py +index 1c1da40d0..da799f9cd 100644 +--- a/wflags.py ++++ b/wflags.py +@@ -108,19 +108,19 @@ def main(): + + use_flags = [] + for i in DESIRABLE_OPTIONS + DESIRABLE_WFLAGS + UNDESIRABLE_WFLAGS: ++ sys.stderr.write("checking whether C compiler accepts " + i + "... ") + j = cc(compiler, i, obj_file.name, src_file.name) + if not j: + use_flags.append(i) ++ sys.stderr.write("yes\n") + else: +- sys.stderr.write(compiler + " cannot " + i + '\n') ++ sys.stderr.write(" no\n") + if b'error: unrecognized command line option' in j: + # LLVM + pass + elif b'warning: unknown warning option' in j: + # GCC + pass +- else: +- sys.stderr.write("\n\t" + j.decode('utf8') + '\n') + print(" ".join(use_flags)) + + if __name__ == "__main__": +-- +2.52.0 + diff --git a/www-servers/varnish/metadata.xml b/www-servers/varnish/metadata.xml index fcce404bd7e2..b74b9227bc55 100644 --- a/www-servers/varnish/metadata.xml +++ b/www-servers/varnish/metadata.xml @@ -25,6 +25,9 @@ </longdescription> <upstream> <remote-id type="cpe">cpe:/a:varnish-cache:varnish</remote-id> + <changelog>https://vinyl-cache.org/docs/8.0/whats-new/index.html</changelog> + <bugs-to>https://code.vinyl-cache.org/vinyl-cache/vinyl-cache/issues</bugs-to> + <doc>https://vinyl-cache.org/docs/index.html</doc> </upstream> <origin>gentoo-staging</origin> <slots> diff --git a/www-servers/varnish/varnish-7.7.3.ebuild b/www-servers/varnish/varnish-8.0.0-r1.ebuild index 183054045a4a..34c3eac1ab16 100644 --- a/www-servers/varnish/varnish-7.7.3.ebuild +++ b/www-servers/varnish/varnish-8.0.0-r1.ebuild @@ -8,36 +8,33 @@ PYTHON_COMPAT=( python3_{10..14} ) inherit autotools systemd python-r1 DESCRIPTION="Varnish is a state-of-the-art, high-performance HTTP accelerator" -HOMEPAGE="https://varnish-cache.org/" -SRC_URI="https://varnish-cache.org/_downloads/${P}.tgz" +HOMEPAGE="https://vinyl-cache.org/" +SRC_URI="https://vinyl-cache.org/_downloads/${P}.tgz" LICENSE="BSD-2 GPL-2" SLOT="0/2" -KEYWORDS="amd64 ~arm arm64 ~ppc ~ppc64 ~riscv x86" -# From Fedora: -# Default: Use jemalloc, as adviced by upstream project -IUSE="+jemalloc jit selinux static-libs unwind" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" +IUSE="jit selinux static-libs unwind" -CDEPEND=" +COMMON_DEPEND=" sys-libs/readline:= dev-libs/libedit dev-libs/libpcre2[jit?] sys-libs/ncurses:= - jemalloc? ( dev-libs/jemalloc:= ) unwind? ( sys-libs/libunwind:= ) " # varnish compiles stuff at run time RDEPEND=" ${PYTHON_DEPS} - ${CDEPEND} + ${COMMON_DEPEND} acct-user/varnish acct-group/varnish sys-devel/gcc selinux? ( sec-policy/selinux-varnishd ) " DEPEND=" - ${CDEPEND} + ${COMMON_DEPEND} dev-python/docutils dev-python/sphinx virtual/pkgconfig @@ -45,7 +42,10 @@ DEPEND=" REQUIRED_USE="${PYTHON_REQUIRED_USE}" -PATCHES=( "${FILESDIR}/${PN}-7.1.2-disable-tests.patch" ) +PATCHES=( + "${FILESDIR}/${PN}-7.1.2-disable-tests.patch" + "${FILESDIR}/${PN}-8.0.0-configure-make-python-output-match-autotools.patch" # Bug: 882725 +) src_prepare() { default @@ -66,16 +66,13 @@ src_configure() { --with-contrib $(use_enable static-libs static) $(use_enable jit pcre2-jit) - $(use_with jemalloc) $(use_with unwind) + --without-jemalloc ) econf "${myeconfargs[@]}" } src_test() { - # Per Fedora: - # "This is a bug in varnishtest making it incompatible with nghttp2 >= 1.65" - rm bin/varnishtest/tests/a02022.vtc || die # Times out rm bin/varnishtest/tests/u00021.vtc || die diff --git a/x11-plugins/e16-epplets/files/e16-epplets-0.17-musl.patch b/x11-plugins/e16-epplets/files/e16-epplets-0.17-musl.patch deleted file mode 100644 index d6c2a6bbd3a6..000000000000 --- a/x11-plugins/e16-epplets/files/e16-epplets-0.17-musl.patch +++ /dev/null @@ -1,60 +0,0 @@ -commit c3dcab92ff903422814573d6315ed2a1417080f6 -Author: Andrew Savchenko <bircoph@gentoo.org> -Date: Mon Aug 1 12:03:51 2022 +0300 - - Include <sys/select.h> for fd_set - - When fd_set is used <sys/select.h> should be included. - On glibc it is done implicitly via other headers, - on musl it must be explicitly provided. - - Signed-off-by: Andrew Savchenko <bircoph@gentoo.org> - -diff --git a/api/epplet.c b/api/epplet.c -index b6a7907..b74a4bc 100644 ---- a/api/epplet.c -+++ b/api/epplet.c -@@ -3,6 +3,7 @@ - #include <errno.h> - #include <fcntl.h> - #include <sys/resource.h> -+#include <sys/select.h> - #include <sys/utsname.h> - #include <signal.h> - #include <sys/time.h> -diff --git a/epplets/E-Pinger.c b/epplets/E-Pinger.c -index 7187315..d397063 100644 ---- a/epplets/E-Pinger.c -+++ b/epplets/E-Pinger.c -@@ -32,6 +32,7 @@ - - #include <errno.h> - #include <signal.h> -+#include <sys/select.h> - #include <sys/wait.h> - - #include "config.h" -diff --git a/epplets/E-SD.c b/epplets/E-SD.c -index cd92fa3..d3b6b93 100644 ---- a/epplets/E-SD.c -+++ b/epplets/E-SD.c -@@ -19,6 +19,7 @@ - */ - #include <esd.h> - #include <fcntl.h> -+#include <sys/select.h> - - #include "config.h" - #include "epplet.h" -diff --git a/epplets/E-ScreenShoot_ftp.c b/epplets/E-ScreenShoot_ftp.c -index 377e7ee..ae40ca7 100644 ---- a/epplets/E-ScreenShoot_ftp.c -+++ b/epplets/E-ScreenShoot_ftp.c -@@ -5,6 +5,7 @@ - #include <errno.h> - #include <fcntl.h> - #include <stdarg.h> -+#include <sys/select.h> - - #include "E-ScreenShoot_ftp.h" - diff --git a/x11-terms/xterm/Manifest b/x11-terms/xterm/Manifest index 465f615b1a50..bed46afd1f07 100644 --- a/x11-terms/xterm/Manifest +++ b/x11-terms/xterm/Manifest @@ -10,3 +10,5 @@ DIST xterm-405.tgz 1619098 BLAKE2B 51e4a70a70c88e7557f7cd0d8ea465666b0458e7de88b DIST xterm-405.tgz.asc 729 BLAKE2B 43450eb9cd4428a93ae19222414b2221e405efdf1bec624f2a98c13118a1c5f54db18a463f6e122a876951b75b1b150ad54d62e12d9c69194f31f86319182873 SHA512 28532a5a6fa098d541c98429206a94c684dc308b5c62be4c0989595cefb521441c78c0773f0eb9ef6145add67db15c9de77ac2ade3e8d153c0333a9bb2cc2603 DIST xterm-406.tgz 1619843 BLAKE2B 4b2b056b78037d38b89b638a9df7f76e7d47f03bb4b5f8e5d3557ce6de0092e7a575153fa9bf2801d3c775c1beb7df859eecd2c37ef06f2f5b0045429ebfc079 SHA512 55e1b8f271510552f74225b00ce450c74955b803fefb2f80f72a24f0cb017108a5e2c5a5b8ecb07b478f8e50a9823bbf238dfde14d7128c65922b9761fa51d07 DIST xterm-406.tgz.asc 729 BLAKE2B 822fe3c3e155f752701223ece999cef1a1c8329acb0abe72a60e45b4bef809132cf00206dc0f5d1f8ed34e3bf9c1c16023a93b11afe53d45637e2dbead34f64d SHA512 981a6680e3bbb63b898b2a868b8f0963dbe836bc199283d622a27aacf40b2cb5a720f1824799f5be46c875f864ae7427289129d577735d75fa562cc83f1aff62 +DIST xterm-407.tgz 1625611 BLAKE2B 7c16df07124ae7beb510c57f7f621b7a8f1f13193f51343ff13079fb8bd9295753a864b4750945f3ebd4d530ec1fbd2385b536e8e6d7bb5f580c3847152b2145 SHA512 e1d362ec54254df2713f777d1e6572e824f416387b455216b3a684f26baeaa853f2d069d9b4e19029578933b6b325f4e9086291d8f7571f20b1f7cd94e0489cc +DIST xterm-407.tgz.asc 729 BLAKE2B 7445f9533b2d335c21e1907ea1a965b98989b9ddc65ed1ffa87021a2e67a2d24e00e8cca9802aae0dd0fc6fcb7624dbd708e96d0eb70c1a70a60cd7efb91eb4f SHA512 cfbad2fd9cea9501eb8478c8e5d5b0a5e2964a2a0e66cdc1bd0af81b3c4383e7e22cb260269ccacf02f2a3794f6f3c1fb2ec805b8d07204a34091ed0116ca3f9 diff --git a/x11-terms/xterm/xterm-407.ebuild b/x11-terms/xterm/xterm-407.ebuild new file mode 100644 index 000000000000..0bd50d3657c2 --- /dev/null +++ b/x11-terms/xterm/xterm-407.ebuild @@ -0,0 +1,110 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/thomasdickey.asc +inherit desktop flag-o-matic toolchain-funcs verify-sig xdg + +DESCRIPTION="Terminal Emulator for X Windows" +HOMEPAGE="https://invisible-island.net/xterm/" +SRC_URI="https://invisible-island.net/archives/${PN}/${P}.tgz" +SRC_URI+=" verify-sig? ( https://invisible-island.net/archives/${PN}/${P}.tgz.asc )" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos ~x64-solaris" +IUSE="+openpty sixel toolbar truetype unicode Xaw3d xinerama" + +DEPEND=" + kernel_linux? ( sys-libs/libutempter ) + media-libs/fontconfig:1.0 + media-libs/freetype + >=sys-libs/ncurses-5.7-r7:= + x11-apps/xmessage + x11-libs/libICE + x11-libs/libX11 + x11-libs/libXaw + x11-libs/libXft + x11-libs/libxkbfile + x11-libs/libXmu + x11-libs/libXrender + x11-libs/libXt + unicode? ( x11-apps/luit ) + Xaw3d? ( x11-libs/libXaw3d ) + xinerama? ( x11-libs/libXinerama ) +" +RDEPEND=" + ${DEPEND} + media-fonts/font-misc-misc + x11-apps/rgb +" +DEPEND+=" x11-base/xorg-proto" +BDEPEND=" + virtual/pkgconfig + verify-sig? ( >=sec-keys/openpgp-keys-thomasdickey-20260204 ) +" + +DOCS=( README{,.i18n} ctlseqs.txt ) + +src_configure() { + DEFAULTS_DIR="${EPREFIX}"/usr/share/X11/app-defaults + + # bug #454736 + # Workaround for ncurses[tinfo] until upstream fixes their buildsystem using + # something sane like pkg-config or ncurses5-config and stops guessing libs + # Everything gets linked against ncurses anyways, so don't shout + append-libs $($(tc-getPKG_CONFIG) --libs ncurses) + + local myeconfargs=( + --disable-full-tgetent + --disable-imake + --disable-setgid + --disable-setuid + --enable-256-color + --enable-broken-osc + --enable-broken-st + --enable-dabbrev + --enable-exec-xterm + --enable-i18n + --enable-load-vt-fonts + --enable-logging + --enable-screen-dumps + --enable-warnings + --enable-wide-chars + --libdir="${EPREFIX}"/etc + --with-app-defaults="${DEFAULTS_DIR}" + --with-icon-theme=hicolor + --with-icondir="${EPREFIX}"/usr/share/icons + --with-utempter + --with-x + $(use_enable openpty) + $(use_enable sixel sixel-graphics) + $(use_enable toolbar) + $(use_enable truetype freetype) + $(use_enable unicode luit) + $(use_enable unicode mini-luit) + $(use_with Xaw3d) + $(use_with xinerama) + ) + + econf "${myeconfargs[@]}" +} + +src_install() { + default + + docinto html + dodoc xterm.log.html + sed -i -e 's/_48x48//g' *.desktop || die + domenu *.desktop + + # Fix permissions -- it grabs them from live system, and they can + # be suid or sgid like they were in pre-unix98 pty or pre-utempter days, + # respectively (#69510). + # (info from Thomas Dickey) - Donnie Berkholz <spyderous@gentoo.org> + fperms 0755 /usr/bin/xterm + + # restore the navy blue + sed -i -e 's:blue2$:blue:' "${D}${DEFAULTS_DIR}"/XTerm-color || die +} |
